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
7b86dd4d855154ff79a57885deb2c86504df3da6
adbdb70ae4df4da15a6d1b0198fadcdeffed0f81
/arale/examples/simple/chargen/Main.cc
bbc79927232d520879d2469f36d07d9ecb7e36bd
[]
no_license
ethandu7/arale
4f9ee6b5183d7eb9aad7ece039b49b922cec8951
fd9b298eb10bbe3a5a1b113eb8489e495c1026cf
refs/heads/master
2020-04-12T05:35:34.189542
2016-10-17T04:46:50
2016-10-17T04:46:50
65,872,243
0
0
null
null
null
null
UTF-8
C++
false
false
350
cc
Main.cc
#include "Chargen.h" #include <arale/net/EventLoop.h> using namespace arale; using namespace arale::net; using namespace arale::base; int main() { LOG_INFO << "pid = " << getCurrentThreadID(); EventLoop loop; InetAddress addr(2016); ChargenServer server(&loop, addr, true); server.start(); loop.loop(); }
06b892a1d82e270048aa9cd5df04a020705785eb
40d7e7ef03899af132bf7dc572aab3eed3ffd151
/include/type_casting_functor.hpp
e20593bf5d5e0c61c18f3be0b5c205bf7509261f
[ "MIT" ]
permissive
dgleich/libzonotope
859a704e55d1c3bf25eb04ff76faf0307943b160
deddd5f12c233683d459ecf49df3b459c7bef9ee
refs/heads/master
2021-01-22T01:06:01.437736
2014-12-19T19:32:16
2014-12-19T19:35:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,959
hpp
type_casting_functor.hpp
#ifndef TYPE_CASTING_FUNCTOR_HPP_ #define TYPE_CASTING_FUNCTOR_HPP_ #include <cassert> #include <gmpxx.h> namespace zonotope { /** * Here we define a a utility functor for type-safe conversion between * "compatible" types (like integer -> fraction, or integer_type_a -> * integer_type_b). Internally, this is (for example) used to convert * from arbitrary precision (provided by gmp) to built in fixed * precision types. Adding support for other types is as easy as * providing a new specialization of the templated interface. */ template <typename Input_t, typename Output_t> struct Type_casting_functor { Output_t operator() (const Input_t& val) const { return Output_t(val); } }; template <> struct Type_casting_functor<mpz_class, long> { long operator() (const mpz_class& val) const { assert( val.fits_slong_p() ); return val.get_si(); } }; template <> struct Type_casting_functor<mpz_class, double> { Type_casting_functor<mpz_class, long> cast_to_long; double operator() (const mpz_class& val) const { return double(cast_to_long(val)); } }; template<> struct Type_casting_functor<std::vector<long>, std::vector<mpz_class> > { std::vector<mpz_class> operator() (const std::vector<long>& v_long ) const { const int d = v_long.size(); std::vector<mpz_class> v_mpz (d); for ( int i = 0; i < d; ++i ) { v_mpz[i] = v_long[i]; } return v_mpz; } }; template<> struct Type_casting_functor<std::vector<std::vector<long> >, std::vector<std::vector<mpz_class> > > { Type_casting_functor<std::vector<long>, std::vector<mpz_class> > cast; std::vector<std::vector<mpz_class> > operator() (const std::vector<std::vector<long> >& v_long ) { const int d = v_long.size(); std::vector<std::vector<mpz_class> > v_mpz (d); for ( int i = 0; i < d; ++i ) { v_mpz[i] = cast(v_long[i]); } return v_mpz; } }; } // namespace zonotope #endif // TYPE_CASTING_FUNCTOR_HPP_
7b1c88e66eef9deef0587cc386650164f01b642d
f7aeb5c9510dc39e07db2f3df033be77a9d0c8f6
/task4_GA/src/crossover.cpp
514750e5c31d421afe7d103316efd3448137073a
[]
no_license
vultar150/practicum_421
51aefa26b3db7b334df5fa6b0afb25ab0bfb31bd
c869c7083ab1c578b18e147e6b9acbb789e97b86
refs/heads/master
2023-02-07T04:36:32.870585
2020-12-23T09:58:32
2020-12-23T09:58:32
296,155,074
1
0
null
2020-12-22T18:11:08
2020-09-16T21:47:47
C++
UTF-8
C++
false
false
460
cpp
crossover.cpp
#include <iostream> #include <algorithm> #include "population.h" #include "crossover.h" void SinglePointCrossover::crossing(IndividualType* copy_parent1, IndividualType* copy_parent2) { int size = copy_parent1->size(); int random = arc4random_uniform(size - 1) + 1; std::swap_ranges(copy_parent1->begin(), copy_parent1->begin() + random, copy_parent2->begin()); }
cbd1e13161f00d217063ac4dec3b67b38c9a0dfd
e3c7024b5af415a8ee9e79e8cea94bbc410084ec
/project/Hough_Circle/Hough_Circle/Hough/solution1/syn/systemc/Mat2Array2D.cpp
f8e2b7991d36167b8b548ecd7da6a0b4888ab057
[]
no_license
lh9171338/HLS
6fa5e5f981f04f476e99a7d2e61ec385bd671998
0d3165c42abe86650a05d568d5c2518956d83ba9
refs/heads/master
2022-04-09T15:27:35.605761
2020-04-05T09:48:16
2020-04-05T09:48:16
175,017,352
5
0
null
null
null
null
UTF-8
C++
false
false
27,441
cpp
Mat2Array2D.cpp
// ============================================================== // RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC // Version: 2018.2 // Copyright (C) 1986-2018 Xilinx, Inc. All Rights Reserved. // // =========================================================== #include "Mat2Array2D.h" #include "AESL_pkg.h" using namespace std; namespace ap_rtl { const sc_logic Mat2Array2D::ap_const_logic_1 = sc_dt::Log_1; const sc_logic Mat2Array2D::ap_const_logic_0 = sc_dt::Log_0; const sc_lv<4> Mat2Array2D::ap_ST_fsm_state1 = "1"; const sc_lv<4> Mat2Array2D::ap_ST_fsm_state2 = "10"; const sc_lv<4> Mat2Array2D::ap_ST_fsm_pp0_stage0 = "100"; const sc_lv<4> Mat2Array2D::ap_ST_fsm_state5 = "1000"; const sc_lv<32> Mat2Array2D::ap_const_lv32_0 = "00000000000000000000000000000000"; const bool Mat2Array2D::ap_const_boolean_1 = true; const sc_lv<32> Mat2Array2D::ap_const_lv32_2 = "10"; const bool Mat2Array2D::ap_const_boolean_0 = false; const sc_lv<1> Mat2Array2D::ap_const_lv1_1 = "1"; const sc_lv<32> Mat2Array2D::ap_const_lv32_1 = "1"; const sc_lv<1> Mat2Array2D::ap_const_lv1_0 = "0"; const sc_lv<31> Mat2Array2D::ap_const_lv31_0 = "0000000000000000000000000000000"; const sc_lv<32> Mat2Array2D::ap_const_lv32_3 = "11"; const sc_lv<31> Mat2Array2D::ap_const_lv31_1 = "1"; const sc_lv<8> Mat2Array2D::ap_const_lv8_0 = "00000000"; const sc_lv<6> Mat2Array2D::ap_const_lv6_0 = "000000"; Mat2Array2D::Mat2Array2D(sc_module_name name) : sc_module(name), mVcdFile(0) { SC_METHOD(thread_ap_clk_no_reset_); dont_initialize(); sensitive << ( ap_clk.pos() ); SC_METHOD(thread_ap_CS_fsm_pp0_stage0); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state1); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state2); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state5); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_block_pp0_stage0); SC_METHOD(thread_ap_block_pp0_stage0_11001); sensitive << ( mat_data_stream_V_empty_n ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( tmp_33_i_reg_209 ); SC_METHOD(thread_ap_block_pp0_stage0_subdone); sensitive << ( mat_data_stream_V_empty_n ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( tmp_33_i_reg_209 ); SC_METHOD(thread_ap_block_state1); sensitive << ( ap_start ); sensitive << ( ap_done_reg ); sensitive << ( mat_rows_V_empty_n ); sensitive << ( mat_cols_V_empty_n ); SC_METHOD(thread_ap_block_state3_pp0_stage0_iter0); SC_METHOD(thread_ap_block_state4_pp0_stage0_iter1); sensitive << ( mat_data_stream_V_empty_n ); sensitive << ( tmp_33_i_reg_209 ); SC_METHOD(thread_ap_condition_pp0_exit_iter0_state3); sensitive << ( tmp_33_i_fu_161_p2 ); SC_METHOD(thread_ap_done); sensitive << ( ap_done_reg ); sensitive << ( tmp_i_fu_116_p2 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ap_enable_pp0); sensitive << ( ap_idle_pp0 ); SC_METHOD(thread_ap_idle); sensitive << ( ap_start ); sensitive << ( ap_CS_fsm_state1 ); SC_METHOD(thread_ap_idle_pp0); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_enable_reg_pp0_iter0 ); SC_METHOD(thread_ap_ready); sensitive << ( tmp_i_fu_116_p2 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_arr_val_address0); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0 ); sensitive << ( tmp_14_cast_fu_181_p1 ); SC_METHOD(thread_arr_val_ce0); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_11001 ); SC_METHOD(thread_arr_val_d0); sensitive << ( mat_data_stream_V_dout ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0 ); SC_METHOD(thread_arr_val_we0); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( tmp_33_i_reg_209 ); sensitive << ( ap_block_pp0_stage0_11001 ); SC_METHOD(thread_i_cast_i_fu_112_p1); sensitive << ( i_i_reg_90 ); SC_METHOD(thread_i_fu_121_p2); sensitive << ( i_i_reg_90 ); SC_METHOD(thread_j_cast_i_fu_157_p1); sensitive << ( j_i_reg_101 ); SC_METHOD(thread_j_fu_166_p2); sensitive << ( j_i_reg_101 ); SC_METHOD(thread_mat_cols_V_blk_n); sensitive << ( ap_start ); sensitive << ( ap_done_reg ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( mat_cols_V_empty_n ); SC_METHOD(thread_mat_cols_V_read); sensitive << ( ap_start ); sensitive << ( ap_done_reg ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( mat_rows_V_empty_n ); sensitive << ( mat_cols_V_empty_n ); SC_METHOD(thread_mat_data_stream_V_blk_n); sensitive << ( mat_data_stream_V_empty_n ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0 ); sensitive << ( tmp_33_i_reg_209 ); SC_METHOD(thread_mat_data_stream_V_read); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( tmp_33_i_reg_209 ); sensitive << ( ap_block_pp0_stage0_11001 ); SC_METHOD(thread_mat_rows_V_blk_n); sensitive << ( ap_start ); sensitive << ( ap_done_reg ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( mat_rows_V_empty_n ); SC_METHOD(thread_mat_rows_V_read); sensitive << ( ap_start ); sensitive << ( ap_done_reg ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( mat_rows_V_empty_n ); sensitive << ( mat_cols_V_empty_n ); SC_METHOD(thread_p_shl1_cast_fu_143_p3); sensitive << ( tmp_44_fu_139_p1 ); SC_METHOD(thread_p_shl_cast_fu_131_p3); sensitive << ( tmp_fu_127_p1 ); SC_METHOD(thread_tmp_13_fu_151_p2); sensitive << ( p_shl_cast_fu_131_p3 ); sensitive << ( p_shl1_cast_fu_143_p3 ); SC_METHOD(thread_tmp_14_cast_fu_181_p1); sensitive << ( tmp_14_reg_218 ); SC_METHOD(thread_tmp_14_fu_176_p2); sensitive << ( tmp_13_reg_204 ); sensitive << ( tmp_46_fu_172_p1 ); SC_METHOD(thread_tmp_33_i_fu_161_p2); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( cols_reg_190 ); sensitive << ( ap_block_pp0_stage0_11001 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( j_cast_i_fu_157_p1 ); SC_METHOD(thread_tmp_44_fu_139_p1); sensitive << ( i_i_reg_90 ); SC_METHOD(thread_tmp_46_fu_172_p1); sensitive << ( j_i_reg_101 ); SC_METHOD(thread_tmp_fu_127_p1); sensitive << ( i_i_reg_90 ); SC_METHOD(thread_tmp_i_fu_116_p2); sensitive << ( rows_reg_185 ); sensitive << ( ap_CS_fsm_state2 ); sensitive << ( i_cast_i_fu_112_p1 ); SC_METHOD(thread_ap_NS_fsm); sensitive << ( ap_start ); sensitive << ( ap_done_reg ); sensitive << ( ap_CS_fsm ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( mat_rows_V_empty_n ); sensitive << ( mat_cols_V_empty_n ); sensitive << ( tmp_i_fu_116_p2 ); sensitive << ( ap_CS_fsm_state2 ); sensitive << ( tmp_33_i_fu_161_p2 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage0_subdone ); ap_done_reg = SC_LOGIC_0; ap_CS_fsm = "0001"; ap_enable_reg_pp0_iter1 = SC_LOGIC_0; ap_enable_reg_pp0_iter0 = SC_LOGIC_0; static int apTFileNum = 0; stringstream apTFilenSS; apTFilenSS << "Mat2Array2D_sc_trace_" << apTFileNum ++; string apTFn = apTFilenSS.str(); mVcdFile = sc_create_vcd_trace_file(apTFn.c_str()); mVcdFile->set_time_unit(1, SC_PS); if (1) { #ifdef __HLS_TRACE_LEVEL_PORT_HIER__ sc_trace(mVcdFile, ap_clk, "(port)ap_clk"); sc_trace(mVcdFile, ap_rst, "(port)ap_rst"); sc_trace(mVcdFile, ap_start, "(port)ap_start"); sc_trace(mVcdFile, ap_done, "(port)ap_done"); sc_trace(mVcdFile, ap_continue, "(port)ap_continue"); sc_trace(mVcdFile, ap_idle, "(port)ap_idle"); sc_trace(mVcdFile, ap_ready, "(port)ap_ready"); sc_trace(mVcdFile, mat_rows_V_dout, "(port)mat_rows_V_dout"); sc_trace(mVcdFile, mat_rows_V_empty_n, "(port)mat_rows_V_empty_n"); sc_trace(mVcdFile, mat_rows_V_read, "(port)mat_rows_V_read"); sc_trace(mVcdFile, mat_cols_V_dout, "(port)mat_cols_V_dout"); sc_trace(mVcdFile, mat_cols_V_empty_n, "(port)mat_cols_V_empty_n"); sc_trace(mVcdFile, mat_cols_V_read, "(port)mat_cols_V_read"); sc_trace(mVcdFile, mat_data_stream_V_dout, "(port)mat_data_stream_V_dout"); sc_trace(mVcdFile, mat_data_stream_V_empty_n, "(port)mat_data_stream_V_empty_n"); sc_trace(mVcdFile, mat_data_stream_V_read, "(port)mat_data_stream_V_read"); sc_trace(mVcdFile, arr_val_address0, "(port)arr_val_address0"); sc_trace(mVcdFile, arr_val_ce0, "(port)arr_val_ce0"); sc_trace(mVcdFile, arr_val_we0, "(port)arr_val_we0"); sc_trace(mVcdFile, arr_val_d0, "(port)arr_val_d0"); #endif #ifdef __HLS_TRACE_LEVEL_INT__ sc_trace(mVcdFile, ap_done_reg, "ap_done_reg"); sc_trace(mVcdFile, ap_CS_fsm, "ap_CS_fsm"); sc_trace(mVcdFile, ap_CS_fsm_state1, "ap_CS_fsm_state1"); sc_trace(mVcdFile, mat_rows_V_blk_n, "mat_rows_V_blk_n"); sc_trace(mVcdFile, mat_cols_V_blk_n, "mat_cols_V_blk_n"); sc_trace(mVcdFile, mat_data_stream_V_blk_n, "mat_data_stream_V_blk_n"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage0, "ap_CS_fsm_pp0_stage0"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter1, "ap_enable_reg_pp0_iter1"); sc_trace(mVcdFile, ap_block_pp0_stage0, "ap_block_pp0_stage0"); sc_trace(mVcdFile, tmp_33_i_reg_209, "tmp_33_i_reg_209"); sc_trace(mVcdFile, j_i_reg_101, "j_i_reg_101"); sc_trace(mVcdFile, rows_reg_185, "rows_reg_185"); sc_trace(mVcdFile, ap_block_state1, "ap_block_state1"); sc_trace(mVcdFile, cols_reg_190, "cols_reg_190"); sc_trace(mVcdFile, tmp_i_fu_116_p2, "tmp_i_fu_116_p2"); sc_trace(mVcdFile, ap_CS_fsm_state2, "ap_CS_fsm_state2"); sc_trace(mVcdFile, i_fu_121_p2, "i_fu_121_p2"); sc_trace(mVcdFile, i_reg_199, "i_reg_199"); sc_trace(mVcdFile, tmp_13_fu_151_p2, "tmp_13_fu_151_p2"); sc_trace(mVcdFile, tmp_13_reg_204, "tmp_13_reg_204"); sc_trace(mVcdFile, tmp_33_i_fu_161_p2, "tmp_33_i_fu_161_p2"); sc_trace(mVcdFile, ap_block_state3_pp0_stage0_iter0, "ap_block_state3_pp0_stage0_iter0"); sc_trace(mVcdFile, ap_block_state4_pp0_stage0_iter1, "ap_block_state4_pp0_stage0_iter1"); sc_trace(mVcdFile, ap_block_pp0_stage0_11001, "ap_block_pp0_stage0_11001"); sc_trace(mVcdFile, j_fu_166_p2, "j_fu_166_p2"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter0, "ap_enable_reg_pp0_iter0"); sc_trace(mVcdFile, tmp_14_fu_176_p2, "tmp_14_fu_176_p2"); sc_trace(mVcdFile, tmp_14_reg_218, "tmp_14_reg_218"); sc_trace(mVcdFile, ap_block_pp0_stage0_subdone, "ap_block_pp0_stage0_subdone"); sc_trace(mVcdFile, ap_condition_pp0_exit_iter0_state3, "ap_condition_pp0_exit_iter0_state3"); sc_trace(mVcdFile, i_i_reg_90, "i_i_reg_90"); sc_trace(mVcdFile, ap_CS_fsm_state5, "ap_CS_fsm_state5"); sc_trace(mVcdFile, tmp_14_cast_fu_181_p1, "tmp_14_cast_fu_181_p1"); sc_trace(mVcdFile, i_cast_i_fu_112_p1, "i_cast_i_fu_112_p1"); sc_trace(mVcdFile, tmp_fu_127_p1, "tmp_fu_127_p1"); sc_trace(mVcdFile, tmp_44_fu_139_p1, "tmp_44_fu_139_p1"); sc_trace(mVcdFile, p_shl_cast_fu_131_p3, "p_shl_cast_fu_131_p3"); sc_trace(mVcdFile, p_shl1_cast_fu_143_p3, "p_shl1_cast_fu_143_p3"); sc_trace(mVcdFile, j_cast_i_fu_157_p1, "j_cast_i_fu_157_p1"); sc_trace(mVcdFile, tmp_46_fu_172_p1, "tmp_46_fu_172_p1"); sc_trace(mVcdFile, ap_NS_fsm, "ap_NS_fsm"); sc_trace(mVcdFile, ap_idle_pp0, "ap_idle_pp0"); sc_trace(mVcdFile, ap_enable_pp0, "ap_enable_pp0"); #endif } } Mat2Array2D::~Mat2Array2D() { if (mVcdFile) sc_close_vcd_trace_file(mVcdFile); } void Mat2Array2D::thread_ap_clk_no_reset_() { if ( ap_rst.read() == ap_const_logic_1) { ap_CS_fsm = ap_ST_fsm_state1; } else { ap_CS_fsm = ap_NS_fsm.read(); } if ( ap_rst.read() == ap_const_logic_1) { ap_done_reg = ap_const_logic_0; } else { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_continue.read())) { ap_done_reg = ap_const_logic_0; } else if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { ap_done_reg = ap_const_logic_1; } } if ( ap_rst.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter0 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_condition_pp0_exit_iter0_state3.read()) && esl_seteq<1,1,1>(ap_const_boolean_0, ap_block_pp0_stage0_subdone.read()))) { ap_enable_reg_pp0_iter0 = ap_const_logic_0; } else if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { ap_enable_reg_pp0_iter0 = ap_const_logic_1; } } if ( ap_rst.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter1 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_boolean_0, ap_block_pp0_stage0_subdone.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_condition_pp0_exit_iter0_state3.read()))) { ap_enable_reg_pp0_iter1 = (ap_condition_pp0_exit_iter0_state3.read() ^ ap_const_logic_1); } else if (esl_seteq<1,1,1>(ap_const_boolean_0, ap_block_pp0_stage0_subdone.read())) { ap_enable_reg_pp0_iter1 = ap_enable_reg_pp0_iter0.read(); } else if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { ap_enable_reg_pp0_iter1 = ap_const_logic_0; } } if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read())) { i_i_reg_90 = i_reg_199.read(); } else if ((!(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_cols_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_rows_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { i_i_reg_90 = ap_const_lv31_0; } if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { j_i_reg_101 = ap_const_lv31_0; } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_11001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter0.read(), ap_const_logic_1) && esl_seteq<1,1,1>(ap_const_lv1_1, tmp_33_i_fu_161_p2.read()))) { j_i_reg_101 = j_fu_166_p2.read(); } if ((!(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_cols_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_rows_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { cols_reg_190 = mat_cols_V_dout.read(); rows_reg_185 = mat_rows_V_dout.read(); } if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { i_reg_199 = i_fu_121_p2.read(); } if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { tmp_13_reg_204 = tmp_13_fu_151_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_11001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_1, tmp_33_i_fu_161_p2.read()))) { tmp_14_reg_218 = tmp_14_fu_176_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_11001.read(), ap_const_boolean_0))) { tmp_33_i_reg_209 = tmp_33_i_fu_161_p2.read(); } } void Mat2Array2D::thread_ap_CS_fsm_pp0_stage0() { ap_CS_fsm_pp0_stage0 = ap_CS_fsm.read()[2]; } void Mat2Array2D::thread_ap_CS_fsm_state1() { ap_CS_fsm_state1 = ap_CS_fsm.read()[0]; } void Mat2Array2D::thread_ap_CS_fsm_state2() { ap_CS_fsm_state2 = ap_CS_fsm.read()[1]; } void Mat2Array2D::thread_ap_CS_fsm_state5() { ap_CS_fsm_state5 = ap_CS_fsm.read()[3]; } void Mat2Array2D::thread_ap_block_pp0_stage0() { ap_block_pp0_stage0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void Mat2Array2D::thread_ap_block_pp0_stage0_11001() { ap_block_pp0_stage0_11001 = (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(tmp_33_i_reg_209.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_0, mat_data_stream_V_empty_n.read())); } void Mat2Array2D::thread_ap_block_pp0_stage0_subdone() { ap_block_pp0_stage0_subdone = (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(tmp_33_i_reg_209.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_0, mat_data_stream_V_empty_n.read())); } void Mat2Array2D::thread_ap_block_state1() { ap_block_state1 = (esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_cols_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_rows_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)); } void Mat2Array2D::thread_ap_block_state3_pp0_stage0_iter0() { ap_block_state3_pp0_stage0_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void Mat2Array2D::thread_ap_block_state4_pp0_stage0_iter1() { ap_block_state4_pp0_stage0_iter1 = (esl_seteq<1,1,1>(tmp_33_i_reg_209.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_const_logic_0, mat_data_stream_V_empty_n.read())); } void Mat2Array2D::thread_ap_condition_pp0_exit_iter0_state3() { if (esl_seteq<1,1,1>(tmp_33_i_fu_161_p2.read(), ap_const_lv1_0)) { ap_condition_pp0_exit_iter0_state3 = ap_const_logic_1; } else { ap_condition_pp0_exit_iter0_state3 = ap_const_logic_0; } } void Mat2Array2D::thread_ap_done() { if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { ap_done = ap_const_logic_1; } else { ap_done = ap_done_reg.read(); } } void Mat2Array2D::thread_ap_enable_pp0() { ap_enable_pp0 = (ap_idle_pp0.read() ^ ap_const_logic_1); } void Mat2Array2D::thread_ap_idle() { if ((esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { ap_idle = ap_const_logic_1; } else { ap_idle = ap_const_logic_0; } } void Mat2Array2D::thread_ap_idle_pp0() { if ((esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter1.read()))) { ap_idle_pp0 = ap_const_logic_1; } else { ap_idle_pp0 = ap_const_logic_0; } } void Mat2Array2D::thread_ap_ready() { if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { ap_ready = ap_const_logic_1; } else { ap_ready = ap_const_logic_0; } } void Mat2Array2D::thread_arr_val_address0() { arr_val_address0 = (sc_lv<17>) (tmp_14_cast_fu_181_p1.read()); } void Mat2Array2D::thread_arr_val_ce0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_11001.read(), ap_const_boolean_0))) { arr_val_ce0 = ap_const_logic_1; } else { arr_val_ce0 = ap_const_logic_0; } } void Mat2Array2D::thread_arr_val_d0() { arr_val_d0 = mat_data_stream_V_dout.read(); } void Mat2Array2D::thread_arr_val_we0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(tmp_33_i_reg_209.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_block_pp0_stage0_11001.read(), ap_const_boolean_0))) { arr_val_we0 = ap_const_logic_1; } else { arr_val_we0 = ap_const_logic_0; } } void Mat2Array2D::thread_i_cast_i_fu_112_p1() { i_cast_i_fu_112_p1 = esl_zext<32,31>(i_i_reg_90.read()); } void Mat2Array2D::thread_i_fu_121_p2() { i_fu_121_p2 = (!i_i_reg_90.read().is_01() || !ap_const_lv31_1.is_01())? sc_lv<31>(): (sc_biguint<31>(i_i_reg_90.read()) + sc_biguint<31>(ap_const_lv31_1)); } void Mat2Array2D::thread_j_cast_i_fu_157_p1() { j_cast_i_fu_157_p1 = esl_zext<32,31>(j_i_reg_101.read()); } void Mat2Array2D::thread_j_fu_166_p2() { j_fu_166_p2 = (!j_i_reg_101.read().is_01() || !ap_const_lv31_1.is_01())? sc_lv<31>(): (sc_biguint<31>(j_i_reg_101.read()) + sc_biguint<31>(ap_const_lv31_1)); } void Mat2Array2D::thread_mat_cols_V_blk_n() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && !(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)))) { mat_cols_V_blk_n = mat_cols_V_empty_n.read(); } else { mat_cols_V_blk_n = ap_const_logic_1; } } void Mat2Array2D::thread_mat_cols_V_read() { if ((!(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_cols_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_rows_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { mat_cols_V_read = ap_const_logic_1; } else { mat_cols_V_read = ap_const_logic_0; } } void Mat2Array2D::thread_mat_data_stream_V_blk_n() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(tmp_33_i_reg_209.read(), ap_const_lv1_1))) { mat_data_stream_V_blk_n = mat_data_stream_V_empty_n.read(); } else { mat_data_stream_V_blk_n = ap_const_logic_1; } } void Mat2Array2D::thread_mat_data_stream_V_read() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(tmp_33_i_reg_209.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_block_pp0_stage0_11001.read(), ap_const_boolean_0))) { mat_data_stream_V_read = ap_const_logic_1; } else { mat_data_stream_V_read = ap_const_logic_0; } } void Mat2Array2D::thread_mat_rows_V_blk_n() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && !(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)))) { mat_rows_V_blk_n = mat_rows_V_empty_n.read(); } else { mat_rows_V_blk_n = ap_const_logic_1; } } void Mat2Array2D::thread_mat_rows_V_read() { if ((!(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_cols_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_rows_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { mat_rows_V_read = ap_const_logic_1; } else { mat_rows_V_read = ap_const_logic_0; } } void Mat2Array2D::thread_p_shl1_cast_fu_143_p3() { p_shl1_cast_fu_143_p3 = esl_concat<12,6>(tmp_44_fu_139_p1.read(), ap_const_lv6_0); } void Mat2Array2D::thread_p_shl_cast_fu_131_p3() { p_shl_cast_fu_131_p3 = esl_concat<10,8>(tmp_fu_127_p1.read(), ap_const_lv8_0); } void Mat2Array2D::thread_tmp_13_fu_151_p2() { tmp_13_fu_151_p2 = (!p_shl_cast_fu_131_p3.read().is_01() || !p_shl1_cast_fu_143_p3.read().is_01())? sc_lv<18>(): (sc_biguint<18>(p_shl_cast_fu_131_p3.read()) + sc_biguint<18>(p_shl1_cast_fu_143_p3.read())); } void Mat2Array2D::thread_tmp_14_cast_fu_181_p1() { tmp_14_cast_fu_181_p1 = esl_zext<64,18>(tmp_14_reg_218.read()); } void Mat2Array2D::thread_tmp_14_fu_176_p2() { tmp_14_fu_176_p2 = (!tmp_13_reg_204.read().is_01() || !tmp_46_fu_172_p1.read().is_01())? sc_lv<18>(): (sc_biguint<18>(tmp_13_reg_204.read()) + sc_biguint<18>(tmp_46_fu_172_p1.read())); } void Mat2Array2D::thread_tmp_33_i_fu_161_p2() { tmp_33_i_fu_161_p2 = (!j_cast_i_fu_157_p1.read().is_01() || !cols_reg_190.read().is_01())? sc_lv<1>(): (sc_bigint<32>(j_cast_i_fu_157_p1.read()) < sc_bigint<32>(cols_reg_190.read())); } void Mat2Array2D::thread_tmp_44_fu_139_p1() { tmp_44_fu_139_p1 = i_i_reg_90.read().range(12-1, 0); } void Mat2Array2D::thread_tmp_46_fu_172_p1() { tmp_46_fu_172_p1 = j_i_reg_101.read().range(18-1, 0); } void Mat2Array2D::thread_tmp_fu_127_p1() { tmp_fu_127_p1 = i_i_reg_90.read().range(10-1, 0); } void Mat2Array2D::thread_tmp_i_fu_116_p2() { tmp_i_fu_116_p2 = (!i_cast_i_fu_112_p1.read().is_01() || !rows_reg_185.read().is_01())? sc_lv<1>(): (sc_bigint<32>(i_cast_i_fu_112_p1.read()) < sc_bigint<32>(rows_reg_185.read())); } void Mat2Array2D::thread_ap_NS_fsm() { switch (ap_CS_fsm.read().to_uint64()) { case 1 : if ((!(esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_cols_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(mat_rows_V_empty_n.read(), ap_const_logic_0) || esl_seteq<1,1,1>(ap_done_reg.read(), ap_const_logic_1)) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { ap_NS_fsm = ap_ST_fsm_state2; } else { ap_NS_fsm = ap_ST_fsm_state1; } break; case 2 : if ((esl_seteq<1,1,1>(tmp_i_fu_116_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()))) { ap_NS_fsm = ap_ST_fsm_state1; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage0; } break; case 4 : if (!(esl_seteq<1,1,1>(tmp_33_i_fu_161_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter0.read(), ap_const_logic_1) && esl_seteq<1,1,1>(ap_const_boolean_0, ap_block_pp0_stage0_subdone.read()))) { ap_NS_fsm = ap_ST_fsm_pp0_stage0; } else if ((esl_seteq<1,1,1>(tmp_33_i_fu_161_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter0.read(), ap_const_logic_1) && esl_seteq<1,1,1>(ap_const_boolean_0, ap_block_pp0_stage0_subdone.read()))) { ap_NS_fsm = ap_ST_fsm_state5; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage0; } break; case 8 : ap_NS_fsm = ap_ST_fsm_state2; break; default : ap_NS_fsm = "XXXX"; break; } } }
4764ffc5bbaf31c46b5744709e4bd34ea1003740
cd5ebce7962024d3d0ecf07e6668ee6972edc74a
/deps/arrow-0.17.1/cpp/src/arrow/compute/kernels/sum_internal.h
302d004e399ffe0afdbcc76a67900440519c241c
[ "Apache-2.0", "MIT", "BSD-3-Clause", "BSD-2-Clause", "ZPL-2.1", "BSL-1.0", "LicenseRef-scancode-public-domain", "CC-BY-3.0", "NTP", "LicenseRef-scancode-unknown-license-reference", "OpenSSL", "Zlib", "CC-BY-4.0", "LicenseRef-scancode-protobuf", "NCSA", "JSON", "CC0-1.0" ]
permissive
snowflakedb/libsnowflakeclient
890777b09e0445787022bbf23a9e7318933d4e7a
22a4b14c1f8014a76f91971fffe611246c0eeb86
refs/heads/master
2023-08-18T00:49:45.030170
2023-08-18T00:37:12
2023-08-18T00:37:12
118,542,136
18
34
Apache-2.0
2023-09-12T23:33:23
2018-01-23T01:53:43
C
UTF-8
C++
false
false
6,873
h
sum_internal.h
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. #pragma once #include <memory> #include <type_traits> #include "arrow/compute/kernel.h" #include "arrow/compute/kernels/aggregate.h" #include "arrow/status.h" #include "arrow/type.h" #include "arrow/type_traits.h" #include "arrow/util/bit_util.h" #include "arrow/util/logging.h" namespace arrow { class Array; class DataType; namespace compute { // Find the largest compatible primitive type for a primitive type. template <typename I, typename Enable = void> struct FindAccumulatorType {}; template <typename I> struct FindAccumulatorType<I, enable_if_signed_integer<I>> { using Type = Int64Type; }; template <typename I> struct FindAccumulatorType<I, enable_if_unsigned_integer<I>> { using Type = UInt64Type; }; template <typename I> struct FindAccumulatorType<I, enable_if_floating_point<I>> { using Type = DoubleType; }; template <typename ArrowType, typename StateType> class SumAggregateFunction final : public AggregateFunctionStaticState<StateType> { using CType = typename TypeTraits<ArrowType>::CType; using ArrayType = typename TypeTraits<ArrowType>::ArrayType; // A small number of elements rounded to the next cacheline. This should // amount to a maximum of 4 cachelines when dealing with 8 bytes elements. static constexpr int64_t kTinyThreshold = 32; static_assert(kTinyThreshold >= (2 * CHAR_BIT) + 1, "ConsumeSparse requires 3 bytes of null bitmap, and 17 is the" "required minimum number of bits/elements to cover 3 bytes."); public: Status Consume(const Array& input, StateType* state) const override { const ArrayType& array = static_cast<const ArrayType&>(input); if (input.null_count() == 0) { *state = ConsumeDense(array); } else if (input.length() <= kTinyThreshold) { // In order to simplify ConsumeSparse implementation (requires at least 3 // bytes of bitmap data), small arrays are handled differently. *state = ConsumeTiny(array); } else { *state = ConsumeSparse(array); } return Status::OK(); } Status Merge(const StateType& src, StateType* dst) const override { *dst += src; return Status::OK(); } Status Finalize(const StateType& src, Datum* output) const override { *output = src.Finalize(); return Status::OK(); } std::shared_ptr<DataType> out_type() const override { return StateType::out_type(); } private: StateType ConsumeDense(const ArrayType& array) const { StateType local; const auto values = array.raw_values(); const int64_t length = array.length(); for (int64_t i = 0; i < length; i++) { local.sum += values[i]; } local.count = length; return local; } StateType ConsumeTiny(const ArrayType& array) const { StateType local; internal::BitmapReader reader(array.null_bitmap_data(), array.offset(), array.length()); const auto values = array.raw_values(); for (int64_t i = 0; i < array.length(); i++) { if (reader.IsSet()) { local.sum += values[i]; local.count++; } reader.Next(); } return local; } // While this is not branchless, gcc needs this to be in a different function // for it to generate cmov which ends to be slightly faster than // multiplication but safe for handling NaN with doubles. inline CType MaskedValue(bool valid, CType value) const { return valid ? value : 0; } inline StateType UnrolledSum(uint8_t bits, const CType* values) const { StateType local; if (bits < 0xFF) { // Some nulls for (size_t i = 0; i < 8; i++) { local.sum += MaskedValue(bits & (1U << i), values[i]); } local.count += BitUtil::kBytePopcount[bits]; } else { // No nulls for (size_t i = 0; i < 8; i++) { local.sum += values[i]; } local.count += 8; } return local; } StateType ConsumeSparse(const ArrayType& array) const { StateType local; // Sliced bitmaps on non-byte positions induce problem with the branchless // unrolled technique. Thus extra padding is added on both left and right // side of the slice such that both ends are byte-aligned. The first and // last bitmap are properly masked to ignore extra values induced by // padding. // // The execution is divided in 3 sections. // // 1. Compute the sum of the first masked byte. // 2. Compute the sum of the middle bytes // 3. Compute the sum of the last masked byte. const int64_t length = array.length(); const int64_t offset = array.offset(); // The number of bytes covering the range, this includes partial bytes. // This number bounded by `<= (length / 8) + 2`, e.g. a possible extra byte // on the left, and on the right. const int64_t covering_bytes = BitUtil::CoveringBytes(offset, length); DCHECK_GE(covering_bytes, 3); // Align values to the first batch of 8 elements. Note that raw_values() is // already adjusted with the offset, thus we rewind a little to align to // the closest 8-batch offset. const auto values = array.raw_values() - (offset % 8); // Align bitmap at the first consumable byte. const auto bitmap = array.null_bitmap_data() + BitUtil::RoundDown(offset, 8) / 8; // Consume the first (potentially partial) byte. const uint8_t first_mask = BitUtil::kTrailingBitmask[offset % 8]; local += UnrolledSum(bitmap[0] & first_mask, values); // Consume the (full) middle bytes. The loop iterates in unit of // batches of 8 values and 1 byte of bitmap. for (int64_t i = 1; i < covering_bytes - 1; i++) { local += UnrolledSum(bitmap[i], &values[i * 8]); } // Consume the last (potentially partial) byte. const int64_t last_idx = covering_bytes - 1; const uint8_t last_mask = BitUtil::kPrecedingWrappingBitmask[(offset + length) % 8]; local += UnrolledSum(bitmap[last_idx] & last_mask, &values[last_idx * 8]); return local; } }; // namespace compute } // namespace compute } // namespace arrow
cccb2fa3277ad360e9427766b70a30e2cf76eed6
6e4b0cdbf68933b73e5be91a27c2dd6ee7e613f9
/programming/Cylinder2d.cpp
417a266cdc1493c5a7e663a8571829e5fe576873
[]
no_license
DanielLC/Manifold
0c34afb178e96c8401e71dba989b80c4a689fd68
5c2af1f8f3719294e236c24780cc4e0e7c1e161c
refs/heads/master
2020-06-01T16:32:04.051039
2014-10-20T05:58:46
2014-10-20T05:58:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,096
cpp
Cylinder2d.cpp
#include <tr1/array> #include <tr1/memory> #include <iostream> #include "Cylinder2d.h" #include <Eigen/Dense> #include <utility> using Eigen::Vector2d; Cylinder2d::Point::Point() { } Cylinder2d::Point::Point(double t, double thetak) { coordinates[0] = t; coordinates[1] = thetak; } double Cylinder2d::Point::getT(){ return coordinates[0]; } double Cylinder2d::Point::getThetaK(){ return coordinates[1]; } std::tr1::array<double,2> Cylinder2d::Point::getCoordinates(){ return coordinates; } Vector2d Cylinder2d::Point::vectorFromPoint(Cylinder2d::Point point) { return Vector2d(point.coordinates[0] - coordinates[0], point.coordinates[1] - coordinates[1]); } Cylinder2d::Point Cylinder2d::Point::pointFromVector(Vector2d z) { return Cylinder2d::Point(coordinates[0] + z[0], coordinates[1] + z[1]); } void Cylinder2d::Point::setCoordinates(double t, double thetak) { coordinates[0] = t; coordinates[1] = thetak; } std::pair<Cylinder2d::Point, double> Cylinder2d::Point::pointAndRotFromVector(Vector2d z) { return std::pair<Cylinder2d::Point, double>(pointFromVector(z), 0.); }
30602bfb1c56d3758738cb530ddc8220e4f50a79
dbb02b6d95203441a6ca8f441d4eb81f044b5b11
/Sorting/QuickSort.cpp
cf577ac38a9e035cb63c97403745f52bcf41fe7e
[ "MIT" ]
permissive
nabil0day/Algorithms
18d8ad4d951f556f146888e360eb59048c7c9f5f
d9ed5b9c6a56ec4565f185aa6cbbb51c6dabd6d7
refs/heads/main
2023-08-15T19:22:09.630957
2021-10-11T13:35:11
2021-10-11T13:35:11
410,012,566
5
0
null
null
null
null
UTF-8
C++
false
false
682
cpp
QuickSort.cpp
// Quick Sort #include<bits/stdc++.h> using namespace std; int part(int *a, int m, int n) { int i,j,ind,x; ind = m; x = a[n]; for(i=m;i<n;i++) { if(a[i] <= x) { swap(a[ind], a[i]); ind++; } } swap(a[ind], a[n]); return ind; } int quicksort(int *a, int m, int n) { int index; if(m>=n) return 0; { index = part(a,m,n); quicksort(a, m, index-1); quicksort(a, index+1, n); return 0; } } int main() { int a[] = {7,2,1,6,8,5,3,4}; int i; quicksort(a,0,7); cout <<"After Sorting :\n"; for(i=0;i<8;i++) cout <<a[i] <<"\n"; }
ddcf21eccf33bd9e2c77535628ef1303b7ede1e5
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/base/cluster/mgmt/cluscfg/postcfg/restypemajoritynodeset.cpp
877f5fc7626e277028ba895145aff0357fb348bf
[]
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
19,346
cpp
restypemajoritynodeset.cpp
////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000-2001 Microsoft Corporation // // Module Name: // ResTypeMajorityNodeSet.cpp // // Description: // This file contains the implementation of the CResTypeMajorityNodeSet // class. // // Documentation: // TODO: fill in pointer to external documentation // // Header File: // CResTypeMajorityNodeSet.h // // Maintained By: // Galen Barbee (Galen) 15-JUL-2000 // ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // Include Files ////////////////////////////////////////////////////////////////////////////// // The precompiled header for this library #include "pch.h" // For CLUS_RESTYPE_NAME_MAJORITYNODESET #include <clusudef.h> // For NetShareDel() #include <lmshare.h> // The header file for this class #include "ResTypeMajorityNodeSet.h" // For DwRemoveDirectory() #include "Common.h" // For the smart resource handle and pointer templates #include "SmartClasses.h" ////////////////////////////////////////////////////////////////////////////// // Macro Definitions ////////////////////////////////////////////////////////////////////////////// DEFINE_THISCLASS( "CResTypeMajorityNodeSet" ); #define MAJORITY_NODE_SET_DIR_WILDCARD L"\\" MAJORITY_NODE_SET_DIRECTORY_PREFIX L"*" ////////////////////////////////////////////////////////////////////////////// // Global Variable Definitions ////////////////////////////////////////////////////////////////////////////// // Clsid of the admin extension for the majority node set resource type DEFINE_GUID( CLSID_CoCluAdmEx, 0x4EC90FB0, 0xD0BB, 0x11CF, 0xB5, 0xEF, 0x00, 0xA0, 0xC9, 0x0A, 0xB5, 0x05 ); ////////////////////////////////////////////////////////////////////////////// // Class Variable Definitions ////////////////////////////////////////////////////////////////////////////// // Structure containing information about this resource type. const SResourceTypeInfo CResTypeMajorityNodeSet::ms_rtiResTypeInfo = { &CLSID_ClusCfgResTypeMajorityNodeSet , CLUS_RESTYPE_NAME_MAJORITYNODESET , IDS_MAJORITYNODESET_DISPLAY_NAME , L"clusres.dll" , 5000 , 60000 , NULL , 0 , &RESTYPE_MajorityNodeSet , &TASKID_Minor_Configuring_Majority_Node_Set_Resource_Type }; ////////////////////////////////////////////////////////////////////////////// //++ // // CResTypeMajorityNodeSet::S_HrCreateInstance // // Description: // Creates a CResTypeMajorityNodeSet instance. // // Arguments: // ppunkOut // The IUnknown interface of the new object. // // Return Values: // S_OK // Success. // // E_OUTOFMEMORY // Not enough memory to create the object. // // other HRESULTs // Object initialization failed. // //-- ////////////////////////////////////////////////////////////////////////////// HRESULT CResTypeMajorityNodeSet::S_HrCreateInstance( IUnknown ** ppunkOut ) { TraceFunc( "" ); HRESULT hr = S_OK; CResTypeMajorityNodeSet * prtmns = NULL; Assert( ppunkOut != NULL ); if ( ppunkOut == NULL ) { hr = THR( E_POINTER ); goto Cleanup; } // Allocate memory for the new object. prtmns = new CResTypeMajorityNodeSet(); if ( prtmns == NULL ) { hr = THR( E_OUTOFMEMORY ); goto Cleanup; } // if: out of memory hr = THR( BaseClass::S_HrCreateInstance( prtmns, &ms_rtiResTypeInfo, ppunkOut ) ); if ( FAILED ( hr ) ) { goto Cleanup; } prtmns = NULL; Cleanup: delete prtmns; HRETURN( hr ); } //*** CResTypeMajorityNodeSet::S_HrCreateInstance() ////////////////////////////////////////////////////////////////////////////// //++ // // CResTypeMajorityNodeSet::S_RegisterCatIDSupport // // Description: // Registers/unregisters this class with the categories that it belongs // to. // // Arguments: // picrIn // Pointer to an ICatRegister interface to be used for the // registration. // // Return Values: // S_OK // Success. // // other HRESULTs // Registration/Unregistration failed. // //-- ////////////////////////////////////////////////////////////////////////////// HRESULT CResTypeMajorityNodeSet::S_RegisterCatIDSupport( ICatRegister * picrIn, BOOL fCreateIn ) { TraceFunc( "" ); HRESULT hr = THR( BaseClass::S_RegisterCatIDSupport( *( ms_rtiResTypeInfo.m_pcguidClassId ) , picrIn , fCreateIn ) ); HRETURN( hr ); } //*** CResTypeMajorityNodeSet::S_RegisterCatIDSupport ////////////////////////////////////////////////////////////////////////////// //++ // // CResTypeMajorityNodeSet::HrProcessCleanup // // Description: // Cleans up the shares created by majority node set resource types on this node // during node eviction. // // Arguments: // punkResTypeServicesIn // Pointer to the IUnknown interface of a component that provides // methods that help configuring a resource type. For example, // during a join or a form, this punk can be queried for the // IClusCfgResourceTypeCreate interface, which provides methods // for resource type creation. // // Return Values: // S_OK // Success // // other HRESULTs // Cleanup failed // //-- ////////////////////////////////////////////////////////////////////////////// HRESULT CResTypeMajorityNodeSet::HrProcessCleanup( IUnknown * punkResTypeServicesIn ) { TraceFunc( "" ); HRESULT hr = S_OK; typedef CSmartResource< CHandleTrait< HANDLE , BOOL , FindClose , INVALID_HANDLE_VALUE > > SmartFindFileHandle; typedef CSmartResource< CHandleTrait< HKEY, LONG, RegCloseKey, NULL > > SmartRegistryKey; typedef CSmartGenericPtr< CPtrTrait< WCHAR > > SmartSz; WIN32_FIND_DATA wfdCurFile; SmartRegistryKey srkNodeDataKey; LPWSTR pszMNSDirsWildcard = NULL; DWORD cbBufferSize = 0; size_t cchBufferSize = 0; DWORD dwType = REG_SZ; DWORD sc = ERROR_SUCCESS; size_t cchClusterDirNameLen = 0; { HKEY hTempKey = NULL; // Open the node data registry key sc = TW32( RegOpenKeyEx( HKEY_LOCAL_MACHINE , CLUSREG_KEYNAME_NODE_DATA , 0 , KEY_READ , &hTempKey ) ); if ( sc != ERROR_SUCCESS ) { hr = HRESULT_FROM_WIN32( sc ); LogMsg( "[PC] Error %#08x occurred trying open the registry key where the cluster install path is stored.", hr ); STATUS_REPORT_POSTCFG( TASKID_Major_Configure_Resources , TASKID_Minor_CResTypeMajorityNodeSet_HrProcessCleanup_OpenRegistry , IDS_TASKID_MINOR_ERROR_OPEN_REGISTRY , hr ); goto Cleanup; } // if: RegOpenKeyEx() failed // Store the opened key in a smart pointer for automatic close. srkNodeDataKey.Assign( hTempKey ); } // Get the required size of the buffer. sc = TW32( RegQueryValueExW( srkNodeDataKey.HHandle() // handle to key to query , CLUSREG_INSTALL_DIR_VALUE_NAME // name of value to query , 0 // reserved , NULL // address of buffer for value type , NULL // address of data buffer , &cbBufferSize // address of data buffer size ) ); if ( sc != ERROR_SUCCESS ) { hr = HRESULT_FROM_WIN32 ( sc ); LogMsg( "[PC] Error %#08x occurred trying to read the registry value '%s'.", hr, CLUSREG_INSTALL_DIR_VALUE_NAME ); STATUS_REPORT_POSTCFG( TASKID_Major_Configure_Resources , TASKID_Minor_CResTypeMajorityNodeSet_HrProcessCleanup_ReadRegistry , IDS_TASKID_MINOR_ERROR_READ_REGISTRY , hr ); goto Cleanup; } // if: an error occurred trying to read the CLUSREG_INSTALL_DIR_VALUE_NAME registry value // Account for the L"\\MNS.*". Add an extra character for double-termination (paranoid about MULTI_SZ). cbBufferSize += sizeof( MAJORITY_NODE_SET_DIR_WILDCARD ) + sizeof( WCHAR ); cchBufferSize = cbBufferSize / sizeof( WCHAR ); // Allocate the required buffer. pszMNSDirsWildcard = new WCHAR[ cchBufferSize ]; if ( pszMNSDirsWildcard == NULL ) { LogMsg( "[PC] An error occurred trying to allocate %d bytes of memory.", cbBufferSize ); hr = HRESULT_FROM_WIN32 ( TW32( ERROR_NOT_ENOUGH_MEMORY ) ); STATUS_REPORT_POSTCFG( TASKID_Major_Configure_Resources , TASKID_Minor_CResTypeMajorityNodeSet_HrProcessCleanup_AllocateMem , IDS_TASKID_MINOR_ERROR_OUT_OF_MEMORY , hr ); goto Cleanup; } // if: a memory allocation failure occurred // Read the value. sc = TW32( RegQueryValueExW( srkNodeDataKey.HHandle() // handle to key to query , CLUSREG_INSTALL_DIR_VALUE_NAME // name of value to query , 0 // reserved , &dwType // address of buffer for value type , reinterpret_cast< LPBYTE >( pszMNSDirsWildcard ) // address of data buffer , &cbBufferSize // address of data buffer size ) ); // Make sure the value is double terminated - ReqQueryValueEx doesn't terminate // it if the data wasn't set with a null. Double terminate because of MULTI_SZ (paranoid). pszMNSDirsWildcard[ cchBufferSize - 2 ] = L'\0'; pszMNSDirsWildcard[ cchBufferSize - 1 ] = L'\0'; // Was the key read properly? if ( sc != ERROR_SUCCESS ) { hr = HRESULT_FROM_WIN32 ( sc ); LogMsg( "[PC] Error %#08x occurred trying to read the registry value '%s'.", hr, CLUSREG_INSTALL_DIR_VALUE_NAME ); STATUS_REPORT_POSTCFG( TASKID_Major_Configure_Resources , TASKID_Minor_CResTypeMajorityNodeSet_HrProcessCleanup_ReadRegistry2 , IDS_TASKID_MINOR_ERROR_READ_REGISTRY , hr ); goto Cleanup; } // if: RegQueryValueExW failed. // Store the length of the cluster install directory name for later use. // We're not using strsafe here because we made sure the string was terminated above. cchClusterDirNameLen = (DWORD) wcslen( pszMNSDirsWildcard ); // Append "\\MNS.*" to the cluster directory name to get the wildcard for the majority node set directories. hr = STHR( StringCchCatW( pszMNSDirsWildcard , cchBufferSize , MAJORITY_NODE_SET_DIR_WILDCARD ) ); TraceFlow1( "The wildcard for the majority node set directories is '%s'.\n", pszMNSDirsWildcard ); { SmartFindFileHandle sffhFindFileHandle( FindFirstFile( pszMNSDirsWildcard, &wfdCurFile ) ); if ( sffhFindFileHandle.FIsInvalid() ) { sc = GetLastError(); if ( sc == ERROR_FILE_NOT_FOUND ) { HRESULT hrTemp = MAKE_HRESULT( SEVERITY_SUCCESS, FACILITY_WIN32, HRESULT_CODE( sc ) ); LogMsg( "[PC] No files or directories match the search criterion '%ws'.", pszMNSDirsWildcard ); STATUS_REPORT_POSTCFG( TASKID_Major_Configure_Resources , TASKID_Minor_CResTypeMajorityNodeSet_HrProcessCleanup_MatchCriterion , IDS_TASKID_MINOR_ERROR_MATCH_CRITERION , hrTemp ); hr = S_OK; goto Cleanup; } else { TW32( sc ); hr = HRESULT_FROM_WIN32( sc ); LogMsg( "[PC] Error %#08x. Find first file failed for '%ws'.", hr, pszMNSDirsWildcard ); STATUS_REPORT_POSTCFG( TASKID_Major_Configure_Resources , TASKID_Minor_CResTypeMajorityNodeSet_HrProcessCleanup_FindFile , IDS_TASKID_MINOR_ERROR_FIND_FILE , hr ); goto Cleanup; } // else: something else went wrong } // if: FindFirstFile failed. // We no longer need to have the wildcard string at the end of the cluster install directory. // So, remove it and reuse this buffer that contains the cluster install directory. pszMNSDirsWildcard[ cchClusterDirNameLen ] = L'\0'; do { // If the current file is a directory, delete it. if ( ( wfdCurFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) != 0 ) { LPWSTR pszDirName = NULL; TraceFlow1( "Trying to delete Majority Node Set directory '%s'.", wfdCurFile.cFileName ); // // First, stop sharing this directory out. // // Get a pointer to just the directory name - this is the same as the share name. pszDirName = wfdCurFile.cFileName + ARRAYSIZE( MAJORITY_NODE_SET_DIRECTORY_PREFIX ) - 1; sc = NetShareDel( NULL, pszDirName, 0 ); if ( sc != ERROR_SUCCESS ) { TW32( sc ); LogMsg( "[PC] Error %#08x occurred trying to delete the share '%s'. This is not a fatal error.", sc, pszDirName ); // Mask this error and continue with the next directory sc = ERROR_SUCCESS; } // if: we could not delete this share else { LPWSTR pszMNSDir = NULL; size_t cchMNSDirPathLen = 0; // Length of directory name, filenme, a backslash to separate them, and a NULL. cchMNSDirPathLen = cchClusterDirNameLen + wcslen( wfdCurFile.cFileName ) + 2; // // Get the full path of the directory. // pszMNSDir = new WCHAR[ cchMNSDirPathLen ]; if ( pszMNSDir == NULL ) { hr = HRESULT_FROM_WIN32 ( TW32( ERROR_NOT_ENOUGH_MEMORY ) ); LogMsg( "[PC] An error occurred trying to allocate memory for %d characters.", cchMNSDirPathLen ); STATUS_REPORT_MINOR_POSTCFG( TASKID_Major_Configure_Resources , IDS_TASKID_MINOR_ERROR_OUT_OF_MEMORY , hr ); break; } // if: a memory allocation failure occurred // cchMNSDirPathLen is guaranteed to be larger than cchClusterDirNameLen // This is guaranteed to work. hr = THR( StringCchCopyNW( pszMNSDir, cchMNSDirPathLen, pszMNSDirsWildcard, cchClusterDirNameLen ) ); if ( FAILED( hr ) ) { goto Cleanup; } // if: // Append the slash to separate the path and filename. hr = THR( StringCchCatW( pszMNSDir, cchMNSDirPathLen, L"\\" ) ); if ( FAILED( hr ) ) { goto Cleanup; } // if: // This is also guaranteed to work - pszMNSDir was calculated based on the lengths of these strings. hr = THR( StringCchCatW( pszMNSDir, cchMNSDirPathLen, wfdCurFile.cFileName ) ); if ( FAILED( hr ) ) { goto Cleanup; } // if: // Now delete the directory sc = DwRemoveDirectory( pszMNSDir ); if ( sc != ERROR_SUCCESS ) { TW32( sc ); LogMsg( "[PC] Error %#08x occurred trying to delete the dirctory '%s'. This is not a fatal error.", sc, pszMNSDir ); // Mask this error and continue with the next directory sc = ERROR_SUCCESS; } // if: we could not delete this share else { LogMsg( "[PC] Successfully deleted directory '%s'.", pszMNSDir ); } // else: success! // Cleanup local variables. delete [] pszMNSDir; pszMNSDir = NULL; } // else: we have deleted this share } // if: the current file is a directory if ( FindNextFile( sffhFindFileHandle.HHandle(), &wfdCurFile ) == FALSE ) { sc = GetLastError(); if ( sc == ERROR_NO_MORE_FILES ) { // We have deleted all the files in this directory. sc = ERROR_SUCCESS; } else { LogMsg( "[PC] Error %#08x. Find next file failed for '%ws'.", sc, wfdCurFile.cFileName ); TW32( sc ); hr = HRESULT_FROM_WIN32( sc ); } // If FindNextFile has failed, we are done. break; } // if: FindNextFile fails. } while( true ); // loop infinitely. } if ( sc != ERROR_SUCCESS ) { hr = HRESULT_FROM_WIN32( sc ); goto Cleanup; } // if: something has gone wrong up there // If what we wanted to do in this function was successful, call the base class function. hr = THR( BaseClass::HrProcessCleanup( punkResTypeServicesIn ) ); if ( FAILED( hr ) ) { goto Cleanup; } Cleanup: delete [] pszMNSDirsWildcard; HRETURN( hr ); } //*** CResTypeMajorityNodeSet::HrProcessCleanup
f95339fb9ef44485275b69abfad0bb3b3b05fb00
84c9a578accb977f3a0e13ada5e25cb4728e7818
/dsd.cpp
c621d753544d6eeac4cf61620293cc0471725a3c
[]
no_license
trungcpag/c
2475b6272492c11086fe666ff149f8403ed1e2b6
b3f0701b54ae5b9911d55fbbd94cb63b4218f3e8
refs/heads/main
2023-03-10T09:44:28.771753
2021-02-21T09:27:28
2021-02-21T09:27:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,367
cpp
dsd.cpp
#include <bits/stdc++.h> using namespace std; #define MaxLength 100 typedef int ElementType; typedef int Position; typedef struct { ElementType Elements[MaxLength]; Position Last; } List; // & khai bao tham so tham chieu void MakeNull_List(List& L){ L.Last = 0; } int Empty_List(List L){ return L.Last == 0; } void Insert_List(ElementType x, Position p, List& L){ if(L.Last == MaxLength){ printf("full-Array"); }else{ if(L.Last + 1 < p || p < 1){ printf("outscope"); }else{ Position q; for(int q = L.Last; q > p -1; q-- ){ L.Elements[q] = L.Elements[q-1]; } L.Elements[p-1] = x; L.Last++; } } } void Delete_List(Position p, List& L){ if(L.Last + 1 < p || p < 1){ printf("outscope"); }else{ for(Position start = p -1 ; start < L.Last; start++){ L.Elements[start] = L.Elements[start+1]; } L.Last--; } } void Print_List(List& L){ for(int i = 0; i < L.Last; i++){ printf("%d ", L.Elements[i]); } } int End_List(List L){ return L.Last + 1; } int Locate(ElementType x, List L){ for(Position p = 1; p < L.Last; p++){ if(L.Elements[p - 1] == x){ return p; } } return End_List(L); } int main(){ List L; MakeNull_List(L); Insert_List(1, 1,L); Insert_List(2, 2,L); Insert_List(3, 3,L); Insert_List(4, 4,L); Delete_List(4, L); Print_List(L); printf("\n %d",Locate(1, L)); return 0; }
39879ec9f946cb401b4a2223459dbcc871bfd89e
2f6228c8e07c57d718c8094001f43f1e6a861e57
/viola_jones/src/utils/IntegralImage.h
360b03ba0ea9ffa81f713aea1d9f2cda625f70d9
[]
no_license
webstorage119/eFaceDetection
edee65fba1db610ccf7eaa5eaba29a5ba5d0dd25
736704f88766b9d94b159ec5f7701b6d03dcaf32
refs/heads/master
2022-04-01T21:00:40.042121
2020-01-30T07:43:21
2020-01-30T07:43:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
464
h
IntegralImage.h
/* * IntegralImage.h * * Created on: 21/mar/2016 * Author: lorenzocioni */ #ifndef INTEGRALIMAGE_H_ #define INTEGRALIMAGE_H_ #include <opencv2/core.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iostream> using namespace cv; class IntegralImage { public: static Mat computeIntegralImage(Mat img); static Mat computeIntegralSquaredImage(Mat img, float mean); static float computeArea(Mat intImg, Rect r); }; #endif /* INTEGRALIMAGE_H_ */
f9d1c58723ba0da597d0b45b1b08b32b89597a47
95cc96926131224df8a4fbbbef9dac79907f863a
/과제/pa7/성환/pa7_2.cpp
a0f5afd190a6f762287da1aca5ac2a819cb2c0d2
[]
no_license
pknunan/2020_problem_sovling
d875ff677c3b2429cc8d4352b206335f5957b1ed
04809b44f921b0943585b3faad75f713d78475a1
refs/heads/master
2021-04-17T15:25:01.295587
2020-06-04T08:26:15
2020-06-04T08:26:15
249,454,750
0
0
null
null
null
null
UHC
C++
false
false
736
cpp
pa7_2.cpp
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int n; scanf("%d", &n); int arr[1000]; for (int i = 0; i < n; i++) { scanf("%d", &arr[i]); } // 완전 탐색(이중 반복문) int maxLen = 0; for (int i = 0; i < n - 1; i++) { int len = 1; for (int j = i + 1; j < n; j++) { if (arr[j] >= arr[j - 1]) len++; else break; } if (len > maxLen) maxLen = len; } printf("%d\n", maxLen); // 다이나믹 프로그래밍(단일 반복문) maxLen = 0; int len[1000]; len[0] = 1; for (int i = 1; i < n; i++) { if (arr[i] >= arr[i - 1]) { len[i] = len[i - 1] + 1; if (len[i] > maxLen) maxLen = len[i]; } else len[i] = 1; } printf("%d\n", maxLen); return 0; }
3bd8c6af30f48e28031b1835bf46671b281ffca5
c3e538067cdf5b57fe2402dd8c3be6e87ab5d09d
/obl2/obl2/story_manager.h
37daca327966e90c104e1337ce793e631a1cfd11
[]
no_license
renzodgc/fing-compgraf2021
901191e7ae9c6a49c9d9ec35df4d175574aa6443
f59f1a4a9e5ba80dd110dfbb008303812d4cd953
refs/heads/main
2023-06-04T18:39:14.175639
2021-06-23T20:28:01
2021-06-23T20:28:01
354,966,895
0
1
null
null
null
null
UTF-8
C++
false
false
1,140
h
story_manager.h
#pragma once #ifndef STORY_MANAGER_H #define STORY_MANAGER_H // DEPENDENCIES // ----------------------------------------------------------------------------------- // C++ libraries #include <iostream> #include <string> #include <ctime> // Constants #include "routes.h" // Structures #include "image.h" // Helpers #include "file_helper.h" // CLASS DEFINITION // ----------------------------------------------------------------------------------- class Story { private: // Singleton Story(); // Main properties bool created; string current_directory; string current_directory_path; // Aux methods string get_current_time(); public: // Constructor and singleton method Story(Story const&) = delete; void operator=(Story const&) = delete; static Story& get_instance(); // Getters & Setters bool is_created(); // Main methods bool create_current_directory(); bool save_result(Image* result, ImageIs type); bool save_result(Image* result, string file_name); }; #endif #pragma once
2de13d43c36846a4154e8ac387965e33d7dcb772
f1c39bbeca35e576d56d5a85589349f268934788
/src/pmp/PointSet.cpp
67b87e0a982cd773a6dfd9cf0ba5c4e811faa6a5
[ "BSD-3-Clause" ]
permissive
choyfung/pmp-library
09317120fdee4321c01ab082e924a2e14211b962
4a72c918494dac92f5e77545b71c7a327dafe71e
refs/heads/master
2020-04-09T22:10:19.069803
2018-11-04T20:03:32
2018-11-04T20:03:32
160,621,641
1
1
null
2018-12-06T05:07:36
2018-12-06T05:07:36
null
UTF-8
C++
false
false
7,285
cpp
PointSet.cpp
//============================================================================= // Copyright (C) 2001-2005 by Computer Graphics Group, RWTH Aachen // Copyright (C) 2011-2017 The pmp-library developers // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, this // list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // * Neither the name of the copyright holder 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. //============================================================================= #include <pmp/PointSet.h> #include <pmp/io/PointSetIO.h> //============================================================================= namespace pmp { //============================================================================= PointSet::PointSet() : GeometryObject() { // allocate standard properties // same list is used in operator=() and assign() m_vpoint = addVertexProperty<Point>("v:point"); m_vdeleted = addVertexProperty<bool>("v:deleted", false); m_deletedVertices = 0; m_garbage = false; } //----------------------------------------------------------------------------- PointSet::~PointSet() = default; //----------------------------------------------------------------------------- PointSet& PointSet::operator=(const PointSet& rhs) { GeometryObject::operator=(rhs); if (this != &rhs) { // deep copy of property containers m_vprops = rhs.m_vprops; // property handles contain pointers, have to be reassigned m_vpoint = vertexProperty<Point>("v:point"); m_vdeleted = vertexProperty<bool>("v:deleted"); // how many elements are deleted? m_deletedVertices = rhs.m_deletedVertices; m_garbage = rhs.m_garbage; } return *this; } //----------------------------------------------------------------------------- PointSet& PointSet::assign(const PointSet& rhs) { GeometryObject::operator=(rhs); if (this != &rhs) { // clear properties m_vprops.clear(); // allocate standard properties m_vpoint = addVertexProperty<Point>("v:point"); m_vdeleted = addVertexProperty<bool>("v:deleted", false); // copy properties from other point set m_vpoint.array() = rhs.m_vpoint.array(); m_vdeleted.array() = rhs.m_vdeleted.array(); // resize (needed by property containers) m_vprops.resize(rhs.verticesSize()); // how many elements are deleted? m_deletedVertices = rhs.m_deletedVertices; m_garbage = rhs.m_garbage; } return *this; } //----------------------------------------------------------------------------- bool PointSet::read(const std::string& filename, const IOOptions& options) { PointSetIO reader(options); return reader.read(*this, filename); } //----------------------------------------------------------------------------- bool PointSet::write(const std::string& filename, const IOOptions& options) const { PointSetIO writer(options); return writer.write(*this, filename); } //----------------------------------------------------------------------------- void PointSet::clear() { m_vprops.resize(0); freeMemory(); m_deletedVertices = 0; m_garbage = false; GeometryObject::clear(); } //----------------------------------------------------------------------------- void PointSet::freeMemory() { m_vprops.freeMemory(); GeometryObject::freeMemory(); } //----------------------------------------------------------------------------- void PointSet::reserve(size_t nVertices) { GeometryObject::reserve(); m_vprops.reserve(nVertices); } //----------------------------------------------------------------------------- void PointSet::propertyStats() const { std::vector<std::string> props; std::cout << "point properties:\n"; props = vertexProperties(); for (const auto& prop : props) std::cout << "\t" << prop << std::endl; } //----------------------------------------------------------------------------- PointSet::Vertex PointSet::addVertex(const Point& p) { Vertex v = newVertex(); if (v.isValid()) m_vpoint[v] = p; return v; } //----------------------------------------------------------------------------- void PointSet::deleteVertex(Vertex v) { if (m_vdeleted[v]) return; // mark v as deleted m_vdeleted[v] = true; m_deletedVertices++; setGarbage(); } //----------------------------------------------------------------------------- void PointSet::beginGarbage() { int nV(verticesSize()); // setup handle mapping VertexProperty<Vertex> vmap = addVertexProperty<Vertex>("v:garbage-collection"); for (int i = 0; i < nV; ++i) vmap[Vertex(i)] = Vertex(i); // remove deleted vertices if (nV > 0) { int i0 = 0; int i1 = nV - 1; while (true) { // find first deleted and last un-deleted while (!isDeleted(Vertex(i0)) && i0 < i1) ++i0; while (isDeleted(Vertex(i1)) && i0 < i1) --i1; if (i0 >= i1) break; // swap m_vprops.swap(i0, i1); }; // remember new size nV = isDeleted(Vertex(i0)) ? i0 : i0 + 1; } m_garbageprops["nV"] = nV; } //----------------------------------------------------------------------------- void PointSet::finalizeGarbage() { VertexProperty<Vertex> vmap = getVertexProperty<Vertex>("v:garbage-collection"); // remove handle maps removeVertexProperty(vmap); // finally resize arrays m_vprops.resize(m_garbageprops["nV"]); m_vprops.freeMemory(); m_deletedVertices = 0; GeometryObject::finalizeGarbage(); } //============================================================================= } // namespace pmp //=============================================================================
13c873ed52b3623271bd2ecf1450c963329441f2
5bef53b0dc9539a4953919f75fde1f0ebd20e9fb
/CF/7D.cpp
b8a77600d0b6ad1d6a848178a81a9737c0fbf496
[]
no_license
atrin-hojjat/CompetetiveProgramingCodes
54c8b94092f7acf40d379e42e1f2c0fe8dab9b32
6a02071c3869b8e7cd873ddf7a3a2d678aec6d91
refs/heads/master
2020-11-25T10:51:23.200000
2020-10-08T11:12:09
2020-10-08T11:12:09
228,626,397
1
0
null
null
null
null
UTF-8
C++
false
false
4,523
cpp
7D.cpp
#include <bits/stdc++.h> using namespace std; namespace __hash__ { const int mds_cnt = 10; const int use_cnt = 2; const int base = 727; const int Maxx = 5e6 + 6.66; int mods[mds_cnt] = {1000000007, 1000000009, 1000000021, 1000000033, 1000000087, 1000000093, 1000000097, 1000000103, 1000000123, 1000000181}; int in_use[use_cnt]; bool initiated = false; bool initiated2 = false; void init() { if(initiated) return ; initiated = true; srand(time(0)); for(int i = 0; i < use_cnt; i++) { bool ok = false; while(!ok) { in_use[i] = rand() % mds_cnt; ok = true; for(int j = 0; j < i; j++) if(in_use[i] == in_use[j]) ok = false; } } for(int i = 0; i < use_cnt; i++) in_use[i] = mods[in_use[i]]; } struct Hash { int *num; Hash() { // init(); num = new int[use_cnt](); } Hash(long long x) { // init(); num = new int[use_cnt](); for(int i = 0; i < use_cnt; i++) num[i] = x % in_use[i]; } Hash(long long x, long long nx) { // init(); num = new int[use_cnt](); for(int i = 0; i < use_cnt; i++) { num[i] = x % in_use[i]; num[i] = (1ll * num[i] * base % in_use[i] + nx) % in_use[i]; } } Hash(string str) { // init(); num = new int[use_cnt](); for(auto ch : str) *this *= base, *this += (int) ch; } Hash& operator+=(Hash x) { for(int i = 0; i < use_cnt; i++) { num[i] = (num[i] + x.num[i]); if(num[i] >= in_use[i]) num[i] -= in_use[i]; } return *this; } Hash& operator-=(Hash x) { for(int i = 0; i < use_cnt; i++) { num[i] -= x.num[i]; if(num[i] < 0) num[i] += in_use[i]; } return *this; } Hash& operator*=(Hash x) { for(int i = 0; i < use_cnt; i++) num[i] = 1ll * num[i] * x.num[i] % in_use[i]; return *this; } Hash operator+(Hash y) { Hash w = *this; return w += y; } Hash operator-(Hash y) { Hash w = *this; return w -= y; } Hash operator*(Hash y) { Hash w = *this; return w *= y; } bool operator==(Hash y) { for(int i = 0; i < use_cnt; i++) if(y.num[i] != num[i]) return false; return true; } bool operator<(Hash y) const { for(int i = 0; i < use_cnt; i++) { if(y.num[i] == num[i]) continue; return num[i] < y.num[i]; } return false; } Hash pow(int exp) { Hash tmp = *this; Hash ret = 1; for(; exp; exp >>= 1, tmp *= tmp) if(exp & 1) { ret *= tmp; } return ret; } } ; int pow_base[Maxx]; void init2() { if(initiated2) return ; init(); initiated2 = true; pow_base[0] = 1; for(int i = 1; i < Maxx; i++) { pow_base[i] = 1ll * pow_base[i - 1] * base % in_use[0]; } } struct String { // vector<Hash> ss; int *ss; String() { } String(string str) { // init2(); ss = new int[str.size()](); //ss = vector<Hash>(str.size()); for(int i = 0; i < str.size(); i++) { if(i > 0) { ss[i] = 1ll * ss[i - 1] * base % in_use[0]; } ss[i] += (int) str[i]; if(ss[i] > in_use[0]) ss[i] -= in_use[0]; } } int get_substring(int l, int r) { // [l, r] int ret = ss[r]; if(l > 0) ret -= 1ll * ss[l - 1] * pow_base[r - l + 1] % in_use[0]; if(ret < 0) ret += in_use[0]; // if(l > 0) return ret -= ss[l - 1] * Hash(base).pow(r - l + 1); return ret; } }; }; const int MaxN = 5e6 + 6.66; int dp[MaxN]; int main() { ios::sync_with_stdio(false); cin.tie(NULL), cout.tie(NULL); string str; cin >> str; int n = str.size(); using namespace __hash__; init2(); String s1(str); reverse(str.begin(), str.end()); String s2(str); dp[1] = 1; for(int i = 2; i <= n; i++) { int x1, x2; if(i % 2) { // cout << n - i << " " << n - i/2 << endl; x1 = s1.get_substring(0,i / 2 - 1), x2 = s2.get_substring(n - i, n - 1 - (i + 1) / 2); if(x1 == x2) dp[i] = 1; } else { x1 = s1.get_substring(0,i / 2 - 1), x2 = s2.get_substring(n - i, n - 1 - i / 2); if(x1 == x2) dp[i] = 1; } // cout << i << " " << dp[i] << " " << x1 << " " << x2 << endl; if(dp[i]) dp[i] += dp[i / 2]; } long long ans = 0; for(int i = 0; i <= n; i++) ans += dp[i]; cout << ans << endl; return 0; }
01f483acd5205dc5261c6d757c4522ed3625a546
560b4adabd602cc8177dce8db16d6cf27c6b9798
/Plugins/NativeServerPlugin/src/directx_buffer_capturer.cpp
a492e9c40e0fb9c55b610b19fa3e190b7fac1402
[ "MIT" ]
permissive
NateQI/3DStreamingToolkit
39969b83de91ab238a692fdd5cfecae9192f1d80
f1d205bb4c036e4fbf3c49e3373eced6d514953c
refs/heads/master
2021-03-08T06:30:12.548708
2020-02-22T06:07:16
2020-02-22T06:07:16
246,326,461
1
0
MIT
2020-03-10T14:41:58
2020-03-10T14:41:57
null
UTF-8
C++
false
false
7,243
cpp
directx_buffer_capturer.cpp
#include "pch.h" #include "directx_buffer_capturer.h" #include "plugindefs.h" using namespace Microsoft::WRL; using namespace StreamingToolkit; DirectXBufferCapturer::DirectXBufferCapturer(ID3D11Device* d3d_device) : d3d_device_(d3d_device) { // Gets the device context. d3d_device_->GetImmediateContext(&d3d_context_); #ifdef MULTITHREAD_PROTECTION // Enables multithread protection. ID3D11Multithread* multithread; d3d_device_->QueryInterface(IID_PPV_ARGS(&multithread)); multithread->SetMultithreadProtected(true); multithread->Release(); #endif // MULTITHREAD_PROTECTION } void DirectXBufferCapturer::SendFrame(ID3D11Texture2D* frame_buffer, int64_t prediction_time_stamp) { // The video capturer hasn't started since there is no active connection. if (!running_) { return; } // Updates staging frame buffer. UpdateStagingBuffer(frame_buffer); // Creates webrtc frame buffer. D3D11_TEXTURE2D_DESC desc; staging_frame_buffer_->GetDesc(&desc); rtc::scoped_refptr<webrtc::I420Buffer> buffer = webrtc::I420Buffer::Create(desc.Width, desc.Height); // For software encoder, converting to supported video format. if (use_software_encoder_) { D3D11_MAPPED_SUBRESOURCE mapped; if (SUCCEEDED(d3d_context_.Get()->Map( staging_frame_buffer_.Get(), 0, D3D11_MAP_READ, 0, &mapped))) { libyuv::ABGRToI420( (uint8_t*)mapped.pData, desc.Width * 4, buffer.get()->MutableDataY(), buffer.get()->StrideY(), buffer.get()->MutableDataU(), buffer.get()->StrideU(), buffer.get()->MutableDataV(), buffer.get()->StrideV(), desc.Width, desc.Height); d3d_context_->Unmap(staging_frame_buffer_.Get(), 0); } } // Updates time stamp. auto time_stamp = std::chrono::duration_cast<std::chrono::nanoseconds>( std::chrono::system_clock::now().time_since_epoch()).count(); // Creates video frame buffer. auto frame = webrtc::VideoFrame(buffer, kVideoRotation_0, time_stamp); frame.set_ntp_time_ms(clock_->CurrentNtpInMilliseconds()); frame.set_rotation(VideoRotation::kVideoRotation_0); frame.set_prediction_timestamp(prediction_time_stamp); // For hardware encoder, setting the video frame buffer. if (!use_software_encoder_) { D3D11_MAPPED_SUBRESOURCE mapped; if (SUCCEEDED(d3d_context_.Get()->Map( staging_frame_buffer_.Get(), 0, D3D11_MAP_READ, 0, &mapped))) { frame.set_frame_buffer((uint8_t*)mapped.pData); d3d_context_->Unmap(staging_frame_buffer_.Get(), 0); } } // Sending video frame. BufferCapturer::SendFrame(frame); } void DirectXBufferCapturer::SendFrame(ID3D11Texture2D* left_frame_buffer, ID3D11Texture2D* right_frame_buffer, int64_t prediction_time_stamp) { // The video capturer hasn't started since there is no active connection. if (!running_) { return; } // Updates staging frame buffer. UpdateStagingBuffer(left_frame_buffer, right_frame_buffer); // Creates webrtc frame buffer. D3D11_TEXTURE2D_DESC desc; staging_frame_buffer_->GetDesc(&desc); rtc::scoped_refptr<webrtc::I420Buffer> buffer = webrtc::I420Buffer::Create(desc.Width, desc.Height); // For software encoder, converting to supported video format. if (use_software_encoder_) { D3D11_MAPPED_SUBRESOURCE mapped; if (SUCCEEDED(d3d_context_.Get()->Map( staging_frame_buffer_.Get(), 0, D3D11_MAP_READ, 0, &mapped))) { libyuv::ABGRToI420( (uint8_t*)mapped.pData, desc.Width * 4, buffer.get()->MutableDataY(), buffer.get()->StrideY(), buffer.get()->MutableDataU(), buffer.get()->StrideU(), buffer.get()->MutableDataV(), buffer.get()->StrideV(), desc.Width, desc.Height); d3d_context_->Unmap(staging_frame_buffer_.Get(), 0); } } // Updates time stamp. auto time_stamp = std::chrono::duration_cast<std::chrono::nanoseconds>( std::chrono::system_clock::now().time_since_epoch()).count(); // Creates video frame buffer. auto frame = webrtc::VideoFrame(buffer, kVideoRotation_0, time_stamp); frame.set_ntp_time_ms(clock_->CurrentNtpInMilliseconds()); frame.set_rotation(VideoRotation::kVideoRotation_0); frame.set_prediction_timestamp(prediction_time_stamp); // For hardware encoder, setting the video frame buffer. if (!use_software_encoder_) { D3D11_MAPPED_SUBRESOURCE mapped; if (SUCCEEDED(d3d_context_.Get()->Map( staging_frame_buffer_.Get(), 0, D3D11_MAP_READ, 0, &mapped))) { frame.set_frame_buffer((uint8_t*)mapped.pData); d3d_context_->Unmap(staging_frame_buffer_.Get(), 0); } } // Sending video frame. BufferCapturer::SendFrame(frame); } void DirectXBufferCapturer::UpdateStagingBuffer(ID3D11Texture2D* frame_buffer) { D3D11_TEXTURE2D_DESC desc; frame_buffer->GetDesc(&desc); // Lazily initializes the staging frame buffer. if (!staging_frame_buffer_) { staging_frame_buffer_desc_ = { 0 }; staging_frame_buffer_desc_.ArraySize = 1; staging_frame_buffer_desc_.Format = desc.Format; staging_frame_buffer_desc_.Width = desc.Width; staging_frame_buffer_desc_.Height = desc.Height; staging_frame_buffer_desc_.MipLevels = 1; staging_frame_buffer_desc_.SampleDesc.Count = 1; staging_frame_buffer_desc_.CPUAccessFlags = D3D11_CPU_ACCESS_READ; staging_frame_buffer_desc_.Usage = D3D11_USAGE_STAGING; d3d_device_->CreateTexture2D( &staging_frame_buffer_desc_, nullptr, &staging_frame_buffer_); } // Resizes if needed. else if (staging_frame_buffer_desc_.Width != desc.Width || staging_frame_buffer_desc_.Height != desc.Height) { staging_frame_buffer_desc_.Width = desc.Width; staging_frame_buffer_desc_.Height = desc.Height; d3d_device_->CreateTexture2D(&staging_frame_buffer_desc_, nullptr, &staging_frame_buffer_); } // Copies the frame buffer to the staging one. d3d_context_->CopyResource(staging_frame_buffer_.Get(), frame_buffer); } void DirectXBufferCapturer::UpdateStagingBuffer(ID3D11Texture2D* left_frame_buffer, ID3D11Texture2D* right_frame_buffer) { D3D11_TEXTURE2D_DESC desc; left_frame_buffer->GetDesc(&desc); // Lazily initializes the staging frame buffer. if (!staging_frame_buffer_) { staging_frame_buffer_desc_ = { 0 }; staging_frame_buffer_desc_.ArraySize = 1; staging_frame_buffer_desc_.Format = desc.Format; staging_frame_buffer_desc_.Width = desc.Width * 2; staging_frame_buffer_desc_.Height = desc.Height; staging_frame_buffer_desc_.MipLevels = 1; staging_frame_buffer_desc_.SampleDesc.Count = 1; staging_frame_buffer_desc_.CPUAccessFlags = D3D11_CPU_ACCESS_READ; staging_frame_buffer_desc_.Usage = D3D11_USAGE_STAGING; d3d_device_->CreateTexture2D( &staging_frame_buffer_desc_, nullptr, &staging_frame_buffer_); } // Resizes if needed. else if ((staging_frame_buffer_desc_.Width / 2) != desc.Width || staging_frame_buffer_desc_.Height != desc.Height) { staging_frame_buffer_desc_.Width = desc.Width * 2; staging_frame_buffer_desc_.Height = desc.Height; d3d_device_->CreateTexture2D(&staging_frame_buffer_desc_, nullptr, &staging_frame_buffer_); } // Copies the left and right frame buffers to the staging one. d3d_context_->CopySubresourceRegion(staging_frame_buffer_.Get(), 0, 0, 0, 0, left_frame_buffer, 0, 0); d3d_context_->CopySubresourceRegion(staging_frame_buffer_.Get(), 0, desc.Width, 0, 0, right_frame_buffer, 0, 0); }
03d89e6a967ca26abdd0f05aefc00640f03a4f3a
25bca7811b1a4fbc5ee344a144a604281751ea62
/Client/Client/Server.h
4e63c02b45632e85b55a759542207523c6093c24
[]
no_license
negateef/SeaFight
1de6d558f5587e7a964aeb9cb385f44d5b91601a
1a8f19d1fb0b696c5394c5de52aac820787db835
refs/heads/master
2016-09-13T21:25:05.538943
2016-05-01T14:47:36
2016-05-01T14:47:36
57,387,143
0
0
null
null
null
null
UTF-8
C++
false
false
2,191
h
Server.h
// // Server.h // Server // // Created by Misha Babenko on 4/27/16. // Copyright © 2016 Misha Babenko. All rights reserved. // #ifndef Server_h #define Server_h #include <string> #include <vector> #include <SFML/Network.hpp> #include "Field.h" #include "Ship.h" class Server { private: enum class GameStatus { FinishedOrNotStarted, FirstPlayerTurn, SecondPlayerTurn }; std::vector<Field> fields_; std::vector<sf::IpAddress> players_ips_; std::vector<Position> moves_; std::vector<sf::IpAddress> player_ip_move_; int players_get_turn_; GameStatus game_status_; sf::UdpSocket socket_; Server(); void InitGame(sf::Packet &packet, const sf::IpAddress &sender, unsigned short port); void GetTurnOrder(const sf::IpAddress &sender, unsigned short port); void GetMove(const sf::IpAddress &sender, unsigned short port); void MakeMove(sf::Packet &packet, const sf::IpAddress &sender, unsigned short port); void GetFields(const sf::IpAddress &sender, unsigned short port); void Reset(); public: enum class SendGameStatus { FinishedOrNotStarted, YourTurn, EnemyTurn }; const static std::string kInitRequest; const static std::string kGetTurnOrder; const static std::string kGetMoveRequest; const static std::string kDoMoveRequest; const static std::string kGetFieldsRequest; const static std::string kSuccessResponse; const static std::string kFailedResponse; const static unsigned short kServerPort; const static unsigned short kClientPort; const static unsigned short kWatcherPort; Server &operator =(const Server &) = delete; Server(const Server &) = delete; static Server &GetInstance(); void Init(); }; sf::Packet &operator << (sf::Packet &packet, const Field &field); sf::Packet &operator >> (sf::Packet &packet, Field &field); sf::Packet &operator << (sf::Packet &packet, const Server::SendGameStatus &status); sf::Packet &operator >> (sf::Packet &packet, Server::SendGameStatus &status); #endif /* Server_h */
4f85faa88b71bb5e40029d308cf7fe597d1dfc5a
05734efdcbd82f0b96f56add353246ce883e1a13
/Practica4(STLIteradores)/traductorv2/src/Palabra.cpp
03bc48a6dce08d5cde3b9c8da496e102fb08f413
[]
no_license
juanAFernandez/EstructurasDeDatos
bdd14022796ca2b7fddae56718752c7e92c7a015
1ae13028c2fc559ef28ab598d18f52d037e84cfc
refs/heads/master
2020-04-05T22:43:10.024576
2015-12-13T21:59:30
2015-12-13T21:59:30
24,889,649
0
0
null
null
null
null
UTF-8
C++
false
false
3,009
cpp
Palabra.cpp
#include<iostream> #include<string.h> #include "Palabra.h" using namespace std; //Construcor de TDA palabra, que prepara las variables para su uso posterior. Palabra::Palabra(){ //palabraOrigen = ""; //palabrasDestino = NULL; //numPalabrasDestino = 0; } //Set de la palabra en el idioma origen void Palabra::setPalabraOrigen(string nuevaPalabraOrigen){ //Introducimos la palabra origen en el primer campo del pair palabra. palabra.first=nuevaPalabraOrigen; //palabraOrigen=nuevaPalabraOrigen; } //Devuelva la palabra en el idioma origen. string Palabra::getPalabraOrigen(){ return palabra.first; //return palabraOrigen; } void Palabra::imprimePalabra(){ cout << palabra.first << "->"; for(set<string>::iterator it = palabra.second.begin(); it!=palabra.second.end(); ++it) cout << *it << " "; cout << endl; } //Para añadir una palabra a la colección de las palabras destino. void Palabra::addPalabraDestino(string nuevaPalabraDestino){ //Insertramos la nueva palabra en el segundo campo del pair. palabra.second.insert(nuevaPalabraDestino); /** //Si no hay ninguna palabra en el vector de las de destino, se reserva memoria para una palabra y se añade esta. if(numPalabrasDestino==0){ //Resvervamos memoria. palabrasDestino = new string[1]; //Almacenamos los datos. palabrasDestino[0] = nuevaPalabraDestino; //Intrementamos el número de de palabras destino. numPalabrasDestino++; }else{ //Si hay más de una palabra en el vector de palabras destino, creamos un nuevo vector copiamos el contenido y añadimos el nuevo. string *nuevoVector; //Reservamos memoria pra una palabra más. nuevoVector = new string[numPalabrasDestino+1]; //Pasamos las palabras de una a otra estructura. for(int i=0; i<numPalabrasDestino; i++) nuevoVector[i]=palabrasDestino[i]; //Intcrementamos el número de palabras que estamos amacenando. numPalabrasDestino++; //Aadimos la nueva palabra a memoria. nuevoVector[numPalabrasDestino-1]=nuevaPalabraDestino; //Liberamos la memoria que ocupa la vieja colección. delete [] palabrasDestino; //Guardamos la dirección de memoria de la nueva estructura. palabrasDestino = nuevoVector; } */ } int Palabra::getNumeroPalabrasDestino(){ return palabra.second.size(); } //Devuelve un vector con las palabras destino de la palabra. vector<string> Palabra::getPalabrasDestino(){ //Creamos un vector de la STL para almacenar las palabras (en unos sitios usamos STL y en otros no para usar ambos, // aunque podríamos haber seguido trabajando con memoria y punteros). vector<string> vectorPalabrasDestino; for(set<string>::iterator it=palabra.second.begin(); it!=palabra.second.end(); it++) vectorPalabrasDestino.push_back(*it); /*Introducimos las plabras. for (int i=0; i<numPalabrasDestino; i++){ vectorPalabrasDestino.push_back(palabrasDestino[i]); } */ //Devolvemos el vector creado. return vectorPalabrasDestino; }
d7f9c14a13174972ff100ebb680183eedf2ad7e9
c9de5d4c5168d5cb863744010dbcebc073b6ea8f
/TinyGame/GreedySnake/GreedySnakeAction.h
12328f14e30d145875fe25966eeab83861cd4e72
[]
no_license
ADFLin/GameProject
b869e246a4ec7beb37c278c4d23a0004543a688a
56b622371271beb95becbf381534f3332ef870d5
refs/heads/master
2023-08-22T06:29:44.852204
2023-08-15T15:56:17
2023-08-15T15:56:17
47,371,197
2
1
null
null
null
null
UTF-8
C++
false
false
627
h
GreedySnakeAction.h
#ifndef GreedySnakeAction_h__ #define GreedySnakeAction_h__ #include "GameAction.h" #include "GreedySnakeScene.h" namespace GreedySnake { class CFrameAcionTemplate : public KeyFrameActionTemplate { public: CFrameAcionTemplate( Scene* scene ) :KeyFrameActionTemplate( gMaxPlayerNum ) ,mScene( scene ) {} void firePortAction(ActionPort port, ActionTrigger& trigger ) { mScene->fireSnakeAction( port, trigger ); } Scene* mScene; }; typedef ServerKeyFrameCollector ServerFrameCollector; typedef ClientKeyFrameCollector ClientFrameCollector; }//namespace GreedySnake #endif // GreedySnakeAction_h__
73b9234af4f7a0e6e2c30046aaabc72b6ba92362
0c268ff10b68c4a24023ca646bb46c5a125eb84c
/Online_Contest/NCD2019/a.cpp
29af4c5181f2a5284d6caf5d43be6370bd820de3
[]
no_license
TzeHimSung/AcmDailyTraining
497b9fb77c282f2f240634050e38f395cf1bedbc
2a69fa38118e43cbeca44cb99369e6e094663ec8
refs/heads/master
2023-03-21T21:39:02.752317
2021-03-14T03:41:00
2021-03-14T03:41:00
159,670,822
0
0
null
null
null
null
UTF-8
C++
false
false
2,370
cpp
a.cpp
/* basic header */ #include <bits/stdc++.h> /* define */ #define ll long long #define pb emplace_back #define mp make_pair #define eps 1e-8 #define lson (curpos<<1) #define rson (curpos<<1|1) /* namespace */ using namespace std; /* header end */ const int maxn = 2e5 + 10; struct Segment { int st, ed, len; } seg[maxn]; struct Info { int isHori, len, slen, sign; } cross[maxn]; int t, n, m, tree[maxn], pos[maxn]; int lowbit(int x) { return x & -x; } void init() { for (int i = 0; i < 100001; i++) tree[i] = 0; } void add(int x, int k) { for (; x < maxn; x += lowbit(x)) tree[x] += k; } int query(int x) { int ret = 0; for (; x; x -= lowbit(x)) ret += tree[x]; return ret; } int cmp(int u, int v) { return mp(cross[u].len, cross[u].isHori) < mp(cross[v].len, cross[v].isHori); } bool check(int len) { init(); int cnt = 0; for (int i = 1; i <= n; i++) { if (seg[i].ed - seg[i].st < len * 2) continue; cross[++cnt].slen = seg[i].len, cross[cnt].sign = 1, cross[cnt].isHori = 0, cross[cnt].len = seg[i].st + len; cross[++cnt].slen = seg[i].len, cross[cnt].sign = -1, cross[cnt].isHori = 0, cross[cnt].len = seg[i].ed - len + 1; } for (int i = n + 1; i <= n + m; i++) { if (seg[i].ed - seg[i].st < len * 2) continue; cross[++cnt].slen = seg[i].st + len, cross[cnt].sign = seg[i].ed - len, cross[cnt].isHori = 1, cross[cnt].len = seg[i].len; } for (int i = 1; i <= cnt; i++) pos[i] = i; sort(pos + 1, pos + cnt + 1, cmp); for (int l = 1, r = 1; l <= cnt; l = r) { for (; r <= cnt && cross[pos[l]].len == cross[pos[r]].len; r++) { if (!cross[pos[r]].isHori) add(cross[pos[r]].slen, cross[pos[r]].sign); else if (query(cross[pos[r]].slen - 1) < query(cross[pos[r]].sign)) return true; } } return false; } int main() { scanf("%d", &t); while (t--) { scanf("%d%d", &n, &m); for (int i = 1; i <= n; i++) scanf("%d%d%d", &seg[i].st, &seg[i].ed, &seg[i].len); for (int i = n + 1; i <= n + m; i++) scanf("%d%d%d", &seg[i].st, &seg[i].ed, &seg[i].len); int l = 0, r = 5e4, ans; while (l < r) { int mid = (l + r + 1) / 2; if (check(mid)) l = mid; else r = mid - 1; } ans = l; printf("%d\n", ans); } return 0; }
cfbd2b66ffa29c5a8f4998d09e0321ed9997a54f
dd4f6738cb8963d3c89c665d4980953db40dff5a
/Tactics/Private/Grid.cpp
0c3225886a60060a3f79085f3d837e8b8dc80524
[ "Apache-2.0" ]
permissive
Razorfang/UnrealGame
f11621f84a0250a96d6e14cd8afaa7a2f4813bc8
979b4153129d6eb09c7cf14c0e9869b96b964fc0
refs/heads/master
2021-04-28T20:43:28.239355
2018-05-06T02:37:19
2018-05-06T02:37:19
121,933,400
0
0
null
null
null
null
UTF-8
C++
false
false
1,163
cpp
Grid.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Grid.h" AGrid::AGrid() { // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it. PrimaryActorTick.bCanEverTick = false; //We don't yet know what type of grid this is. This will be changed by the subclasses GridType = EGridType::EUnknown; //Create the static mesh component GridMesh = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("GridMesh")); //Base other stuff around this component. Not needed for our example, but we may come back to this RootComponent = GridMesh; /* TODO: Set mobility to stationary for efficient lighting */ } // Called when the game starts or when spawned void AGrid::BeginPlay() { Super::BeginPlay(); } // Called every frame void AGrid::Tick(float DeltaTime) { Super::Tick(DeltaTime); } EGridType AGrid::GetGridType() const { return GridType; } FVector AGrid::GetGridOrigin() const { return GetActorLocation(); //This returns the rootcomponent's location relative to the centre of the actor, not our world location //return GridMesh->GetComponentLocation(); }
dfb9e732bfae1cbeb639f28889e64aca260a348e
2fb7188adb6f52023485d8a775e4ecbf96331b81
/PixelGeometry/addPixelCalibration.cpp
f55ab8396d255c74269ffc8592e6702a0693c0f3
[]
no_license
amassiro/dEdxCalibration
f5c580247041b4477a118772bbda9b924ae1103a
837eb440711983ddd0a283ec0cf3582c4a454d24
refs/heads/master
2020-03-24T03:31:45.099672
2019-11-08T13:09:40
2019-11-08T13:09:40
142,422,991
0
0
null
null
null
null
UTF-8
C++
false
false
36,251
cpp
addPixelCalibration.cpp
// // addPixelCalibration // // // g++ -o addPixelCalibration.exe addPixelCalibration.cpp `root-config --cflags --glibs` // // #include <iostream> #include <fstream> #include "TTree.h" #include "TF1.h" #include "TH1.h" #include "TFile.h" #include "TCanvas.h" #include "TGraph.h" #include "TMultiGraph.h" #include "TLegend.h" #include "TLorentzVector.h" #include "TStyle.h" int FindInterval(int run, int minRun, int deltaRun) { return int ((run - minRun) / deltaRun); } void Normalize(TH1F* histo) { float integral = histo->Integral(); if (integral != 0) { histo-> Scale (1./integral); } } void setupHisto(TH1F* histo, int icolor) { Color_t* color = new Color_t [200]; color[0] = kAzure; //kRed ; color[1] = kAzure + 10 ; color[2] = kYellow + 2 ; color[3] = kGreen ; color[4] = kGreen + 4 ; color[5] = kBlue ; color[6] = kCyan ; color[7] = kPink + 1 ; color[8] = kBlack ; color[9] = kYellow + 4 ; color[10]= kRed ; color[11]= kRed + 2 ; color[12]= kRed + 4; for (int i=0; i<30; i++) { color[i+13] = kBlue + i; } histo->SetLineColor(color[icolor]); histo->SetMarkerColor(color[icolor]); histo->SetMarkerSize(1); histo->SetMarkerStyle(20+icolor); } //---- find the eta range bin corresponding to the "eta" value int FindEdge (float eta, std::vector<float> eta_edges) { int ieta = -1; for (int iEdge = 0; iEdge<(eta_edges.size()-1); iEdge++) { if (eta >= eta_edges.at(iEdge) && eta < eta_edges.at(iEdge+1)) { ieta = iEdge; } } return ieta; } //---- find the eta range bin corresponding to the "eta" value //---- |eta| int FindEdgeAbs (float eta, std::vector<float> eta_edges) { int ieta = -1; for (int iEdge = 0; iEdge<(eta_edges.size()-1); iEdge++) { if (fabs(eta) >= eta_edges.at(iEdge) && fabs(eta) < eta_edges.at(iEdge+1)) { ieta = iEdge; } } return ieta; } int main(int argc, char** argv) { std::string name_input_file_data = "out.root"; if (argc>=2) { name_input_file_data = argv[1]; } std::string name_output_file_data = "outmc.root"; if (argc>=3) { name_output_file_data = argv[2]; } int num_run_intervals = 10; if (argc>=4) { num_run_intervals = atoi(argv[3]); } std::cout << " num_run_intervals = " << num_run_intervals << std::endl; int num_max_layer = 5; // 20 if (argc>=5) { num_max_layer = atoi(argv[4]); } std::cout << " num_max_layer = " << num_max_layer << std::endl; std::vector<float> eta_edges; // eta_edges.push_back(-2.5); FindEdge -> FindEdgeAbs // eta_edges.push_back(-2.1); // eta_edges.push_back(-1.6); // eta_edges.push_back(-1.3); // eta_edges.push_back(-1.0); // eta_edges.push_back(-0.6); // eta_edges.push_back(-0.3); eta_edges.push_back(0.0); eta_edges.push_back(0.3); //--- exclude eta_edges.push_back(0.6); //--- exclude eta_edges.push_back(1.0); //--- exclude eta_edges.push_back(1.3); eta_edges.push_back(1.6); //--- exclude eta_edges.push_back(2.1); eta_edges.push_back(2.5); //---- //---- layer //---- std::vector<int> layerId; for (int ilayer = 0; ilayer<num_max_layer; ilayer++) { // for (int ilayer = 0; ilayer<20; ilayer++) { layerId.push_back(ilayer); } //---- //---- ladderblade //---- std::vector<int> ladderbladeId; for (int iladderblade = 0; iladderblade<40; iladderblade++) { // for (int iladderblade = 0; iladderblade<12; iladderblade++) { // for (int iladderblade = 0; iladderblade<40; iladderblade++) { ladderbladeId.push_back(iladderblade); } //---- iRun layer eta ladderblade std::vector < std::vector < std::vector < std::vector < float > > > > map_calibration_BPIX; std::vector < std::vector < std::vector < std::vector < float > > > > map_calibration_FPIX; // map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade] // map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade] for (int iRun = 0; iRun<num_run_intervals; iRun++) { std::vector < std::vector < std::vector < float > > > v_1; for (int ilayer = 0; ilayer<layerId.size(); ilayer++) { std::vector < std::vector < float > > v_2; for (int iEdge = 0; iEdge<eta_edges.size()-1; iEdge++) { std::vector < float > v_scale; for (int iladderblade = 0; iladderblade<ladderbladeId.size(); iladderblade++) { v_scale.push_back(1.0); } v_2.push_back(v_scale); } v_1.push_back(v_2); } map_calibration_BPIX.push_back(v_1); map_calibration_FPIX.push_back(v_1); } //---- read calibration values int apply_calibration = 0; std::string fileCalibration = "scale_pixels_run_ranges_reduced_BPIX.txt"; if (argc>=6) { apply_calibration = 1; fileCalibration = argv[5]; std::cout << " fileCalibration BPIX = " << fileCalibration << std::endl; std::ifstream file (fileCalibration); std::string buffer; float value; if(!file.is_open()) { std::cerr << "** ERROR: Can't open '" << fileCalibration << "' for input" << std::endl; return false; } int num_layer = 0; while(!file.eof()) { getline(file,buffer); if (buffer != "" && buffer.at(0) != '#'){ ///---> save from empty line at the end! std::stringstream line( buffer ); int ilayer; int iladderblade; int iEdge; line >> iEdge; line >> ilayer; line >> iladderblade; float calibration_factor = 1.0; for (int iRun = 0; iRun < num_run_intervals; iRun++) { line >> calibration_factor; //---- fix if (calibration_factor < 0) calibration_factor = 1; map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade] = calibration_factor; } } } } if (argc>=7) { apply_calibration = 1; fileCalibration = argv[6]; std::cout << " fileCalibration FPIX = " << fileCalibration << std::endl; std::ifstream file (fileCalibration); std::string buffer; float value; if(!file.is_open()) { std::cerr << "** ERROR: Can't open '" << fileCalibration << "' for input" << std::endl; return false; } int num_layer = 0; while(!file.eof()) { getline(file,buffer); if (buffer != "" && buffer.at(0) != '#'){ ///---> save from empty line at the end! std::stringstream line( buffer ); int ilayer; int iladderblade; int iEdge; line >> iEdge; line >> ilayer; line >> iladderblade; float calibration_factor = 1.0; for (int iRun = 0; iRun < num_run_intervals; iRun++) { line >> calibration_factor; //---- fix if (calibration_factor < 0) calibration_factor = 1; map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade] = calibration_factor; } } } } std::cout << " name_input_file_data = " << name_input_file_data << std::endl; std::cout << " name_output_file_data = " << name_output_file_data << std::endl; TFile* inputFile_data = new TFile (name_input_file_data.c_str(), "READ"); TTree* inputTree_data = (TTree*) ((TTree*) inputFile_data -> Get ("tree")) -> Clone ("tree_data"); TFile* outputFile_data = new TFile (name_output_file_data.c_str(), "RECREATE"); TTree *outputTree_data = inputTree_data->CloneTree(0); std::cout << " data = " << inputTree_data->GetEntries() << std::endl; gStyle->SetOptStat(0); //---- muon // IsoTrack_dedxByLayer0 const Int_t kMaxTracks = 1000; Int_t IsoTrack_layerOrSideByLayer0[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer1[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer2[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer3[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer4[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer5[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer6[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer7[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer8[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer9[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer10[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer11[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer12[kMaxTracks]; Int_t IsoTrack_layerOrSideByLayer13[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer0[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer1[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer2[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer3[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer4[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer5[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer6[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer7[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer8[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer9[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer10[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer11[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer12[kMaxTracks]; Int_t IsoTrack_ladderOrBladeByLayer13[kMaxTracks]; //---- calibration Float_t IsoTrack_calibrationdedxByLayer0[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer1[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer2[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer3[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer4[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer5[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer6[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer7[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer8[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer9[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer10[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer11[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer12[kMaxTracks]; Float_t IsoTrack_calibrationdedxByLayer13[kMaxTracks]; Float_t IsoTrack_dedxByLayer0[kMaxTracks]; Float_t IsoTrack_dedxByLayer1[kMaxTracks]; Float_t IsoTrack_dedxByLayer2[kMaxTracks]; Float_t IsoTrack_dedxByLayer3[kMaxTracks]; Float_t IsoTrack_dedxByLayer4[kMaxTracks]; Float_t IsoTrack_dedxByLayer5[kMaxTracks]; Float_t IsoTrack_dedxByLayer6[kMaxTracks]; Float_t IsoTrack_dedxByLayer7[kMaxTracks]; Float_t IsoTrack_dedxByLayer8[kMaxTracks]; Float_t IsoTrack_dedxByLayer9[kMaxTracks]; Float_t IsoTrack_dedxByLayer10[kMaxTracks]; Float_t IsoTrack_dedxByLayer11[kMaxTracks]; Float_t IsoTrack_dedxByLayer12[kMaxTracks]; Float_t IsoTrack_dedxByLayer13[kMaxTracks]; Int_t IsoTrack_pixByLayer0[kMaxTracks]; Int_t IsoTrack_pixByLayer1[kMaxTracks]; Int_t IsoTrack_pixByLayer2[kMaxTracks]; Int_t IsoTrack_pixByLayer3[kMaxTracks]; Int_t IsoTrack_pixByLayer4[kMaxTracks]; Int_t IsoTrack_pixByLayer5[kMaxTracks]; Int_t IsoTrack_pixByLayer6[kMaxTracks]; Int_t IsoTrack_pixByLayer7[kMaxTracks]; Int_t IsoTrack_pixByLayer8[kMaxTracks]; Int_t IsoTrack_pixByLayer9[kMaxTracks]; Int_t IsoTrack_pixByLayer10[kMaxTracks]; Int_t IsoTrack_pixByLayer11[kMaxTracks]; Int_t IsoTrack_pixByLayer12[kMaxTracks]; Int_t IsoTrack_pixByLayer13[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer0[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer1[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer2[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer3[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer4[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer5[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer6[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer7[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer8[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer9[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer10[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer11[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer12[kMaxTracks]; Int_t IsoTrack_subDetIdByLayer13[kMaxTracks]; Float_t IsoTrack_pt[kMaxTracks]; Float_t IsoTrack_eta[kMaxTracks]; Float_t IsoTrack_phi[kMaxTracks]; Float_t IsoTrack_dxy[kMaxTracks]; Float_t IsoTrack_dz[kMaxTracks]; Int_t IsoTrack_highPurity[kMaxTracks]; Int_t nIsoTrack; //---- calibration kMaxTracks outputTree_data->Branch("IsoTrack_calibrationdedxByLayer0", IsoTrack_calibrationdedxByLayer0 , "IsoTrack_calibrationdedxByLayer0[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer1", IsoTrack_calibrationdedxByLayer1 , "IsoTrack_calibrationdedxByLayer1[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer2", IsoTrack_calibrationdedxByLayer2 , "IsoTrack_calibrationdedxByLayer2[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer3", IsoTrack_calibrationdedxByLayer3 , "IsoTrack_calibrationdedxByLayer3[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer4", IsoTrack_calibrationdedxByLayer4 , "IsoTrack_calibrationdedxByLayer4[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer5", IsoTrack_calibrationdedxByLayer5 , "IsoTrack_calibrationdedxByLayer5[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer6", IsoTrack_calibrationdedxByLayer6 , "IsoTrack_calibrationdedxByLayer6[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer7", IsoTrack_calibrationdedxByLayer7 , "IsoTrack_calibrationdedxByLayer7[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer8", IsoTrack_calibrationdedxByLayer8 , "IsoTrack_calibrationdedxByLayer8[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer9", IsoTrack_calibrationdedxByLayer9 , "IsoTrack_calibrationdedxByLayer9[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer10", IsoTrack_calibrationdedxByLayer10 , "IsoTrack_calibrationdedxByLayer10[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer11", IsoTrack_calibrationdedxByLayer11 , "IsoTrack_calibrationdedxByLayer11[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer12", IsoTrack_calibrationdedxByLayer12 , "IsoTrack_calibrationdedxByLayer12[1000]/F" ); outputTree_data->Branch("IsoTrack_calibrationdedxByLayer13", IsoTrack_calibrationdedxByLayer13 , "IsoTrack_calibrationdedxByLayer13[1000]/F" ); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer0", IsoTrack_dedxByLayer0); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer1", IsoTrack_dedxByLayer1); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer2", IsoTrack_dedxByLayer2); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer3", IsoTrack_dedxByLayer3); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer4", IsoTrack_dedxByLayer4); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer5", IsoTrack_dedxByLayer5); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer6", IsoTrack_dedxByLayer6); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer7", IsoTrack_dedxByLayer7); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer8", IsoTrack_dedxByLayer8); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer9", IsoTrack_dedxByLayer9); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer10", IsoTrack_dedxByLayer10); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer11", IsoTrack_dedxByLayer11); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer12", IsoTrack_dedxByLayer12); inputTree_data->SetBranchAddress("IsoTrack_dedxByLayer13", IsoTrack_dedxByLayer13); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer0", IsoTrack_pixByLayer0); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer1", IsoTrack_pixByLayer1); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer2", IsoTrack_pixByLayer2); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer3", IsoTrack_pixByLayer3); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer4", IsoTrack_pixByLayer4); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer5", IsoTrack_pixByLayer5); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer6", IsoTrack_pixByLayer6); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer7", IsoTrack_pixByLayer7); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer8", IsoTrack_pixByLayer8); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer9", IsoTrack_pixByLayer9); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer10", IsoTrack_pixByLayer10); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer11", IsoTrack_pixByLayer11); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer12", IsoTrack_pixByLayer12); inputTree_data->SetBranchAddress("IsoTrack_pixByLayer13", IsoTrack_pixByLayer13); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer0", IsoTrack_layerOrSideByLayer0); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer1", IsoTrack_layerOrSideByLayer1); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer2", IsoTrack_layerOrSideByLayer2); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer3", IsoTrack_layerOrSideByLayer3); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer4", IsoTrack_layerOrSideByLayer4); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer5", IsoTrack_layerOrSideByLayer5); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer6", IsoTrack_layerOrSideByLayer6); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer7", IsoTrack_layerOrSideByLayer7); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer8", IsoTrack_layerOrSideByLayer8); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer9", IsoTrack_layerOrSideByLayer9); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer10", IsoTrack_layerOrSideByLayer10); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer11", IsoTrack_layerOrSideByLayer11); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer12", IsoTrack_layerOrSideByLayer12); inputTree_data->SetBranchAddress("IsoTrack_layerOrSideByLayer13", IsoTrack_layerOrSideByLayer13); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer0", IsoTrack_ladderOrBladeByLayer0); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer1", IsoTrack_ladderOrBladeByLayer1); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer2", IsoTrack_ladderOrBladeByLayer2); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer3", IsoTrack_ladderOrBladeByLayer3); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer4", IsoTrack_ladderOrBladeByLayer4); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer5", IsoTrack_ladderOrBladeByLayer5); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer6", IsoTrack_ladderOrBladeByLayer6); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer7", IsoTrack_ladderOrBladeByLayer7); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer8", IsoTrack_ladderOrBladeByLayer8); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer9", IsoTrack_ladderOrBladeByLayer9); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer10", IsoTrack_ladderOrBladeByLayer10); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer11", IsoTrack_ladderOrBladeByLayer11); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer12", IsoTrack_ladderOrBladeByLayer12); inputTree_data->SetBranchAddress("IsoTrack_ladderOrBladeByLayer13", IsoTrack_ladderOrBladeByLayer13); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer0", IsoTrack_subDetIdByLayer0); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer1", IsoTrack_subDetIdByLayer1); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer2", IsoTrack_subDetIdByLayer2); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer3", IsoTrack_subDetIdByLayer3); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer4", IsoTrack_subDetIdByLayer4); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer5", IsoTrack_subDetIdByLayer5); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer6", IsoTrack_subDetIdByLayer6); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer7", IsoTrack_subDetIdByLayer7); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer8", IsoTrack_subDetIdByLayer8); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer9", IsoTrack_subDetIdByLayer9); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer10", IsoTrack_subDetIdByLayer10); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer11", IsoTrack_subDetIdByLayer11); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer12", IsoTrack_subDetIdByLayer12); inputTree_data->SetBranchAddress("IsoTrack_subDetIdByLayer13", IsoTrack_subDetIdByLayer13); inputTree_data->SetBranchAddress("IsoTrack_pt", IsoTrack_pt); inputTree_data->SetBranchAddress("IsoTrack_eta", IsoTrack_eta); inputTree_data->SetBranchAddress("IsoTrack_phi", IsoTrack_phi); inputTree_data->SetBranchAddress("IsoTrack_highPurity", IsoTrack_highPurity); inputTree_data->SetBranchAddress("IsoTrack_dxy", IsoTrack_dxy); inputTree_data->SetBranchAddress("IsoTrack_dz", IsoTrack_dz); inputTree_data->SetBranchAddress("nIsoTrack", &nIsoTrack); // // p T > 50 GeV ; |η| < 2.4 ; High purity track // |d xy | < 0.02 ; |d z | < 0.5 // miniPFIsolation().chargedHadronIso() / p T < 1.0 // EM energy around the track < 10 GeV ; Had energy around the track < 10 GeV // Mass(μ, track) between 86 and 106 GeV // UInt_t run; inputTree_data->SetBranchAddress("run", &run); std::cout << " Prepare output ..." << std::endl; int minRun = inputTree_data->GetMinimum ("run"); int maxRun = inputTree_data->GetMaximum ("run") + 1; int deltaRun = (maxRun-minRun) / num_run_intervals; std::cout << " minRun = " << minRun << std::endl; std::cout << " maxRun = " << maxRun << std::endl; std::cout << " deltaRun = " << deltaRun << std::endl; for (int iEntry=0; iEntry<inputTree_data->GetEntries(); iEntry++) { inputTree_data->GetEntry(iEntry); if (!(iEntry%50000)) std::cout << " " << iEntry << " ; nIsoTrack = " << nIsoTrack << std::endl; // std::cout << " " << iEntry << " ; nIsoTrack = " << nIsoTrack << std::endl; int iRun = FindInterval(run, minRun, deltaRun); //---- safe check if (iRun >= num_run_intervals) { // std::cout << " iRun = " << iRun << " :: " << num_run_intervals << std::endl; continue; } int iEdge = -1; int ilayer = -1; // IsoTrack_layerOrSideByLayer0[iTrack]; int iladderblade = -1; // IsoTrack_ladderOrBladeByLayer0[iTrack]; for (int iTrack = 0; iTrack < std::min(kMaxTracks, nIsoTrack); iTrack++) { iEdge = FindEdgeAbs (IsoTrack_eta[iTrack], eta_edges); IsoTrack_calibrationdedxByLayer0[iTrack] = 1.; IsoTrack_calibrationdedxByLayer1[iTrack] = 1.; IsoTrack_calibrationdedxByLayer2[iTrack] = 1.; IsoTrack_calibrationdedxByLayer3[iTrack] = 1.; IsoTrack_calibrationdedxByLayer4[iTrack] = 1.; IsoTrack_calibrationdedxByLayer5[iTrack] = 1.; IsoTrack_calibrationdedxByLayer6[iTrack] = 1.; IsoTrack_calibrationdedxByLayer7[iTrack] = 1.; IsoTrack_calibrationdedxByLayer8[iTrack] = 1.; IsoTrack_calibrationdedxByLayer9[iTrack] = 1.; IsoTrack_calibrationdedxByLayer10[iTrack] = 1.; IsoTrack_calibrationdedxByLayer11[iTrack] = 1.; IsoTrack_calibrationdedxByLayer12[iTrack] = 1.; IsoTrack_calibrationdedxByLayer13[iTrack] = 1.; if (iEdge != -1) { if (IsoTrack_pixByLayer0[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer0[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer0[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer0[iTrack] != 0) { if (IsoTrack_pixByLayer0[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer0[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer0[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer1[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer1[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer1[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer1[iTrack] != 0) { if (IsoTrack_pixByLayer1[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer1[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer1[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer2[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer2[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer2[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer2[iTrack] != 0) { if (IsoTrack_pixByLayer2[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer2[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer2[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer3[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer3[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer3[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer3[iTrack] != 0) { if (IsoTrack_pixByLayer3[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer3[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer3[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer4[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer4[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer4[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer4[iTrack] != 0) { if (IsoTrack_pixByLayer4[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer4[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer4[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer5[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer5[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer5[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer5[iTrack] != 0) { if (IsoTrack_pixByLayer5[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer5[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer5[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer6[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer6[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer6[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer6[iTrack] != 0) { if (IsoTrack_pixByLayer6[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer6[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer6[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer7[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer7[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer7[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer7[iTrack] != 0) { if (IsoTrack_pixByLayer7[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer7[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer7[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer8[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer8[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer8[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer8[iTrack] != 0) { if (IsoTrack_pixByLayer8[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer8[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer8[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer9[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer9[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer9[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer9[iTrack] != 0) { if (IsoTrack_pixByLayer9[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer9[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer9[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer10[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer10[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer10[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer10[iTrack] != 0) { if (IsoTrack_pixByLayer10[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer10[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer10[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer11[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer11[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer11[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer11[iTrack] != 0) { if (IsoTrack_pixByLayer11[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer11[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer11[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer12[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer12[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer12[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer12[iTrack] != 0) { if (IsoTrack_pixByLayer12[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer12[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer12[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } if (IsoTrack_pixByLayer0[iTrack] != 0) { ilayer = IsoTrack_layerOrSideByLayer0[iTrack]; iladderblade = IsoTrack_ladderOrBladeByLayer0[iTrack]; } if ((ilayer >=0 && ilayer<layerId.size()) && (iladderblade>=0 && iladderblade<ladderbladeId.size())) { if (IsoTrack_pixByLayer13[iTrack] != 0) { if (IsoTrack_pixByLayer13[iTrack] == 1) { //---- BPIX IsoTrack_calibrationdedxByLayer13[iTrack] = map_calibration_BPIX[iRun][ilayer][iEdge][iladderblade]; } else { //---- FPIX IsoTrack_calibrationdedxByLayer13[iTrack] = map_calibration_FPIX[iRun][ilayer][iEdge][iladderblade]; } } } } } outputTree_data->Fill(); } std::cout << " minRun = " << minRun << std::endl; std::cout << " maxRun = " << maxRun << std::endl; std::cout << " deltaRun = " << deltaRun << std::endl; std::cout << std::endl; std::cout << " name_input_file_data = " << name_input_file_data << std::endl; std::cout << " name_output_file_data = " << name_output_file_data << std::endl; outputTree_data->AutoSave(); outputFile_data->Close(); }
3e5978f562b6c21238a521c15e09ce1c5b70fb08
3eec188e2e1b2a13f306ff314682dd4f16f7ab48
/src/unix_specific.cpp
08930ce4b729f12c0d41f9d744fbd329b9ae5e97
[]
no_license
stianval/labyrinth-fighter
244f866e3aebb1e97a9b2e2d93dafbdf06f1e657
aef1656a097f06f39ddb6b1900848e9fa0d226d1
refs/heads/master
2021-01-17T14:57:06.392850
2016-08-02T18:26:47
2016-08-02T18:26:47
45,179,054
0
0
null
null
null
null
UTF-8
C++
false
false
235
cpp
unix_specific.cpp
#include <cstdlib> #include <ctime> #include "port.h" int os_init(){ // Seed random generator srand(time(NULL)); return 0; } int random(){ return rand(); } void setWindowCursor(int x, int y){ glWindowPos2i(x, y); }
26b7b8c4b0660491b25e149a07367a7738017a01
ae989bbbd0bf985de8befb93f0700e5eb73fec8c
/Linear_Forece_and_Momentum/aieProject3D1/BoxOOB.h
194b60bad337bbc8ad362080dded612abf65e8c5
[ "MIT" ]
permissive
JezusGaming/AIE_2018_PhysicsEngine
194e432a0efc077df19c9b067b519e04c341d7ce
57569f7faf36a9fda5b603ac93c223b633b9ff33
refs/heads/master
2021-05-03T10:28:07.615228
2018-03-08T10:27:22
2018-03-08T10:27:22
120,535,332
0
0
null
null
null
null
UTF-8
C++
false
false
5,289
h
BoxOOB.h
#pragma once #include "Rigidbody3D.h" class BoxOOB : public Rigidbody3D { public: //---------------------------------------------------------------------------------------------- // constructer initializes values //---------------------------------------------------------------------------------------------- BoxOOB(glm::vec3 position, glm::vec3 velocity, float mass, float width, float hight, float depth, glm::vec4 colour); //---------------------------------------------------------------------------------------------- // defualt destructor //---------------------------------------------------------------------------------------------- ~BoxOOB(); //---------------------------------------------------------------------------------------------- // Updates the BoxOOB and rigidbody every frame // // Param: // gravity: A vec3 which sets BoxOOB m_gravity to help apply velocity to objects // timeStep: A float which sets BoxOOB m_timeStep to help apply velocity to objects ect //---------------------------------------------------------------------------------------------- void fixedUpdate(glm::vec3 gravity, float timeStep); //---------------------------------------------------------------------------------------------- // Makes a BoxOOB and draws it //---------------------------------------------------------------------------------------------- void makeGizmo(); bool checkBoxCorners(BoxOOB& box, glm::vec3& contact, int& numContacts, glm::vec3& edgeNormal, glm::vec3& contactForce); //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_width // // Return: // Returns a float m_width //---------------------------------------------------------------------------------------------- float getWidth() { return m_width; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_hight // // Return: // Returns a float m_hight //---------------------------------------------------------------------------------------------- float getHight() { return m_hight; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_depth // // Return: // Returns a float m_depth //---------------------------------------------------------------------------------------------- float getDepth() { return m_depth; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_moment // // Return: // Returns a float m_moment //---------------------------------------------------------------------------------------------- float getMoment() { return m_moment; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB Min points // // Return: // Returns a vec3 of th box min //---------------------------------------------------------------------------------------------- glm::vec3 getMin() { return glm::vec3(m_postition.x - (m_width), m_postition.y - (m_hight), m_postition.z - (m_depth)); } //---------------------------------------------------------------------------------------------- // Gets BoxOOB Max points // // Return: // Returns a vec3 of th box max //---------------------------------------------------------------------------------------------- glm::vec3 getMax() { return glm::vec3(m_postition.x + (m_width), m_postition.y + (m_hight), m_postition.z + (m_depth)); } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_extents // // Return: // Returns a vec3 m_extents //---------------------------------------------------------------------------------------------- glm::vec3 getExtents() { return m_extents; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_localX // // Return: // Returns a vec3 m_localX //---------------------------------------------------------------------------------------------- glm::vec3 getLocalX() { return m_localX; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_localY // // Return: // Returns a vec3 m_localY //---------------------------------------------------------------------------------------------- glm::vec3 getLocalY() { return m_localY; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_localZ // // Return: // Returns a vec3 m_localZ //---------------------------------------------------------------------------------------------- glm::vec3 getLocalZ() { return m_localZ; } //---------------------------------------------------------------------------------------------- // Gets BoxOOB m_colour // // Return: // Returns a vec4 m_colour //---------------------------------------------------------------------------------------------- glm::vec4 getColour() { return m_colour; } protected: glm::vec3 m_extents; glm::vec4 m_colour; glm::vec3 m_localX; glm::vec3 m_localY; glm::vec3 m_localZ; float m_width; float m_hight; float m_depth; glm::vec3 m_min; glm::vec3 m_max; };
9d9d29148c82eafc3b8f58cb76ebe70e7fa97acb
8f8ba40568bf7010c7fd8c6025f1025c18cc025a
/Structure/5430_AC.cpp
26b1c29b5b827de7b71957640c4b0d77cdc09a76
[]
no_license
midaslmg94/CodingTest
bff5e3a3c59f220d71d6ab8a1ed72317342a2f27
4da7c445de6c95fce469dccfe1cd7dc8593236bd
refs/heads/master
2023-04-16T02:31:22.905559
2021-04-26T15:26:55
2021-04-26T15:26:55
222,143,535
1
0
null
null
null
null
UHC
C++
false
false
1,626
cpp
5430_AC.cpp
#include<iostream> #include<string> #include<deque> using namespace std; deque<int>dq; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int T; // 테스트 케이스 string func;// 수행할 명령, R:배열 뒤집기, D:맨앞원소 삭제 int n; // 배열의 개수 string arr; cin >> T; while (T--) { dq.clear(); cin >> func; cin >> n; cin >> arr;// [1,21,100,4] 와 같이 입력. 쉼표를 없애고 숫자를 int형으로 바꿔서 덱에 넣자 string tmp = ""; // 전처리 if (n != 0) { // n=0 일경우 덱에 입력할 필요없음 for (int i = 1; i < arr.size() - 1; i++) { if ('0' <= arr[i] && arr[i] <= '9') { tmp += arr[i]; } else { dq.push_back(stoi(tmp)); tmp = ""; } } dq.push_back(stoi(tmp));// 마지막 원소 입력 } //명령처리 bool reverse = false; bool is_empty = false; for (int i = 0; i < func.size(); i++) { if (func[i] == 'R') { reverse=!reverse; } else { //배열이 비었을 경우 if (dq.empty()) { is_empty = true; break; } if (!reverse) {// 정순일 경우 dq.pop_front(); } else {//역순일 경우 dq.pop_back(); } } } //출력처리 if (is_empty) { cout << "error\n"; } else { if (dq.empty()) { cout << "[]\n"; } else { cout << "["; while (!dq.empty()) { if (!reverse) { cout << dq.front(); dq.pop_front(); } else { cout << dq.back(); dq.pop_back(); } if(dq.size()>=1) //쉼표처리 cout << ","; } cout << "]\n"; } } } }
c5e0575844344787cecd806c934900508231f040
bcfb73a1e26f8d92563cb67d084265107194730a
/leetcode/50.cpp
717fa389ae76344e30004b777dad14afdd4dfe1e
[]
no_license
bwzhou/misc
31d336f5be080aa33716f0652e9ff45579ef84b4
3bdf0fd841e0d2b5a7746d534c9e58c6a5be2c20
refs/heads/master
2021-01-18T19:18:29.897925
2014-12-21T08:25:14
2014-12-21T08:25:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
369
cpp
50.cpp
class Solution { public: double pow(double x, int n) { double result = 1; bool sign = n < 0; n = abs(n) & 0x7fffffff; // abs(-2147483648) == -2147483648 while (n) { if (n & 1) { result *= x; } n >>= 1; x *= x; } return sign ? 1/result : result; } };
83f615d3b4fc45aca504b436738e8175822cdfb2
55719398d0e335cddc4100d34b312825cccb0ed0
/TestDrive/WatchDogFile.h
6ee05363cff4614f29a684cee0492eab09b5623a
[ "BSD-3-Clause", "MIT" ]
permissive
15831944/src-1
fc1894afa8bf1414e6a91b53193531a88f5a8002
6b925489270286122952d91e7d2ca9ad1a08daef
refs/heads/master
2023-04-13T22:55:53.340272
2021-05-04T02:48:57
2021-05-04T02:48:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
h
WatchDogFile.h
#pragma once #define CWM_FILE_CHANGED_NOTIFICATION (WM_USER+1) //---------------------------------------------------------- // CWatchDogFolder class CWatchDogFile; class CWatchDogFileClient { protected: list<CWatchDogFile*> m_WatchDogFolderList; public: void AddWatchingFile(LPCTSTR lpszFileName, HWND hWnd, DWORD dwID, BOOL bSearchSubDir); void ClearWatchingFile(DWORD dwID); void ClearWatchingFileAll(void); CWatchDogFileClient(); virtual ~CWatchDogFileClient(); }; //---------------------------------------------------------- // CWatchDogFolder class CWatchDogFile { static DWORD WINAPI thFnMonitor(CWatchDogFile* pWatchDog); friend class CWatchDogFileClient; protected: HWND m_hWndToNotify; volatile BOOL m_bWatching; CString m_sPath; HANDLE m_hChangeHandles[2]; DWORD m_dwID; BOOL m_bDir; BOOL m_bSearchSubDir; CWatchDogFile(LPCTSTR lpszFileName, HWND hWnd, DWORD dwID, BOOL bSearchSubDir); virtual ~CWatchDogFile(void); public: LPCTSTR GetPath(void); DWORD GetID(void); BOOL IsDir(void); protected: FILETIME m_LatestFileTime; void CheckTime(BOOL bReportChange = TRUE, LPCTSTR lpszPath = NULL, BOOL bFirst = TRUE); };
9729c54a62ddb2ce9a938c81a2d7ef7fc90804a4
e6f6a3205cb80405c54548a6292282ad5d36ec53
/reverse_chars.cpp
a7f4fd0c5623f4f1c6273dcb7d18dd00b5e38d8e
[]
no_license
fezhang/cpp_exp
f65a9dd06e671ef62b0ee299f5e75dd8b08fbcab
8f1b48e9b982b481d607f38fa8ac1a988d150c04
refs/heads/master
2021-01-11T09:55:56.651316
2016-09-30T08:37:48
2016-09-30T08:37:48
69,544,372
0
0
null
null
null
null
GB18030
C++
false
false
1,358
cpp
reverse_chars.cpp
#include "cpp_exp_base.h" #include <iostream> namespace { struct ascii; struct utf8; // just some dummy types template<typename Charset> int mymblen(const char *, int); template<> int mymblen<ascii>(const char *, int) { return 1; } template<> int mymblen<utf8>(const char *p, int n) { //hard code to generate special result... static int invoke_time = 0; if (0 == invoke_time || 4 == invoke_time) { ++invoke_time; return 4; } //hard code for chinese characters... ++invoke_time; return 2; //about mblen, ref: http://www.cplusplus.com/reference/cstdlib/mblen/ // return mblen(p, n); } template<typename Charset> void my_reverse(char *str, int n) { mblen(NULL, 0); char *end = str + n; char *p = str; while (p != end) { int len_this_char = mymblen<Charset>(p, end - p); if (len_this_char <= 0) break; std::reverse<char*>(p, p+len_this_char); p += len_this_char; } std::reverse<char*>(str, str+n); } } void test_reverse_chars() { char ascii_buffer[] = "Hello world"; char utf8_buffer[] = "人民日报日人民"; my_reverse<utf8>(utf8_buffer, sizeof(utf8_buffer) - 1); my_reverse<ascii>(ascii_buffer, sizeof(ascii_buffer) - 1); std::cout << " reverse of \"Hello world\" is:" << ascii_buffer<<" \n"; std::cout << " reverse of \"人民日报日人民\" is:" << utf8_buffer << " \n"; };
795bb16dc241ceac8d91af9cefca6f11da26326e
6d34fa23c708320b2e42d120d107f187106302e3
/orca/gporca/libnaucrates/include/naucrates/dxl/operators/CDXLScalarFilter.h
26f87bb70be1ea7f9a9a7995fa5c52fc2fb0b544
[ "Apache-2.0" ]
permissive
joe2hpimn/dg16.oss
a38ca233ba5c9f803f9caa99016a4c7560da9f08
2c4275c832b3e4b715b7475726db6757b127030c
refs/heads/master
2021-08-23T19:11:49.831210
2017-12-06T05:23:22
2017-12-06T05:23:22
113,322,478
2
1
null
2017-12-06T13:50:44
2017-12-06T13:50:44
null
UTF-8
C++
false
false
1,949
h
CDXLScalarFilter.h
//--------------------------------------------------------------------------- // Greenplum Database // Copyright (C) 2010 Greenplum, Inc. // // @filename: // CDXLScalarFilter.h // // @doc: // Class for representing a scalar filter node inside DXL physical operators. // // @owner: // // // @test: // // //--------------------------------------------------------------------------- #ifndef GPDXL_CDXLScalarFilter_H #define GPDXL_CDXLScalarFilter_H #include "gpos/base.h" #include "naucrates/dxl/operators/CDXLScalar.h" namespace gpdxl { //--------------------------------------------------------------------------- // @class: // CDXLScalarFilter // // @doc: // Class for representing DXL filter operators // //--------------------------------------------------------------------------- class CDXLScalarFilter : public CDXLScalar { private: // private copy ctor CDXLScalarFilter(CDXLScalarFilter&); public: // ctor/dtor explicit CDXLScalarFilter(IMemoryPool *pmp); // accessors Edxlopid Edxlop() const; const CWStringConst *PstrOpName() const; // serialize operator in DXL format virtual void SerializeToDXL(CXMLSerializer *pxmlser, const CDXLNode *pdxln) const; // conversion function static CDXLScalarFilter *PdxlopConvert ( CDXLOperator *pdxlop ) { GPOS_ASSERT(NULL != pdxlop); GPOS_ASSERT(EdxlopScalarFilter == pdxlop->Edxlop()); return dynamic_cast<CDXLScalarFilter*>(pdxlop); } // does the operator return a boolean result virtual BOOL FBoolean ( CMDAccessor *//pmda ) const { GPOS_ASSERT(!"Invalid function call for a container operator"); return false; } #ifdef GPOS_DEBUG // checks whether the operator has valid structure virtual void AssertValid(const CDXLNode *pdxln, BOOL fValidateChildren) const; #endif // GPOS_DEBUG }; } #endif // !GPDXL_CDXLScalarFilter_H // EOF
4cda002c1056701115b3923c2ce3ff30c28ad203
3a18a819439367db7737aef514e59c09ed25b90e
/Week4_Q4/main.cpp
ea35122840bdb1bc92271316c6da90691cef92a1
[]
no_license
FebruaryAmber/CPP_project2
2d730de5a5db1fbaf0476d54438dd4a4613e846f
6b877475d865c9797234a0482faaa582ec047c7e
refs/heads/master
2021-05-02T06:06:37.886792
2018-02-15T03:01:04
2018-02-15T03:01:04
120,852,202
0
0
null
null
null
null
UTF-8
C++
false
false
1,065
cpp
main.cpp
#include <cstdlib> #include <iostream> #include <cmath> using namespace std; int main(int argc, char *argv[]) { double xf = 0.0, xs = 0.0; double a = 0.0, b = 0.0, c = 0.0; double d = 0.0; cout << "ax^2 + bx + c = 0" << endl; cout << "Enter a: "; cin >> a; cout << endl; cout << "Enter b: "; cin >> b; cout << endl; cout << "Enter c: "; cin >> c; cout << endl; d = pow(b,2) - 4*a*c; if(d > 0) { xf = -b/(2*a) + (1/(2*a)*sqrt(d)); xs = -b/(2*a) - (1/(2*a)*sqrt(d)); cout << "x has two solution" << endl; cout << "x1 = " << xf << endl; cout << "x2 = " << xs << endl; } else if(d == 0) { xf = -b/(2*a); cout << "x has one solution" << endl; cout << "x1 = " << xf << endl; } else if(d < 0) { cout << "x has two comples roots" << endl; } system("pause"); return EXIT_SUCCESS; }
3e79f1c8acc5b5fee4728e2e26cc8bea0d06788b
da9acb6b4741c1d2e04b5e828756ad06f278019d
/Src/Update/DesktopToasts/dllmain.cpp
cccd93365476b73103bc8c09447276a31d550fef
[ "MIT" ]
permissive
Open-Shell/Open-Shell-Menu
aed7bbbb77ec06621d9f4cb4af7abebc319d2627
d2985bab88ef3436f4001cef5279eeba64614a6d
refs/heads/master
2023-08-15T03:57:15.578374
2023-07-31T15:48:01
2023-07-31T16:02:32
120,563,140
5,548
518
MIT
2023-09-13T08:27:03
2018-02-07T04:32:27
C++
UTF-8
C++
false
false
4,160
cpp
dllmain.cpp
// dllmain.cpp : Defines the entry point for the DLL application. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include <windows.h> #include <NotificationActivationCallback.h> #include <windows.ui.notifications.h> #include <wrl/wrappers/corewrappers.h> #include "DesktopToasts.h" #include "DesktopNotificationManagerCompat.h" #define RETURN_IF_FAILED(hr) do { HRESULT _hrTemp = hr; if (FAILED(_hrTemp)) { return _hrTemp; } } while (false) using namespace ABI::Windows::Data::Xml::Dom; using namespace ABI::Windows::UI::Notifications; using namespace Microsoft::WRL; using namespace Microsoft::WRL::Wrappers; DesktopToastActivateHandler g_handler = nullptr; void* g_handlerContext = nullptr; class DECLSPEC_UUID("E407B70A-1FBD-4D5E-8822-231C69102472") NotificationActivator WrlSealed WrlFinal : public RuntimeClass<RuntimeClassFlags<ClassicCom>, INotificationActivationCallback> { public: virtual HRESULT STDMETHODCALLTYPE Activate( _In_ LPCWSTR appUserModelId, _In_ LPCWSTR invokedArgs, _In_reads_(dataCount) const NOTIFICATION_USER_INPUT_DATA * data, ULONG dataCount) override { if (g_handler) g_handler(g_handlerContext, invokedArgs); return S_OK; } }; // Flag class as COM creatable CoCreatableClass(NotificationActivator); HRESULT Initialize(LPCWSTR appUserModelId, DesktopToastActivateHandler handler, void* handlerContext) { RETURN_IF_FAILED(DesktopNotificationManagerCompat::RegisterAumidAndComServer(appUserModelId, __uuidof(NotificationActivator))); RETURN_IF_FAILED(DesktopNotificationManagerCompat::RegisterActivator()); g_handler = handler; g_handlerContext = handlerContext; return S_OK; } HRESULT SetNodeValueString(HSTRING inputString, IXmlNode* node, IXmlDocument* xml) { ComPtr<IXmlText> inputText; RETURN_IF_FAILED(xml->CreateTextNode(inputString, &inputText)); ComPtr<IXmlNode> inputTextNode; RETURN_IF_FAILED(inputText.As(&inputTextNode)); ComPtr<IXmlNode> appendedChild; return node->AppendChild(inputTextNode.Get(), &appendedChild); } _Use_decl_annotations_ HRESULT SetTextValues(const PCWSTR* textValues, UINT32 textValuesCount, IXmlDocument* toastXml) { ComPtr<IXmlNodeList> nodeList; RETURN_IF_FAILED(toastXml->GetElementsByTagName(HStringReference(L"text").Get(), &nodeList)); UINT32 nodeListLength; RETURN_IF_FAILED(nodeList->get_Length(&nodeListLength)); // If a template was chosen with fewer text elements, also change the amount of strings // passed to this method. RETURN_IF_FAILED(textValuesCount <= nodeListLength ? S_OK : E_INVALIDARG); for (UINT32 i = 0; i < textValuesCount; i++) { ComPtr<IXmlNode> textNode; RETURN_IF_FAILED(nodeList->Item(i, &textNode)); RETURN_IF_FAILED(SetNodeValueString(HStringReference(textValues[i]).Get(), textNode.Get(), toastXml)); } return S_OK; } HRESULT DisplaySimpleToast(LPCWSTR title, LPCWSTR text) { // Construct XML ComPtr<IXmlDocument> doc; HRESULT hr = DesktopNotificationManagerCompat::CreateXmlDocumentFromString(L"<toast><visual><binding template='ToastGeneric'><text></text><text></text></binding></visual></toast>", &doc); if (SUCCEEDED(hr)) { PCWSTR textValues[] = { title, text }; SetTextValues(textValues, ARRAYSIZE(textValues), doc.Get()); // Create the notifier // Classic Win32 apps MUST use the compat method to create the notifier ComPtr<IToastNotifier> notifier; hr = DesktopNotificationManagerCompat::CreateToastNotifier(&notifier); if (SUCCEEDED(hr)) { // Create the notification itself (using helper method from compat library) ComPtr<IToastNotification> toast; hr = DesktopNotificationManagerCompat::CreateToastNotification(doc.Get(), &toast); if (SUCCEEDED(hr)) { // And show it! hr = notifier->Show(toast.Get()); } } } return hr; } BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; }
9f267d58fb86259a9d90e653aea51e7fc31936de
f0bd42c8ae869dee511f6d41b1bc255cb32887d5
/Codeforces/_Gym/2016-2017 CT S03E04/E. The Bavarian Beer Party.cpp
d6990098638e37abda8de1ba512be0017317f039
[]
no_license
osamahatem/CompetitiveProgramming
3c68218a181d4637c09f31a7097c62f20977ffcd
a5b54ae8cab47b2720a64c68832a9c07668c5ffb
refs/heads/master
2021-06-10T10:21:13.879053
2020-07-07T14:59:44
2020-07-07T14:59:44
113,673,720
3
1
null
null
null
null
UTF-8
C++
false
false
754
cpp
E. The Bavarian Beer Party.cpp
/* * E. The Bavarian Beer Party.cpp * * Created on: Oct 11, 2016 * Author: Osama Hatem */ #include <bits/stdtr1c++.h> #include <ext/numeric> using namespace std; int arr[1000], dp[1005][1005]; int solve(int s, int e) { if (s >= e) return 0; int& ret = dp[s][e]; if (~ret) return ret; for (int i = s + 1; i <= e; i += 2) ret = max(ret, solve(s + 1, i - 1) + solve(i + 1, e) + (arr[s] == arr[i])); return ret; } int main() { #ifndef ONLINE_JUDGE freopen("in.in", "r", stdin); // freopen("out.out", "w", stdout); #endif int T; scanf("%d", &T); while (T--) { int n; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%d", &arr[i]); memset(dp, -1, sizeof dp); printf("%d\n", solve(0, n - 1)); } return 0; }
ac53d32b8bbc887a5b82e29cf9c228bcdfd533b5
6531b58ee909b5e5c92986640bb4716824710106
/src/HSS/HSSMatrixMPI.apply.hpp
324667b03d561240e1d404ab524363ad5d90e4d2
[ "BSD-3-Clause-LBNL" ]
permissive
pghysels/STRUMPACK
f062402a145774cc02b3c870c24b2fef96ee2f6a
19d22f7d7c688bd5fecf2751f31d091c396cb225
refs/heads/master
2023-08-30T21:32:31.297526
2023-08-30T02:45:09
2023-08-30T02:45:09
93,773,766
127
32
NOASSERTION
2023-08-31T04:04:43
2017-06-08T17:12:31
C++
UTF-8
C++
false
false
9,854
hpp
HSSMatrixMPI.apply.hpp
/* * STRUMPACK -- STRUctured Matrices PACKage, Copyright (c) 2014, The * Regents of the University of California, through Lawrence Berkeley * National Laboratory (subject to receipt of any required approvals * from the U.S. Dept. of Energy). All rights reserved. * * If you have questions about your rights to use or distribute this * software, please contact Berkeley Lab's Technology Transfer * Department at TTD@lbl.gov. * * NOTICE. This software is owned by the U.S. Department of Energy. As * such, the U.S. Government has been granted for itself and others * acting on its behalf a paid-up, nonexclusive, irrevocable, * worldwide license in the Software to reproduce, prepare derivative * works, and perform publicly and display publicly. Beginning five * (5) years after the date permission to assert copyright is obtained * from the U.S. Department of Energy, and subject to any subsequent * five (5) year renewals, the U.S. Government is granted for itself * and others acting on its behalf a paid-up, nonexclusive, * irrevocable, worldwide license in the Software to reproduce, * prepare derivative works, distribute copies to the public, perform * publicly and display publicly, and to permit others to do so. * * Developers: Pieter Ghysels, Francois-Henry Rouet, Xiaoye S. Li. * (Lawrence Berkeley National Lab, Computational Research * Division). */ #ifndef HSS_MATRIX_MPI_APPLY_HPP #define HSS_MATRIX_MPI_APPLY_HPP namespace strumpack { namespace HSS { template<typename scalar_t> void HSSMatrixMPI<scalar_t>::mult (Trans op, const DistM_t& x, DistM_t& y) const { apply_HSS(op, *this, x, scalar_t(0.), y); } template<typename scalar_t> DistributedMatrix<scalar_t> HSSMatrixMPI<scalar_t>::apply(const DistM_t& b) const { assert(this->cols() == std::size_t(b.rows())); DistM_t c(b.grid(), this->rows(), b.cols()); #if !defined(NDEBUG) c.zero(); // silence valgrind #endif apply_HSS(Trans::N, *this, b, scalar_t(0.), c); return c; } template<typename scalar_t> DistributedMatrix<scalar_t> HSSMatrixMPI<scalar_t>::applyC(const DistM_t& b) const { assert(this->rows() == std::size_t(b.rows())); DistM_t c(b.grid(), this->cols(), b.cols()); #if !defined(NDEBUG) c.zero(); // silence valgrind #endif apply_HSS(Trans::C, *this, b, scalar_t(0.), c); return c; } template<typename scalar_t> void apply_HSS (Trans ta, const HSSMatrixMPI<scalar_t>& a, const DistributedMatrix<scalar_t>& b, scalar_t beta, DistributedMatrix<scalar_t>& c) { DistSubLeaf<scalar_t> B(b.cols(), &a, a.grid_local(), b), C(b.cols(), &a, a.grid_local()); WorkApplyMPI<scalar_t> w; long long int flops = 0; if (ta == Trans::N) { a.apply_fwd(B, w, true, flops); a.apply_bwd(B, beta, C, w, true, flops); } else { a.applyT_fwd(B, w, true, flops); a.applyT_bwd(B, beta, C, w, true, flops); } C.from_block_row(c); } template<typename scalar_t> void HSSMatrixMPI<scalar_t>::apply_fwd (const DistSubLeaf<scalar_t>& B, WorkApplyMPI<scalar_t>& w, bool isroot, long long int flops) const { if (!this->active()) return; if (this->leaf()) { if (!isroot) { w.tmp1 = V_.applyC(B.leaf); flops += V_.applyC_flops(B.leaf.cols()); } } else { w.c.resize(2); w.c[0].offset = w.offset; w.c[1].offset = w.offset + child(0)->dims(); child(0)->apply_fwd(B, w.c[0], Comm().size()==1, flops); child(1)->apply_fwd(B, w.c[1], Comm().size()==1, flops); if (!isroot) { w.tmp1 = V_.applyC (vconcat(B.cols(), B10_.cols(), B01_.cols(), w.c[0].tmp1, w.c[1].tmp1, grid(), grid()->ctxt_all())); flops += V_.applyC_flops(B.cols()); } } } template<typename scalar_t> void HSSMatrixMPI<scalar_t>::apply_bwd (const DistSubLeaf<scalar_t>& B, scalar_t beta, DistSubLeaf<scalar_t>& C, WorkApplyMPI<scalar_t>& w, bool isroot, long long int flops) const { if (!this->active()) return; if (this->leaf()) { if (this->U_rank() && !isroot) { // c = D*b + beta*c + U*w.tmp2 gemm(Trans::N, Trans::N, scalar_t(1.), D_, B.leaf, beta, C.leaf); C.leaf.add(U_.apply(w.tmp2)); flops += C.leaf.rows() * C.leaf.cols() + gemm_flops(Trans::N, Trans::N, scalar_t(1.), D_, B.leaf, beta); } else { gemm(Trans::N, Trans::N, scalar_t(1.), D_, B.leaf, beta, C.leaf); flops += gemm_flops(Trans::N, Trans::N, scalar_t(1.), D_, B.leaf, beta); } } else { auto n = B.cols(); DistM_t c0tmp1(grid(), B10_.cols(), n, w.c[0].tmp1, grid()->ctxt_all()); DistM_t c1tmp1(grid(), B01_.cols(), n, w.c[1].tmp1, grid()->ctxt_all()); DistM_t c0tmp2(grid(), B01_.rows(), n); DistM_t c1tmp2(grid(), B10_.rows(), n); if (isroot || !this->U_rank()) { gemm(Trans::N, Trans::N, scalar_t(1.), B01_, c1tmp1, scalar_t(0.), c0tmp2); gemm(Trans::N, Trans::N, scalar_t(1.), B10_, c0tmp1, scalar_t(0.), c1tmp2); flops += gemm_flops(Trans::N, Trans::N, scalar_t(1.), B01_, c1tmp1, scalar_t(0.)) + gemm_flops(Trans::N, Trans::N, scalar_t(1.), B10_, c0tmp1, scalar_t(0.)); } else { auto tmp = U_.apply(w.tmp2); copy(B01_.rows(), n, tmp, 0, 0, c0tmp2, 0, 0, grid()->ctxt_all()); copy(B10_.rows(), n, tmp, B01_.rows(), 0, c1tmp2, 0, 0, grid()->ctxt_all()); gemm(Trans::N, Trans::N, scalar_t(1.), B01_, c1tmp1, scalar_t(1.), c0tmp2); gemm(Trans::N, Trans::N, scalar_t(1.), B10_, c0tmp1, scalar_t(1.), c1tmp2); flops += gemm_flops(Trans::N, Trans::N, scalar_t(1.), B01_, c1tmp1, scalar_t(1.)) + gemm_flops(Trans::N, Trans::N, scalar_t(1.), B10_, c0tmp1, scalar_t(1.)); } w.c[0].tmp2 = DistM_t (w.c[0].tmp1.grid(), B01_.rows(), n, c0tmp2, grid()->ctxt_all()); w.c[1].tmp2 = DistM_t (w.c[1].tmp1.grid(), B10_.rows(), n, c1tmp2, grid()->ctxt_all()); child(0)->apply_bwd(B, beta, C, w.c[0], false, flops); child(1)->apply_bwd(B, beta, C, w.c[1], false, flops); } } template<typename scalar_t> void HSSMatrixMPI<scalar_t>::applyT_fwd (const DistSubLeaf<scalar_t>& B, WorkApplyMPI<scalar_t>& w, bool isroot, long long int flops) const { if (!this->active()) return; if (this->leaf()) { if (!isroot) { w.tmp1 = U_.applyC(B.leaf); flops += U_.applyC_flops(B.leaf.cols()); } } else { w.c.resize(2); w.c[0].offset = w.offset; w.c[1].offset = w.offset + child(0)->dims(); child(0)->applyT_fwd(B, w.c[0], Comm().size()==1, flops); child(1)->applyT_fwd(B, w.c[1], Comm().size()==1, flops); if (!isroot) { w.tmp1 = U_.applyC (vconcat(B.cols(), B01_.rows(), B10_.rows(), w.c[0].tmp1, w.c[1].tmp1, grid(), grid()->ctxt_all())); flops += U_.applyC_flops(B.cols()); } } } template<typename scalar_t> void HSSMatrixMPI<scalar_t>::applyT_bwd (const DistSubLeaf<scalar_t>& B, scalar_t beta, DistSubLeaf<scalar_t>& C, WorkApplyMPI<scalar_t>& w, bool isroot, long long int flops) const { if (!this->active()) return; if (this->leaf()) { if (this->V_rank() && !isroot) { // c = D*b + beta*c + U*w.tmp2 gemm(Trans::C, Trans::N, scalar_t(1.), D_, B.leaf, beta, C.leaf); C.leaf.add(V_.apply(w.tmp2)); flops += C.leaf.rows() * C.leaf.cols() + gemm_flops(Trans::C, Trans::N, scalar_t(1.), D_, B.leaf, beta); } else { gemm(Trans::C, Trans::N, scalar_t(1.), D_, B.leaf, beta, C.leaf); flops += gemm_flops(Trans::C, Trans::N, scalar_t(1.), D_, B.leaf, beta); } } else { auto n = B.cols(); DistM_t c0tmp1(grid(), B01_.rows(), n, w.c[0].tmp1, grid()->ctxt_all()); DistM_t c1tmp1(grid(), B10_.rows(), n, w.c[1].tmp1, grid()->ctxt_all()); DistM_t c0tmp2(grid(), B10_.cols(), n); DistM_t c1tmp2(grid(), B01_.cols(), n); if (isroot || !this->V_rank()) { gemm(Trans::C, Trans::N, scalar_t(1.), B10_, c1tmp1, scalar_t(0.), c0tmp2); gemm(Trans::C, Trans::N, scalar_t(1.), B01_, c0tmp1, scalar_t(0.), c1tmp2); flops += gemm_flops(Trans::C, Trans::N, scalar_t(1.), B10_, c1tmp1, scalar_t(0.)) + gemm_flops(Trans::C, Trans::N, scalar_t(1.), B01_, c0tmp1, scalar_t(0.)); } else { auto tmp = V_.apply(w.tmp2); copy(c0tmp2.rows(), n, tmp, 0, 0, c0tmp2, 0, 0, grid()->ctxt_all()); copy(c1tmp2.rows(), n, tmp, c0tmp2.rows(), 0, c1tmp2, 0, 0, grid()->ctxt_all()); gemm(Trans::C, Trans::N, scalar_t(1.), B10_, c1tmp1, scalar_t(1.), c0tmp2); gemm(Trans::C, Trans::N, scalar_t(1.), B01_, c0tmp1, scalar_t(1.), c1tmp2); flops += gemm_flops(Trans::C, Trans::N, scalar_t(1.), B10_, c1tmp1, scalar_t(1.)) + gemm_flops(Trans::C, Trans::N, scalar_t(1.), B01_, c0tmp1, scalar_t(1.)); } w.c[0].tmp2 = DistM_t (w.c[0].tmp1.grid(), c0tmp2.rows(), n, c0tmp2, grid()->ctxt_all()); w.c[1].tmp2 = DistM_t (w.c[1].tmp1.grid(), c1tmp2.rows(), n, c1tmp2, grid()->ctxt_all()); child(0)->applyT_bwd(B, beta, C, w.c[0], false, flops); child(1)->applyT_bwd(B, beta, C, w.c[1], false, flops); } } } // end namespace HSS } // end namespace strumpack #endif // HSS_MATRIX_MPI_APPLY_HPP
2dc43091186c65f56adef1cfbd36c05e871b3b75
0ae34a60fc99214d0ff69aa754706090386ffd6c
/example/product_cpp.h
6ec8a664d4753f858918871a75e2230b119548b8
[ "Apache-2.0" ]
permissive
lingjf/h2unit
a0b1a14be9d60873edeca056ae3eb073c8860c43
5a55c718bc22ba52bd4500997b2df18939996efa
refs/heads/master
2023-05-11T07:43:49.259949
2022-01-02T14:51:09
2022-01-02T14:51:09
7,323,420
5
5
Apache-2.0
2020-10-07T14:11:29
2012-12-26T05:06:40
C++
UTF-8
C++
false
false
871
h
product_cpp.h
#ifndef _PRODUCT_CPP_H_ #define _PRODUCT_CPP_H_ class Shape { public: int x, y; const char* name; public: Shape(int _x, int _y, const char* _name) : x(_x), y(_y), name(_name) {} virtual ~Shape() {} static int born(int a) { return 0; } int move(int x, int y) { this->x += x; this->y += y; return 0; } int move(int xy); virtual const char* print() = 0; }; class Rect : public Shape { public: int width, height; public: Rect(int left, int top, int _width, int _height) : Shape(left, top, "Rect"), width(_width), height(_height) { } void scale(double x) { width = (int)(width * x); height = (int)(height * x); } const char* print() { return "Rect"; } int serialize(unsigned char* buffer, int length); void dump(const char* filename); }; #endif
5d69a53f5da7ae09e59c90580637d58c16de1505
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/multimedia/dshow/filters.ks/dbgpages/dbgpipes.cpp
26c59b9713e041b461c746e96669e563977b4fca
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
29,282
cpp
dbgpipes.cpp
/*++ Copyright (C) Microsoft Corporation, 2000 Module Name: dbgpipes.cpp Abstract: Internal debugging property page implementation for pipes implementation in KsProxy. Author(s): Bill Messmer --*/ #include <afxres.h> #include <windows.h> #include <windowsx.h> #include <streams.h> #include <commctrl.h> #include <memory.h> #include <olectl.h> #include <ks.h> #include <ksmedia.h> #include <ksproxy.h> #include "..\ksproxy\ksiproxy.h" #include "dbgpages.h" #include "resource.h" #define ListBox_InsertItem(hwnd, str) \ SendMessage (hwnd, LB_ADDSTRING, 0, (LPARAM)str) /************************************************************************** PIPES DEBUG PROPERTY PAGE **************************************************************************/ /************************************************************************** INSTANCE CREATION / IPropertyPage IMPLEMENTATION **************************************************************************/ CUnknown * CKsDebugPipesPropertyPage:: CreateInstance ( IN LPUNKNOWN lpunk, OUT HRESULT *phr ) /*++ Routine Description: Create an instance of the property page Arguments: lpunk - phr - Status of instance creation Return Value: An instance of the property page --*/ { CUnknown *PropertyPage = (CUnknown *)new CKsDebugPipesPropertyPage (lpunk, phr); if (PropertyPage == NULL) *phr = E_OUTOFMEMORY; return PropertyPage; } CKsDebugPipesPropertyPage:: ~CKsDebugPipesPropertyPage ( ) /*++ Routine Description: Destructor for the debug pipes property page. --*/ { // // This should happen via the property page site sending us a // SetObjects (0, NULL). Cleanup just incase. // if (m_Filter) { m_Filter -> Release (); m_Filter = NULL; } if (m_Pin) { m_Pin -> Release (); m_Pin = NULL; } } CKsDebugPipesPropertyPage:: CKsDebugPipesPropertyPage ( IN LPUNKNOWN lpunk, OUT HRESULT *phr ) : CUnknown (NAME("Debug Pipes Property Page"), lpunk, phr), m_Filter (NULL), m_Pin (NULL), m_PageSite (NULL), m_Window (NULL) /*++ Routine Description: Construct an instance of the debug pipes property page. Arguments: lpunk - phr - Status of construction Return Value: None --*/ { } STDMETHODIMP CKsDebugPipesPropertyPage:: NonDelegatingQueryInterface ( IN REFIID riid, OUT void **ppv ) /*++ Routine Description: Non delegating query interface for the property page COM object. Arguments: riid - The interface being queried ppv - Output where interface pointer is placed Return Value: Success / Failure --*/ { if (riid == IID_IPropertyPage) return GetInterface ((IPropertyPage *)this, ppv); else return CUnknown::NonDelegatingQueryInterface (riid, ppv); } STDMETHODIMP CKsDebugPipesPropertyPage:: GetPageInfo ( OUT LPPROPPAGEINFO PageInfo ) /*++ Routine Description: IPropertyPage::GetPageInfo implementation. Return information about the debug pipes property page. Arguments: PageInfo - The page information will be returned here Return Value: Success / Failure --*/ { WCHAR ITitle[] = L"Debug Pipes"; LPOLESTR Title; if (!PageInfo) return E_POINTER; // // Caller has responsibility of freeing this. // Title = (LPOLESTR)CoTaskMemAlloc (sizeof (ITitle)); if (!Title) return E_OUTOFMEMORY; memcpy (Title, ITitle, sizeof (ITitle)); PageInfo -> cb = sizeof (PROPPAGEINFO); PageInfo -> pszTitle = Title; PageInfo -> size.cx = 256; PageInfo -> size.cy = 128; GetDialogSize ( IDC_CONFIG, CKsDebugPipesPropertyPage::DialogProc, 0L, &PageInfo -> size ); PageInfo -> pszDocString = NULL; PageInfo -> pszHelpFile = NULL; PageInfo -> dwHelpContext = 0; return S_OK; } STDMETHODIMP CKsDebugPipesPropertyPage:: SetObjects ( IN ULONG NumObjects, IN LPUNKNOWN FAR* Objects ) /*++ Routine Description: Implement IPropertyPage::SetObjects. Cache the pointers related to this property page. If NumObjects is zero, release any interface pointers we have hold on. Arguments: NumObjects - The number of unknowns in the Objects array. Objects - Unknown pointers to any objects related to this property page Return Value: Success / Failure --*/ { // // If the count is zero, we're being asked to release any interface // pointers we hold ref on. // if (NumObjects == 0) { if (m_Pin) { m_Pin -> Release(); m_Pin = NULL; } if (m_Filter) { m_Filter -> Release (); m_Filter = NULL; } } else { if (!Objects) return E_POINTER; // // Find any related object pointers. This is being looped to provide // for future use of this property page. // LPUNKNOWN FAR *Object = Objects; for (ULONG i = 0; i < NumObjects; i++) { IKsPin *Pin; if (!*Object) { SetObjects (0, NULL); return E_POINTER; } HRESULT hr = (*Object) -> QueryInterface ( IID_IKsPin, (void **)&Pin ); if (SUCCEEDED (hr)) { // // Only one pin should be in this list! // if (m_Pin) { SetObjects (0, NULL); return E_FAIL; } m_Pin = Pin; // // Determine the pin type and parent filter. // HRESULT hr; if (!SUCCEEDED (hr = (DeterminePinTypeAndParentFilter ()))) { SetObjects (0, NULL); return hr; } } else { // // Warning: unknown object in the list? Only fail if we didn't // get the pin. // } } } // // If we don't have the pin interface, release everything we did get and // return such. // if (!m_Pin && NumObjects != 0) { SetObjects (0, NULL); return E_NOINTERFACE; } return S_OK; } STDMETHODIMP CKsDebugPipesPropertyPage:: IsPageDirty ( void ) /*++ Routine Description: Implement the IPropertyPage::IsPageDirty function. Since we are just displaying static information about the pipes system configuration, we always return S_FALSE. Arguments: None Return Value: S_FALSE (we are never dirty) --*/ { // // We provide static information about the pipes system. We cannot // make any changes, ever. Just return S_FALSE. // return S_FALSE; } STDMETHODIMP CKsDebugPipesPropertyPage:: Apply ( void ) /*++ Routine Description: Implement the IPropertyPage::Apply function. Since we are just displaying static information about the pipes system configuration, we always return S_OK. Never actually attempt to make any changes. Arguments: None Return Value: S_OK (we never really apply changes) --*/ { // // We provide static information about the pipes system. No changes // can ever be made. Just return S_OK. // return S_OK; } STDMETHODIMP CKsDebugPipesPropertyPage:: SetPageSite ( IN IPropertyPageSite *PageSite ) /*++ Routine Description: Set the page site or clean up the page site interface pointers as specified by IPropertyPage::SetPageSite. Arguments: PageSite - The property page site. Return Value: Success / Failure --*/ { // // NULL indicates a cleanup. Release our ref on the page site. // if (PageSite == NULL) { if (!m_PageSite) return E_UNEXPECTED; m_PageSite -> Release (); m_PageSite = NULL; } else { if (!PageSite) return E_POINTER; m_PageSite = PageSite; m_PageSite -> AddRef(); } return S_OK; } STDMETHODIMP CKsDebugPipesPropertyPage:: Activate ( IN HWND ParentWindow, IN LPCRECT Rect, IN BOOL Modal ) /*++ Routine Description: Implement the IPropertyPage::Active function. Create the dialog window and move it to the specified location. Arguments: ParentWindow - The parent window for the dialog Rect - The rect specifying the characteristics of the property page dialog we will create. Modal - Indicates whether the dialog is modal or not. --*/ { if (!ParentWindow || !Rect) return E_POINTER; TCHAR* Dialog = MAKEINTRESOURCE (IDD_PIPEDIALOG); m_Window = CreateDialogParam ( g_hInst, Dialog, ParentWindow, CKsDebugPipesPropertyPage::DialogProc, (LPARAM)this ); if (!m_Window) { return E_FAIL; } // // Set parental control. // SetWindowLong (m_Window, GWL_USERDATA, (long)this); DWORD dwStyle = GetWindowLong (m_Window, GWL_EXSTYLE); dwStyle = dwStyle | WS_EX_CONTROLPARENT; SetWindowLong (m_Window, GWL_EXSTYLE, dwStyle); UpdatePipeSystem (); return Move (Rect); } STDMETHODIMP CKsDebugPipesPropertyPage:: Deactivate ( void ) /*++ Routine Description: Implement the IPropertyPage::Deactivate function. Destroy our dialog, etc... Arguments: None Return Value: Success / Failure --*/ { if (m_Window == NULL) return E_UNEXPECTED; if (!DestroyWindow (m_Window)) { return E_FAIL; } return S_OK; } STDMETHODIMP CKsDebugPipesPropertyPage:: Move ( IN LPCRECT Rect ) /*++ Description: Implement the IPropertyPage::Move function. Move the dialog as specified by Rect. Arguments: Rect - Specifies the position to move the dialog to Return Value: Success / Failure --*/ { if (!Rect) return E_POINTER; if (!MoveWindow ( m_Window, Rect -> left, Rect -> top, WIDTH (Rect), HEIGHT (Rect), TRUE )) { return E_FAIL; } return S_OK; } STDMETHODIMP CKsDebugPipesPropertyPage:: Show ( IN UINT nCmdShow ) /*++ Description: Implement the IPropertyPage::Show function. Show the dialog as specified by nCmdShow. Arguments: nCmdShow - Return Value: Success / Failure --*/ { if (m_Window == NULL) return E_UNEXPECTED; ShowWindow (m_Window, nCmdShow); InvalidateRect (m_Window, NULL, TRUE); return S_OK; } /************************************************************************** MISC STUFF **************************************************************************/ HRESULT CKsDebugPipesPropertyPage:: DeterminePinTypeAndParentFilter ( ) /*++ Routine Description: Determine whether m_Pin is input or output. Set m_PinType accordingly. --*/ { HRESULT hr = S_OK; if (!m_Pin) return E_UNEXPECTED; IPin *DSPin; PIN_INFO PinInfo; PinInfo.pFilter = NULL; if (m_Filter) { m_Filter -> Release(); m_Filter = NULL; } hr = m_Pin -> QueryInterface (__uuidof (IPin), (void **)&DSPin ); // // Get the pin information so that we have a pointer to the IBaseFilter // implementation on proxy. // if (SUCCEEDED (hr)) { hr = DSPin -> QueryPinInfo (&PinInfo); DSPin -> Release(); } if (SUCCEEDED (hr)) { if (PinInfo.dir == PINDIR_OUTPUT) m_PinType = Pin_Output; else if (PinInfo.dir == PINDIR_INPUT) m_PinType = Pin_Input; else hr = E_FAIL; } if (PinInfo.pFilter) { m_Filter = PinInfo.pFilter; } return hr; } /************************************************************************** DIALOG IMPLEMENTATION **************************************************************************/ BOOL CKsDebugPipesPropertyPage:: DisplayPipeLayoutCallback ( IN IKsPin* KsPin, IN ULONG PinType, IN OUT PVOID* Param1, IN PVOID* Param2, OUT BOOL* IsDone ) /*++ Routine Description: Callback from WalkPipesAndProcess to display pipe layout. Note I don't understand the parameters fully; I'm just using it out of KsProxy. --*/ { HWND ConfigWindow = *((HWND *)Param1); IKsPinPipe *PinPipe; HRESULT hr; hr = KsPin -> QueryInterface (__uuidof (IKsPinPipe), (void **)&PinPipe ); // // It darn well better succeed. // if (SUCCEEDED (hr)) { TCHAR ItemText [512]; PWCHAR PinName = PinPipe -> KsGetPinName (); wsprintf (ItemText, TEXT(" Pin: %ls [0x%p]"), PinName, KsPin); ListBox_InsertItem (ConfigWindow, ItemText); PinPipe -> Release (); } return TRUE; } HRESULT CKsDebugPipesPropertyPage:: DisplayKernelAllocatorProperties ( IN HWND ConfigWindow ) /*++ Routine Description: Display the kernel allocator's properties of m_Pin. This will require sending IOCTLs to the kernel driver, but we'll let the proxy do this for us via the IKsControl interface. Arguments: ConfigWindow - The HWND of the listbox to dump this to. Return Value: Success / Failure --*/ { if (!m_Pin) return E_UNEXPECTED; HRESULT hr; IKsControl *Control = NULL; // // Get the proxy's control interface for the pin. // hr = m_Pin -> QueryInterface (__uuidof (IKsControl), (void **)&Control ); if (SUCCEEDED (hr)) { KSPROPERTY Property; ULONG BytesReturned; KSALLOCATOR_FRAMING_EX FramingExSt; KSALLOCATOR_FRAMING FramingSt; PKSALLOCATOR_FRAMING_EX FramingEx = NULL; PKSALLOCATOR_FRAMING Framing = NULL; Property.Set = KSPROPSETID_Connection; Property.Id = KSPROPERTY_CONNECTION_ALLOCATORFRAMING_EX; Property.Flags = KSPROPERTY_TYPE_GET; hr = Control -> KsProperty ( &Property, sizeof (KSPROPERTY), &FramingExSt, sizeof (FramingExSt), &BytesReturned ); // // If we couldn't get extended allocator framing, either we have // insufficient buffer space, or it isn't supported. // if (!SUCCEEDED (hr)) { // If there was insufficient buffer space, allocate a big // enough buffer and make the property request again. // if (hr == HRESULT_FROM_WIN32 (ERROR_INSUFFICIENT_BUFFER)) { FramingEx = reinterpret_cast <PKSALLOCATOR_FRAMING_EX> (new BYTE [BytesReturned]); if (!FramingEx) { Control -> Release (); return E_OUTOFMEMORY; } hr = Control -> KsProperty ( &Property, sizeof (KSPROPERTY), FramingEx, BytesReturned, &BytesReturned ); } // // If we haven't yet succeeded, assume that this filter doesn't // support extended framing. Try the regular allocator framing // instead. // if (!SUCCEEDED (hr)) { if (FramingEx) { delete [] FramingEx; FramingEx = NULL; } Property.Id = KSPROPERTY_CONNECTION_ALLOCATORFRAMING; hr = Control -> KsProperty ( &Property, sizeof (KSPROPERTY), &FramingSt, sizeof (FramingSt), &BytesReturned ); if (!SUCCEEDED (hr)) { // // If there was insufficient buffer space, allocate // a bug enough buffer and make the property request // again. // if (hr == HRESULT_FROM_WIN32 (ERROR_INSUFFICIENT_BUFFER)) { Framing = reinterpret_cast <PKSALLOCATOR_FRAMING> (new BYTE [BytesReturned]); if (!Framing) { Control -> Release(); return E_OUTOFMEMORY; } hr = Control -> KsProperty ( &Property, sizeof (KSPROPERTY), Framing, BytesReturned, &BytesReturned ); } } else { Framing = &FramingSt; } // // If we didn't succeed, free memory. // if (!SUCCEEDED (hr)) { if (Framing) { delete [] Framing; Framing = NULL; } } } } else { FramingEx = &FramingExSt; } TCHAR ItemText [512]; // // If the extended allocator framing was supported, dump it. // if (FramingEx) { wsprintf (ItemText, TEXT("Kernel Extended Allocator Properties:")); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Compression = %lu / %lu (rcm = %lu)"), FramingEx -> OutputCompression.RatioNumerator, FramingEx -> OutputCompression.RatioDenominator, FramingEx -> OutputCompression.RatioConstantMargin ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Pin Weight = %lu"), FramingEx -> PinWeight ); ListBox_InsertItem (ConfigWindow, ItemText); // // Iterate through all the framing items and dump characteristics. // for (ULONG i = 0; i < FramingEx -> CountItems; i++) { PKS_FRAMING_ITEM FramingItem = &(FramingEx -> FramingItem [i]); wsprintf (ItemText, TEXT(" Framing Item #%lu"), i+1 ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Frames = %lu"), FramingItem -> Frames ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Alignment = %lu"), FramingItem -> FileAlignment ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Memory Type Weight = %lu"), FramingItem -> MemoryTypeWeight ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Physical Range = %lu - %lu (step = %lu)"), FramingItem -> PhysicalRange.MinFrameSize, FramingItem -> PhysicalRange.MaxFrameSize, FramingItem -> PhysicalRange.Stepping ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Framing Range = %lu - %lu (step = %lu)"), FramingItem -> FramingRange.Range.MinFrameSize, FramingItem -> FramingRange.Range.MaxFrameSize, FramingItem -> FramingRange.Range.Stepping ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Framing Range Weights:")); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" In Place = %lu"), FramingItem -> FramingRange.InPlaceWeight ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Not In Place = %lu"), FramingItem -> FramingRange.NotInPlaceWeight ); ListBox_InsertItem (ConfigWindow, ItemText); } } // // Otherwise, if regular allocator framing was supported, dump it. // else if (Framing) { wsprintf (ItemText, TEXT("Kernel Allocator Properties")); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Frames = %lu"), Framing -> Frames ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Frame Size = %lu"), Framing -> FrameSize ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" Alignment = %lu"), Framing -> FileAlignment ); ListBox_InsertItem (ConfigWindow, ItemText); } // // Otherwise, print a message stating that the kernel pin had no // framing! // else { wsprintf (ItemText, TEXT("Kernel Pin Has No Allocator Properties!") ); ListBox_InsertItem (ConfigWindow, ItemText); } // // Clean up // if (FramingEx && FramingEx != &FramingExSt) { delete [] FramingEx; FramingEx = NULL; } if (Framing && Framing != &FramingSt) { delete [] Framing; Framing = NULL; } Control -> Release (); } return hr; } HRESULT CKsDebugPipesPropertyPage:: UpdatePipeSystem ( ) /*++ Routine Description: Update the dialog box (m_Window) with the appropriate pipe system information. Arguments: None Return Value: Success / Failure --*/ { HRESULT hr; if (!m_Pin) return E_UNEXPECTED; IKsPinPipe *PinPipe; IKsAllocatorEx *PipeObject = NULL; // // Get the pin pipe interface for the object. This particular interface // contains information about the pin as well as the pipe it belongs to. // if (!SUCCEEDED ( hr = ( m_Pin -> QueryInterface (__uuidof (IKsPinPipe), (void **)&PinPipe)))) { return hr; } // // Peek the pipe. // PipeObject = PinPipe -> KsGetPipe (KsPeekOperation_PeekOnly); TCHAR ItemText[512]; // // Update the name of the parent filter as KsProxy reports it. // PWCHAR FilterName = PinPipe -> KsGetFilterName (); wsprintf (ItemText, TEXT("%ls [0x%p]"), FilterName, m_Filter); SetDlgItemText (m_Window, IDC_FILTER, ItemText); // // Now, update the name of the pin as KsProxy reports it. // PWCHAR PinName = PinPipe -> KsGetPinName (); wsprintf (ItemText, TEXT("%ls [0x%p]"), PinName, m_Pin); SetDlgItemText (m_Window, IDC_PIN, ItemText); // // Now, update the pipe identifier on the pin as KsProxy reports // it. // if (PipeObject) { wsprintf (ItemText, TEXT("object at 0x%p"), PipeObject); } else { wsprintf (ItemText, TEXT("no pipe assigned yet!")); } SetDlgItemText (m_Window, IDC_PIPE, ItemText); // // Now, update the listbox with the configuration of the pipe. But do // so only if a pipe has been assigned. // if (PipeObject) { HWND ConfigWindow = GetDlgItem (m_Window, IDC_CONFIG); wsprintf (ItemText, TEXT("Pipe Properties:")); ListBox_InsertItem (ConfigWindow, ItemText); // // Determine the allocator properties. // PALLOCATOR_PROPERTIES_EX AllocEx = PipeObject -> KsGetProperties (); if (!AllocEx) { wsprintf (ItemText, TEXT(" Cannot get properties!")); ListBox_InsertItem (ConfigWindow, ItemText); } else { wsprintf (ItemText, TEXT(" cBuffers = %lu"), AllocEx -> cBuffers ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" cbBuffer = %lu"), AllocEx -> cbBuffer ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" cbAlign = %lu"), AllocEx -> cbAlign ); ListBox_InsertItem (ConfigWindow, ItemText); } // // If we show a ring 3 DShow allocator, show the properties of // the ring 3 DShow allocator. // IMemAllocator *Ring3Allocator = m_Pin -> KsPeekAllocator (KsPeekOperation_PeekOnly); if (Ring3Allocator) { wsprintf (ItemText, TEXT("Ring 3 [DShow] Allocator Properties:")); ListBox_InsertItem (ConfigWindow, ItemText); ALLOCATOR_PROPERTIES Alloc; if (!SUCCEEDED ( hr = Ring3Allocator -> GetProperties (&Alloc) )) { wsprintf (ItemText, TEXT(" Can't get properties!")); ListBox_InsertItem (ConfigWindow, ItemText); } else { wsprintf (ItemText, TEXT(" cBuffers = %lu"), Alloc.cBuffers ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" cbBuffer = %lu"), Alloc.cbBuffer ); ListBox_InsertItem (ConfigWindow, ItemText); wsprintf (ItemText, TEXT(" cbAlign = %lu"), Alloc.cbAlign ); ListBox_InsertItem (ConfigWindow, ItemText); } } DisplayKernelAllocatorProperties (ConfigWindow); wsprintf (ItemText, TEXT("Pipe Layout:")); ListBox_InsertItem (ConfigWindow, ItemText); IKsPin *FirstKsPin; ULONG FirstPinType; BOOL RetCode = FindFirstPinOnPipe ( m_Pin, m_PinType, &FirstKsPin, &FirstPinType ); if (RetCode) { RetCode = WalkPipeAndProcess ( FirstKsPin, FirstPinType, NULL, CKsDebugPipesPropertyPage::DisplayPipeLayoutCallback, (PVOID*)&ConfigWindow, NULL ); } else { wsprintf (ItemText, TEXT(" Unable to walk pipe!")); ListBox_InsertItem (ConfigWindow, ItemText); } if (AllocEx) { // // Display any dependent pipe in the previous segment list. // wsprintf (ItemText, TEXT("Previous Dependent Pipe Segment:")); ListBox_InsertItem (ConfigWindow, ItemText); if (AllocEx -> PrevSegment) { wsprintf (ItemText, TEXT(" Pipe 0x%p"), AllocEx -> PrevSegment ); ListBox_InsertItem (ConfigWindow, ItemText); } else { wsprintf (ItemText, TEXT(" No previous segment")); ListBox_InsertItem (ConfigWindow, ItemText); } // // Display any dependent pipes in the next segments list // wsprintf (ItemText, TEXT("Next Dependent Pipe Segments:")); ListBox_InsertItem (ConfigWindow, ItemText); if (AllocEx -> CountNextSegments) { for (ULONG i = 0; i < AllocEx -> CountNextSegments; i++) { wsprintf (ItemText, TEXT(" Pipe 0x%p"), AllocEx -> NextSegments [i] ); ListBox_InsertItem (ConfigWindow, ItemText); } } else { wsprintf (ItemText, TEXT(" No next segments")); ListBox_InsertItem (ConfigWindow, ItemText); } } } PinPipe -> Release (); PinPipe = NULL; return S_OK; } BOOL CALLBACK CKsDebugPipesPropertyPage:: DialogProc ( IN HWND Window, IN UINT Msg, IN WPARAM wParam, IN LPARAM lParam ) /*++ Routine Description: This is the dialog procedure for the debug pipes property page. Arguments: Return Value: Indicates whether we handled the message or not --*/ { switch (Msg) { case WM_INITDIALOG: return TRUE; break; case WM_DESTROY: return TRUE; break; default: return FALSE; break; } return FALSE; }
75c530a5d0721a36a22d5838041c078550e6fc11
6e90b0e4b74be26c3f196227b803d6daff57805f
/etude/types/nth_of.hpp
14d8eab3baec115dfbad2a1f5f7c9cccccbe5334
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
gintenlabo/etude
52472b652004383c76089f5145a7cab350b6eb05
c9e9db5cce72d560a50b1ab27a0ee675a725aefa
refs/heads/master
2016-09-07T19:08:57.455833
2013-08-09T09:54:51
2013-08-09T09:54:51
1,121,611
14
1
null
null
null
null
UTF-8
C++
false
false
1,062
hpp
nth_of.hpp
// // nth_of: // 与えられた型リストの N+1 番目の要素 // // typename etude::nth_of<N, Types>::type は、 // typename Types::type が etude::types<Ts...> となり、かつ // N < sizeof...(Ts) の場合には Types... の N 番目の型( N は 0 ベース)に定義され、 // それ以外の場合には定義されません。 // // Copyright (C) 2011 Takaya Saito (SubaruG) // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // #ifndef ETUDE_TYPES_INCLUDED_NTH_OF_HPP_ #define ETUDE_TYPES_INCLUDED_NTH_OF_HPP_ #include "nth_type.hpp" #include "types.hpp" #include "get_type_or.hpp" namespace etude { template<std::size_t N, class Ts> struct nth_of_ {}; template<std::size_t N, class... Ts> struct nth_of_< N, types<Ts...> > : nth_type<N, Ts...> {}; template<std::size_t N, class Types> struct nth_of : nth_of_<N, typename get_type_or<Types>::type> {}; } // namespace etude #endif // #ifndef ETUDE_TYPES_INCLUDED_NTH_OF_HPP_
c139e4191f7698611f0d3485f056c16dcb6b55d2
4e38ed925e356e7efe6b0918429dad19e23fe700
/mmsharing/mmshindicator/tsrc/ut_indicator/inc/ut_cmussoundplayer.h
3628058771ff55479dd0a7339e16bcc3651aeadf
[]
no_license
SymbianSource/oss.FCL.sf.app.mmsharinguis
75a90aebd091f5ebcedfe1e6cc3a3ff2043e31fa
9054f87d8ed408d79a305f09d720e6812e12244c
refs/heads/master
2021-01-10T22:41:23.550567
2010-10-03T21:13:53
2010-10-03T21:13:53
70,368,951
0
0
null
null
null
null
UTF-8
C++
false
false
2,253
h
ut_cmussoundplayer.h
/* * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.html". * * Initial Contributors: * Nokia Corporation - initial contribution. * * Contributors: * * Description: Unit tests for CMusSoundPlayer class. * */ #ifndef UT_CMUSSOUNDPLAYER_H #define UT_CMUSSOUNDPLAYER_H #include "mussoundplayer.h" #include "mussoundplayerobserver.h" #include <digia/eunit/ceunittestsuiteclass.h> #include <e32def.h> #ifndef NONSHARABLE_CLASS #define NONSHARABLE_CLASS(x) class x #endif class CMusSoundPlayer; /** * Unit test class for CMusSoundPlayer class. * Implements unit tests for CMusSoundPlayer class. */ NONSHARABLE_CLASS( UT_CMusSoundPlayer ) : public CEUnitTestSuiteClass, MMusSoundPlayerObserver { public: static UT_CMusSoundPlayer* NewL(); static UT_CMusSoundPlayer* NewLC(); /** * Destructor. */ ~UT_CMusSoundPlayer(); // from base class MMusSoundPlayerObserver /** * From MMusSoundPlayerObserver. * Notifies of sound playing complete. * * @param aError Errorcode associated with playback. */ virtual void PlaySoundComplete( TInt aError ); private: UT_CMusSoundPlayer(); void ConstructL(); /** * Sets up a new test. */ void SetupL(); /** * Tears down a test. */ void Teardown(); /** * Actual unit test methods. */ void UT_CMusSoundPlayer_NewLL(); void UT_CMusSoundPlayer_NewLCL(); void UT_CMusSoundPlayer_PlayLL(); void UT_CMusSoundPlayer_StopL(); void UT_CMusSoundPlayer_MapcInitCompleteL(); void UT_CMusSoundPlayer_MapcPlayCompleteL(); void UT_CMusSoundPlayer_SoundFileNameLCL(); /* * Integration test methods */ void IT_CMusSoundPlayer_DeletePlayerWhenPlaying(); private: // data /** * Tested class. * Own. */ CMusSoundPlayer* iSoundPlayer; TInt iPlaySoundCompleteError; EUNIT_DECLARE_TEST_TABLE; }; #endif // UT_CMUSSOUNDPLAYER_H
eae217ab219c008e2e09daaece6bef1f32696b3a
5422761a42ca8a86788acd8fe170e13c98c346e9
/star.hpp
d2028cd686b2874fdd86f008ca4c37067e9af416
[]
no_license
kubaroth/OPreload
5c069105adc8ff1ba906fcd1dbccdc02dedc3d06
486868db5e901e235dbdce09c72c71e8252c5228
refs/heads/master
2023-01-01T01:11:41.416907
2020-10-20T04:45:07
2020-10-20T04:46:18
272,795,178
0
0
null
null
null
null
UTF-8
C++
false
false
1,657
hpp
star.hpp
#pragma once #include <SOP/SOP_Node.h> class SOP_DualStar : public SOP_Node { public: static OP_Node *myConstructor(OP_Network*, const char *, OP_Operator *); /// Stores the description of the interface of the SOP in Houdini. /// Each parm template refers to a parameter. static PRM_Template myTemplateList[]; protected: SOP_DualStar(OP_Network *net, const char *name, OP_Operator *op); virtual ~SOP_DualStar(); /// cookMySop does the actual work of the SOP computing, in this /// case, a star shape. virtual OP_ERROR cookMySop(OP_Context &context); virtual GU_DetailHandle cookMySopOutput(OP_Context &context, int outputidx, SOP_Node *interest); /// Actually build a star in the given geometry void buildStar(GU_Detail *dst, OP_Context &context); private: /// The following list of accessors simplify evaluating the parameters /// of the SOP. int DIVISIONS(fpreal t) { return evalInt ("divs", 0, t); } fpreal XRADIUS(fpreal t) { return evalFloat("rad", 0, t); } fpreal YRADIUS(fpreal t) { return evalFloat("rad", 1, t); } int NEGRADIUS() { return evalInt ("nradius", 0, 0); } fpreal CENTERX(fpreal t) { return evalFloat("t", 0, t); } fpreal CENTERY(fpreal t) { return evalFloat("t", 1, t); } fpreal CENTERZ(fpreal t) { return evalFloat("t", 2, t); } int ORIENT() { return evalInt ("orient", 0, 0); } };
dc0599f1b62b0daa7b7dcaa7c7c657cdcea922cf
74dfe9ed6b871174d203fa42d1f8f66232987327
/contests/Codeforces Round #886 Div 4/Ten_words_of_wisdom.cpp
6adfcc2f4d0cbea524718bb422368e284cb06bd5
[ "MIT" ]
permissive
Razdeep/Codeforces-Solutions
4e9f3f4d944867b4164182373e1f2e1894c71d14
349086f240db41043bb4f4c90ed986078324818e
refs/heads/master
2023-08-02T22:24:02.588658
2023-07-22T17:36:41
2023-07-22T17:36:41
151,215,612
2
0
null
null
null
null
UTF-8
C++
false
false
849
cpp
Ten_words_of_wisdom.cpp
// https://codeforces.com/contest/1850/problem/B #include <iostream> #include <vector> #include <algorithm> #define trace(x) cerr << #x << ": " << x << endl; #define all(v) v.begin(), v.end() #define int ll typedef long long ll; using namespace std; void solve() { int n; cin >> n; int best_quality = -1; int word_length, word_quality; int winner = -1; for (int i = 0; i < n; ++i) { cin >> word_length >> word_quality; if (word_length <= 10 and word_quality > best_quality) { best_quality = word_quality; winner = i + 1; } } cout << winner << endl; } signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int tc = 1; cin >> tc; while (tc--) { solve(); } return 0; }
14b8f8d12d1836666598d2cdbe3bd6569768497d
fbe68d84e97262d6d26dd65c704a7b50af2b3943
/third_party/virtualbox/src/VBox/Devices/Bus/SrvPciRawR0.cpp
12d6cd9ae2c0026484315a2d39699040af7e8f1f
[ "MIT", "GPL-2.0-only", "LicenseRef-scancode-unknown-license-reference", "CDDL-1.0", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "LGPL-2.1-or-later", "GPL-2.0-or-later", "MPL-1.0", "LicenseRef-scancode-generic-exception", "Apache-2.0", "OpenSSL" ]
permissive
thalium/icebox
c4e6573f2b4f0973b6c7bb0bf068fe9e795fdcfb
6f78952d58da52ea4f0e55b2ab297f28e80c1160
refs/heads/master
2022-08-14T00:19:36.984579
2022-02-22T13:10:31
2022-02-22T13:10:31
190,019,914
585
109
MIT
2022-01-13T20:58:15
2019-06-03T14:18:12
C++
UTF-8
C++
false
false
33,094
cpp
SrvPciRawR0.cpp
/* $Id: SrvPciRawR0.cpp $ */ /** @file * PCI passthrough - The ring 0 service. */ /* * Copyright (C) 2011-2017 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. */ /********************************************************************************************************************************* * Header Files * *********************************************************************************************************************************/ #define LOG_GROUP LOG_GROUP_DEV_PCI_RAW #include <VBox/log.h> #include <VBox/sup.h> #include <VBox/rawpci.h> #include <VBox/vmm/pdmpci.h> #include <VBox/vmm/pdm.h> #include <VBox/vmm/gvm.h> #include <VBox/vmm/gvmm.h> #include <VBox/vmm/vm.h> #include <iprt/asm.h> #include <iprt/assert.h> #include <iprt/handletable.h> #include <iprt/mp.h> #include <iprt/mem.h> #include <iprt/semaphore.h> #include <iprt/spinlock.h> #include <iprt/string.h> #include <iprt/thread.h> #include <iprt/time.h> #include <iprt/asm-amd64-x86.h> /********************************************************************************************************************************* * Structures and Typedefs * *********************************************************************************************************************************/ typedef struct PCIRAWSRVSTATE { /** Structure lock. */ RTSPINLOCK hSpinlock; /** Handle table for devices. */ RTHANDLETABLE hHtDevs; } PCIRAWSRVSTATE; typedef PCIRAWSRVSTATE *PPCIRAWSRVSTATE; typedef struct PCIRAWDEV { /* Port pointer. */ PRAWPCIDEVPORT pPort; /* Handle used by everybody else. */ PCIRAWDEVHANDLE hHandle; /** The session this device is associated with. */ PSUPDRVSESSION pSession; /** Structure lock. */ RTSPINLOCK hSpinlock; /** Event for IRQ updates. */ RTSEMEVENT hIrqEvent; /** Current pending IRQ for the device. */ int32_t iPendingIrq; /** ISR handle. */ PCIRAWISRHANDLE hIsr; /* If object is being destroyed. */ bool fTerminate; /** The SUPR0 object. */ void *pvObj; } PCIRAWDEV; typedef PCIRAWDEV *PPCIRAWDEV; static PCIRAWSRVSTATE g_State; /** Interrupt handler. Could be called in the interrupt context, * depending on host OS implmenetation. */ static DECLCALLBACK(bool) pcirawr0Isr(void* pContext, int32_t iHostIrq) { PPCIRAWDEV pThis = (PPCIRAWDEV)pContext; #ifdef VBOX_WITH_SHARED_PCI_INTERRUPTS uint16_t uStatus; PCIRAWMEMLOC Loc; int rc; Loc.cb = 2; rc = pThis->pPort->pfnPciCfgRead(pThis->pPort, VBOX_PCI_STATUS, &Loc); /* Cannot read, assume non-shared. */ if (RT_FAILURE(rc)) return false; /* Check interrupt status bit. */ if ((Loc.u.u16 & (1 << 3)) == 0) return false; #endif RTSpinlockAcquire(pThis->hSpinlock); pThis->iPendingIrq = iHostIrq; RTSpinlockRelease(pThis->hSpinlock); /** * @todo RTSemEventSignal() docs claims that it's platform-dependent * if RTSemEventSignal() could be called from the ISR, but it seems IPRT * doesn't provide primitives that guaranteed to work this way. */ RTSemEventSignal(pThis->hIrqEvent); return true; } static DECLCALLBACK(int) pcirawr0DevRetainHandle(RTHANDLETABLE hHandleTable, void *pvObj, void *pvCtx, void *pvUser) { NOREF(pvUser); NOREF(hHandleTable); PPCIRAWDEV pDev = (PPCIRAWDEV)pvObj; if (pDev->hHandle != 0) return SUPR0ObjAddRefEx(pDev->pvObj, (PSUPDRVSESSION)pvCtx, true /* fNoBlocking */); return VINF_SUCCESS; } /** * Initializes the raw PCI ring-0 service. * * @returns VBox status code. */ PCIRAWR0DECL(int) PciRawR0Init(void) { LogFlow(("PciRawR0Init:\n")); int rc = VINF_SUCCESS; rc = RTHandleTableCreateEx(&g_State.hHtDevs, RTHANDLETABLE_FLAGS_LOCKED | RTHANDLETABLE_FLAGS_CONTEXT, UINT32_C(0xfefe0000), 4096, pcirawr0DevRetainHandle, NULL); LogFlow(("PciRawR0Init: returns %Rrc\n", rc)); return rc; } /** * Destroys raw PCI ring-0 service. */ PCIRAWR0DECL(void) PciRawR0Term(void) { LogFlow(("PciRawR0Term:\n")); RTHandleTableDestroy(g_State.hHtDevs, NULL, NULL); g_State.hHtDevs = NIL_RTHANDLETABLE; } /** * Per-VM R0 module init. */ PCIRAWR0DECL(int) PciRawR0InitVM(PGVM pGVM, PVM pVM) { PRAWPCIFACTORY pFactory = NULL; int rc = SUPR0ComponentQueryFactory(pGVM->pSession, "VBoxRawPci", RAWPCIFACTORY_UUID_STR, (void **)&pFactory); if (RT_SUCCESS(rc)) { if (pFactory) { rc = pFactory->pfnInitVm(pFactory, pVM, &pGVM->rawpci.s); pFactory->pfnRelease(pFactory); } } return VINF_SUCCESS; } /** * Per-VM R0 module termination routine. */ PCIRAWR0DECL(void) PciRawR0TermVM(PGVM pGVM, PVM pVM) { PRAWPCIFACTORY pFactory = NULL; int rc = SUPR0ComponentQueryFactory(pGVM->pSession, "VBoxRawPci", RAWPCIFACTORY_UUID_STR, (void **)&pFactory); if (RT_SUCCESS(rc)) { if (pFactory) { pFactory->pfnDeinitVm(pFactory, pVM, &pGVM->rawpci.s); pFactory->pfnRelease(pFactory); } } } static int pcirawr0DevTerm(PPCIRAWDEV pThis, int32_t fFlags) { ASMAtomicWriteBool(&pThis->fTerminate, true); if (pThis->hIrqEvent) RTSemEventSignal(pThis->hIrqEvent); /* Enable that, once figure our how to make sure IRQ getter thread notified and woke up. */ #if 0 if (pThis->hIrqEvent) { RTSemEventDestroy(pThis->hIrqEvent); pThis->hIrqEvent = NIL_RTSEMEVENT; } #endif if (pThis->hSpinlock) { RTSpinlockDestroy(pThis->hSpinlock); pThis->hSpinlock = NIL_RTSPINLOCK; } /* Forcefully deinit. */ return pThis->pPort->pfnDeinit(pThis->pPort, fFlags); } #define GET_PORT(hDev) \ PPCIRAWDEV pDev = (PPCIRAWDEV)RTHandleTableLookupWithCtx(g_State.hHtDevs, hDev, pSession); \ if (!pDev) \ return VERR_INVALID_HANDLE; \ PRAWPCIDEVPORT pDevPort = pDev->pPort; \ AssertReturn(pDevPort != NULL, VERR_INVALID_PARAMETER); \ AssertReturn(pDevPort->u32Version == RAWPCIDEVPORT_VERSION, VERR_INVALID_PARAMETER); \ AssertReturn(pDevPort->u32VersionEnd == RAWPCIDEVPORT_VERSION, VERR_INVALID_PARAMETER); #define PUT_PORT() if (pDev->pvObj) SUPR0ObjRelease(pDev->pvObj, pSession) #ifdef DEBUG_nike /* Code to perform debugging without host driver. */ typedef struct DUMMYRAWPCIINS { /* Host PCI address of this device. */ uint32_t HostPciAddress; /* Padding */ uint32_t pad0; uint8_t aPciCfg[256]; /** Port, given to the outside world. */ RAWPCIDEVPORT DevPort; } DUMMYRAWPCIINS; typedef struct DUMMYRAWPCIINS *PDUMMYRAWPCIINS; #define DEVPORT_2_DUMMYRAWPCIINS(pPort) \ ( (PDUMMYRAWPCIINS)((uint8_t *)pPort - RT_UOFFSETOF(DUMMYRAWPCIINS, DevPort)) ) static uint8_t dummyPciGetByte(PDUMMYRAWPCIINS pThis, uint32_t iRegister) { return pThis->aPciCfg[iRegister]; } static void dummyPciSetByte(PDUMMYRAWPCIINS pThis, uint32_t iRegister, uint8_t u8) { pThis->aPciCfg[iRegister] = u8; } static uint16_t dummyPciGetWord(PDUMMYRAWPCIINS pThis, uint32_t iRegister) { uint16_t u16Value = *(uint16_t*)&pThis->aPciCfg[iRegister]; return RT_H2LE_U16(u16Value); } static void dummyPciSetWord(PDUMMYRAWPCIINS pThis, uint32_t iRegister, uint16_t u16) { *(uint16_t*)&pThis->aPciCfg[iRegister] = RT_H2LE_U16(u16); } static uint32_t dummyPciGetDWord(PDUMMYRAWPCIINS pThis, uint32_t iRegister) { uint32_t u32Value = *(uint32_t*)&pThis->aPciCfg[iRegister]; return RT_H2LE_U32(u32Value); } static void dummyPciSetDWord(PDUMMYRAWPCIINS pThis, uint32_t iRegister, uint32_t u32) { *(uint32_t*)&pThis->aPciCfg[iRegister] = RT_H2LE_U32(u32); } /** * @copydoc RAWPCIDEVPORT:: pfnInit */ static DECLCALLBACK(int) dummyPciDevInit(PRAWPCIDEVPORT pPort, uint32_t fFlags) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); dummyPciSetWord(pThis, VBOX_PCI_VENDOR_ID, 0xccdd); dummyPciSetWord(pThis, VBOX_PCI_DEVICE_ID, 0xeeff); dummyPciSetWord(pThis, VBOX_PCI_COMMAND, PCI_COMMAND_IOACCESS | PCI_COMMAND_MEMACCESS | PCI_COMMAND_BUSMASTER); dummyPciSetByte(pThis, VBOX_PCI_INTERRUPT_PIN, 1); return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnDeinit */ static DECLCALLBACK(int) dummyPciDevDeinit(PRAWPCIDEVPORT pPort, uint32_t fFlags) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnDestroy */ static DECLCALLBACK(int) dummyPciDevDestroy(PRAWPCIDEVPORT pPort) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); RTMemFree(pThis); return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnGetRegionInfo */ static DECLCALLBACK(int) dummyPciDevGetRegionInfo(PRAWPCIDEVPORT pPort, int32_t iRegion, RTHCPHYS *pRegionStart, uint64_t *pu64RegionSize, bool *pfPresent, uint32_t *pfFlags) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); if (iRegion == 0) { *pfPresent = true; *pRegionStart = 0xfef0; *pu64RegionSize = 0x10; *pfFlags = PCIRAW_ADDRESS_SPACE_IO; } else if (iRegion == 2) { *pfPresent = true; *pRegionStart = 0xffff0000; *pu64RegionSize = 0x1000; *pfFlags = PCIRAW_ADDRESS_SPACE_BAR64 | PCIRAW_ADDRESS_SPACE_MEM; } else *pfPresent = false; return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnMapRegion */ static DECLCALLBACK(int) dummyPciDevMapRegion(PRAWPCIDEVPORT pPort, int32_t iRegion, RTHCPHYS HCRegionStart, uint64_t u64RegionSize, int32_t fFlags, RTR0PTR *pRegionBase) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnUnapRegion */ static DECLCALLBACK(int) dummyPciDevUnmapRegion(PRAWPCIDEVPORT pPort, int32_t iRegion, RTHCPHYS HCRegionStart, uint64_t u64RegionSize, RTR0PTR RegionBase) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnPciCfgRead */ static DECLCALLBACK(int) dummyPciDevPciCfgRead(PRAWPCIDEVPORT pPort, uint32_t Register, PCIRAWMEMLOC *pValue) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); switch (pValue->cb) { case 1: pValue->u.u8 = dummyPciGetByte(pThis, Register); break; case 2: pValue->u.u16 = dummyPciGetWord(pThis, Register); break; case 4: pValue->u.u32 = dummyPciGetDWord(pThis, Register); break; } return VINF_SUCCESS; } /** * @copydoc RAWPCIDEVPORT:: pfnPciCfgWrite */ static DECLCALLBACK(int) dummyPciDevPciCfgWrite(PRAWPCIDEVPORT pPort, uint32_t Register, PCIRAWMEMLOC *pValue) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); switch (pValue->cb) { case 1: dummyPciSetByte(pThis, Register, pValue->u.u8); break; case 2: dummyPciSetWord(pThis, Register, pValue->u.u16); break; case 4: dummyPciSetDWord(pThis, Register, pValue->u.u32); break; } return VINF_SUCCESS; } static DECLCALLBACK(int) dummyPciDevRegisterIrqHandler(PRAWPCIDEVPORT pPort, PFNRAWPCIISR pfnHandler, void* pIrqContext, PCIRAWISRHANDLE *phIsr) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); return VINF_SUCCESS; } static DECLCALLBACK(int) dummyPciDevUnregisterIrqHandler(PRAWPCIDEVPORT pPort, PCIRAWISRHANDLE hIsr) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); return VINF_SUCCESS; } static DECLCALLBACK(int) dummyPciDevPowerStateChange(PRAWPCIDEVPORT pPort, PCIRAWPOWERSTATE aState, uint64_t *pu64Param) { PDUMMYRAWPCIINS pThis = DEVPORT_2_DUMMYRAWPCIINS(pPort); return VINF_SUCCESS; } static PRAWPCIDEVPORT pcirawr0CreateDummyDevice(uint32_t HostDevice, uint32_t fFlags) { PDUMMYRAWPCIINS pNew = (PDUMMYRAWPCIINS)RTMemAllocZ(sizeof(*pNew)); if (!pNew) return NULL; pNew->HostPciAddress = HostDevice; pNew->DevPort.u32Version = RAWPCIDEVPORT_VERSION; pNew->DevPort.pfnInit = dummyPciDevInit; pNew->DevPort.pfnDeinit = dummyPciDevDeinit; pNew->DevPort.pfnDestroy = dummyPciDevDestroy; pNew->DevPort.pfnGetRegionInfo = dummyPciDevGetRegionInfo; pNew->DevPort.pfnMapRegion = dummyPciDevMapRegion; pNew->DevPort.pfnUnmapRegion = dummyPciDevUnmapRegion; pNew->DevPort.pfnPciCfgRead = dummyPciDevPciCfgRead; pNew->DevPort.pfnPciCfgWrite = dummyPciDevPciCfgWrite; pNew->DevPort.pfnRegisterIrqHandler = dummyPciDevRegisterIrqHandler; pNew->DevPort.pfnUnregisterIrqHandler = dummyPciDevUnregisterIrqHandler; pNew->DevPort.pfnPowerStateChange = dummyPciDevPowerStateChange; pNew->DevPort.u32VersionEnd = RAWPCIDEVPORT_VERSION; return &pNew->DevPort; } #endif /* DEBUG_nike */ static DECLCALLBACK(void) pcirawr0DevObjDestructor(void *pvObj, void *pvIns, void *pvUnused) { PPCIRAWDEV pThis = (PPCIRAWDEV)pvIns; NOREF(pvObj); NOREF(pvUnused); /* Forcefully deinit. */ pcirawr0DevTerm(pThis, 0); /* And destroy. */ pThis->pPort->pfnDestroy(pThis->pPort); RTMemFree(pThis); } static int pcirawr0OpenDevice(PGVM pGVM, PVM pVM, PSUPDRVSESSION pSession, uint32_t HostDevice, uint32_t fFlags, PCIRAWDEVHANDLE *pHandle, uint32_t *pfDevFlags) { int rc = GVMMR0ValidateGVMandVMandEMT(pGVM, pVM, 0 /*idCpu*/); if (RT_FAILURE(rc)) return rc; /* * Query the factory we want, then use it create and connect the host device. */ PPCIRAWDEV pNew = (PPCIRAWDEV)RTMemAllocZ(sizeof(*pNew)); if (!pNew) return VERR_NO_MEMORY; PRAWPCIFACTORY pFactory = NULL; rc = SUPR0ComponentQueryFactory(pSession, "VBoxRawPci", RAWPCIFACTORY_UUID_STR, (void **)&pFactory); /* No host driver registered, provide some fake implementation for debugging purposes. */ PRAWPCIDEVPORT pDevPort = NULL; #ifdef DEBUG_nike if (rc == VERR_SUPDRV_COMPONENT_NOT_FOUND) { pDevPort = pcirawr0CreateDummyDevice(HostDevice, fFlags); if (pDevPort) { pDevPort->pfnInit(pDevPort, fFlags); rc = VINF_SUCCESS; } else rc = VERR_NO_MEMORY; } #endif if (RT_SUCCESS(rc)) { if (pFactory) { rc = pFactory->pfnCreateAndConnect(pFactory, HostDevice, fFlags, &pGVM->rawpci.s, &pDevPort, pfDevFlags); pFactory->pfnRelease(pFactory); } if (RT_SUCCESS(rc)) { rc = RTSpinlockCreate(&pNew->hSpinlock, RTSPINLOCK_FLAGS_INTERRUPT_SAFE, "PciRaw"); AssertRC(rc); if (RT_SUCCESS(rc)) { rc = RTSemEventCreate(&pNew->hIrqEvent); AssertRC(rc); if (RT_SUCCESS(rc)) { pNew->pSession = pSession; pNew->pPort = pDevPort; pNew->pvObj = SUPR0ObjRegister(pSession, SUPDRVOBJTYPE_RAW_PCI_DEVICE, pcirawr0DevObjDestructor, pNew, NULL); if (pNew->pvObj) { uint32_t hHandle = 0; rc = RTHandleTableAllocWithCtx(g_State.hHtDevs, pNew, pSession, &hHandle); if (RT_SUCCESS(rc)) { pNew->hHandle = (PCIRAWDEVHANDLE)hHandle; *pHandle = pNew->hHandle; return rc; } SUPR0ObjRelease(pNew->pvObj, pSession); } RTSemEventDestroy(pNew->hIrqEvent); } RTSpinlockDestroy(pNew->hSpinlock); } } } if (RT_FAILURE(rc)) RTMemFree(pNew); return rc; } static int pcirawr0CloseDevice(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, uint32_t fFlags) { GET_PORT(TargetDevice); int rc; pDevPort->pfnUnregisterIrqHandler(pDevPort, pDev->hIsr); pDev->hIsr = 0; rc = pcirawr0DevTerm(pDev, fFlags); RTHandleTableFreeWithCtx(g_State.hHtDevs, TargetDevice, pSession); PUT_PORT(); return rc; } /* We may want to call many functions here directly, so no static */ static int pcirawr0GetRegionInfo(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, int32_t iRegion, RTHCPHYS *pRegionStart, uint64_t *pu64RegionSize, bool *pfPresent, uint32_t *pfFlags) { LogFlow(("pcirawr0GetRegionInfo: %d\n", iRegion)); GET_PORT(TargetDevice); int rc = pDevPort->pfnGetRegionInfo(pDevPort, iRegion, pRegionStart, pu64RegionSize, pfPresent, pfFlags); PUT_PORT(); return rc; } static int pcirawr0MapRegion(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, int32_t iRegion, RTHCPHYS HCRegionStart, uint64_t u64RegionSize, uint32_t fFlags, RTR3PTR *ppvAddressR3, RTR0PTR *ppvAddressR0) { LogFlow(("pcirawr0MapRegion\n")); GET_PORT(TargetDevice); int rc; rc = pDevPort->pfnMapRegion(pDevPort, iRegion, HCRegionStart, u64RegionSize, fFlags, ppvAddressR0); if (RT_SUCCESS(rc)) { Assert(*ppvAddressR0 != NULL); /* Do we need to do something to help with R3 mapping, if ((fFlags & PCIRAWRFLAG_ALLOW_R3MAP) != 0) */ } *ppvAddressR3 = 0; PUT_PORT(); return rc; } static int pcirawr0UnmapRegion(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, int32_t iRegion, RTHCPHYS HCRegionStart, uint64_t u64RegionSize, RTR3PTR pvAddressR3, RTR0PTR pvAddressR0) { LogFlow(("pcirawr0UnmapRegion\n")); int rc; NOREF(pSession); NOREF(pvAddressR3); GET_PORT(TargetDevice); rc = pDevPort->pfnUnmapRegion(pDevPort, iRegion, HCRegionStart, u64RegionSize, pvAddressR0); PUT_PORT(); return rc; } static int pcirawr0PioWrite(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, uint16_t Port, uint32_t u32, unsigned cb) { NOREF(pSession); NOREF(TargetDevice); /// @todo add check that port fits into device range switch (cb) { case 1: ASMOutU8 (Port, u32); break; case 2: ASMOutU16(Port, u32); break; case 4: ASMOutU32(Port, u32); break; default: AssertMsgFailed(("Unhandled port write: %d\n", cb)); } return VINF_SUCCESS; } static int pcirawr0PioRead(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, uint16_t Port, uint32_t *pu32, unsigned cb) { NOREF(pSession); NOREF(TargetDevice); /// @todo add check that port fits into device range switch (cb) { case 1: *pu32 = ASMInU8 (Port); break; case 2: *pu32 = ASMInU16(Port); break; case 4: *pu32 = ASMInU32(Port); break; default: AssertMsgFailed(("Unhandled port read: %d\n", cb)); } return VINF_SUCCESS; } static int pcirawr0MmioRead(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, RTR0PTR Address, PCIRAWMEMLOC *pValue) { NOREF(pSession); NOREF(TargetDevice); /// @todo add check that address fits into device range #if 1 switch (pValue->cb) { case 1: pValue->u.u8 = *(uint8_t*)Address; break; case 2: pValue->u.u16 = *(uint16_t*)Address; break; case 4: pValue->u.u32 = *(uint32_t*)Address; break; case 8: pValue->u.u64 = *(uint64_t*)Address; break; } #else memset(&pValue->u.u64, 0, 8); #endif return VINF_SUCCESS; } static int pcirawr0MmioWrite(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, RTR0PTR Address, PCIRAWMEMLOC *pValue) { NOREF(pSession); NOREF(TargetDevice); /// @todo add check that address fits into device range #if 1 switch (pValue->cb) { case 1: *(uint8_t*)Address = pValue->u.u8; break; case 2: *(uint16_t*)Address = pValue->u.u16; break; case 4: *(uint32_t*)Address = pValue->u.u32; break; case 8: *(uint64_t*)Address = pValue->u.u64; break; } #endif return VINF_SUCCESS; } static int pcirawr0PciCfgRead(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, uint32_t Register, PCIRAWMEMLOC *pValue) { GET_PORT(TargetDevice); return pDevPort->pfnPciCfgRead(pDevPort, Register, pValue); } static int pcirawr0PciCfgWrite(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, uint32_t Register, PCIRAWMEMLOC *pValue) { int rc; GET_PORT(TargetDevice); rc = pDevPort->pfnPciCfgWrite(pDevPort, Register, pValue); PUT_PORT(); return rc; } static int pcirawr0EnableIrq(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice) { int rc = VINF_SUCCESS; GET_PORT(TargetDevice); rc = pDevPort->pfnRegisterIrqHandler(pDevPort, pcirawr0Isr, pDev, &pDev->hIsr); PUT_PORT(); return rc; } static int pcirawr0DisableIrq(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice) { int rc = VINF_SUCCESS; GET_PORT(TargetDevice); rc = pDevPort->pfnUnregisterIrqHandler(pDevPort, pDev->hIsr); pDev->hIsr = 0; PUT_PORT(); return rc; } static int pcirawr0GetIrq(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, int64_t iTimeout, int32_t *piIrq) { int rc = VINF_SUCCESS; bool fTerminate = false; int32_t iPendingIrq = 0; LogFlow(("pcirawr0GetIrq\n")); GET_PORT(TargetDevice); RTSpinlockAcquire(pDev->hSpinlock); iPendingIrq = pDev->iPendingIrq; pDev->iPendingIrq = 0; fTerminate = pDev->fTerminate; RTSpinlockRelease(pDev->hSpinlock); /* Block until new IRQs arrives */ if (!fTerminate) { if (iPendingIrq == 0) { rc = RTSemEventWaitNoResume(pDev->hIrqEvent, iTimeout); if (RT_SUCCESS(rc)) { /** @todo racy */ if (!ASMAtomicReadBool(&pDev->fTerminate)) { RTSpinlockAcquire(pDev->hSpinlock); iPendingIrq = pDev->iPendingIrq; pDev->iPendingIrq = 0; RTSpinlockRelease(pDev->hSpinlock); } else rc = VERR_INTERRUPTED; } } if (RT_SUCCESS(rc)) *piIrq = iPendingIrq; } else rc = VERR_INTERRUPTED; PUT_PORT(); return rc; } static int pcirawr0PowerStateChange(PSUPDRVSESSION pSession, PCIRAWDEVHANDLE TargetDevice, PCIRAWPOWERSTATE aState, uint64_t *pu64Param) { LogFlow(("pcirawr0PowerStateChange\n")); GET_PORT(TargetDevice); int rc = pDevPort->pfnPowerStateChange(pDevPort, aState, pu64Param); PUT_PORT(); return rc; } /** * Process PCI raw request * * @returns VBox status code. */ PCIRAWR0DECL(int) PciRawR0ProcessReq(PGVM pGVM, PVM pVM, PSUPDRVSESSION pSession, PPCIRAWSENDREQ pReq) { LogFlow(("PciRawR0ProcessReq: %d for %x\n", pReq->iRequest, pReq->TargetDevice)); int rc = VINF_SUCCESS; /* Route request to the host driver */ switch (pReq->iRequest) { case PCIRAWR0_DO_OPEN_DEVICE: rc = pcirawr0OpenDevice(pGVM, pVM, pSession, pReq->u.aOpenDevice.PciAddress, pReq->u.aOpenDevice.fFlags, &pReq->u.aOpenDevice.Device, &pReq->u.aOpenDevice.fDevFlags); break; case PCIRAWR0_DO_CLOSE_DEVICE: rc = pcirawr0CloseDevice(pSession, pReq->TargetDevice, pReq->u.aCloseDevice.fFlags); break; case PCIRAWR0_DO_GET_REGION_INFO: rc = pcirawr0GetRegionInfo(pSession, pReq->TargetDevice, pReq->u.aGetRegionInfo.iRegion, &pReq->u.aGetRegionInfo.RegionStart, &pReq->u.aGetRegionInfo.u64RegionSize, &pReq->u.aGetRegionInfo.fPresent, &pReq->u.aGetRegionInfo.fFlags); break; case PCIRAWR0_DO_MAP_REGION: rc = pcirawr0MapRegion(pSession, pReq->TargetDevice, pReq->u.aMapRegion.iRegion, pReq->u.aMapRegion.StartAddress, pReq->u.aMapRegion.iRegionSize, pReq->u.aMapRegion.fFlags, &pReq->u.aMapRegion.pvAddressR3, &pReq->u.aMapRegion.pvAddressR0); break; case PCIRAWR0_DO_UNMAP_REGION: rc = pcirawr0UnmapRegion(pSession, pReq->TargetDevice, pReq->u.aUnmapRegion.iRegion, pReq->u.aUnmapRegion.StartAddress, pReq->u.aUnmapRegion.iRegionSize, pReq->u.aUnmapRegion.pvAddressR3, pReq->u.aUnmapRegion.pvAddressR0); break; case PCIRAWR0_DO_PIO_WRITE: rc = pcirawr0PioWrite(pSession, pReq->TargetDevice, pReq->u.aPioWrite.iPort, pReq->u.aPioWrite.iValue, pReq->u.aPioWrite.cb); break; case PCIRAWR0_DO_PIO_READ: rc = pcirawr0PioRead(pSession, pReq->TargetDevice, pReq->u.aPioRead.iPort, &pReq->u.aPioWrite.iValue, pReq->u.aPioRead.cb); break; case PCIRAWR0_DO_MMIO_WRITE: rc = pcirawr0MmioWrite(pSession, pReq->TargetDevice, pReq->u.aMmioWrite.Address, &pReq->u.aMmioWrite.Value); break; case PCIRAWR0_DO_MMIO_READ: rc = pcirawr0MmioRead(pSession, pReq->TargetDevice, pReq->u.aMmioRead.Address, &pReq->u.aMmioRead.Value); break; case PCIRAWR0_DO_PCICFG_WRITE: rc = pcirawr0PciCfgWrite(pSession, pReq->TargetDevice, pReq->u.aPciCfgWrite.iOffset, &pReq->u.aPciCfgWrite.Value); break; case PCIRAWR0_DO_PCICFG_READ: rc = pcirawr0PciCfgRead(pSession, pReq->TargetDevice, pReq->u.aPciCfgRead.iOffset, &pReq->u.aPciCfgRead.Value); break; case PCIRAWR0_DO_ENABLE_IRQ: rc = pcirawr0EnableIrq(pSession, pReq->TargetDevice); break; case PCIRAWR0_DO_DISABLE_IRQ: rc = pcirawr0DisableIrq(pSession, pReq->TargetDevice); break; case PCIRAWR0_DO_GET_IRQ: rc = pcirawr0GetIrq(pSession, pReq->TargetDevice, pReq->u.aGetIrq.iTimeout, &pReq->u.aGetIrq.iIrq); break; case PCIRAWR0_DO_POWER_STATE_CHANGE: rc = pcirawr0PowerStateChange(pSession, pReq->TargetDevice, (PCIRAWPOWERSTATE)pReq->u.aPowerStateChange.iState, &pReq->u.aPowerStateChange.u64Param); break; default: rc = VERR_NOT_SUPPORTED; } LogFlow(("PciRawR0ProcessReq: returns %Rrc\n", rc)); return rc; }
a97c1f17b278fff10897efdf3173f8f2b57585e9
43ae0d65a9acbfbfe8c36e158e1a590f6db02ad5
/jni/WiEngine/include/nodes/wyDirector.h
6e4942c2931c87030a31eb1d3fe1a8921b4e6680
[ "MIT" ]
permissive
identy/WiEngine
bfd0f5b95f0be72274e1dfb341d732d4a571993c
2fb4276f558a5b1660d940b982c591cb7c73aec8
refs/heads/master
2020-12-25T01:27:01.452216
2013-04-22T03:22:24
2013-04-22T03:22:24
9,659,254
1
0
null
null
null
null
UTF-8
C++
false
false
46,249
h
wyDirector.h
/* * Copyright (c) 2010 WiYun Inc. * Author: luma(stubma@gmail.com) * * For all entities this program is free software; you can redistribute * it and/or modify it under the terms of the 'WiEngine' license with * the additional provision that 'WiEngine' must be credited in a manner * that can be be observed by end users, for example, in the credits or during * start up. (please find WiEngine logo in sdk's logo folder) * * 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 __wyDirector_h__ #define __wyDirector_h__ #include <stdbool.h> #include "wyLabel.h" #include "wyScene.h" #include "wyArray.h" #include "wyTransitionScene.h" #include "wyPrimitives.h" #include "wyGlobal.h" #include "wyResourceDecoder.h" /** * @typedef wyProjectionType * \if English * definitions of projection modes * \else * OpenGL投影方式 * \endif */ typedef enum { /** * \if English * Orthographic projection * \else * 正交投影方式 * \endif */ PROJECTION_2D = 1, /** * \if English * Perspetive projection * \else * 3D投影方式,fovy=60, znear=0.5f, zfar=1500. * \endif */ PROJECTION_3D, /** * \if English * user-customized projection * \else * 自定义投影方式,用户需要自己调用OpenGL接口设置投影方式 * \endif */ PROJECTION_CUSTOM } wyProjectionType; /// default projection is 3D #define PROJECTION_DEFAULT PROJECTION_3D /** * @typedef wySensorDelay * \if English * definitions of accelerometer level, different level stands for different frequency * the engine will use to listen the sensor event * \else * 加速器事件触发速度级别 * \endif */ typedef enum { /** * \if English * get one event every 38 milliseconds * \else * 最快速度, 近似于每38毫秒一次事件 * \endif */ DELAY_FASTEST, /** * \if English * get one event every 62 milliseconds * \else * 较快速度, 近似于每62毫秒一次事件 * \endif */ DELAY_GAME, /** * \if English * get one event every 104 milliseconds * \else * 较慢速度, 近似于每104毫秒一次事件 * \endif */ DELAY_UI, /** * \if English * get one event every 254 milliseconds * \else * 最慢速度, 近似于每254毫秒一次事件 * \endif */ DELAY_NORMAL } wySensorDelay; #if MACOSX || WINDOWS /** * @struct wyScreenConfig * * \if English * In Mac OS X or Windows platform, you can designate screen info by pass * a screen config to director. But you must do it before first scene is created. * So, you can facilitate screen adaptation thru this handy feature: you don't * need to buy many hardware, just simulate it in PC! * \else * 在Mac OS X或Windows平台上, 你可以通过wyScreenConfig来指定屏幕的大小, 分辨率等信息. * 这样可以方便的测试屏幕适配, 你不需要购买各种不同屏幕分辨率的手机, 只要在PC上模拟测试就 * 可以了 * \endif */ typedef struct wyScreenConfig { /** * \if English * Density of current screen * \else * 当前设备的屏幕分辨率 * \endif */ float density; /** * \if English * Font ensity of current screen * \else * 当前设备屏幕的字体分辨率 * \endif */ float scaledDensity; /** * \if English * Surface width you expected * \else * 期望的surface宽度 * \endif */ int winWidth; /** * \if English * \par * Expected surface height * \else * 期望的surface高度 * \endif */ int winHeight; } wyScreenConfig; #endif // #if MACOSX || WINDOWS /** * @struct wyDirectorLifecycleListener * * \if English * Lifecycle event interface. You can install lifecycle listener thru \c addLifecycleListener method * \else * Director生命周期监听器接口, 通过\c addLifecycleListener方法可以添加生命周期监听器 * \endif */ typedef struct wyDirectorLifecycleListener { /** * \if English * Invoked when surface created. * * @param data extra data pointer * \else * 在Surface被创建的时候调用 * * @param data 附加数据指针 * \endif */ void (*onSurfaceCreated)(void* data); /** * \if English * Invoked when surface changed. Generally there is always a change event immediately after * surface created. After this, game loop will be started. * * @param w new width of surface * @param h new height of surface * @param data extra data pointer * \else * 在Surface改变的时候被调用. 一般这个事件紧跟在surface创建之后. 这个事件发生后, 将开始 * 游戏循环 * * @param w Surface新的宽度 * @param h Surface新的高度 * @param data 附加数据指针 * \endif */ void (*onSurfaceChanged)(int w, int h, void* data); /** * \if English * Invoked when surface destroyed, usually it is happened when game exited or * switching to other activity * * @param data extra data pointer * \else * 在Surface销毁的时候调用, 一般这发生在游戏退出或切换到其它activity时 * * @param data 附加数据指针 * \endif */ void (*onSurfaceDestroyed)(void* data); /** * \if English * Invoked when \c pause method is called. \c pause method must be called in * activity onPause * * @param data extra data pointer * \else * 在Director的\c pause方法被调用后调用. \c pause方法必须在Activity的onPause中调用 * * @param data 附加数据指针 * \endif */ void (*onDirectorPaused)(void* data); /** * \if English * Invoked when \c resume method is called. \c resume method must be called in * activity onResume * * @param data extra data pointer * \else * 在Director的\c resume方法被调用后调用. \c resume方法必须在activity的onResume中调用. * * @param data 附加数据指针 * \endif */ void (*onDirectorResumed)(void* data); /** * \if English * Invoked when \c end method is called. \c end method must be called when game exited so * this event means game ended * * @param data extra data pointer * \else * 在Director中止的时候被调用. Director中止是由于end方法被调用, 一般这意味着游戏已经退出 * * @param data 附加数据指针 * \endif */ void (*onDirectorEnded)(void* data); /** * \if English * Invoked when a screenshot is captured. * * @param path path of screenshot file, maybe png or jpg and it is decided based on extension * of file path when calling \c makeScreenshot method * @param data extra data pointer * \else * 在一个截屏被保存后调用 * * @param path 截屏保存后的图片路径, 可能是png或者jpg, 调用者应该清楚. 这是在调用\c makeScreenshot时 * 通过路径的后缀名自动决定的. * @param data 附加数据指针 * \endif */ void (*onDirectorScreenCaptured)(const char* path, void* data); } wyDirectorLifecycleListener; /** * @class wyDirector * * \if English * wyDirector is a singleton class which manages game flow, as well as providing * global API for upper layer * \else * wyDirector是一个控制游戏流程的单例类, 同时它也提供许多全局级别的API * \endif */ class WIENGINE_API wyDirector : public wyObject { protected: /** * \if English * projection mode, by default it is PROJECTION_3D * \else * 投影类型,取值PROJECTION_3D,PROJECTION_2D,默认PROJECTION_DEFAULT * \endif */ wyProjectionType m_projection; /** * \if English * interval between two consecutive frames, used to calculate frame rate * \else * 两帧之间的时间差,如果一秒平均60帧,则m_delta取值在17,16毫秒之间,取值样例为0.017,这个值根据当前帧率而变化 * \endif */ float m_delta; /** * \if English * time elapsed since the last frame rate calculation * \else * 自上一次帧率统计之后,已经绘制的帧用了的时间 * \endif */ float m_frameDelta; /** * used to manually control tick interval, that will slow down or speed * up game total behavior. zero means using real delta. */ float m_tickFactor; /** * \if English * frame rate, times per second * \else * 当前帧率 * \endif */ float m_frameRate; /** * \if English * frame count passed since the last frame rate calculation * \else * 自上一次帧率统计之后,已经显示的帧 * \endif */ int m_frames; /** * \if English * time point the last frame was updated * \else * 上一帧更新的时间 * \endif */ int64_t m_lastUpdateTime; /** * \if English * to mark whether it is needed to reload the underlying texture objects * \else * true表示需要在合适的时候检查底层的贴图对象是否被释放,如果是则要重新载入 * \endif */ bool m_needCheckTexture; /** * \if English * to mark paused state * \else * 标识当前场景是否暂停状态 * \endif */ bool m_paused; /** * \if English * to mark whether the UI is paused, a common case is that the player clicks the pause button * \else * 标识游戏当前是否被UI控制暂停或恢复 * \endif */ bool m_UIPaused; /** * \if English * to mark whether the focus state is enabled, true means enabled * \else * 标识游戏当前是否屏蔽wyNode焦点状态, 如果为true为可以用 * \endif */ bool m_focusEnabled; /** * \if English * to specify whether to display FPS label on the left bottom corner of the screen * \else * 标识是否显示FPS 在屏幕左下角 * \endif */ bool m_displayFPS; /** * true means fps should be calculated even you don't want to display it */ bool m_calculateFPS; /** * \if English * to mark whether the surface view has been created * \else * 标识是否surface已经创建 * \endif */ bool m_surfaceCreated; /** * \if English * to mark whether to open opengl depth test * \else * 标识是否打开深度测试 * \endif */ bool m_enableDepthTest; /** * \if English * to mark whether it is needed to take a screen shot * \else * true表示下一帧要进行截图, 截图之后该标志重新设置为false * \endif */ bool m_makeScreenshot; /** * \if English * the path to save the screen shot picture * \else * 截图文件保存的路径 * \endif */ const char* m_screenshotPath; /** * \if English * rectangle of screen shot * \else * 截图的范围 * \endif */ wyRect m_screenshotRect; /** * \if English * to guarantee the animation starts from its first frame * \else * true表示下一个delta时间设为0, 这主要用来避免因为资源载入导致的游戏体验不连续问题. 例如有一个场景中一开始就要执行动画, * 但是由于场景载入需要耗费一定时间, 因此可能导致动画的前面几帧被跳过. 那么可以设置这个标志强制使下一个delta时间为0, 这样 * 动画将从第一帧开始. * \endif */ bool m_nextDeltaTimeZero; /** * \if English * the maximum frame rate limit, 0 means no limit is set * \else * 最大帧率,如果为0,表示不限制, 缺省是0 * \endif */ int m_maxFrameRate; /** * \if English * the time cost by the last frame, in milliseconds * \else * 上一帧的绘制时间,单位是毫秒 * \endif */ int64_t m_lastFrameTime; /** * \if English * used in condition that the max frame rate is set * \else * 最小帧间隔,当最大帧率被设置时配合使用 * \endif */ int64_t m_minFrameInterval; /** * \if English * used in condition that the max frame rate is set * \else * 仅当最大帧率不为0时才有意义, 用于控制帧率的辅助变量 * \endif */ int64_t m_savedDelta; /** * \if English * the next scene to be activated, \link wyScene wyScene\endlink * \else * 下一场景\link wyScene wyScene对象\endlink 的指针 * \endif */ wyScene* m_nextScene; /** * \if English * the scene being running, \link wyScene wyScene\endlink * \else * 正在显示场景\link wyScene wyScene对象\endlink 的指针 * \endif */ wyScene* m_runningScene; /** * \if English * the label to display FPS, \link wyLabel wyLabel\endlink * \else * 用来显示FPS的\link wyLabel wyLabel对象\endlink 的指针 * \endif */ wyLabel* m_fpsLabel; /** * \if English * acts as a stack to push or pop scenes to, \link wyArray wyArray\endlink * \else * 场景堆栈 \link wyArray wyArray对象\endlink 的指针 * \endif */ wyArray* m_scenesStack; /** * \if English * array to store life cycle listeners * \else * Director生命周期事件监听器 * \endif */ wyArray* m_lifecycleListeners; /** * \if English * act as a stack to maintain the scissor information, \link wyRect wyRect\endlink * \else * 裁剪区域栈 * \endif */ wyRect* m_clipStack; /** * \if English * element count in the m_clipStack * \else * 裁剪区域栈中的矩形个数 * \endif */ int m_clipStackCount; /** * \if English * the capacity of m_clipStack * \else * 裁剪区域栈的容量 * \endif */ int m_clipStackCapacity; /** * \if English * user data used in the life cycle listener * \else * 生命周期监听器的附加数据指针 * \endif */ void* m_lifecycleData; /** * \if English * \link wyGLSurfaceView wyGLSurfaceView\endlink * \else * OpenGlView的java对象 * \endif */ wyGLSurfaceView m_glView; /** * \if English * \link wyGLContext wyGLContext\endlink * \else * Android Context的java对象 * \endif */ wyGLContext m_context; protected: /** * \if English * constructor * \else * 构造函数 * \endif */ wyDirector(); /** * \if English * calculate the time interval between 2 consecutive frames * \else * 计算两帧之间的时间差 * \endif */ void calculateDeltaTime(); /** * \if English * draw the FPS label * \else * 显示FPS * \endif */ void showFPS(); /** * Calculate FPS, can be enabled by \c setCalculateFPS */ void calculateFPS(); /** * \if English * to set the running scene * * @param scene \link wyScene wyScene\endlink * \else * 设置当前的场景 * * @param scene 场景\link wyScene wyScene对象\endlink 的指针 * \endif */ void setRunningScene(wyScene* scene); /** * \if English * to set the next scene * * @param scene \link wyScene wyScene\endlink * \else * 设置下一场景 * * @param scene 场景\link wyScene wyScene对象\endlink 的指针 * \endif */ void setNextScene(wyScene* scene); /** * \if English * goto the next scene * \else * 切换至下一场景 * \endif */ void gotoNextScene(); /** * \if English * Destroy common members which shared by all platforms * \else * 销毁成员 * \endif */ void commonDestroy(); /** * \if English * Stop render when game paused * \else * 暂停渲染 * \endif */ virtual void stopRender() = 0; /** * \if English * Start render when game resumed * \else * 开始渲染 * \endif */ virtual void startRender() = 0; /** * \if English * End director, so end game and everything * \else * 结束Director, 结束一切 * \endif */ virtual void end() = 0; /* * callback triggers */ virtual void notifySurfaceCreated(); virtual void notifySurfaceChanged(); virtual void notifySurfaceDestroyed(); virtual void notifyDirectorPaused(); virtual void notifyDirectorResumed(); virtual void notifyDirectorEnded(); virtual void notifyDirectorScreenCaptured(); /* * iterator functions */ static bool releaseScene(wyArray* arr, void* ptr, int index, void* data); static bool notifySurfaceCreated(wyArray* arr, void* ptr, int index, void* data); static bool notifySurfaceChanged(wyArray* arr, void* ptr, int index, void* data); static bool notifySurfaceDestroyed(wyArray* arr, void* ptr, int index, void* data); static bool notifyDirectorPaused(wyArray* arr, void* ptr, int index, void* data); static bool notifyDirectorResumed(wyArray* arr, void* ptr, int index, void* data); static bool notifyDirectorEnded(wyArray* arr, void* ptr, int index, void* data); static bool notifyDirectorScreenCaptured(wyArray* arr, void* ptr, int index, void* data); public: /** * \if English * get the singleton instance * * @return singleton of director * \else * 获得\link wyDirector wyDirector对象指针\endlink * * @return \link wyDirector wyDirector对象指针\endlink * \endif */ static wyDirector* getInstance(); /** * \if English * Get the singleton instance, but don't create it if not exist * * @return singleton of director, or NULL if not created yet * \else * 得到director的单一实例, 但是如果实例尚未创建, 则不会自动创建 * * @return director的单一实例, 如果还没有创建, 返回NULL * \endif */ static wyDirector* getInstanceNoCreate(); /** * \if English * check whether the director is performing ending phase. * * @return true means the director is ending now, it is strong suggested that * no engine-related operations be made during this phase. * \else * 检查是否Director正在结束中. 这个方法可以用来在某些不确定的情况下, 检查进行某个操作是否安全. * 比如, 正准备调用一个方法, 但是这个时候可能程序正在退出, 正在退出意味着底层的对象可能正在处于 * 释放过程中或者已经释放, 如果不做检查就调用, 则可能因为调用一个已销毁对象而导致程序崩溃. * * @return true表示Director正在销毁, 在此期间最好不要再做任何事. * \endif */ static bool isEnding(); /** * \if English * Set a resource decoder used to decode obfuscated resource file. Director won't * take care decoder lifecycle, you must release it if needed * * @param decoder \link wyResourceDecoder wyResourceDecoder\endlink implementation, NULL * will disable resource decoding * \else * 设置一个资源解码器. Director不会负责释放解码器, 你必须自己处理 * * @param decoder \link wyResourceDecoder wyResourceDecoder\endlink的具体实现, NULL * 表示取消资源解码器 * \endif */ static void setResourceDecoder(wyResourceDecoder* decoder); #if MACOSX || WINDOWS /** * \if English * Set a custom screen config, it is a handy way to test against different screens * without buying hardware device. * * \note * This method must be called very early, such as before first scene is created * * @param c \link wyScreenConfig wyScreenConfig\endlink * \else * 设置一个自定义的屏幕设置, 可以用于模拟测试不同的屏幕适配. * * \note * 这个方法必须在很早的时候调用, 比如在第一个场景创建之前. * * @param c \link wyScreenConfig wyScreenConfig\endlink * \endif */ static void setScreenConfig(wyScreenConfig c); /** * \if English * Get current screen config * \else * 得到当前的屏幕配置 * \endif */ static wyScreenConfig& getScreenConfig(); #endif // #if MACOSX || WINDOWS /** * \if English * Print all objects which is not released yet. It it a way to check * possible object leak. For example, call it in a scene onEnter to check * objects of previous scene are leaked or not. * \else * 打印当前还没有被释放的所有对象, 这可以用来检查内存泄露. 一般可以在一个场景的 * onEnter方法里调用这个方法查看前一个场景的对象是否都已经被释放 * \endif */ static void printUnreleasedObjects(); /** * \if English * Print all memory blocks which is not released yet. The memory block * must be allocated by WiEngine custom macro, such as wyMalloc, WYNEW etc. * Otherwise the memory block can not be tracked. * * \note * this method is only available for memory debug version. It just print a * warning in release version * * @param fullLog true means including memory log in WiEngine, or false means just * print memory log in app layer. default is false * \else * 打印所有还未分配的内存. 分配内存时必须使用WiEngine定义的宏, 如wyMalloc, WYNEW等. * 否则分配的内存无法被跟踪 * * \note * 这个方法仅在内存调试版本中有效, 如果是正式发布的WiEngine版本, 仅打印一条警告 * * @param fullLog true表示把WiEngine底层的未释放内存也都打印出来, false表示只打印 * 应用层的未释放内存. 缺省是false * \endif */ static void printUnreleasedMemory(bool fullLog = false); /** * \if English * Print memory usage summary. The memory block * must be allocated by WiEngine custom macro, such as wyMalloc, WYNEW etc. * Otherwise the memory block can not be tracked. * * \note * this method is only available for memory debug version. It just print a * warning in release version * \else * 打印出内存使用情况. 分配内存时必须使用WiEngine定义的宏, 如wyMalloc, WYNEW等. * 否则分配的内存无法被跟踪 * * \note * 这个方法仅在内存调试版本中有效, 如果是正式发布的WiEngine版本, 仅打印一条警告 * \endif */ static void printMemoryUsage(); /** * \if English * destructor * \else * 析构函数 * \endif */ virtual ~wyDirector(); /** * \if English * set the surface view * * @param glView wyGLSurfaceView object * \else * 设置WYGLSurfaceView对象, 应该由java层调用。如果将WiEngine用于动态壁纸,则 * 这个方法不需要被调用。 * * @param glView WYGLSurfaceView对象 * \endif */ virtual void attachInView(wyGLSurfaceView glView) = 0; /** * \if English * invoked from platform end, to set the context * * @param context platform dependent context object * \else * 设置特定平台的上下文对象 * * @param context 特定平台的上下文对象 * \endif */ virtual void attachContext(wyGLContext context) = 0; /** * \if English * set the accelerometer level * * @param delay \link wySensorDelay wySensorDelay \endlink * \else * 设置加速器事件的触发速度, 目前有四个级别. 常量定义在wySensorDelay枚举中 * * @param delay 触发速度, 可以是DELAY_FASTEST(最快), * DELAY_GAME(较快), DELAY_UI(适合UI, 较慢), * DELAY_NORMAL(最慢) * \endif */ virtual void setAccelerometerDelay(wySensorDelay delay) = 0; #if ANDROID /** * \if English * set whether to allow the game runs in background. This only applies on android platform. * * Normally, when the application enters background, the surface will be destroyed, the * director will also be stopped, thus your game can't render anything to the screen, * and the sound is also stopped. So, normally, you don't need it at all. * * The lucky thing is that your game logics is sill running. So, fully up to you. :) * * @param flag true means allow * \else * <p>设置是否允许游戏在后台运行. 缺省情况下, 游戏退到后台后, surface被销毁, 游戏主循环也将停止, 所以 * 游戏通常是不会在后台运行的. 不过可以设置这个标志让游戏在后台仍然保持运行, 当然这个运行只是指游戏 * 的逻辑继续在运行, 渲染是肯定不会继续的, 声音也不会继续播放. 好吧, 这功能有啥用呢? 如果您的游戏有 * 类似于挂机这样的概念, 那也许就用的上了. 不过, 如果在后台游戏还跑着, 那是肯定会加大电量消耗的, 所以 * 要慎重.<br></p> * * <p>这个API仅能在Android平台使用, iOS只允许一些特定的任务在后台运行. 使用这个api会使您的应用增加移植 * 难度.</p> * * @param flag true表示允许游戏在后台运行 * \endif */ virtual void setAllowBackgroundRunning(bool flag) = 0; /** * \if English * get whether to allow game runs in background * * @return true means allowed * \else * 是否允许游戏在后台运行 * * @return true表示允许游戏在后台运行 * \endif */ virtual bool isAllowBackgroundRunning() = 0; #endif // #if ANDROID /** * \if English * Invoked when surface is created * \else * Surface被创建时被调用 * \endif */ virtual void onSurfaceCreated(); /** * \if English * Invoked when surface size is changed * * @param w new width of surface * @param h new height of surface * \else * Surface大小发生变化时被调用 * * @param w surface的新宽度 * @param h surface的新高度 * \endif */ virtual void onSurfaceChanged(int w, int h); /** * \if English * Invoked when surface is destroyed * \else * Surface被销毁时被调用 * \endif */ virtual void onSurfaceDestroyed(); /** * \if English * set the screen adapting mode * * @param mode \link wyScaleMode wyScaleMode\endlink * \else * 设置屏幕适配模式. 这个方法必须要在surface创建之前调用. * * @param mode 屏幕适配模式 * \endif */ virtual void setScaleMode(wyScaleMode mode); /** * \if English * set the base size, this is the size where your games really lives in. * Notice that this function must be called before creating surface. * * For more information about base size mode, read the tutorials * @param w base width pixel * @param h base height pixel * \else * 设置基础大小,仅当屏幕适配模式是基础大小适配模式时有效. 这个方法必须要在surface创建之前调用. * * @param w 游戏画面基础宽度 * @param h 游戏画面基础高度 * \endif */ virtual void setBaseSize(int w, int h); /** * \if English * Change the base size during game running. If current mode is not base size mode, * this method will switch to it. * * @param w new base width pixel * @param h new base height pixel * \else * 改变基础大小, 如果当前模式不是是基础大小模式, 则该方法会切换至基础大小模式. 这个方法可以让你在 * 游戏运行中动态的改变基础大小, 但必须以场景为单位. * * @param w 新的基础宽度像素 * @param h 新的基础高度像素 * \endif */ virtual void changeBaseSize(int w, int h); /** * \if English * pause the director. Once paused, the frame rendering, event dispatching are all paused. * A common case is to call this function from android acticity's onPause() * \else * 暂停当前场景,返回true为设置成功,如果返回false说明已经是暂停状态,一般在android onPause事件中调用 * \endif */ bool pause(); /** * \if English * resume the paused director * \else * 恢复当前场景,返回true为设置成功,如果返回false说明已经是恢复状态 * \endif */ bool resume(); /** * \if English * get the window size * * @return \link wySize wySize\endlink * \else * 获得窗口尺寸\link wySize wySize结构\endlink * * @return \link wySize wySize结构\endlink * \endif */ wySize getWindowSize(); /** * \if English * get the window width, in pixels * \else * 获得窗口宽度 * * @return 窗口宽度 * \endif */ int getWindowWidth(); /** * \if English * get the window height * \else * 获得窗口高度 * * @return 窗口高度 * \endif */ int getWindowHeight(); /** * \if English * to add a life cycle listener * * @param l \link wyDirectorLifecycleListener wyDirectorLifecycleListener\endlink * @param data user defined data * \else * 添加一个生命周期监听器 * * @param l \link wyDirectorLifecycleListener wyDirectorLifecycleListener\endlink * @param data 附加数据指针 * \endif */ void addLifecycleListener(const wyDirectorLifecycleListener* l, void* data); /** * \if English * getter, to get the surface view * \else * 获得WYGLSurfaceView对象 * * @return WYGLSurfaceView对象 * \endif */ wyGLSurfaceView getGLView() { return m_glView; } /** * \if English * to get the context passed by attachContext * \else * 获得context对象 * * @return 之前由attachContext传入的context * \endif */ wyGLContext getContext() { return m_context; } /** * \if English * to set whether to open opengl depth test * * @param on true means to open * \else * 设置是否打开深度测试, 缺省是关闭的 * * @param on true表示打开深度测试 * \endif */ void setDepthTest(bool on); /** * \if English * to set whether to display the FPS label * * @param show true means to display * \else * 设置是否显示FPS标签 * * @param show true为显示 * \endif */ void setShowFPS(bool show); /** * \if English * Set flag indicating fps should be calculated or not, if true, you * can retrieve current frame rate by \c getCurrentFrameRate. However, * enable this feature will introduce a little cpu cost, but may be not * much * * \note * if you call setShowFPS(true), then it implied fps will be calculated * \else * 设置是否打开fps计算功能, 如果为true, 则可以通过\c getCurrentFrameRate获得当前 * 帧率. 但是打开这个功能肯定会消耗一些cpu资源, 但是应该不大. * * \note * 如果调用了\c setShowFPS(true), 则fps计算也将打开 * \endif */ void setCalculateFPS(bool flag) { m_calculateFPS = flag; } /** * \if English * set the projection mode * * @param projection \link wyProjectionType wyProjectionType\endlink * \else * 设置投影方式 * * @param projection 投影方式 * \endif */ void setProjection(wyProjectionType projection); /** * \if English * set orthographic projection as the projection mode * \else * 设置投影方式为正交投影方式 * \endif */ void set2DProjection(); /** * \if English * set the perspective projection as the projection mode * \else * 设置投影方式为3D投影方式 * \endif */ void set3DProjection(); /** * \if English * set default projection as the projected mode * \else * 设置投影方式为默认投影方式 * \endif */ void setDefaultProjection(); /** * \if English * called to draw the next frame * \else * 该方法负责画下一帧场景 * \endif */ void drawFrame(); /** * \if English * Set max frame rate * * @param maxFrameRate max frame rate * \else * 设置最大帧率 * * @param maxFrameRate 最大帧率 * \endif */ void setMaxFrameRate(int maxFrameRate); /** * \if English * Enable alpha blending or not, default is true * * @param on true means alpha blending should be enabled * \else * 设置是否打开alpha渲染, 缺省是true * * @param on true表示打开alpha渲染 * \endif */ void setAlphaBlending(bool on); /** * \if English * to specify whether front- or back-facing facets can be culled in the opengl * * @param on true means the back-facing facets can be culled * \else * 剔除背面画图 * * @param on 是否剔除背面画图,true为剔除 * \endif */ void setCullFace(bool on); /** * \if English * to run a scene * * @param scene \link wyScene wyScene \endlink * \else * 运行场景 * * @param scene 需要运行的\link wyScene wyScene对象指针\endlink * \endif */ void runWithScene(wyScene* scene); /** * \if English * pop the top from the stack, the next scene in the stack will become the active scene * \else * 弹出栈顶的场景, 切换到当前场景在栈中的上一个场景 * \endif */ void popScene(); /** * \if English * perform scene transition from the current scene to the next scene in the stack * * @param trans \link wyTransitionScene wyTransitionScene\endlink * \else * 弹出栈顶的场景, 同时附带一个转场效果 * * @param trans \link wyTransitionScene wyTransitionScene\endlink * \endif */ void popSceneWithTransition(wyTransitionScene* trans); /** * \if English * push one scene to the stack, the pushed scene will become the active scene * * @param scene \link wyScene wyScene\endlink * \else * 切换场景,该方法会保留当前的场景在栈中,在下一场景按back键回回到当前场景 * * @param scene 需要切换的\link wyScene wyScene对象指针\endlink * \endif */ void pushScene(wyScene* scene); /** * \if English * replace the current active scene with the passed scene * * @param scene \link wyScene wyScene\endlink * \else * 切换场景,替换当前的运行场景,该方法不会保留当前的场景在栈中 * * @param scene 需要切换的\link wyScene wyScene对象指针\endlink * \endif */ void replaceScene(wyScene* scene); /** * \if Englich * Set checking texture flag so that all textures will be invalidate to make them reload * * @param flag true means all texture should be revalidate * \else * 设置检查贴图标志, 从而所有贴图都会被重新载入 * * @param flag true表示所有贴图都会被重新载入 * \endif */ void setNeedCheckTexture(bool flag) { m_needCheckTexture = flag; } /** * \if English * to get the previous scene of the current scene * \else * 获得当前场景的上一个场景\link wyScene wyScene对象指针\endlink * * @return 当前场景的上一个场景\link wyScene wyScene对象指针\endlink * \endif */ wyScene* getPreviousScene(); /** * Get the current scene. However, when you call runWithScene, pushScene, replaceScene, * the running scene will be changed in next loop, not the time you calling those API. * In order to get the scene you passed to those API, this method will check next scene * first. * * @return the scene is running or will run at next loop, or NULL if no scene is running */ wyScene* getRunningScene(); /** * \if English * get whether the director is paused * * @return true means paused * \else * 获得当前是否为暂停状态,true为暂停 * * @return 当前暂停状态 * \endif */ bool isPaused() { return m_paused; } /** * \if English * get if the UI is paused * * @return true means UI is paused * \else * 获得当前是否被UI设置为暂停状态,true为暂停 * * @return 当前暂停状态 * \endif */ bool isUIPaused() { return m_UIPaused; } /** * \if English * pause UI, once paused, all the running actions will stopped, * but the event dispatching is still alive * \else * 暂停游戏,此方法只负责暂停游戏的调度器调度和动作管理,事件需要游戏实现者自行判断 * \endif */ void pauseUI() { m_UIPaused = true; } /** * \if English * resume UI from paused state * \else * 恢复游戏,此方法只负责恢复游戏的调度器调度和动作管理,事件需要游戏实现者自行判断 * \endif */ void resumeUI() { m_UIPaused = false; } /** * \if English * Get max frame rate. Zero means no limitation. * * @return max frame rate * \else * 得到允许的最大帧率, 游戏将确保以不超过该帧率的速度运行, 为0表示不限制 * * @return 允许的最大帧率 * \endif */ int getMaxFrameRate() { return m_maxFrameRate; } /** * \if English * get the projection mode being used * \else * 返回当前的投影方式 * * @return 当前的投影方式 * \endif */ wyProjectionType getProjection() { return m_projection; } /** * \if English * test whether a specified opengl extension is supported * * @param name name of the extension * \else * 测试是否某个OpenGL扩展被支持 * * @param name 扩展名称 * \endif */ bool isExtensionSupported(const char* name); /** * \if English * check whether the surface has been created * * @return true means created * \else * 检查surface是否已经创建 * * @return true表示surface已经创建,false表示没有或者已经被销毁 * \endif */ bool isSurfaceCreated() { return m_surfaceCreated; } /** * \if English * make a screen shot, the picture will be saved as a png file at * the location specified by path. * * \par * Notice: * This function may not work on some devices of low configuration * due to opengl supporting. * With regard to iOS, the path to save the file is relative to * the sand box of your application. * * @param path where to save the png file. The directory will be * created automatically if not exist * \else * 抓取当前帧, 保存为png图片. 这个方法会将图片保存到指定路径,由于牵涉到文件 * 写操作, 因此速度较慢, 另外使用的OpenGL接口可能在低版本Android系统上没有 * 实现. 如果保存的路径在sd卡上, 则应用需要有写sd卡的权限. * * 在iOS平台上截图时, 传入的路径会被认为是相对于应用沙箱的Documents目录. * * @param path 截图保存的目标路径, 如果指定的路径不存在, 则会自动创建目录. 如果为NULL, 则不做任何事 * \endif */ void makeScreenshot(const char* path); /** * \if English * The only thing it is different from makeScreenshot(const char*) is that this function * won't capture the full screen, it just capture the screen specified by rect. * * @param path see makeScreenshot(const char*) * @param rect \link wyRect wyRect\endlink * \else * 抓取当前帧的一部分, 保存为png图片. 这个方法会将图片保存到指定路径,由于牵涉到文件 * 写操作, 因此速度较慢, 另外使用的OpenGL接口可能在低版本Android系统上没有 * 实现. 如果保存的路径在sd卡上, 则应用需要有写sd卡的权限. * * 在iOS平台上截图时, 传入的路径会被认为是相对于应用沙箱的Documents目录. * * @param path 截图保存的目标路径, 如果指定的路径不存在, 则会自动创建目录. 如果为NULL, 则不做任何事 * @param rect 需要截取的屏幕矩形范围 * \endif */ void makeScreenshot(const char* path, wyRect rect); /** * \if English * Be equal to calling makeScreenshot(path, node->getBoundingBoxRelativeToWorld) * * @param path see makeScreenshot(const char*) * @param node \link wyNode wyNode\endlink * \else * 单独抓取某个节点范围内的内容, 节点范围会考虑到节点的缩放和旋转, 因此实际上是获得节点的 * getBoundingBoxRelativeToWorld的范围进行抓取. * * \note * \c node的状态并不影响截图的结果, 因为只是获取\c node的矩形范围, 其它并无作用, 这个调用 * 实际上等同于makeScreenshot(path, node->getBoundingBoxRelativeToWorld()) * * @param path 截图保存的目标路径, 如果指定的路径不存在, 则会自动创建目录. 如果为NULL, 则不做任何事 * @param node 需要抓取的节点 * \endif */ void makeScreenshot(const char* path, wyNode* node); /** * \if English * get the current frame rate * * @return the frame rate, per second * \else * 得到当前的帧率, 这个帧率其实是最近一次计算出的帧率, 因此不能说完全是当前的帧率. 不过基本和当前帧率是一致的. * * @return 最近的帧率 * \endif */ float getCurrentFrameRate() { return m_frameRate; } /** * \if English * check whether node has focus state * * @return true means enabled * \else * 检查节点是否具有焦点态 * * @return true为可用 * \endif */ bool isFocusEnabled() { return m_focusEnabled; } /** * \if English * set whether to enable the node to have focus state, by default the focus state * is disabled. One common case the focus state may be useful is a game operated by * hard d-pad keyboard, where the player can easily know where the focus is now at and * what would happen if he/she push down the OK key. * * @param flag true means to enable * \else * 设置节点是否具有焦点态, true为有, 缺省为false. 如果一个节点具有焦点态, 则其可以在获得输入焦点时 * 显示不同的样子. 这比较适合于某些需要通过实体键盘操作的游戏, 这样的话显示焦点态是有意义的. 对于无 * 实体键盘的机型, 焦点态的用处不明显, 因此可以根据您的需要设置是否打开这个功能. 如果这个标志是false, * 则wyNode::setFocused方法没有任何效果. 如果是true, 则wyNode::setFocused会修改节点的焦点标志. * * @param flag 设置节点是否具有焦点态, true为可用 * \endif */ void setFocusEnabled(bool flag) { m_focusEnabled = flag; } /** * \if English * once the flag is set true, the time elapsed since the last frame will be set to zero. * Normally, you don't need to call this function manually. * * The flag will be reset to false automatically by the engine. * * This just applies a occasion that some certain operations such as resource loading * takes such a long time that the animation may miss its first few frames. * * @param flag * \else * 设置下一个delta时间是否为0. 这个方法会在每个场景载入后自动调用, 因此通常情况下您不需要调用此方法. * * @param flag true表示下一个delta时间设为0, 这主要用来避免因为资源载入导致的游戏体验不连续问题. 例如有一个场景中一开始就要执行动画, * 但是由于场景载入需要耗费一定时间, 因此可能导致动画的前面几帧被跳过. 那么可以设置这个标志强制使下一个delta时间为0, 这样 * 动画将从第一帧开始. * \endif */ void setNextDeltaTimeZero(bool flag) { m_nextDeltaTimeZero = flag; } /** * \if English * push one clip rectangle to the clip stack. The pushed one will become * the active clip rectangle to be used * Normally, you don't need to call it. * * @param rect \link wyRect wyRect\endlink * \else * 推入一个裁切区域矩形, 如果当前没有打开区域裁剪, 则会打开. 如果当前已经有区域裁剪, * 则新推入的矩形会取代当前裁剪矩形. * * \note * 这个方法主要由内部逻辑调用, 一般不需要直接调用 * * @param rect \link wyRect wyRect\endlink * \endif */ void pushClipRect(wyRect& rect); /** * \if English * pop out the top element from the stack, the new top element will become * the clip rectangle to be used * \else * 弹出一个裁剪区域, 如果当前已经有裁剪区域, 则被弹出且使用前一个区域为当前区域, 如果当前 * 只有一个裁剪区域, 则关闭区域裁剪. 如果一个也没有, 不做任何事 * \endif */ void popClipRect(); /** * \if English * Set frame tick delta scaling factor, this can be used to control game * total behavior. A smaller value than 1 will slow down game * speed, or a larger value than one will speed up. * \else * 设置帧间隔的缩放因子, 这个方法可以用来控制游戏的整体运行速度. 如果该值比1小, 则 * 游戏整体上会呈现慢动作的状态, 如果比1大, 则整体呈现快动作. 1表示正常速度. * \endif */ void setTickFactor(float r) { m_tickFactor = r; } /** * \if English * Get frame tick scaling factor * \else * 得到帧间隔缩放因子 * \endif */ float getTickFactor() { return m_tickFactor; } }; #endif // __wyDirector_h__
6cb3ac5571096f7b08844b2e85b5474d1608ddcb
7a817c495a146b34242995373e19ac83292bcba9
/problem/27941/main.cpp
df59d6fa806abb16b9813566266fc3eda08a580c
[]
no_license
yous/acmicpc-net
b1cc54f147172437693f58ec358417e754fc91b5
4a68bddd4503b708cb45b778a415c26207b3cc63
refs/heads/master
2023-08-16T21:46:17.099871
2023-08-16T08:43:24
2023-08-16T08:43:24
13,336,435
4
0
null
2022-12-11T10:17:23
2013-10-04T22:47:53
C++
UTF-8
C++
false
false
1,256
cpp
main.cpp
#include <algorithm> #include <iostream> #include <vector> using namespace std; const int INF = 1e9; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); vector<pair<int, int>> LR(11, pair<int, int>(-INF, -INF)); vector<bool> visited(2048); for (int i = 0; i < 2047; i++) { vector<int> point(11); for (auto& num : point) { cin >> num; } int idx = 0; for (int j = 0; j < 11; j++) { idx *= 2; if (LR[j].first == -INF) { LR[j].first = point[j]; } else if (LR[j].first != point[j]) { LR[j].second = point[j]; idx += 1; } } visited[idx] = true; } vector<int> ans(11); for (int idx = 0; idx < 2048; idx++) { if (visited[idx]) { continue; } int cur_idx = idx; for (int i = 10; i >= 0; i--) { if (cur_idx % 2 == 0) { ans[i] = LR[i].first; } else { ans[i] = LR[i].second; } cur_idx /= 2; } } cout << ans[0]; for (int i = 1; i < 11; i++) { cout << " " << ans[i]; } cout << "\n"; return 0; }
8b7fd3f5b87ecea1c5aa23f9298b511a22dd3928
b9404a88c13d723be44f7c247e1417689ce7981a
/SRC/External/stlib/packages/geom/mesh/simplex/ComplexWithFreeVertexOnManifold.h
635425dcbc6d770a16446270e20487918e9da6dd
[ "BSD-2-Clause" ]
permissive
bxl295/m4extreme
c3d0607711e268d22d054a8c3d9e6d123bbf7d78
2a4a20ebb5b4e971698f7c981de140d31a5e550c
refs/heads/master
2022-12-06T19:34:30.460935
2020-08-29T20:06:40
2020-08-29T20:06:40
291,333,994
0
0
null
null
null
null
UTF-8
C++
false
false
24,708
h
ComplexWithFreeVertexOnManifold.h
// -*- C++ -*- /*! \file ComplexWithFreeVertexOnManifold.h \brief A local simplicial complex with a free node at the center. */ #if !defined(__geom_ComplexWithFreeVertexOnManifold_h__) #define __geom_ComplexWithFreeVertexOnManifold_h__ #include "ComplexWithFreeVertex.h" namespace geom { //! A base class for a local simplicial complex with a free node on a manifold. /*! \param QF is the quality functor for the simplices. \param N is the space dimension. \param M is the manifold dimension. \param Manifold is the parametrized manifold. \param T is the number type. By default it is double. This class implements the complex of simplices that surround a free node that lies on a manifold. It provides functions to aid in the optimization of the location of this node. The faces in the complex that are not incident to the free node are fixed. You can set the fixed faces with the ComplexWithFreeVertexOnManifold(FaceIterator begin,FaceIterator end) constructor or with set(FaceIterator begin,FaceIterator end). You can evaluate various quantities as a function of the position of the free node: - computeBBox(const Vertex& v,BBox<N,T>* bb) calculates the bounding box for the complex. - computeContent(const Vertex& v) returns the content of the complex. - computeGradientOfContent(const Vertex& v,Vertex* gradient) calculates the gradient of the content. - computeNorm2(const Vertex& v) returns the 2-norm of the quality metric. - computeGradientOfNorm2(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the quality metric. - computeNorm2Modified(const Vertex& v) returns the 2-norm of the modified quality metric. - computeGradientOfNorm2Modified(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the modified quality metric. */ template < template<std::size_t, typename> class QF, std::size_t N, std::size_t M, class _Manifold, typename T = double > class ComplexWithFreeVertexOnManifoldBase : public ComplexWithFreeVertex<QF, N, T> { private: // // Private types. // typedef ComplexWithFreeVertex<QF, N, T> Base; public: // // Public types. // //! The number type. typedef typename Base::Number Number; //! A vertex. typedef typename Base::Vertex Vertex; //! A parametrized manifold. typedef _Manifold Manifold; //! A point in the parameter space. typedef std::tr1::array<Number, M> ManifoldPoint; //! A face of the simplex typedef typename Base::Face Face; protected: // // Data // //! The manifold data structure. const Manifold* _manifold; private: // // Not implemented. // // Copy constructor not implemented. ComplexWithFreeVertexOnManifoldBase (const ComplexWithFreeVertexOnManifoldBase&); // Assignment operator not implemented. ComplexWithFreeVertexOnManifoldBase& operator=(const ComplexWithFreeVertexOnManifoldBase&); protected: //-------------------------------------------------------------------------- //! \name Constructors etc. //! @{ //! Default constructor. Un-initialized memory. ComplexWithFreeVertexOnManifoldBase() : Base() {} //! Construct from the fixed faces. template<typename FaceIterator> ComplexWithFreeVertexOnManifoldBase(FaceIterator beginning, FaceIterator end) : Base(beginning, end), _manifold(0) {} //! Trivial destructor. ~ComplexWithFreeVertexOnManifoldBase() {} //! @} //-------------------------------------------------------------------------- //! \name Accessors. //! @{ //! Return the free vertex. using Base::getFreeVertex; //! @} //-------------------------------------------------------------------------- //! \name Manipulators. //! @{ //! Set the fixed vertices. using Base::set; //! Set the manifold. void setManifold(const Manifold* manifold) { assert(manifold != 0); _manifold = manifold; } //! @} //-------------------------------------------------------------------------- //! \name Mathematical functions //! @{ //! Calculate the bounding box for the complex. void computeBBox(const ManifoldPoint& point, BBox<T, N>* bb) { Base::computeBBox(computePosition(point), bb); } //! Return the content for the specified parameter point. Number computeContent(const ManifoldPoint& point) { return Base::computeContent(computePosition(point)); } //! Calculate the gradient of the content for the given free node. void computeGradientOfContent(const Vertex& v, Vertex* gradient) { Base::computeGradientOfContent(v, gradient); } //! Return the 2-norm of the quality metric for the given free node. Number computeNorm2(const Vertex& v) { return Base::computeNorm2(v); } //! Return the 2-norm of the quality metric for the given free node. Number computeNorm2(const ManifoldPoint& point) { return Base::computeNorm2(computePosition(point)); } //! Calculate the gradient of the 2-norm of the quality metric for the given free node. void computeGradientOfNorm2(const Vertex& v, Vertex* gradient) { Base::computeGradientOfNorm2(v, gradient); } //! Return the 2-norm of the modified quality metric for the given free node. Number computeNorm2Modified(const Vertex& v) { return Base::computeNorm2Modified(v); } //! Return the 2-norm of the modified quality metric for the given free node. Number computeNorm2Modified(const ManifoldPoint& point) { return Base::computeNorm2Modified(computePosition(point)); } //! Calculate the gradient of the 2-norm of the modified quality metric for the given free node. void computeGradientOfNorm2Modified(const Vertex& v, Vertex* gradient) { Base::computeGradientOfNorm2Modified(v, gradient); } // Compute a Euclidean position from parameter coordinates. Vertex computePosition(const ManifoldPoint& point) { assert(_manifold != 0); return _manifold->computePosition(point); } //! @} }; //! A local simplicial complex with a free node on a manifold. /*! \param QF is the quality functor for the simplices. \param N is the space dimension. \param M is the Manifold dimension. \param Manifold is the parametrized manifold. \param T is the number type. By default it is double. This class implements the complex of simplices that surround a free node that lies on a manifold. It provides functions to aid in the optimization of the location of this node. The faces in the complex that are not incident to the free node are fixed. You can set the fixed faces with the ComplexWithFreeVertexOnManifold(FaceIterator begin,FaceIterator end) constructor or with set(FaceIterator begin,FaceIterator end). You can evaluate various quantities as a function of the position of the free node: - computeBBox(const Vertex& v,BBox<N,T>* bb) calculates the bounding box for the complex. - computeContent(const Vertex& v) returns the content of the complex. - computeGradientOfContent(const Vertex& v,Vertex* gradient) calculates the gradient of the content. - computeNorm2(const Vertex& v) returns the 2-norm of the quality metric. - computeGradientOfNorm2(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the quality metric. - computeNorm2Modified(const Vertex& v) returns the 2-norm of the modified quality metric. - computeGradientOfNorm2Modified(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the modified quality metric. */ template < template<std::size_t, typename> class QF, std::size_t N, std::size_t M, class _Manifold, typename T = double > class ComplexWithFreeVertexOnManifold; //! A local simplicial complex with a free node on a manifold. /*! \param QF is the quality functor for the simplices. \param N is the space dimension. \param Manifold is the parametrized manifold. \param T is the number type. Specialization for M == 1 (M is the manifold dimension). This class implements the complex of simplices that surround a free node that lies on a manifold. It provides functions to aid in the optimization of the location of this node. The faces in the complex that are not incident to the free node are fixed. You can set the fixed faces with the ComplexWithFreeVertexOnManifold(FaceIterator begin,FaceIterator end) constructor or with set(FaceIterator begin,FaceIterator end). You can evaluate various quantities as a function of the position of the free node: - computeBBox(const Vertex& v,BBox<N,T>* bb) calculates the bounding box for the complex. - computeContent(const Vertex& v) returns the content of the complex. - computeGradientOfContent(const Vertex& v,Vertex* gradient) calculates the gradient of the content. - computeNorm2(const Vertex& v) returns the 2-norm of the quality metric. - computeGradientOfNorm2(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the quality metric. - computeNorm2Modified(const Vertex& v) returns the 2-norm of the modified quality metric. - computeGradientOfNorm2Modified(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the modified quality metric. */ template < template<std::size_t, typename> class QF, std::size_t N, class _Manifold, typename T > class ComplexWithFreeVertexOnManifold<QF, N, 1, _Manifold, T> : public ComplexWithFreeVertexOnManifoldBase<QF, N, 1, _Manifold, T> { private: // // Private types. // typedef ComplexWithFreeVertexOnManifoldBase<QF, N, 1, _Manifold, T> Base; public: // // Public types. // //! The number type. typedef typename Base::Number Number; //! A vertex. typedef typename Base::Vertex Vertex; //! A parametrized manifold. typedef typename Base::Manifold Manifold; //! A point in the parameter space. typedef typename Base::ManifoldPoint ManifoldPoint; //! A face of the simplex typedef typename Base::Face Face; private: // // Member data. // using Base::_manifold; // // Not implemented. // // Copy constructor not implemented. ComplexWithFreeVertexOnManifold(const ComplexWithFreeVertexOnManifold&); // Assignment operator not implemented. ComplexWithFreeVertexOnManifold& operator=(const ComplexWithFreeVertexOnManifold&); public: //-------------------------------------------------------------------------- //! \name Constructors etc. //! @{ //! Default constructor. Un-initialized memory. ComplexWithFreeVertexOnManifold() {} //! Construct from the fixed faces. template<typename FaceIterator> ComplexWithFreeVertexOnManifold(FaceIterator beginning, FaceIterator end) : Base(beginning, end) {} //! Trivial destructor. ~ComplexWithFreeVertexOnManifold() {} //! @} //-------------------------------------------------------------------------- //! \name Accessors. //! @{ //! Return the free vertex. using Base::getFreeVertex; //! @} //-------------------------------------------------------------------------- //! \name Manipulators. //! @{ //! Set the fixed vertices. using Base::set; //! Set the manifold. using Base::setManifold; //! @} //-------------------------------------------------------------------------- //! \name Mathematical functions //! @{ //! Calculate the bounding box for the complex. using Base::computeBBox; //! Return the content for the specified parameter point. using Base::computeContent; //! Calculate the gradient of the content for the specified parameter point. void computeGradientOfContent(const ManifoldPoint& point, ManifoldPoint* gradient) { // Compute the gradient in Euclidean space. Vertex spaceGradient; Base::computeGradientOfContent(computePosition(point), &spaceGradient); // Compute the gradient in parameter space. (*gradient)[0] = dot(spaceGradient, computeDerivative(point)); } //! Return the 2-norm of the quality metric for the given free node. using Base::computeNorm2; //! Calculate the gradient of the 2-norm of the quality metric for the given free node. void computeGradientOfNorm2(const ManifoldPoint& point, ManifoldPoint* gradient) { // Compute the gradient in Euclidean space. Vertex spaceGradient; Base::computeGradientOfNorm2(computePosition(point), &spaceGradient); // Compute the gradient in parameter space. (*gradient)[0] = dot(spaceGradient, computeDerivative(point)); } //! Return the 2-norm of the modified quality metric for the given free node. using Base::computeNorm2Modified; //! Calculate the gradient of the 2-norm of the modified quality metric for the given free node. void computeGradientOfNorm2Modified(const ManifoldPoint& point, ManifoldPoint* gradient) { // Compute the gradient in Euclidean space. Vertex spaceGradient; Base::computeGradientOfNorm2Modified(computePosition(point), &spaceGradient); // Compute the gradient in parameter space. (*gradient)[0] = dot(spaceGradient, computeDerivative(point)); } //! @} private: // Compute a Euclidean position from parameter coordinates. using Base::computePosition; // Compute the derivative of position. Vertex computeDerivative(const ManifoldPoint& point) { assert(_manifold != 0); return _manifold->computeDerivative(point); } }; //! A local simplicial complex with a free node on a manifold. /*! \param QF is the quality functor for the simplices. \param N is the space dimension. \param Manifold is the parametrized manifold. \param T is the number type. Specialization for M == 2 (M is the manifold dimension). This class implements the complex of simplices that surround a free node that lies on a manifold. It provides functions to aid in the optimization of the location of this node. The faces in the complex that are not incident to the free node are fixed. You can set the fixed faces with the ComplexWithFreeVertexOnManifold(FaceIterator begin,FaceIterator end) constructor or with set(FaceIterator begin,FaceIterator end). You can evaluate various quantities as a function of the position of the free node: - computeBBox(const Vertex& v,BBox<N,T>* bb) calculates the bounding box for the complex. - computeContent(const Vertex& v) returns the content of the complex. - computeGradientOfContent(const Vertex& v,Vertex* gradient) calculates the gradient of the content. - computeNorm2(const Vertex& v) returns the 2-norm of the quality metric. - computeGradientOfNorm2(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the quality metric. - computeNorm2Modified(const Vertex& v) returns the 2-norm of the modified quality metric. - computeGradientOfNorm2Modified(const Vertex& v,Vertex* gradient) calculates the gradient of the 2-norm of the modified quality metric. */ template < template<std::size_t, typename> class QF, std::size_t N, class _Manifold, typename T > class ComplexWithFreeVertexOnManifold<QF, N, 2, _Manifold, T> : public ComplexWithFreeVertexOnManifoldBase<QF, N, 2, _Manifold, T> { private: // // Private types. // typedef ComplexWithFreeVertexOnManifoldBase<QF, N, 2, _Manifold, T> Base; public: // // Public types. // //! The number type. typedef typename Base::Number Number; //! A vertex. typedef typename Base::Vertex Vertex; //! A parametrized manifold. typedef typename Base::Manifold Manifold; //! A point in the parameter space. typedef typename Base::ManifoldPoint ManifoldPoint; //! A face of the simplex typedef typename Base::Face Face; private: // // Member data. // using Base::_manifold; // // Not implemented. // // Copy constructor not implemented. ComplexWithFreeVertexOnManifold(const ComplexWithFreeVertexOnManifold&); // Assignment operator not implemented. ComplexWithFreeVertexOnManifold& operator=(const ComplexWithFreeVertexOnManifold&); public: //-------------------------------------------------------------------------- //! \name Constructors etc. //! @{ //! Default constructor. Un-initialized memory. ComplexWithFreeVertexOnManifold() {} //! Construct from the fixed faces. template<typename FaceIterator> ComplexWithFreeVertexOnManifold(FaceIterator beginning, FaceIterator end) : Base(beginning, end) {} //! Trivial destructor. ~ComplexWithFreeVertexOnManifold() {} //! @} //-------------------------------------------------------------------------- //! \name Accessors. //! @{ //! Return the free vertex. using Base::getFreeVertex; //! @} //-------------------------------------------------------------------------- //! \name Manipulators. //! @{ //! Set the fixed vertices. using Base::set; //! Set the manifold. using Base::setManifold; //! @} //-------------------------------------------------------------------------- //! \name Mathematical functions //! @{ //! Calculate the bounding box for the complex. using Base::computeBBox; //! Return the content for the specified parameter point. using Base::computeContent; //! Calculate the gradient of the content for the specified parameter point. void computeGradientOfContent(const ManifoldPoint& point, ManifoldPoint* gradient) { // Compute the gradient in Euclidean space. Vertex spaceGradient; Base::computeGradientOfContent(computePosition(point), &spaceGradient); // Compute the gradient in parameter space. Vertex dxds, dxdt; #ifdef __INTEL_COMPILER // CONTINUE: For some reason icc does not like the line below. // I replaced it with the contents of the function in order get it // to compile. assert(_manifold != 0); _manifold->computeDerivative(point, &dxds, &dxdt) #else computeDerivative(point, &dxds, &dxdt) #endif (*gradient)[0] = dot(spaceGradient, dxds); (*gradient)[1] = dot(spaceGradient, dxdt); } //! Return the 2-norm of the quality metric for the given free node. using Base::computeNorm2; //! Calculate the gradient of the 2-norm of the quality metric for the given free node. void computeGradientOfNorm2(const ManifoldPoint& point, ManifoldPoint* gradient) { // Compute the gradient in Euclidean space. Vertex spaceGradient; Base::computeGradientOfNorm2(computePosition(point), &spaceGradient); // Compute the gradient in parameter space. Vertex dxds, dxdt; #ifdef __INTEL_COMPILER // CONTINUE: For some reason icc does not like the line below. // I replaced it with the contents of the function in order get it // to compile. assert(_manifold != 0); _manifold->computeDerivative(point, &dxds, &dxdt) #else computeDerivative(point, &dxds, &dxdt) #endif (*gradient)[0] = dot(spaceGradient, dxds); (*gradient)[1] = dot(spaceGradient, dxdt); } //! Return the 2-norm of the modified quality metric for the given free node. using Base::computeNorm2Modified; //! Calculate the gradient of the 2-norm of the modified quality metric for the given free node. void computeGradientOfNorm2Modified(const ManifoldPoint& point, ManifoldPoint* gradient) { // Compute the gradient in Euclidean space. Vertex spaceGradient; Base::computeGradientOfNorm2Modified(computePosition(point), &spaceGradient); // Compute the gradient in parameter space. Vertex dxds, dxdt; computeDerivative(point, &dxds, &dxdt); (*gradient)[0] = dot(spaceGradient, dxds); (*gradient)[1] = dot(spaceGradient, dxdt); } //! @} private: // Compute a Euclidean position from parameter coordinates. using Base::computePosition; // Compute the derivative of position. void computeDerivative(const ManifoldPoint& point, Vertex* dxds, Vertex* dxdt) { assert(_manifold != 0); _manifold->computeDerivative(point, dxds, dxdt); } }; //! Functor that evaluates the 2-norm of the quality metric for a local simplicial mesh. template<class Complex> class ComplexManifoldNorm2 : public std::unary_function < typename Complex::ManifoldPoint, typename Complex::Number > { private: typedef std::unary_function < typename Complex::ManifoldPoint, typename Complex::Number > Base; public: //! The argument type. typedef typename Base::argument_type argument_type; //! The result type. typedef typename Base::result_type result_type; private: mutable Complex& _sc; // Default constructor not implemented. ComplexManifoldNorm2(); // Assignment operator not implemented. ComplexManifoldNorm2& operator=(const ComplexManifoldNorm2&); public: //! Construct from a \c ComplexWithFreeVertexOnManifold. ComplexManifoldNorm2(Complex& sc) : _sc(sc) {} //! Copy constructor. ComplexManifoldNorm2(const ComplexManifoldNorm2& other) : _sc(other._sc) {} //! Get the complex. Complex& getComplex() const { return _sc; } //! Return the 2-norm of the quality function. result_type operator()(const argument_type& x) const { return _sc.computeNorm2(x); } //! Calculate the gradient of the 2-norm of the quality function. void gradient(const argument_type& x, argument_type& grad) const { _sc.computeGradientOfNorm2(x, &grad); } }; //! Functor that evaluates the 2-norm of the modified quality metric for a local simplicial mesh. template<class Complex> class ComplexManifoldNorm2Mod : public std::unary_function < typename Complex::ManifoldPoint, typename Complex::Number > { private: typedef std::unary_function < typename Complex::ManifoldPoint, typename Complex::Number > Base; public: //! The argument type. typedef typename Base::argument_type argument_type; //! The result type. typedef typename Base::result_type result_type; private: mutable Complex& _sc; // Default constructor not implemented. ComplexManifoldNorm2Mod(); // Assignment operator not implemented. ComplexManifoldNorm2Mod& operator=(const ComplexManifoldNorm2Mod&); public: //! Construct from a \c ComplexWithFreeVertexOnManifold. ComplexManifoldNorm2Mod(Complex& sc) : _sc(sc) {} //! Copy constructor. ComplexManifoldNorm2Mod(const ComplexManifoldNorm2Mod& x) : _sc(x._sc) {} //! Get the complex. Complex& getComplex() const { return _sc; } //! Return the 2-norm of the modified quality function. result_type operator()(const argument_type& x) const { return _sc.computeNorm2Modified(x); } //! Calculate the gradient of the 2-norm of the modified quality function. void gradient(const argument_type& x, argument_type& grad) const { _sc.computeGradientOfNorm2Modified(x, &grad); } }; } // namespace geom #define __geom_ComplexWithFreeVertexOnManifold_ipp__ #include "ComplexWithFreeVertexOnManifold.ipp" #undef __geom_ComplexWithFreeVertexOnManifold_ipp__ #endif
b26f5acc587aca5e34ffebaf94ec715f14cd3086
c9652f71a8f295607e84c67332ca5717571efa3a
/opengl/01/src/scrap/scrap.cc
2333992e6f1fcade07f768c1b780e4d4fa49498a
[]
no_license
valhakis/master
f34d46a7de39bf1627ea1dd15556efda4f756201
2ae80f86fef749abcac85782c542a6cd8f2e7d77
refs/heads/master
2021-01-20T13:37:31.348837
2017-11-18T12:43:01
2017-11-18T12:43:01
90,505,495
0
0
null
null
null
null
UTF-8
C++
false
false
774
cc
scrap.cc
#include <glad/glad.h> #include "program.h" static unsigned int vao, vbo; int ScrapInitialize() { float vertices[] = { -0.5f, -0.5f, 0.0f, +0.5f, -0.5f, 0.0f, +0.0f, +0.5f, 0.0f, }; glGenVertexArrays(1, &vao); glGenBuffers(1, &vbo); glBindVertexArray(vao); glBindBuffer(GL_ARRAY_BUFFER, vbo); glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0); glEnableVertexAttribArray(0); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindVertexArray(0); } int ScrapUpdate() { glUseProgram(ProgramGetDefault()); glBindVertexArray(vao); ProgramLoadIdentity(); ProgramSetUniform3f("mColor", 1.0f, 0.0f, 0.0f); glDrawArrays(GL_TRIANGLES, 0, 3); }
ceaa9c193f89f500c710069fa8897eea871092b6
7f67fb29806bf037b1f0b1ec2134f82435c73082
/plugins/osgaudio/include2/openalpp/Capture.h
bb1ed7d00cc6bd13b362668dadaf0a58e6e54818
[]
no_license
popoca/OSG_ShootingGallery
a65f92c121ea8741750c8a572123a0062a331db9
75f9b58b0dddc274d05deda716072354f7e23f31
refs/heads/master
2020-04-09T02:40:51.579783
2010-12-17T10:11:01
2010-12-17T10:11:01
1,242,956
0
1
null
null
null
null
IBM852
C++
false
false
2,169
h
Capture.h
/* -*-c++-*- */ /** * osgAudio - OpenSceneGraph Audio Library * Copyright (C) 2010 AlphaPixel, LLC * based on a fork of: * Osg AL - OpenSceneGraph Audio Library * Copyright (C) 2004 VRlab, Umeň University * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * Please see COPYING file for special static-link exemption to LGPL. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #ifndef OPENALPP_CAPTURE_H #define OPENALPP_CAPTURE_H 1 #include <openalpp/Export.h> #include <openalpp/Stream.h> namespace openalpp { /** * Class for capturing sound from input devices, like microphones. */ class OPENALPP_API Capture : public Stream { static int nobjects_; /** * Initialize input. Called by constructor(s). */ void init(); public: /** * Constructor. */ Capture(); /** * Constructor. * @param device is the device to open. -1 for default input. * @param samplerate is the desired sample rate. * @param buffersize is the desired buffer size _in samples_. * @param format is the desired sample format. */ Capture(int device,unsigned int samplerate,unsigned int buffersize=1024, SampleFormat format=Mono16); /** * Copy constructor. */ Capture(const Capture &input); /** * Assignment operator. */ Capture &operator=(const Capture &input); protected: /** * Destructor. */ virtual ~Capture(); ALCdevice *pCaptureDevice_; unsigned long bufferSize_; unsigned long sampleRate_; SampleFormat sampleFormat_; }; } #endif /* OPENALPP_CAPTURE_H */
e68548f31d7aae4ebb08c28c859ffd87ae1beb68
ff4d1d8718bb2b4e78fcd76f93fadbea35940501
/lab-6/main.cpp
c18ef91ade8b28cb2acb56bb721ec275f7dcd5a6
[]
no_license
VetalosUA-KR/OOP
dd295b61431e4224d291f11b2a82ffe0d6b4831f
1ae3fb8995a909694d8e37a1a8ec5a46916064a7
refs/heads/master
2020-09-17T06:47:59.208944
2020-01-17T20:34:22
2020-01-17T20:34:22
224,024,591
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
976
cpp
main.cpp
#include <iostream> #include "planeta.h" #include <windows.h> #include <conio.h> using namespace std; void ustawKursor(int x, int y) { COORD c; c.X = x; c.Y = y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c); } int main() { std::ios_base::sync_with_stdio(false); Plasczak Teodor("Teodor", '@'); /// создаем нашего героя Planeta Rect001("Rect001", '#', 20, 20, &Teodor); /// создаем игровое поле, в которое передаем адрес на нашего героя /// "отрисовка" cout<<Rect001<<endl; char z; do { z = getch(); switch (z) { case 72: Rect001.ruch(G); break; case 80: Rect001.ruch(D); break; case 75: Rect001.ruch(L); break; case 77: Rect001.ruch(P); break; } ustawKursor(0,0); cout<<Rect001<<endl; } while(z != 27); return 0; }
a009225e33c70c2b74d2c2c0deecb029c483c2fe
84c71be4809c4a39cd1c76914d07c621af0281a4
/divideandconquer/cows.cpp
3d135892fae2bad66baf178237886468fb0b9830
[]
no_license
vidhsss/Data-stractures-and-algorithms
c6d0e98de3b7623b2a4d16dbc2fbfea9b874c35a
b08a18bbf6b274c91ba982a38190ad01ec0dc81a
refs/heads/main
2023-06-23T00:27:29.486367
2021-07-25T18:18:09
2021-07-25T18:18:09
381,175,544
0
0
null
null
null
null
UTF-8
C++
false
false
869
cpp
cows.cpp
#include<iostream> #include<algorithm> using namespace std; bool check( int cows,int s[], int lim,int n) { int last_cow=s[0]; int count = 1; for (int i=1;i<n;i++) { if((s[i]-last_cow )>= lim) { last_cow =s[i]; count++; if (count==cows) { return true; } } } return false; } int main() { int s[100000]; int n; cin>>n; int c; cin>>c; for(int i=0;i<n;i++) { cin>>s[i]; } sort(s,s+n); int st=0; int e=s[n-1]-s[0]; int ans=0; while(st<=e) { int m=(st+e)/2; bool possible=check(c,s,m,n); if (possible) { ans=m; st= m + 1; } else { e = m-1; } } cout<<ans; return 0; }
dcdd069aa24ad33718a9772238e8cbb68f66cbc6
63beb217251372918db7cecb83a93861a266c51f
/src/Timer/Timer.hpp
d6b978d09ed6cd480bb2f09d13def98537f476b2
[]
no_license
SimonRacaud/Arcade
adac96148099d5863339873423771d2843d21d89
0cb61ed09caad97c1675289a8456089df197fc83
refs/heads/master
2023-05-30T17:58:55.558406
2021-06-22T09:42:00
2021-06-22T09:42:00
379,216,690
0
0
null
null
null
null
UTF-8
C++
false
false
500
hpp
Timer.hpp
/* ** EPITECH PROJECT, 2021 ** B-OOP-400-REN-4-1-arcade-aurelien.joncour ** File description: ** Timer.hpp.h */ #ifndef TIMER_HPP_ #define TIMER_HPP_ #include <ctime> class Timer { private: clock_t _time; clock_t _period; public: Timer(clock_t period); Timer(); virtual ~Timer() = default; bool shouldRefresh(); void setTimeout(clock_t duration); bool isTimeout(); clock_t getPeriod() const; void setPeriod(clock_t period); }; #endif // TIMER_HPP_
67057b425b55fbb994945a39c2991b7d73661517
1b5f19bfacb5d9d5bbe0d4d2a5336c5f9a90dcb0
/src/CTM/CTM_Solver.cpp
7d186761616f6dcb0ea214ac30bdcc631cc4ea31
[ "BSD-2-Clause" ]
permissive
rowhit/Albany
ee1825a9c4ad5aaa1690d94b4af6e2e7a56fee67
c625834c527b049bd18e73b3602b400a9335c476
refs/heads/master
2021-05-04T07:04:54.412437
2016-10-10T15:11:08
2016-10-10T15:11:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,462
cpp
CTM_Solver.cpp
#include "CTM_Solver.hpp" #include "CTM_ThermalProblem.hpp" #include <Albany_DiscretizationFactory.hpp> #include <Albany_AbstractDiscretization.hpp> #include "CTM_SolutionInfo.hpp" namespace CTM { static RCP<ParameterList> get_valid_params() { auto p = rcp(new ParameterList); p->sublist("Discretization"); p->sublist("Temperature Problem"); // p->sublist("Mechanics"); p->sublist("Linear Algebra"); p->sublist("Time"); } static void validate_params(RCP<const ParameterList> p) { assert(p->isSublist("Discretization")); assert(p->isSublist("Temperature Problem")); // assert(p->isSublist("Mechanics")); assert(p->isSublist("Linear Algebra")); assert(p->isSublist("Time")); // const Teuchos::ParameterList &time_list = p->sublist("Time"); assert(time_list.isType<double>("Initial Time")); assert(time_list.isType<double>("Step Size")); assert(time_list.isType<int>("Number of Steps")); // const Teuchos::ParameterList &la_list = p->sublist("Linear Algebra"); assert(la_list.isType<double>("Linear Tolerance")); assert(la_list.isType<int>("Linear Max. Iterations")); assert(la_list.isType<int>("Linear Krylov Size")); assert(la_list.isType<double>("Nonlinear Tolerance")); assert(la_list.isType<int>("Nonlinear Max. Iterations")); } Solver::Solver( RCP<const Teuchos_Comm> c, RCP<ParameterList> p) : comm(c), params(p) { validate_params(params); temp_params = rcpFromRef(params->sublist("Temperature Problem", true)); // Teuchos::ParameterList &time_list = params->sublist("Time"); t_old = time_list.get<double>("Initial Time"); dt = time_list.get<double>("Step Size"); num_steps = time_list.get<int>("Number of Steps"); // t_current = t_old + dt; initial_setup(); } void Solver::initial_setup() { // create parameter libraries // note: we never intend to use these objects, we create them because they // are inputs to constructors for various other objects. param_lib = rcp(new ParamLib); dist_param_lib = rcp(new DistParamLib); // create the mesh specs struct bool explicit_scheme = false; disc_factory = rcp(new Albany::DiscretizationFactory(params, comm, false)); mesh_specs = disc_factory->createMeshSpecs(); // create the problem objects auto dim = mesh_specs[0]->numDim; t_problem = rcp(new ThermalProblem(temp_params, param_lib, dim, comm)); temp_params->validateParameters(*(t_problem->getValidProblemParameters()), 0); t_problem->buildProblem(mesh_specs, state_mgr); // create the initial discretization object auto neq = t_problem->numEquations(); disc = disc_factory->createDiscretization( neq, t_problem->getSideSetEquations(), state_mgr.getStateInfoStruct(), state_mgr.getSideSetStateInfoStruct(), t_problem->getFieldRequirements(), t_problem->getSideSetFieldRequirements(), t_problem->getNullSpace()); sol_info = Teuchos::rcp(new SolutionInfo()); // sol_info->resize(disc,true); } void Solver::solve() { } }
7e0b37c3229962f6aecfae13e36e17563270504b
c178fac8e82b50fec3778b3b89edc297a6965877
/src/resqml2_0_1/RockFluidUnitFeature.cpp
a371c1908c73d25342874142e9d2e238f1ea29a8
[ "GPL-1.0-or-later", "LicenseRef-scancode-proprietary-license", "BSL-1.0", "Apache-2.0" ]
permissive
F2I-Consulting/fesapi
4c380b2dad00453c729e2198cf9d37b3b7111d61
79babc0c0ff97ce51496f260a5cf133990957398
refs/heads/master
2023-08-31T16:01:19.068344
2023-06-19T13:55:30
2023-06-19T13:55:30
110,119,551
38
53
Apache-2.0
2023-07-22T11:43:31
2017-11-09T13:35:15
C++
UTF-8
C++
false
false
3,374
cpp
RockFluidUnitFeature.cpp
/*----------------------------------------------------------------------- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"; you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -----------------------------------------------------------------------*/ #include "RockFluidUnitFeature.h" #include "BoundaryFeature.h" #include "../prodml2_2/FluidCharacterization.h" using namespace std; using namespace RESQML2_0_1_NS; using namespace gsoap_resqml2_0_1; const char* RockFluidUnitFeature::XML_TAG = "RockFluidUnitFeature"; RockFluidUnitFeature::RockFluidUnitFeature(COMMON_NS::DataObjectRepository* repo, const string & guid, const string & title, gsoap_resqml2_0_1::resqml20__Phase phase, BoundaryFeature* top, BoundaryFeature* bottom) { if (repo == nullptr) throw invalid_argument("The repo cannot be null."); gsoapProxy2_0_1 = soap_new_resqml20__obj_USCORERockFluidUnitFeature(repo->getGsoapContext()); _resqml20__RockFluidUnitFeature* rfuf = static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1); rfuf->Phase = phase; initMandatoryMetadata(); setMetadata(guid, title, std::string(), -1, std::string(), std::string(), -1, std::string()); repo->addDataObject(this); setTop(top); setBottom(bottom); } void RockFluidUnitFeature::setTop(BoundaryFeature* top) { getRepository()->addRelationship(this, top); static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1)->FluidBoundaryTop = top->newResqmlReference(); } BoundaryFeature* RockFluidUnitFeature::getTop() const { return repository->getDataObjectByUuid<BoundaryFeature>(static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1)->FluidBoundaryTop->UUID); } void RockFluidUnitFeature::setBottom(BoundaryFeature* bottom) { getRepository()->addRelationship(this, bottom); static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1)->FluidBoundaryBottom = bottom->newResqmlReference(); } BoundaryFeature* RockFluidUnitFeature::getBottom() const { return repository->getDataObjectByUuid<BoundaryFeature>(static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1)->FluidBoundaryBottom->UUID); } std::vector<PRODML2_2_NS::FluidCharacterization *> RockFluidUnitFeature::getFluidCharacterizationSet() const { return repository->getSourceObjects<PRODML2_2_NS::FluidCharacterization>(this); } void RockFluidUnitFeature::loadTargetRelationships() { _resqml20__RockFluidUnitFeature* interp = static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1); COMMON_NS::DataObjectReference dor(interp->FluidBoundaryTop); if(!dor.isEmpty()) { convertDorIntoRel<BoundaryFeature>(dor); } dor = COMMON_NS::DataObjectReference(interp->FluidBoundaryBottom); if(!dor.isEmpty()) { convertDorIntoRel<BoundaryFeature>(dor); } }
55cf5f33e7cf2ba5023834855d6bf7e2ca616455
28651e60263361eebde484b903ca7ee2cdecea62
/s1813583_TakamukuTsubasa_w03/problem2.cc
069262664fccc32e1a94e893c609ea0d02aaf494
[]
no_license
TsubaMukku/ProgrammingChallenges2020
e4ca302134b6f4b9c53be1e756fcb9c2c72781dc
dcc10613c732c5bebb8b15d1df2d1fd738815284
refs/heads/master
2022-06-13T03:08:49.148367
2020-05-09T13:17:27
2020-05-09T13:17:27
258,999,953
0
0
null
null
null
null
UTF-8
C++
false
false
1,115
cc
problem2.cc
/** * author: Tsubasa Takamuku * created: 2020/05/07 * the AC submission code **/ /* strategy: use binary search for ・numerator ・denominator respecitively... */ #include <iostream> #include <algorithm> #include <string> using namespace std; int main(){ int m, n; while (1){ cin >> m >> n; if (m == 1 && n == 1) break; int pm = 0, nm = 1; int pn = 1; int nn = 0; string ans = ""; while (1){ int midM = (pm + nm); int midN = (pn + nn); if (midM == m && midN == n){ // found the number cout << ans << endl; break; } else{ if (midM * n > midN * m){ // going left ans += 'L'; nm = midM; nn = midN; } else{ // going right ans += 'R'; pm = midM; pn = midN; } } } } }
cc384a0c49cdf33e233979906cbc85c1054a1090
ea8ba7cfc4f4773ed516e094ded4bc36502f93b5
/branch/old_angsys/angsys_beta1/source/angsys/angsys.shared/source/value/double.cpp
47c2a67db226a8d93e677f258334f479b5842e20
[ "Apache-2.0" ]
permissive
ChuyX3/angsys
15f896f0b4823b63a14aff8e35a30f344f2c30e8
89b2eaee866bcfd11e66efda49b38acc7468c780
refs/heads/master
2021-07-07T18:58:39.437477
2020-06-29T05:33:08
2020-06-29T05:33:08
92,321,439
0
0
null
null
null
null
UTF-8
C++
false
false
7,082
cpp
double.cpp
/*********************************************************************************************************************/ /* File Name: double.cpp */ /* Author: Ing. Jesus Rocha <chuyangel.rm@gmail.com>, July 2016. */ /* Copyright (C) angsys, Jesus Angel Rocha Morales */ /* You may opt to use, copy, modify, merge, publish and/or distribute copies of the Software, and permit persons */ /* to whom the Software is furnished to do so. */ /* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. */ /* */ /*********************************************************************************************************************/ #include "pch.h" #include "angsys.h" using namespace ang; value<double>::value() : _value() {} value<double>::value(type val) : _value(val) {} value<double>::value(value<double> const& other) : _value(other._value) {} value<double>::value(value<double> && other) : _value(ang::move(other._value)) {} double & value<double>::get() { return _value; } double const& value<double>::get()const { return _value; } void value<double>::set(type val) { _value = ang::move(val); } value<double>& value<double>::operator = (type val) { set(ang::move(val)); return*this; } value<double>& value<double>::operator = (value<double> const& val) { set(val._value); return*this; } value<double>& value<double>::operator = (value<double> && val) { set(ang::move(val._value)); return*this; } value<double>& value<double>::operator += (type val) { _value += val; return*this; } value<double>& value<double>::operator += (value<double> const& val) { _value += val._value; return*this; } value<double>& value<double>::operator -= (type val) { _value -= val; return*this; } value<double>& value<double>::operator -= (value<double> const& val) { _value -= val._value; return*this; } value<double>& value<double>::operator *= (type val) { _value *= val; return*this; } value<double>& value<double>::operator *= (value<double> const& val) { _value *= val._value; return*this; } value<double>& value<double>::operator /= (type val) { _value /= val; return*this; } value<double>& value<double>::operator /= (value<double> const& val) { _value /= val._value; return*this; } value<double const>::value(double val) : _value(val) {} value<double const>::value(value<double const> const& other) : _value(other._value) {} double const& value<double const>::get()const { return _value; } value<double&>::value(double& val) : _value(val) {} value<double&>::value(value<double&>& other) : _value(other._value) {} value<double&>::value(value<double>& other) : _value(other.get()) {} double & value<double&>::get() { return _value; } double const& value<double&>::get()const { return _value; } void value<double&>::set(type val) { _value = ang::move(val); } value<double>& value<double&>::operator = (type val) { set(ang::move(val)); return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator = (value<double&> const& val) { set(val._value); return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator = (value<double> val) { set(ang::move(val.get())); return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator += (type val) { _value += val; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator += (value const& val) { _value += val._value; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator -= (type val) { _value -= val; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator -= (value const& val) { _value -= val._value; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator *= (type val) { _value *= val; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator *= (value const& val) { _value *= val._value; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator /= (type val) { _value /= val; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator /= (value const& val) { _value /= val._value; return*reinterpret_cast<value<double>*>(&_value); } value<double>& value<double&>::operator ++() { ++_value; return*reinterpret_cast<value<double>*>(&_value); } value<double> value<double&>::operator ++(int) { auto ret = _value++; return ret; } value<double>& value<double&>::operator --() { --_value; return*reinterpret_cast<value<double>*>(&_value); } value<double> value<double&>::operator --(int) { auto ret = _value--; return ret; } value<double const&>::value(double const& val) : _value(val) {} value<double const&>::value(value<double const&> const& other) : _value(other._value) {} double const& value<double const&>::get()const { return _value; } value<double*>::value() : _value(null) {} value<double*>::value(double* val) : _value(val) {} value<double*>::value(ang::nullptr_t) : _value(null) {} value<double*>::value(value<double>* val) : _value(&val->get()) {} value<double*>::value(value const& other) : _value(other._value) {} value<double*>::value(value && other) : _value(ang::move(other._value)) {} double* & value<double*>::get() { return _value; } double* const& value<double*>::get()const { return _value; } void value<double*>::set(double* val) { _value = ang::move(val); } value<double*>& value<double*>::operator = (double* val) { set(ang::move(val)); return*this; } value<double*>& value<double*>::operator = (value<double*> const& val) { set(val._value); return*this; } value<double*>& value<double*>::operator = (value<double*> && val) { set(ang::move(val._value)); return*this; } value<double const*>::value() : _value(null) {} value<double const*>::value(type val) : _value(val) {} value<double const*>::value(ang::nullptr_t) : _value(null) {} value<double const*>::value(value<double> const* val) : _value(&val->get()) {} value<double const*>::value(value const& other) : _value(other._value) {} value<double const*>::value(value && other) : _value(ang::move(other._value)) {} double const* & value<double const*>::get() { return _value; } double const* const& value<double const*>::get()const { return _value; } void value<double const*>::set(type val) { _value = ang::move(val); } value<double const*>& value<double const*>::operator = (type val) { set(ang::move(val)); return*this; } value<double const*>& value<double const*>::operator = (value<double const*> const& val) { set(val._value); return*this; } value<double const*>& value<double const*>::operator = (value<double const*> && val) { set(ang::move(val._value)); return*this; }
9d87dcbedc95791f5d6bde869a37d8df46d5b89d
c09265365995ea3dcada43b536867a1a1ff19daa
/GUI-edited.cpp
2f84d9f39bb5ee609fb84a7ed63fceea05df0b26
[]
no_license
Treache/TanksGod
feff554b8cd6dae5d2b5e43d5ef50555ebf6d576
047391ffb515c062f85056d209d4f0736990ab80
refs/heads/master
2021-01-10T15:16:18.306837
2015-07-01T00:53:27
2015-07-01T00:53:27
36,391,621
2
0
null
null
null
null
UTF-8
C++
false
false
2,429
cpp
GUI-edited.cpp
#include "GUI.h" ////////////////////////////////////////////////////build map void build_Map(std::vector<Walls*>* wall) { //example Vector2D center; center.x = 1500; center.y = 125; (*wall).push_back(new Walls(center, 125, 500, 0)); center.x = 100; center.y = 600; (*wall).push_back(new Walls(center, 100, 100, 0)); center.x = 1250; center.y = 950; (*wall).push_back(new Walls(center, 50, 750, 0)); center.x = 2600; center.y = 1375; (*wall).push_back(new Walls(center, 875, 100, 0)); center.x = 3600; center.y = 600; (*wall).push_back(new Walls(center, 100, 100, 0)); center.x = 750; center.y = 1250; (*wall).push_back(new Walls(center, 125, 250, 0)); center.x = 3625; center.y = 1550; (*wall).push_back(new Walls(center, 50, 375, 0)); center.x = 1250; center.y = 1750; (*wall).push_back(new Walls(center, 125, 125, 0)); center.x = 50; center.y = 2250; (*wall).push_back(new Walls(center, 250, 50, 0)); center.x = 2250; center.y = 2250; (*wall).push_back(new Walls(center, 125, 250, 0)); center.x = 750; center.y = 2750; (*wall).push_back(new Walls(center, 125, 250, 0)); center.x = 950; center.y = 3250; (*wall).push_back(new Walls(center, 500, 50, 0)); center.x = 25; center.y = 3475; (*wall).push_back(new Walls(center, 25, 25, 0)); center.x = 1375; center.y = 3600; (*wall).push_back(new Walls(center, 100, 375, 0)); center.x = 1625; center.y = 3250; (*wall).push_back(new Walls(center, 125, 125, 0)); center.x = 1750; center.y = 2875; (*wall).push_back(new Walls(center, 125, 250, 0)); center.x = 3000; center.y = 2950; (*wall).push_back(new Walls(center, 50, 250, 0)); center.x = 3375; center.y = 2750; (*wall).push_back(new Walls(center, 250, 125, 0)); center.x = 3125; center.y = 3600; (*wall).push_back(new Walls(center, 100, 375, 0)); center.x = 2125; center.y = 3875; (*wall).push_back(new Walls(center, 125, 125, 0)); } ////////////////////////////////////////////////////end of build walls ////////////////////////////////////////////////////click the buttons void press_Button(Players* player) { //player->button[0] = 1; } ////////////////////////////////////////////////////end of click the buttons ////////////////////////////////////////////////////print the game void print_Game(std::vector<Walls*> wall, std::vector<Bullets*> bullet, std::vector<Tanks*> tank) { } ////////////////////////////////////////////////////end of print the game
91badf4a04f27e5d103586924b053eb5f75c9c00
2e280ea27615e1c4b03e6c15e0ba3ec6b260d944
/calibration/lidBasLib/EnvDialog.cpp
9ad10f33a2aed476967b8898510dbb4b1279ca72
[]
no_license
TonyJZ/IntegratedPhotogrammetry
afeaa54f0b1e5dcd2c677980ec7bba35a1756b29
226fbb02bf851ff17839929e3b5e3e25efae3888
refs/heads/master
2021-01-12T14:35:10.317687
2016-10-26T16:51:45
2016-10-26T16:51:45
72,024,771
1
5
null
null
null
null
UTF-8
C++
false
false
1,299
cpp
EnvDialog.cpp
// EnvDialog.cpp : implementation file // #include "stdafx.h" #include "lidBasLib.h" #include "EnvDialog.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CEnvDialog dialog CEnvDialog::CEnvDialog(CWnd* pParent /*=NULL*/) : CDialog(CEnvDialog::IDD, pParent) { //{{AFX_DATA_INIT(CEnvDialog) m_strCurDir = _T(""); m_strSysDir = _T(""); m_strTempDir = _T(""); //}}AFX_DATA_INIT } void CEnvDialog::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CEnvDialog) DDX_Text(pDX, IDC_Cur_Dir, m_strCurDir); DDX_Text(pDX, IDC_Sys_Dir, m_strSysDir); DDX_Text(pDX, IDC_Temp_Dir, m_strTempDir); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CEnvDialog, CDialog) //{{AFX_MSG_MAP(CEnvDialog) ON_BN_CLICKED(IDC_Cur_Button, OnCurButton) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CEnvDialog message handlers void CEnvDialog::OnCurButton() { } void CEnvDialog::SetSysDir(char *pSysDir) { m_strSysDir = pSysDir; } void CEnvDialog::SetCurDir(char *pCurDir) { m_strCurDir = pCurDir; } void CEnvDialog::SetTempDir(char *pTempDir) { m_strTempDir = pTempDir; }
b47f6ace4a24885df6d2547b660d316586271130
8d5c4861edd2b736c9f8b2a782cfac83c922a740
/entries/CPD/code/src/GenericEdge.h
3ab42a0435b9a1bae9971cd0b0da1c439d88d416
[]
no_license
svn2github/gppc-2012
5f607f57ec833061a3db3720fa6da4e754fc21ae
9e72916494dad94f32873359ea1c9346482e22db
refs/heads/master
2021-01-10T03:09:27.317693
2013-12-05T07:12:25
2013-12-05T07:12:25
47,556,446
0
1
null
null
null
null
UTF-8
C++
false
false
927
h
GenericEdge.h
/* * RoadMapEdge.h * * Created on: 08/12/2010 * Author: abotea */ #ifndef ROADMAPEDGE_H_ #define ROADMAPEDGE_H_ #include <string> #include "AbstractGraphEdge.h" using namespace std; class GenericEdge : public AbstractGraphEdge { public: GenericEdge(); GenericEdge(int n1, int n2, double d, double t, const string & someid) : node1(n1), node2(n2), distance(d), time(t), id(someid) { }; virtual ~GenericEdge(); int getNode1Idx() const { return node1; } int getNode2Idx() const { return node2; } const string & getId() const { return id; } double getCost() const { return time; } double getDistance() const { return distance; } double getTime() const { return time; } private: int node1; int node2; double distance; double time; string id; }; #endif /* ROADMAPEDGE_H_ */
6699c9ca4e1983e0885aa8312fcd39f1185f6bb8
6ae041403213447f920dc51c1542bb47bc009c11
/hexdump.cpp
8be8310adaf4a957a9b5f2b09bef4748f1edf645
[]
no_license
marshall007/hexdump
bce0ef1dad5ede251331cdf4aef055ed2098bf3e
d5f074cbcfbcd65ac708d1c7f3ca588ebdcbdd2b
refs/heads/master
2021-01-25T03:49:15.864876
2011-09-08T02:11:02
2011-09-08T02:11:02
2,340,951
1
0
null
null
null
null
UTF-8
C++
false
false
1,903
cpp
hexdump.cpp
// // Hexdump.cpp // // Auth: Marshall Cottrell // Daniel Sabastian // Date: 09/06/11 // Desc: C++ hexdump implementation. // #include <iostream> #include <fstream> #include <iomanip> using namespace std; int main(int argc, char *argv[]) { const int length = 16; int pos = 52; unsigned char* fbuf; string fname; // read file name from user cout << "File name: "; cin >> fname; // attempt to open I/O streams ifstream fin (fname.c_str(), ios::binary); ofstream fout ((fname.substr(0, fname.find('.'))+".dmp").c_str()); // check if streams opened properly if (fin && fout) { // write header line fout << "HEX DUMP FOR FILE \""<< fname << "\":\n\n"; fin.seekg(0, ios::end); int fbuflen = (int) fin.tellg(); fbuf = new unsigned char[fbuflen]; fin.seekg(0, ios::beg); fin.read((char*)fbuf, fbuflen); fin.close(); // while able to read // while (fin.good()) { for (int j=0; j<fbuflen; j+=length) { // prints address fout << hex << setw(8) << setfill('0') << j << ": [ ] "; pos = 52; // prints hex value of each byte for (int i=0; i<length; i++) { fout.seekp(-(pos-=2), ios::end); fout << hex << setw(2) << setfill('0') << (int) fbuf[j+i]; fout.seekp(0, ios::end); if (isprint(fbuf[j+i])) fout << fbuf[j+i]; else fout << "."; } fout << "\n"; cout << "."; } cout << "done."; // if unable to open streams, prints error } else { cout << "Error: could not locate file."; } }
3dbf6a9d7a4ce5fef53a3b2a73ad6b5a35e9be93
ca550d380279dca8bec86e9879933c7571d70bff
/Q2/libVec.h
69b90249bc7af43cd6c312d5c4176c9ecabbda2b
[]
no_license
Hossein78/AP-HW2
f720255437020234c270fd95397e93e341062d52
64fe0de32e0b466dd114da83b0b48f587279df15
refs/heads/master
2020-04-27T22:10:27.136663
2019-03-16T11:34:30
2019-03-16T11:34:30
174,725,943
0
0
null
null
null
null
UTF-8
C++
false
false
120
h
libVec.h
#ifndef TESTFIRST_LIBVEC_H #define TESTFIRST_LIBVEC_H class libVec { public: long int counter(int n); }; #endif
f75b4b582b777e7c26a47b4db9676a810eb210d9
180e4caf07f2ef9d21eb22a358734acae9c1270c
/Client/frameworks/runtime-src/Classes/core/net/NetWorker.h
d67337f44cdd416c9b334775b9a8408057af954b
[]
no_license
bartontang/Client
10d548003ac78129c567da73e030f3d3fc15e7b5
4f9014c925b27f6fbc041e2d282b2b4d9119a79b
refs/heads/master
2020-04-06T07:00:21.131611
2016-08-23T14:26:50
2016-08-23T14:26:50
62,953,737
0
0
null
null
null
null
UTF-8
C++
false
false
1,103
h
NetWorker.h
// // NetWorker.h // Client // // Created by barton on 16/8/23. // // #ifndef NetWorker_h #define NetWorker_h #include <stdio.h> #include <pthread.h> #include <sys/socket.h> #include <arpa/inet.h> #include <netdb.h> #include <unistd.h> #include <netinet/in.h> #include "cocos2d.h" // 最大的数据缓冲区 #define MAX_BUFFER_SIZE 1024*1024 // 包头大小 #define PACKAGE_HEDER_LENGTH 2 // 收到字节的个数 static int m_recvCount; // 接收缓冲区 static char *receiveBuff; // 缓冲区字节数 static int m_haveCount; class NetWorker { public: NetWorker(); virtual ~NetWorker(); bool init(); bool connect(const char* ip, int port); bool disconnect(); private: // 发送线程执行的回调函数 static void* sendThread(void *manager); // 接收线程的回调函数 static void* receiveThread(void *manager); private: int m_socketfd; // 接收数据线程 pthread_t m_receiveThreadId; // 发送数据线程 pthread_t m_sendThreadId; }; #endif /* NetWorker_hpp */
42e55031e805957ff01c67ec07a87b715b892362
075735e3b987cb8ad5c629440ee6419ff2762f81
/leetcode/46_permutation/PermutationTest.cpp
35f7bce27e14422190c7a548c71ebea66a971702
[]
no_license
Masterqsx/ProgrammingPractice
6f0d4c08f1857f5a409b78c9ae7cd0ec234899be
acf42fb807dc8584b4ae0081ddf65c495314eabe
refs/heads/master
2021-01-24T20:26:17.552529
2019-07-22T19:16:58
2019-07-22T19:16:58
68,643,503
0
0
null
2020-10-13T01:11:46
2016-09-19T20:26:10
HTML
UTF-8
C++
false
false
2,037
cpp
PermutationTest.cpp
#include<iostream> #include<vector> #include<fstream> using namespace std; class solution{ public: void recursion(int n, vector<vector<int> >& res, vector<int> nums){ if(n >= (nums.size()-1)){ res.push_back(nums); return; } for(int i=n;i<nums.size();i++){ if(i!=n && nums[i]==nums[n]){ continue; } swap(nums[i],nums[n]); recursion(n+1, res, nums); } } void recursion_c(int n, vector<vector<int> >& res, vector<int>& nums){ if(n >= (nums.size()-1)){ res.push_back(nums); return; } int last=10000000; for(int i=n;i<nums.size();i++){ if(i!=n && (nums[i]==nums[n]||nums[i]==last)){ continue; } last=nums[i]; swap(nums[i],nums[n]); recursion(n+1, res, nums); swap(nums[i],nums[n]); } } vector<vector<int> > permutation(vector<int> &nums){ vector<vector<int> > res; sort(nums.begin(),nums.end()); recursion(0, res, nums); return res; } vector<vector<int> > permutation_c(vector<int> &nums){ vector<vector<int> > res; sort(nums.begin(),nums.end()); recursion_c(0, res, nums); return res; } }; int main(){ solution a; vector<int> nums; vector<int> nums_c; ofstream file1; ofstream file2; file1.open("test.txt"); file2.open("test_c.txt"); nums.push_back(0); nums.push_back(0); nums.push_back(1); nums.push_back(1); nums.push_back(2); // nums.push_back(2); // nums.push_back(3); nums_c=nums; vector<vector<int> > res=a.permutation(nums); vector<vector<int> > res_c=a.permutation_c(nums_c); cout<<res.size()<<endl; cout<<res_c.size()<<endl; for(int i=0;i<res.size();i++){ for(int j=0;j<res[i].size();j++){ file1<<res[i][j]; } file1<<endl; } for(int i=0;i<res_c.size();i++){ for(int j=0;j<res_c[i].size();j++){ file2<<res_c[i][j]; } file2<<endl; } file2.close(); file1.close(); return 0; }
c6f9be84a44d33fd167c6bdb953c32f8138d4d92
75625eb0d0008059ad626472f36c0acaf8fb2628
/opsica/opsica_share/opsica_protocol.hpp
88f607f9a98b05f7cd8906000f38702d94494f48
[ "Apache-2.0" ]
permissive
yamanalab/OPSI-CA
2ff817d06eaf13d8df62ed7f7622917416b64e4a
eb632f5233b23546d67c34d39384fdec8d4f965c
refs/heads/master
2020-03-23T19:06:33.917866
2019-07-30T11:57:41
2019-07-30T11:57:41
141,953,535
1
2
Apache-2.0
2019-07-30T11:57:14
2018-07-23T02:56:31
C++
UTF-8
C++
false
false
2,685
hpp
opsica_protocol.hpp
/* * Copyright 2018 Yamana Laboratory, Waseda University * Supported by JST CREST Grant Number JPMJCR1503, Japan. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE‐2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef OPSICA_PROTOCOL_HPP #define OPSICA_PROTOCOL_HPP #include <vector> class EncryptedArray; class FHEPubKey; class Ctxt; namespace opsica_share { class EnBloomFilter; /** * @brief Enumeration for algorithm to compute PSICA. */ enum Algorithm_t : int32_t { kAlgorithmNil = 0x0, kAlgorithmBasic = 0x1, kAlgorithmQuerierFriendly = 0x2, }; /** * @brief Provides basic protocol. */ class BasicProtocol { protected: long nThreads; long global_nslots; int npacks; EncryptedArray* global_ea; void mergeEncryptedBFs( const FHEPubKey& publicKey, const std::vector<opsica_share::EnBloomFilter>& enBFs, opsica_share::EnBloomFilter& merged_enBF); virtual std::vector<Ctxt> inclusionCheck( const FHEPubKey& publicKey, const opsica_share::EnBloomFilter& bloomAll, const opsica_share::EnBloomFilter& bloom); public: BasicProtocol(size_t nThreads, long global_nslots, int npacks, EncryptedArray* global_ea); std::vector<std::vector<Ctxt>> execute( const FHEPubKey& publicKey, const std::vector<opsica_share::EnBloomFilter>& largerEnBFs, const std::vector<opsica_share::EnBloomFilter>& smallerEnBFs); }; /** * @brief Provides querier favorite protocol. */ class QuerierFavoriteProtocol : public BasicProtocol { std::vector<Ctxt> inclusionCheck( const FHEPubKey& publicKey, const opsica_share::EnBloomFilter& bloomAll, const opsica_share::EnBloomFilter& bloom) override; std::vector<Ctxt> aggregate(const FHEPubKey& publicKey, std::vector<std::vector<Ctxt>> bloom); public: QuerierFavoriteProtocol(size_t nThreads, long global_nslots, int npacks, EncryptedArray* global_ea); std::vector<Ctxt> execute( const FHEPubKey& publicKey, const std::vector<opsica_share::EnBloomFilter>& largerEnBFs, const std::vector<opsica_share::EnBloomFilter>& smallerEnBFs); }; } /* namespace opsica_share */ #endif /* OPSICA_PROTOCOL_HPP */
459477e8d7f33aae627f9c1fcad4e85187997cc6
6b50e35b60a7972ff3c3ac60a1d928b43591901c
/SignalProcessing/LDA_Truong_Tung/jni/applications/platform/designer/src/ovdCDesignerVisualisation.cpp
99420af17754fd8cd52d007ba6c81e54ac183c07
[]
no_license
damvanhuong/eeglab411
4a384fe06a3f5a9767c4dc222d9946640b168875
0aca0e64cd8e90dcde7dd021078fa14b2d61f0c9
refs/heads/master
2020-12-28T20:19:50.682128
2015-05-06T10:36:07
2015-05-06T10:36:07
35,154,165
1
0
null
2015-05-06T10:48:11
2015-05-06T10:48:10
null
UTF-8
C++
false
false
80,531
cpp
ovdCDesignerVisualisation.cpp
#include "ovd_base.h" #include "ovdTAttributeHandler.h" #include "ovdCApplication.h" #include "ovdCDesignerVisualisation.h" #include "ovdCInterfacedScenario.h" #include "ovdCInputDialog.h" #include <gdk/gdkkeysyms.h> #include <cstring> using namespace OpenViBE; using namespace OpenViBE::Kernel; using namespace OpenViBEDesigner; static ::GtkTargetEntry targets [] = { { (gchar*)"STRING", 0, 0 }, { (gchar*)"text/plain", 0, 0 }, }; namespace OpenViBEDesigner { /** * \brief Display an error dialog * \param[in] pText text to display in the dialog * \param[in] pSecondaryText additional text to display in the dialog */ void displayErrorDialog(const char* pText, const char* pSecondaryText) { ::GtkWidget* l_pErrorDialog = gtk_message_dialog_new( NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, "%s", pText); gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(l_pErrorDialog), "%s", pSecondaryText); gtk_window_set_position(GTK_WINDOW(l_pErrorDialog), GTK_WIN_POS_MOUSE); gtk_dialog_run(GTK_DIALOG(l_pErrorDialog)); gtk_widget_destroy(l_pErrorDialog); } /** * \brief Display a yes/no question dialog * \param[in] pText text to display in the dialog * \param[in] pSecondaryText additional text to display in the dialog * \return identifier of the button pressed */ /* gint displayQuestionDialog(const char* pText, const char* pSecondaryText) { ::GtkWidget* l_pQuestionDialog = gtk_message_dialog_new( NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, pText); gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(l_pQuestionDialog), pSecondaryText); gtk_window_set_position(GTK_WINDOW(l_pQuestionDialog), GTK_WIN_POS_MOUSE); gint ret = gtk_dialog_run(GTK_DIALOG(l_pQuestionDialog)); gtk_widget_destroy(l_pQuestionDialog); return ret; }*/ /** * \brief Helper function retrieving a child in a table from its attach indices * \param pTable Table parent to the child to be retrieved * \param left_attach Left attach index * \param right_attach Right attach index * \param top_attach Top attach index * \param bottom_attach Bottom attach index * \return Pointer to table child if one was found, NULL otherwise */ ::GtkTableChild* getTableChild(::GtkTable* pTable, int leftAttach, int rightAttach, int topAttach, int bottomAttach) { GList* pList = pTable->children; ::GtkTableChild* pTC; do { pTC = (::GtkTableChild*)pList->data; if(pTC->left_attach == leftAttach && pTC->right_attach == rightAttach && pTC->top_attach == topAttach && pTC->bottom_attach == bottomAttach) { return pTC; } pList = pList->next; }while(pList); return NULL; } }; //Menus //----- static ::GtkItemFactoryEntry unaffected_menu_items[] = { { (gchar*)"/New window", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::ask_new_visualisation_window_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DND_MULTIPLE } }; static ::GtkItemFactoryEntry visualisation_window_menu_items[] ={ { (gchar*)"/New tab", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::ask_new_visualisation_panel_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DND }, { (gchar*)"/Rename", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::ask_rename_visualisation_window_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_BOLD }, { (gchar*)"/Remove", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::remove_visualisation_window_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DELETE } }; static ::GtkItemFactoryEntry visualisation_panel_menu_items[] = { { (gchar*)"/Rename", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::ask_rename_visualisation_panel_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_BOLD }, { (gchar*)"/Remove", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::remove_visualisation_panel_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DELETE } }; static ::GtkItemFactoryEntry visualisation_box_menu_items[] = { { (gchar*)"/Remove", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::remove_visualisation_widget_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DELETE } }; static ::GtkItemFactoryEntry undefined_widget_menu_items[] = { { (gchar*)"/Remove", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::remove_visualisation_widget_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DELETE } }; static ::GtkItemFactoryEntry split_widget_menu_items[] = { { (gchar*)"/Remove", (gchar*)"", (::GtkItemFactoryCallback)CDesignerVisualisation::remove_visualisation_widget_cb, 1, (gchar*)"<StockItem>", GTK_STOCK_DELETE } }; static gint num_unaffected_menu_items = sizeof (unaffected_menu_items) / sizeof (unaffected_menu_items[0]); static gint num_visualisation_window_menu_items = sizeof (visualisation_window_menu_items) / sizeof (visualisation_window_menu_items[0]); static gint num_visualisation_panel_menu_items = sizeof (visualisation_panel_menu_items) / sizeof (visualisation_panel_menu_items[0]); static gint num_visualisation_box_menu_items = sizeof (visualisation_box_menu_items) / sizeof (visualisation_box_menu_items[0]); static gint num_undefined_widget_menu_items = sizeof (undefined_widget_menu_items) / sizeof (undefined_widget_menu_items[0]); static gint num_split_widget_menu_items = sizeof (split_widget_menu_items) / sizeof (split_widget_menu_items[0]); CDesignerVisualisation::CDesignerVisualisation(const IKernelContext& rKernelContext, IVisualisationTree& rVisualisationTree, CInterfacedScenario& rInterfacedScenario) : m_rKernelContext(rKernelContext), m_rVisualisationTree(rVisualisationTree), m_rInterfacedScenario(rInterfacedScenario), m_fpDeleteEventCB(NULL), m_pDeleteEventUserData(NULL), m_pTreeView(NULL), m_pDialog(NULL), m_pPane(NULL), m_pHighlightedWidget(NULL), m_bPreviewWindowVisible(false), m_ui32PreviewWindowWidth(0), m_ui32PreviewWindowHeight(0), m_pUnaffectedItemFactory(NULL), m_pVisualisationWindowItemFactory(NULL), m_pVisualisationPanelItemFactory(NULL), m_pVisualisationBoxItemFactory(NULL), m_pUndefinedItemFactory(NULL), m_pSplitItemFactory(NULL) { } CDesignerVisualisation::~CDesignerVisualisation() { g_signal_handlers_disconnect_by_func(G_OBJECT(m_pDialog), G_CALLBACK2(configure_event_cb), this); #ifdef HANDLE_MIN_MAX_EVENTS g_signal_handlers_disconnect_by_func(G_OBJECT(m_pDialog), G_CALLBACK2(window_state_event_cb), this); #endif gtk_widget_destroy(m_pDialog); m_rVisualisationTree.setTreeViewCB(NULL); } void CDesignerVisualisation::init(std::string guiFile) { m_sGuiFile = guiFile; //create tree view //---------------- //register towards tree store m_rVisualisationTree.setTreeViewCB(this); m_pTreeView = m_rVisualisationTree.createTreeViewWithModel(); ::GtkTreeViewColumn* l_pTreeViewColumnName=gtk_tree_view_column_new(); ::GtkCellRenderer* l_pCellRendererIcon=gtk_cell_renderer_pixbuf_new(); ::GtkCellRenderer* l_pCellRendererName=gtk_cell_renderer_text_new(); gtk_tree_view_column_set_title(l_pTreeViewColumnName, "Windows for current scenario"); gtk_tree_view_column_pack_start(l_pTreeViewColumnName, l_pCellRendererIcon, FALSE); gtk_tree_view_column_pack_start(l_pTreeViewColumnName, l_pCellRendererName, TRUE); gtk_tree_view_column_set_attributes(l_pTreeViewColumnName, l_pCellRendererIcon, "stock-id", EVisualisationTreeColumn_StringStockIcon, NULL); gtk_tree_view_column_set_attributes(l_pTreeViewColumnName, l_pCellRendererName, "text", EVisualisationTreeColumn_StringName, NULL); //gtk_tree_view_column_set_sizing(l_pTreeViewColumnName, GTK_TREE_VIEW_COLUMN_FIXED); gtk_tree_view_column_set_expand(l_pTreeViewColumnName, TRUE/*FALSE*/); gtk_tree_view_column_set_resizable(l_pTreeViewColumnName, TRUE); gtk_tree_view_column_set_min_width(l_pTreeViewColumnName, 64); gtk_tree_view_append_column(m_pTreeView, l_pTreeViewColumnName); ::GtkTreeViewColumn* l_pTreeViewColumnDesc=gtk_tree_view_column_new(); gtk_tree_view_append_column(m_pTreeView, l_pTreeViewColumnDesc); gtk_tree_view_column_set_visible(l_pTreeViewColumnDesc, 0); gtk_tree_view_columns_autosize(GTK_TREE_VIEW(m_pTreeView)); //allow tree items to be dragged gtk_drag_source_set(GTK_WIDGET(m_pTreeView), GDK_BUTTON1_MASK, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); //require notifications upon tree item dragging, mouse button release, active item change g_signal_connect(G_OBJECT(m_pTreeView), "drag_data_get", G_CALLBACK(drag_data_get_from_tree_cb), this); g_signal_connect(G_OBJECT(m_pTreeView), "button-release-event", G_CALLBACK(button_release_cb), this); g_signal_connect(G_OBJECT(m_pTreeView), "cursor-changed", G_CALLBACK(cursor_changed_cb), this); GTK_WIDGET_SET_FLAGS(GTK_WIDGET(m_pTreeView), GDK_KEY_PRESS_MASK); g_signal_connect(G_OBJECT(m_pTreeView), "key-press-event", G_CALLBACK(visualisation_widget_key_press_event_cb), this); //create main dialog //------------------ m_pDialog = gtk_window_new(GTK_WINDOW_TOPLEVEL); //retrieve default window size uint32 l_ui32TreeViewWidth = 200; m_ui32PreviewWindowWidth = (uint32)m_rKernelContext.getConfigurationManager().expandAsUInteger("${Designer_UnaffectedVisualisationWindowWidth}", 400); m_ui32PreviewWindowHeight = (uint32)m_rKernelContext.getConfigurationManager().expandAsUInteger("${Designer_UnaffectedVisualisationWindowHeight}", 400); CIdentifier l_oVisualisationWindowIdentifier; //if at least one window was created, retrieve its dimensions if(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oVisualisationWindowIdentifier, EVisualisationWidget_VisualisationWindow) == true) { IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); TAttributeHandler l_oAttributeHandler(*l_pVisualisationWindow); m_ui32PreviewWindowWidth = l_oAttributeHandler.getAttributeValue<int>(OVD_AttributeId_VisualisationWindow_Width); m_ui32PreviewWindowHeight = l_oAttributeHandler.getAttributeValue<int>(OVD_AttributeId_VisualisationWindow_Height); } gtk_window_set_default_size(GTK_WINDOW(m_pDialog), (gint)(l_ui32TreeViewWidth + m_ui32PreviewWindowWidth), (gint)m_ui32PreviewWindowHeight); //set window title gtk_window_set_title(GTK_WINDOW(m_pDialog), "OpenViBE Window Manager"); // gtk_window_set_transient_for(GTK_WINDOW(m_pDialog), GTK_WINDOW(m_rInterfacedScenario.m_rApplication.m_pMainWindow)); gtk_signal_connect(GTK_OBJECT(m_pDialog), "configure_event", G_CALLBACK(configure_event_cb), this); #ifdef HANDLE_MIN_MAX_EVENTS gtk_signal_connect(GTK_OBJECT(m_pDialog), "window_state_event", G_CALLBACK(window_state_event_cb), this); #endif g_signal_connect(G_OBJECT(m_pDialog), "delete-event", G_CALLBACK(delete_event_cb), this); //main pane : tree view to the left, widgets table to the right m_pPane = gtk_hpaned_new(); gtk_container_add(GTK_CONTAINER(m_pDialog), GTK_WIDGET(m_pPane)); //add tree view to pane gtk_paned_add1(GTK_PANED(m_pPane), GTK_WIDGET(m_pTreeView)); //set initial divider position gtk_paned_set_position(GTK_PANED(m_pPane), (gint)l_ui32TreeViewWidth); //create popup menus //------------------ m_pUnaffectedItemFactory = gtk_item_factory_new (GTK_TYPE_MENU, "<unaffected_main>", NULL); gtk_item_factory_create_items(m_pUnaffectedItemFactory, num_unaffected_menu_items, unaffected_menu_items, this); m_pVisualisationWindowItemFactory = gtk_item_factory_new (GTK_TYPE_MENU, "<visualisation_window_main>", NULL); gtk_item_factory_create_items(m_pVisualisationWindowItemFactory, num_visualisation_window_menu_items, visualisation_window_menu_items, this); m_pVisualisationPanelItemFactory = gtk_item_factory_new (GTK_TYPE_MENU, "<visualisation_panel_main>", NULL); gtk_item_factory_create_items(m_pVisualisationPanelItemFactory, num_visualisation_panel_menu_items, visualisation_panel_menu_items, this); m_pVisualisationBoxItemFactory = gtk_item_factory_new (GTK_TYPE_MENU, "<visualisation_box_main>", NULL); gtk_item_factory_create_items(m_pVisualisationBoxItemFactory, num_visualisation_box_menu_items, visualisation_box_menu_items, this); m_pUndefinedItemFactory = gtk_item_factory_new (GTK_TYPE_MENU, "<undefined_widget_main>", NULL); gtk_item_factory_create_items(m_pUndefinedItemFactory, num_undefined_widget_menu_items, undefined_widget_menu_items, this); m_pSplitItemFactory = gtk_item_factory_new (GTK_TYPE_MENU, "<split_widget_main>", NULL); gtk_item_factory_create_items(m_pSplitItemFactory, num_split_widget_menu_items, split_widget_menu_items, this); } void CDesignerVisualisation::load(void) { m_rVisualisationTree.setTreeViewCB(this); m_rVisualisationTree.reloadTree(); gtk_tree_view_expand_all(m_pTreeView); setActiveVisualisation(m_oActiveVisualisationWindowName, m_oActiveVisualisationPanelName); } void CDesignerVisualisation::show() { // since gtk is asynchronous for the expose event, // the m_bPreviewWindowVisible flag is turned on in the // corresponding callback //m_bPreviewWindowVisible = true; gtk_widget_show_all((::GtkWidget*)m_pDialog); } void CDesignerVisualisation::hide() { m_bPreviewWindowVisible = false; gtk_widget_hide_all((::GtkWidget*)m_pDialog); } void CDesignerVisualisation::setDeleteEventCB(fpDesignerVisualisationDeleteEventCB fpDeleteEventCB, gpointer user_data) { m_fpDeleteEventCB = fpDeleteEventCB; m_pDeleteEventUserData = user_data; } void CDesignerVisualisation::onVisualisationBoxAdded(const IBox* pBox) { if(pBox->hasAttribute(OV_AttributeId_Box_Muted)) { CString l_sIsMuted = pBox->getAttributeValue(OV_AttributeId_Box_Muted); m_rKernelContext.getLogManager() << LogLevel_Trace << "Trying to add box with mute attribute value [" << l_sIsMuted << "]\n"; if( l_sIsMuted==CString("true") ) { m_rKernelContext.getLogManager() << LogLevel_Trace << "Box muted, not adding new visualisation widget\n"; m_rVisualisationTree.reloadTree(); return; } } CIdentifier l_oVisualisationWidgetIdentifier; m_rVisualisationTree.addVisualisationWidget( l_oVisualisationWidgetIdentifier, pBox->getName(), EVisualisationWidget_VisualisationBox, OV_UndefinedIdentifier, 0, pBox->getIdentifier(), 0); m_rVisualisationTree.reloadTree(); //refresh view ::GtkTreeIter l_oIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, l_oVisualisationWidgetIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oIter)); } void CDesignerVisualisation::onVisualisationBoxRemoved(const CIdentifier& rBoxIdentifier) { IVisualisationWidget* l_pVisualisationWidget = m_rVisualisationTree.getVisualisationWidgetFromBoxIdentifier(rBoxIdentifier); if(l_pVisualisationWidget != NULL) { //unaffected widget : delete it if(l_pVisualisationWidget->getParentIdentifier() == OV_UndefinedIdentifier) { m_rVisualisationTree.destroyHierarchy(l_pVisualisationWidget->getIdentifier()); } else //simplify tree { destroyVisualisationWidget(l_pVisualisationWidget->getIdentifier()); } m_rVisualisationTree.reloadTree(); //refresh view refreshActiveVisualisation(NULL); } } void CDesignerVisualisation::onVisualisationBoxRenamed(const CIdentifier& rBoxIdentifier) { //retrieve visualisation widget IVisualisationWidget* l_pVisualisationWidget = m_rVisualisationTree.getVisualisationWidgetFromBoxIdentifier(rBoxIdentifier); if(l_pVisualisationWidget != NULL) { //retrieve box name const IBox* l_pBox = m_rInterfacedScenario.m_rScenario.getBoxDetails(rBoxIdentifier); if(l_pBox != NULL) { //set new visualisation widget name l_pVisualisationWidget->setName(l_pBox->getName()); //reload tree m_rVisualisationTree.reloadTree(); //refresh view refreshActiveVisualisation(NULL); } } } void CDesignerVisualisation::createTreeWidget(IVisualisationWidget* pWidget) { if(pWidget->getType() == EVisualisationWidget_HorizontalSplit || pWidget->getType() == EVisualisationWidget_VerticalSplit) { TAttributeHandler l_oAttributeHandler(*pWidget); l_oAttributeHandler.addAttribute(OVD_AttributeId_VisualisationWidget_DividerPosition, 1); l_oAttributeHandler.addAttribute(OVD_AttributeId_VisualisationWidget_MaxDividerPosition, 2); } } //need width request of 0 to avoid graphical bugs (label/icon overlapping other widgets) when shrinking buttons static gint s_labelWidthRequest = 0; static gint s_iconWidthRequest = 0; //need expand and fill flags to TRUE to see 0-size-requesting widgets static gboolean s_labelExpand = TRUE; static gboolean s_labelFill = TRUE; static gboolean s_iconExpand = TRUE; static gboolean s_iconFill = TRUE; ::GtkWidget* CDesignerVisualisation::loadTreeWidget(IVisualisationWidget* pVisualisationWidget) { ::GtkWidget* l_pTreeWidget = NULL; //create widget //------------- if(pVisualisationWidget->getType() == EVisualisationWidget_VisualisationPanel) { //retrieve panel index IVisualisationWidget* l_pWindow = m_rVisualisationTree.getVisualisationWidget(pVisualisationWidget->getParentIdentifier()); if(l_pWindow != NULL) { uint32 l_ui32PanelIndex; l_pWindow->getChildIndex(pVisualisationWidget->getIdentifier(), l_ui32PanelIndex); //create notebook if this is the first panel if(l_ui32PanelIndex == 0) { l_pTreeWidget = gtk_notebook_new(); } else //otherwise retrieve it from first panel { CIdentifier l_oFirstPanelIdentifier; l_pWindow->getChildIdentifier(0, l_oFirstPanelIdentifier); GtkTreeIter l_oFirstPanelIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oFirstPanelIter, l_oFirstPanelIdentifier); void* l_pNotebookWidget=NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oFirstPanelIter, l_pNotebookWidget, EVisualisationTreeColumn_PointerWidget); l_pTreeWidget = (GtkWidget*)l_pNotebookWidget; } } } else if(pVisualisationWidget->getType() == EVisualisationWidget_VerticalSplit || pVisualisationWidget->getType() == EVisualisationWidget_HorizontalSplit || pVisualisationWidget->getType() == EVisualisationWidget_Undefined || pVisualisationWidget->getType() == EVisualisationWidget_VisualisationBox) { //tree widget = table containing event boxes + visualisation widget in the center l_pTreeWidget = GTK_WIDGET(newWidgetsTable()); ::GtkWidget* l_pCurrentVisualisationWidget = getVisualisationWidget(l_pTreeWidget); if(l_pCurrentVisualisationWidget != NULL) { gtk_container_remove(GTK_CONTAINER(l_pTreeWidget), l_pCurrentVisualisationWidget); } if(pVisualisationWidget->getType() == EVisualisationWidget_VerticalSplit || pVisualisationWidget->getType() == EVisualisationWidget_HorizontalSplit) { if(gtk_widget_get_parent(l_pTreeWidget) != NULL) { gtk_container_remove(GTK_CONTAINER(gtk_widget_get_parent(l_pTreeWidget)), l_pTreeWidget); } //create a paned and insert it in table ::GtkWidget* l_pPaned = (pVisualisationWidget->getType() == EVisualisationWidget_HorizontalSplit) ? gtk_hpaned_new() : gtk_vpaned_new(); gtk_table_attach(GTK_TABLE(l_pTreeWidget), l_pPaned, 1, 2, 1, 2, ::GtkAttachOptions(GTK_EXPAND|GTK_SHRINK|GTK_FILL), ::GtkAttachOptions(GTK_EXPAND|GTK_SHRINK|GTK_FILL), 0, 0); } else //undefined or visualisation box : visualisation widget is a GtkButton (left : icon, right : label) { if(gtk_widget_get_parent(l_pTreeWidget) != NULL) { gtk_container_remove(GTK_CONTAINER(gtk_widget_get_parent(l_pTreeWidget)), l_pTreeWidget); } //create a button and insert it in table ::GtkWidget* l_pButton = gtk_button_new(); gtk_widget_set_size_request(l_pButton, 0, 0); gtk_table_attach(GTK_TABLE(l_pTreeWidget), l_pButton, 1, 2, 1, 2, ::GtkAttachOptions(GTK_EXPAND|GTK_SHRINK|GTK_FILL), ::GtkAttachOptions(GTK_EXPAND|GTK_SHRINK|GTK_FILL), 0, 0); //box inserted in button ::GtkBox* l_pBox = GTK_BOX(gtk_vbox_new(FALSE, 0)); gtk_widget_set_size_request(GTK_WIDGET(l_pBox), 0, 0); //icon - actual icon will be loaded in endLoadTreeWidget ::GtkWidget* l_pIcon = gtk_image_new_from_stock(getTreeWidgetIcon(EVisualisationTreeNode_Undefined), GTK_ICON_SIZE_BUTTON); if(s_iconWidthRequest == 0) { gtk_widget_set_size_request(l_pIcon, 0, 0); } gtk_box_pack_start(l_pBox, l_pIcon, s_iconExpand, s_iconFill, 0); //label ::GtkWidget* l_pLabel = gtk_label_new((const char*)pVisualisationWidget->getName()); if(s_labelWidthRequest == 0) { gtk_widget_set_size_request(l_pLabel, 0, 0); } gtk_box_pack_start(l_pBox, l_pLabel, s_labelExpand, s_labelFill, 0); //add box to button gtk_container_add(GTK_CONTAINER(l_pButton), GTK_WIDGET(l_pBox)); //set up button as drag destination gtk_drag_dest_set(l_pButton, GTK_DEST_DEFAULT_ALL, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); g_signal_connect(G_OBJECT(l_pButton), "drag_data_received", G_CALLBACK(drag_data_received_in_widget_cb), this); //set up button as drag source as well gtk_drag_source_set(l_pButton, GDK_BUTTON1_MASK, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); g_signal_connect(G_OBJECT(l_pButton), "drag_data_get", G_CALLBACK(drag_data_get_from_widget_cb), this); //ask for notification of some events if(pVisualisationWidget->getType() == EVisualisationWidget_VisualisationBox) { GTK_WIDGET_SET_FLAGS(l_pButton, GDK_KEY_PRESS_MASK|GDK_ENTER_NOTIFY_MASK|GDK_LEAVE_NOTIFY_MASK); g_signal_connect(G_OBJECT(l_pButton), "key-press-event", G_CALLBACK(visualisation_widget_key_press_event_cb), this); g_signal_connect(G_OBJECT(l_pButton), "enter-notify-event", G_CALLBACK(visualisation_widget_enter_notify_event_cb), this); g_signal_connect(G_OBJECT(l_pButton), "leave-notify-event", G_CALLBACK(visualisation_widget_leave_notify_event_cb), this); } } //parent widget to its parent, if any //----------------------------------- IVisualisationWidget* l_pParentVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(pVisualisationWidget->getParentIdentifier()); if(l_pParentVisualisationWidget != NULL) //visualisation boxes may be unparented { GtkTreeIter l_oParentIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oParentIter, l_pParentVisualisationWidget->getIdentifier()); if(l_pParentVisualisationWidget->getType() == EVisualisationWidget_VisualisationPanel) { //parent widget to notebook as a new page void* l_pNotebook = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oParentIter, l_pNotebook, EVisualisationTreeColumn_PointerWidget); char* l_pVisualisationPanelName = NULL; m_rVisualisationTree.getStringValueFromTreeIter(&l_oParentIter, l_pVisualisationPanelName, EVisualisationTreeColumn_StringName); gtk_notebook_append_page(GTK_NOTEBOOK(l_pNotebook), l_pTreeWidget, gtk_label_new(l_pVisualisationPanelName)); } else if(l_pParentVisualisationWidget->getType() == EVisualisationWidget_VerticalSplit || l_pParentVisualisationWidget->getType() == EVisualisationWidget_HorizontalSplit) { //insert widget in parent paned void* l_pParentTreeWidget = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oParentIter, l_pParentTreeWidget, EVisualisationTreeColumn_PointerWidget); if(l_pParentTreeWidget != NULL && GTK_IS_WIDGET(l_pParentTreeWidget)) { GtkWidget* l_pParentWidget = getVisualisationWidget(GTK_WIDGET(l_pParentTreeWidget)); if(l_pParentWidget != NULL && GTK_IS_PANED(l_pParentWidget)) { uint32 l_ui32ChildIndex; if(l_pParentVisualisationWidget->getChildIndex(pVisualisationWidget->getIdentifier(), l_ui32ChildIndex) == true) { if(l_ui32ChildIndex == 0) { gtk_paned_pack1(GTK_PANED(l_pParentWidget), l_pTreeWidget, TRUE, TRUE); } else { gtk_paned_pack2(GTK_PANED(l_pParentWidget), l_pTreeWidget, TRUE, TRUE); } } } } } } } //resize widgets once they are allocated : this is the case when they are shown on an expose event //FIXME : perform resizing only once (when it is done as many times as there are widgets in the tree here) if(l_pTreeWidget != NULL) { gtk_signal_connect(GTK_OBJECT(getVisualisationWidget(l_pTreeWidget)), "expose-event", G_CALLBACK(widget_expose_event_cb), this); } return l_pTreeWidget; } void CDesignerVisualisation::endLoadTreeWidget(OpenViBE::Kernel::IVisualisationWidget* pVisualisationWidget) { //retrieve tree widget GtkTreeIter l_oIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, pVisualisationWidget->getIdentifier()); void* l_pTreeWidget = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oIter, l_pTreeWidget, EVisualisationTreeColumn_PointerWidget); //get actual visualisation widget ::GtkWidget* l_pWidget = getVisualisationWidget((GtkWidget*)l_pTreeWidget); if(pVisualisationWidget->getType() == EVisualisationWidget_VisualisationPanel) { //reposition paned widget handles resizeCB(NULL); } else if(pVisualisationWidget->getType() == EVisualisationWidget_Undefined || pVisualisationWidget->getType() == EVisualisationWidget_VisualisationBox) { if(GTK_IS_BUTTON(l_pWidget) != FALSE) { //replace dummy icon with correct one //----------------------------------- //retrieve icon name from tree char* l_pIconString = NULL; m_rVisualisationTree.getStringValueFromTreeIter(&l_oIter, l_pIconString, EVisualisationTreeColumn_StringStockIcon); //retrieve hbox GList* l_pButtonChildren = gtk_container_get_children(GTK_CONTAINER(l_pWidget)); ::GtkContainer* l_pBox = GTK_CONTAINER(l_pButtonChildren->data); //remove first widget GList* l_pBoxChildren = gtk_container_get_children(l_pBox); gtk_container_remove(l_pBox, GTK_WIDGET(l_pBoxChildren->data)); //create new icon ::GtkWidget* l_pIcon = gtk_image_new_from_stock(l_pIconString, GTK_ICON_SIZE_BUTTON); if(s_iconWidthRequest == 0) { gtk_widget_set_size_request(l_pIcon, 0, 0); } gtk_box_pack_start(GTK_BOX(l_pBox), l_pIcon, s_iconExpand, s_iconFill, 0); //insert it in first position gtk_box_reorder_child(GTK_BOX(l_pBox), l_pIcon, 0); } } } ::GtkWidget* CDesignerVisualisation::getTreeWidget(::GtkWidget* visualisationWidget) { return gtk_widget_get_parent(visualisationWidget); } ::GtkWidget* CDesignerVisualisation::getVisualisationWidget(::GtkWidget* pWidget) { if(GTK_IS_TABLE(pWidget)) { return getTableChild(GTK_TABLE(pWidget), 1, 2, 1, 2)->widget; } else { return pWidget; } } const char* CDesignerVisualisation::getTreeWidgetIcon(EVisualisationTreeNode type) { switch(type) { case EVisualisationTreeNode_Unaffected: return GTK_STOCK_DIALOG_QUESTION; case EVisualisationTreeNode_Undefined: return GTK_STOCK_CANCEL; case EVisualisationTreeNode_VisualisationWindow: return GTK_STOCK_DND_MULTIPLE; case EVisualisationTreeNode_VisualisationPanel: return GTK_STOCK_DND; case EVisualisationTreeNode_VisualisationBox: return GTK_STOCK_EXECUTE; //default (actual icon name may be retrieved from box descriptor) case EVisualisationTreeNode_HorizontalSplit: case EVisualisationTreeNode_VerticalSplit: return GTK_STOCK_ADD; default: return ""; } } gboolean CDesignerVisualisation::delete_event_cb(GtkWidget* widget, GdkEvent* event, gpointer user_data) { return static_cast<CDesignerVisualisation*>(user_data)->deleteEventCB() == true ? TRUE : FALSE; } OpenViBE::boolean CDesignerVisualisation::deleteEventCB() { if(m_fpDeleteEventCB != NULL) { m_fpDeleteEventCB(m_pDeleteEventUserData); return true; } return false; } #ifdef HANDLE_MIN_MAX_EVENTS gboolean CDesignerVisualisation::window_state_event_cb(::GtkWidget* widget,GdkEventWindowState* event, gpointer user_data) { //refresh widgets if window was maximized or minimized if(event->changed_mask & GDK_WINDOW_STATE_MAXIMIZED || event->changed_mask & GDK_WINDOW_STATE_ICONIFIED) { //widgets haven't been reallocated yet, perform resizing only when this happens //gtk_signal_connect(GTK_OBJECT(gtk_paned_get_child2(GTK_PANED(m_pPane))), "size-allocate", G_CALLBACK(widget_size_allocate_cb), this); gtk_signal_connect(GTK_OBJECT(gtk_paned_get_child2(GTK_PANED(m_pPane))), "expose-event", G_CALLBACK(widget_expose_cb), this); } return FALSE; } #endif //event generated whenever window size changes, including when it is first created gboolean CDesignerVisualisation::configure_event_cb(::GtkWidget* widget, GdkEventConfigure* event, gpointer user_data) { static_cast<CDesignerVisualisation*>(user_data)->m_bPreviewWindowVisible = true; /* //upon first show, resize window so that the preview widget has the desired size if(m_bFirstShow == true) { //set preview widget size ::GtkWidget* l_pNotebook = gtk_paned_get_child2(GTK_PANED(m_pPane)); //gtk_window_resize(m_iInitialWidth, m_iInitialHeight); m_bFirstShow == false; }*/ static_cast<CDesignerVisualisation*>(user_data)->resizeCB(NULL); return FALSE; } gboolean CDesignerVisualisation::widget_expose_event_cb(::GtkWidget* widget, GdkEventExpose* event, gpointer user_data) { static_cast<CDesignerVisualisation*>(user_data)->m_bPreviewWindowVisible = true; g_signal_handlers_disconnect_by_func(G_OBJECT(widget), G_CALLBACK2(CDesignerVisualisation::widget_expose_event_cb), user_data); static_cast<CDesignerVisualisation*>(user_data)->resizeCB(NULL); return FALSE; } void CDesignerVisualisation::resizeCB(IVisualisationWidget* pVisualisationWidget) { if(pVisualisationWidget == NULL) { //assign current window size to each window ::GtkWidget* l_pNotebook = gtk_paned_get_child2(GTK_PANED(m_pPane)); if(l_pNotebook != NULL) { CIdentifier l_oVisualisationWindowIdentifier = OV_UndefinedIdentifier; //retrieve current preview window size, if window is visible if(m_bPreviewWindowVisible == true) { ::GtkWidget* l_pNotebook = gtk_paned_get_child2(GTK_PANED(m_pPane)); if(l_pNotebook != NULL) { //update preview window dims m_ui32PreviewWindowWidth = l_pNotebook->allocation.width; m_ui32PreviewWindowHeight = l_pNotebook->allocation.height; } } while(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oVisualisationWindowIdentifier, EVisualisationWidget_VisualisationWindow) == true) { IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); //store new dimensions TAttributeHandler l_oAttributeHandler(*l_pVisualisationWindow); l_oAttributeHandler.setAttributeValue<int>(OVD_AttributeId_VisualisationWindow_Width, m_ui32PreviewWindowWidth); l_oAttributeHandler.setAttributeValue<int>(OVD_AttributeId_VisualisationWindow_Height, m_ui32PreviewWindowHeight); } } else { //return; //? } //retrieve active visualisation panel ::GtkTreeIter l_oWindowIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oWindowIter, m_oActiveVisualisationWindowName, EVisualisationTreeNode_VisualisationWindow) == false) { return; } ::GtkTreeIter l_oPanelIter = l_oWindowIter; if(m_rVisualisationTree.findChildNodeFromParent(&l_oPanelIter, m_oActiveVisualisationPanelName, EVisualisationTreeNode_VisualisationPanel) == false) { return; } CIdentifier l_oVisualisationPanelIdentifier; if(m_rVisualisationTree.getIdentifierFromTreeIter(&l_oPanelIter, l_oVisualisationPanelIdentifier, EVisualisationTreeColumn_StringIdentifier) == false) { return; } IVisualisationWidget* l_pVisualisationPanel = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationPanelIdentifier); //resize visualisation panel hierarchy if(l_pVisualisationPanel != NULL) { CIdentifier l_oChildIdentifier; l_pVisualisationPanel->getChildIdentifier(0, l_oChildIdentifier); IVisualisationWidget* l_pChildVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oChildIdentifier); if(l_pChildVisualisationWidget != NULL) { resizeCB(l_pChildVisualisationWidget); } } } else if(pVisualisationWidget->getType() == EVisualisationWidget_VerticalSplit || pVisualisationWidget->getType() == EVisualisationWidget_HorizontalSplit) { GtkTreeIter l_oIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, pVisualisationWidget->getIdentifier()) == TRUE) { //retrieve paned widget void* l_pTreeWidget = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oIter, l_pTreeWidget, EVisualisationTreeColumn_PointerWidget); ::GtkWidget* l_pPaned = getVisualisationWidget(GTK_WIDGET(l_pTreeWidget)); enablePanedSignals(l_pPaned, false); //retrieve paned attributes TAttributeHandler l_oAttributeHandler(*pVisualisationWidget); int l_i32HandlePos = l_oAttributeHandler.getAttributeValue<int>(OVD_AttributeId_VisualisationWidget_DividerPosition); int l_i32MaxHandlePos = l_oAttributeHandler.getAttributeValue<int>(OVD_AttributeId_VisualisationWidget_MaxDividerPosition); if(l_i32MaxHandlePos > 0) { //retrieve current maximum handle position int l_i32CurrentMaxHandlePos = GTK_IS_VPANED(l_pPaned) ? GTK_PANED(l_pPaned)->container.widget.allocation.height : GTK_PANED(l_pPaned)->container.widget.allocation.width; //set new paned handle position gtk_paned_set_position(GTK_PANED(l_pPaned), l_i32HandlePos * l_i32CurrentMaxHandlePos / l_i32MaxHandlePos); } enablePanedSignals(l_pPaned, true); //go down child 1 CIdentifier l_oChildIdentifier; pVisualisationWidget->getChildIdentifier(0, l_oChildIdentifier); IVisualisationWidget* l_pChildVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oChildIdentifier); if(l_pChildVisualisationWidget != NULL) { resizeCB(l_pChildVisualisationWidget); } //go down child 2 pVisualisationWidget->getChildIdentifier(1, l_oChildIdentifier); l_pChildVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oChildIdentifier); if(l_pChildVisualisationWidget != NULL) { resizeCB(l_pChildVisualisationWidget); } } } } void CDesignerVisualisation::notebook_page_switch_cb(::GtkNotebook* notebook, ::GtkNotebookPage* page, guint pagenum, gpointer user_data) { static_cast<CDesignerVisualisation*>(user_data)->notebookPageSelectedCB(notebook, pagenum); } gboolean CDesignerVisualisation::notify_position_paned_cb(::GtkWidget *widget, GParamSpec* spec, gpointer user_data) { static_cast<CDesignerVisualisation*>(user_data)->notifyPositionPanedCB(widget); return TRUE; } //-------------------------- //Event box table management //-------------------------- void CDesignerVisualisation::setupNewEventBoxTable(GtkBuilder* xml) { //set up event boxes as drag targets gtk_drag_dest_set(GTK_WIDGET(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox2")), GTK_DEST_DEFAULT_ALL, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); gtk_drag_dest_set(GTK_WIDGET(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox4")), GTK_DEST_DEFAULT_ALL, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); gtk_drag_dest_set(GTK_WIDGET(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox6")), GTK_DEST_DEFAULT_ALL, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); gtk_drag_dest_set(GTK_WIDGET(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox8")), GTK_DEST_DEFAULT_ALL, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); //set up event boxes callbacks for drag data received events char buf[256]; sprintf(buf, "%p %s", this, "top"); m_sTopEventBoxData = buf; g_signal_connect(G_OBJECT(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox2")), "drag_data_received", G_CALLBACK(drag_data_received_in_event_box_cb), gpointer(m_sTopEventBoxData.c_str())); sprintf(buf, "%p %s", this, "left"); m_sLeftEventBoxData = buf; g_signal_connect(G_OBJECT(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox4")), "drag_data_received", G_CALLBACK(drag_data_received_in_event_box_cb), gpointer(m_sLeftEventBoxData.c_str())); sprintf(buf, "%p %s", this, "right"); m_sRightEventBoxData = buf; g_signal_connect(G_OBJECT(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox6")), "drag_data_received", G_CALLBACK(drag_data_received_in_event_box_cb), gpointer(m_sRightEventBoxData.c_str())); sprintf(buf, "%p %s", this, "bottom"); m_sBottomEventBoxData = buf; g_signal_connect(G_OBJECT(gtk_builder_get_object(xml, "window_manager_eventbox-eventbox8")), "drag_data_received", G_CALLBACK(drag_data_received_in_event_box_cb), gpointer(m_sBottomEventBoxData.c_str())); } void CDesignerVisualisation::refreshActiveVisualisation(::GtkTreePath* pSelectedItemPath) { //show tree gtk_tree_view_expand_all(m_pTreeView); //select item if(pSelectedItemPath != NULL) { gtk_tree_view_set_cursor(m_pTreeView, pSelectedItemPath, NULL, false); } else //select previous visualisation tab again (or another tab if it doesn't exist anymore) { setActiveVisualisation(m_oActiveVisualisationWindowName, m_oActiveVisualisationPanelName); } } void CDesignerVisualisation::setActiveVisualisation(const char* _activeWindow, const char* _activePanel) { //ensures correct behavior when _active[Window/Panel] point to m_oActiveVisualisation[Window/Panel]Name.m_pSecretImplementation CString activeWindow = _activeWindow; CString activePanel = _activePanel; //clear active window/panel names m_oActiveVisualisationWindowName = ""; m_oActiveVisualisationPanelName = ""; //retrieve active window ::GtkTreeIter l_oWindowIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oWindowIter, activeWindow, EVisualisationTreeNode_VisualisationWindow) == true) { m_oActiveVisualisationWindowName = activeWindow; } else { //pick first window if previously active window doesn't exist anymore CIdentifier l_oIdentifier = OV_UndefinedIdentifier; if(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oIdentifier, EVisualisationWidget_VisualisationWindow) == true) { m_oActiveVisualisationWindowName = m_rVisualisationTree.getVisualisationWidget(l_oIdentifier)->getName(); m_rVisualisationTree.findChildNodeFromRoot(&l_oWindowIter, (const char*)m_oActiveVisualisationWindowName, EVisualisationTreeNode_VisualisationWindow); } else //no windows left { if(gtk_paned_get_child2(GTK_PANED(m_pPane)) != NULL) { gtk_container_remove(GTK_CONTAINER(m_pPane), gtk_paned_get_child2(GTK_PANED(m_pPane))); } return; } } //retrieve active panel ::GtkTreeIter l_oPanelIter = l_oWindowIter; if(m_rVisualisationTree.findChildNodeFromParent(&l_oPanelIter, activePanel, EVisualisationTreeNode_VisualisationPanel) == true) { m_oActiveVisualisationPanelName = activePanel; } else //couldn't find panel : select first one { CIdentifier l_oWindowIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oWindowIter, l_oWindowIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oWindowIdentifier); CIdentifier l_oPanelIdentifier; if(l_pVisualisationWindow->getChildIdentifier(0, l_oPanelIdentifier) == true) { l_oPanelIter = l_oWindowIter; m_rVisualisationTree.findChildNodeFromParent(&l_oPanelIter, l_oPanelIdentifier); char* l_pString = NULL; m_rVisualisationTree.getStringValueFromTreeIter(&l_oPanelIter, l_pString, EVisualisationTreeColumn_StringName); m_oActiveVisualisationPanelName = l_pString; } else //no panel in window { ::GtkWidget* l_pCurrentNotebook = gtk_paned_get_child2(GTK_PANED(m_pPane)); if(l_pCurrentNotebook != NULL) { gtk_object_ref(GTK_OBJECT(l_pCurrentNotebook)); gtk_container_remove(GTK_CONTAINER(m_pPane), l_pCurrentNotebook); } return; } } //retrieve notebook and set it visible void* l_pNotebook = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oPanelIter, l_pNotebook, EVisualisationTreeColumn_PointerWidget); ::GtkWidget* l_pCurrentNotebook = gtk_paned_get_child2(GTK_PANED(m_pPane)); if(l_pCurrentNotebook != GTK_WIDGET(l_pNotebook)) { if(l_pCurrentNotebook != NULL) { //FIXME : don't ref previous notebook if parent window doesn't exist anymore gtk_object_ref(GTK_OBJECT(l_pCurrentNotebook)); gtk_container_remove(GTK_CONTAINER(m_pPane), l_pCurrentNotebook); } gtk_paned_add2(GTK_PANED(m_pPane), GTK_WIDGET(l_pNotebook)); //gtk_object_unref(l_pCurrentNotebook); } //disable switch page notifications enableNotebookSignals(GTK_WIDGET(l_pNotebook), false); //set active panel visible int i; for(i=0; i<gtk_notebook_get_n_pages(GTK_NOTEBOOK(l_pNotebook)); i++) { if(strcmp(gtk_notebook_get_tab_label_text(GTK_NOTEBOOK(l_pNotebook), gtk_notebook_get_nth_page(GTK_NOTEBOOK(l_pNotebook), i)), m_oActiveVisualisationPanelName) == 0) { gtk_notebook_set_current_page(GTK_NOTEBOOK(l_pNotebook), i); break; } } //if active page couldn't be found if(i == gtk_notebook_get_n_pages(GTK_NOTEBOOK(l_pNotebook))) { //error! //pick first page if it exists if(gtk_notebook_get_n_pages(GTK_NOTEBOOK(l_pNotebook)) > 0) { m_oActiveVisualisationPanelName = gtk_notebook_get_tab_label_text(GTK_NOTEBOOK(l_pNotebook), gtk_notebook_get_nth_page(GTK_NOTEBOOK(l_pNotebook), 0)); gtk_notebook_set_current_page(GTK_NOTEBOOK(l_pNotebook), 0); } else //error : no pages in notebook, clear panel name { m_oActiveVisualisationPanelName = ""; } } //enable switch page notifications enableNotebookSignals(GTK_WIDGET(l_pNotebook), true); //refresh display gtk_widget_show_all(m_pPane); } //creates a new widgets table and sets it as current ::GtkTable* CDesignerVisualisation::newWidgetsTable() { //@FIXME is the memory ever freed? Valgrind is suspicious about this. It seems that a builder is allocated, but only a member of builder is returned as GtkTable*. GtkBuilder* pGtkBuilderTable = gtk_builder_new(); // glade_xml_new(m_sGuiFile.c_str(), "window_manager_eventbox-table", NULL); gtk_builder_add_from_file(pGtkBuilderTable, m_sGuiFile.c_str(), NULL); gtk_builder_connect_signals(pGtkBuilderTable, NULL); //set up event boxes setupNewEventBoxTable(pGtkBuilderTable); ::GtkTable* pTable = GTK_TABLE(gtk_builder_get_object(pGtkBuilderTable, "window_manager_eventbox-table")); //clear central button label ::GtkTableChild* pTC = getTableChild(pTable, 1, 2, 1, 2); ::GtkButton* pButton = GTK_BUTTON(pTC->widget); gtk_button_set_label(pButton, ""); //set it up as drag destination gtk_drag_dest_set(GTK_WIDGET(pButton), GTK_DEST_DEFAULT_ALL, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); g_signal_connect(G_OBJECT(pButton), "drag_data_received", G_CALLBACK(drag_data_received_in_widget_cb), this); //set it up as drag source as well gtk_drag_source_set(GTK_WIDGET(pButton), GDK_BUTTON1_MASK, targets, sizeof(targets)/sizeof(::GtkTargetEntry), GDK_ACTION_COPY); g_signal_connect(G_OBJECT(pButton), "drag_data_get", G_CALLBACK(drag_data_get_from_widget_cb), this); return pTable; } void CDesignerVisualisation::askNewVisualisationWindow() { //show dialog CInputDialog id(m_sGuiFile.c_str(), &CDesignerVisualisation::new_visualisation_window_cb, this, "New window", "Please enter name of new window : "); id.run(); } boolean CDesignerVisualisation::newVisualisationWindow(const char* label) { //ensure name is unique IVisualisationWidget* l_pVisualisationWindow; CIdentifier l_oVisualisationWindowIdentifier = OV_UndefinedIdentifier; while(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oVisualisationWindowIdentifier, EVisualisationWidget_VisualisationWindow) == true) { l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); if(strcmp((const char*)l_pVisualisationWindow->getName(), label) == 0) { displayErrorDialog("Window creation failed !", "An existing window already uses this name. Please choose another name."); return false; } } //proceed with window creation //m_rVisualisationTree.addVisualisationWindow(l_oVisualisationWindowIdentifier, CString(label)); m_rVisualisationTree.addVisualisationWidget( l_oVisualisationWindowIdentifier, CString(label), EVisualisationWidget_VisualisationWindow, OV_UndefinedIdentifier, 0, OV_UndefinedIdentifier, 0); l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); //add attributes TAttributeHandler l_oAttributeHandler(*l_pVisualisationWindow); l_oAttributeHandler.addAttribute(OVD_AttributeId_VisualisationWindow_Width, 1); l_oAttributeHandler.addAttribute(OVD_AttributeId_VisualisationWindow_Height, 1); //create default visualisation panel as well CIdentifier l_oChildIdentifier; CString l_oChildName = "Default tab"; m_rVisualisationTree.addVisualisationWidget( l_oChildIdentifier, l_oChildName, EVisualisationWidget_VisualisationPanel, l_oVisualisationWindowIdentifier, 0, OV_UndefinedIdentifier, 1); m_rVisualisationTree.reloadTree(); //refresh view ::GtkTreeIter l_oChildIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oChildIter, l_oChildIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oChildIter)); return true; } void CDesignerVisualisation::askRenameVisualisationWindow() { //show dialog CInputDialog id(m_sGuiFile.c_str(), &CDesignerVisualisation::rename_visualisation_window_cb, this, "Rename window", "Please enter new name of window : "); id.run(); } boolean CDesignerVisualisation::renameVisualisationWindow(const char* pNewVisualisationWindowName) { //retrieve visualisation window ::GtkTreeIter l_oIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, m_oActiveVisualisationWindowName, EVisualisationTreeNode_VisualisationWindow) == false) { displayErrorDialog("Window renaming failed !", "Couldn't retrieve window."); return false; } CIdentifier l_oWindowIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oWindowIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oWindowIdentifier); if(l_pVisualisationWindow == NULL) { displayErrorDialog("Window renaming failed !", "Couldn't retrieve window."); return false; } //if trying to set identical name, return CString l_oNewWindowName = pNewVisualisationWindowName; if(l_pVisualisationWindow->getName() == l_oNewWindowName) { return true; } //ensure name is unique CIdentifier l_oVisualisationWindowIdentifier = OV_UndefinedIdentifier; while(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oVisualisationWindowIdentifier, EVisualisationWidget_VisualisationWindow) == true) { //name already in use : warn user if(m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier)->getName() == l_oNewWindowName) { displayErrorDialog("Window renaming failed !", "An existing window already uses this name. Please choose another name."); return false; } } //change its name l_pVisualisationWindow->setName(l_oNewWindowName); m_rVisualisationTree.reloadTree(); //refresh view m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, l_oWindowIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oIter)); return true; } boolean CDesignerVisualisation::removeVisualisationWindow() { //retrieve visualisation window CIdentifier l_oVisualisationWindowIdentifier = OV_UndefinedIdentifier; while(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oVisualisationWindowIdentifier, EVisualisationWidget_VisualisationWindow) == true) { if(m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier)->getName() == m_oActiveVisualisationWindowName) { break; } } //return if window was not found if(l_oVisualisationWindowIdentifier == OV_UndefinedIdentifier) { displayErrorDialog("Window removal failed !", "Couldn't retrieve window."); return false; } //destroy hierarchy but only unaffect visualisation boxes m_rVisualisationTree.destroyHierarchy(l_oVisualisationWindowIdentifier, false); m_rVisualisationTree.reloadTree(); //refresh view refreshActiveVisualisation(NULL); return true; } void CDesignerVisualisation::askNewVisualisationPanel() { //show dialog CInputDialog id(m_sGuiFile.c_str(), &CDesignerVisualisation::new_visualisation_panel_cb, this, "New tab", "Please enter name of new tab : "); id.run(); } boolean CDesignerVisualisation::newVisualisationPanel(const char* label) { //retrieve visualisation window IVisualisationWidget* l_pVisualisationWindow=NULL; CIdentifier l_oVisualisationWindowIdentifier = OV_UndefinedIdentifier; while(m_rVisualisationTree.getNextVisualisationWidgetIdentifier(l_oVisualisationWindowIdentifier, EVisualisationWidget_VisualisationWindow) == true) { l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); if(l_pVisualisationWindow->getName() == m_oActiveVisualisationWindowName) { break; } } //return if parent window was not found if(l_oVisualisationWindowIdentifier == OV_UndefinedIdentifier || l_pVisualisationWindow==NULL) { displayErrorDialog("Tab creation failed !", "Couldn't retrieve parent window."); return false; } CIdentifier l_oChildIdentifier; CString l_oNewChildName = label; //ensure visualisation panel name is unique in this window for(uint32 i=0; i<l_pVisualisationWindow->getNbChildren(); i++) { l_pVisualisationWindow->getChildIdentifier(i, l_oChildIdentifier); if(m_rVisualisationTree.getVisualisationWidget(l_oChildIdentifier)->getName() == l_oNewChildName) { displayErrorDialog("Tab creation failed !", "An existing tab already uses this name. Please choose another name."); return false; } } //proceed with panel creation m_rVisualisationTree.addVisualisationWidget( l_oChildIdentifier, l_oNewChildName, EVisualisationWidget_VisualisationPanel, l_oVisualisationWindowIdentifier, l_pVisualisationWindow->getNbChildren(), OV_UndefinedIdentifier, 1); m_rVisualisationTree.reloadTree(); //refresh view ::GtkTreeIter l_oIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, l_oChildIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oIter)); return true; } void CDesignerVisualisation::askRenameVisualisationPanel() { //show dialog CInputDialog id(m_sGuiFile.c_str(), &CDesignerVisualisation::rename_visualisation_panel_cb, this, "Rename tab", "Please enter new name of tab : "); id.run(); } boolean CDesignerVisualisation::renameVisualisationPanel(const char* pNewVisualisationPanelName) { //retrieve visualisation window ::GtkTreeIter l_oIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, (const char*)m_oActiveVisualisationWindowName, EVisualisationTreeNode_VisualisationWindow) == false) { displayErrorDialog("Tab renaming failed !", "Couldn't retrieve parent window."); return false; } CIdentifier l_oVisualisationWindowIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oVisualisationWindowIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); if(l_pVisualisationWindow == NULL) { displayErrorDialog("Tab renaming failed !", "Couldn't retrieve parent window."); return false; } //retrieve visualisation panel if(m_rVisualisationTree.findChildNodeFromParent(&l_oIter, (const char*)m_oActiveVisualisationPanelName, EVisualisationTreeNode_VisualisationPanel) == false) { displayErrorDialog("Tab renaming failed !", "Couldn't retrieve tab."); return false; } CIdentifier l_oVisualisationPanelIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oVisualisationPanelIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationPanelIdentifier); if(l_pVisualisationWidget == NULL) { displayErrorDialog("tab renaming failed !", "Couldn't retrieve tab."); return false; } //if trying to set identical name, return CString l_oNewPanelName = pNewVisualisationPanelName; if(l_pVisualisationWidget->getName() == l_oNewPanelName) { return true; } //ensure visualisation panel name is unique in this window CIdentifier l_oChildIdentifier; for(uint32 i=0; i<l_pVisualisationWindow->getNbChildren(); i++) { l_pVisualisationWindow->getChildIdentifier(i, l_oChildIdentifier); if(m_rVisualisationTree.getVisualisationWidget(l_oChildIdentifier)->getName() == l_oNewPanelName) { displayErrorDialog("Tab renaming failed !", "An existing tab already uses this name. Please choose another name."); return false; } } l_pVisualisationWidget->setName(l_oNewPanelName); m_rVisualisationTree.reloadTree(); //refresh view m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, l_oVisualisationPanelIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oIter)); return true; } boolean CDesignerVisualisation::removeVisualisationPanel() { //retrieve visualisation window ::GtkTreeIter l_oIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, (const char*)m_oActiveVisualisationWindowName, EVisualisationTreeNode_VisualisationWindow); //retrieve visualisation panel m_rVisualisationTree.findChildNodeFromParent(&l_oIter, (const char*)m_oActiveVisualisationPanelName, EVisualisationTreeNode_VisualisationPanel); CIdentifier l_oVisualisationPanelIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oVisualisationPanelIdentifier, EVisualisationTreeColumn_StringIdentifier); //destroy hierarchy but only unaffect visualisation boxes (as opposed to destroying them) if(m_rVisualisationTree.destroyHierarchy(m_rVisualisationTree.getVisualisationWidget(l_oVisualisationPanelIdentifier)->getIdentifier(), false) == false) { displayErrorDialog("Tab removal failed !", "An error occurred while destroying widget hierarchy."); return false; } m_rVisualisationTree.reloadTree(); //refresh view refreshActiveVisualisation(NULL); return true; } boolean CDesignerVisualisation::removeVisualisationWidget() { //retrieve widget ::GtkTreeIter l_oIter; if(m_rVisualisationTree.getTreeSelection(m_pTreeView, &l_oIter) == false) { return false; } CIdentifier l_oIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oIdentifier, EVisualisationTreeColumn_StringIdentifier); return removeVisualisationWidget(l_oIdentifier); } //TODO : move this to CVisualisationTree? boolean CDesignerVisualisation::removeVisualisationWidget(const CIdentifier& rIdentifier) { IVisualisationWidget* l_pVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(rIdentifier); if(l_pVisualisationWidget == NULL) { return false; } IVisualisationWidget* l_pParentVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_pVisualisationWidget->getParentIdentifier()); //unparent or destroy widget uint32 l_ui32ChildIndex; m_rVisualisationTree.unparentVisualisationWidget(rIdentifier, l_ui32ChildIndex); if(l_pVisualisationWidget->getType() != EVisualisationWidget_VisualisationBox) { m_rVisualisationTree.destroyHierarchy(rIdentifier, false); } //reparent other child widget, if any if(l_pParentVisualisationWidget->getType() != EVisualisationWidget_VisualisationPanel) { //retrieve parent's other widget CIdentifier l_oOtherVisualisationWidgetIdentifier; l_pParentVisualisationWidget->getChildIdentifier(1-l_ui32ChildIndex, l_oOtherVisualisationWidgetIdentifier); //unparent parent uint32 l_ui32ParentIndex; CIdentifier l_oParentParentIdentifier = l_pParentVisualisationWidget->getParentIdentifier(); m_rVisualisationTree.unparentVisualisationWidget(l_pParentVisualisationWidget->getIdentifier(), l_ui32ParentIndex); //reparent other widget to its grandparent m_rVisualisationTree.unparentVisualisationWidget(l_oOtherVisualisationWidgetIdentifier, l_ui32ChildIndex); m_rVisualisationTree.parentVisualisationWidget(l_oOtherVisualisationWidgetIdentifier, l_oParentParentIdentifier, l_ui32ParentIndex); //destroy parent m_rVisualisationTree.destroyHierarchy(l_pParentVisualisationWidget->getIdentifier(), false); } m_rVisualisationTree.reloadTree(); //refresh view refreshActiveVisualisation(NULL); return true; } boolean CDesignerVisualisation::destroyVisualisationWidget(const CIdentifier& rIdentifier) { boolean b = removeVisualisationWidget(rIdentifier); m_rVisualisationTree.destroyHierarchy(rIdentifier, true); return b; } //CALLBACKS //--------- void CDesignerVisualisation::notebookPageSelectedCB(::GtkNotebook* pNotebook, guint pagenum) { ::GtkTreeIter l_oIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, (void*)pNotebook); CIdentifier l_oIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oIdentifier); if(l_pVisualisationWidget != NULL) { IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_pVisualisationWidget->getParentIdentifier()); if(l_pVisualisationWindow != NULL) { l_pVisualisationWindow->getChildIdentifier(pagenum, l_oIdentifier); if(m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, l_oIdentifier) == true) { refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oIter)); } } } } void CDesignerVisualisation::enableNotebookSignals(::GtkWidget* pNotebook, boolean b) { if(b) { g_signal_connect(G_OBJECT(pNotebook), "switch-page", G_CALLBACK(notebook_page_switch_cb), this); } else { g_signal_handlers_disconnect_by_func(G_OBJECT(pNotebook), G_CALLBACK2(notebook_page_switch_cb), this); } } void CDesignerVisualisation::notifyPositionPanedCB(::GtkWidget* pWidget) { ::GtkPaned* l_pPaned = GTK_PANED(pWidget); //return if handle pos was changed because parent window was resized int l_iPos = gtk_paned_get_position(l_pPaned); int l_iMaxPos = GTK_IS_VPANED(l_pPaned) ? l_pPaned->container.widget.allocation.height : l_pPaned->container.widget.allocation.width; int l_iHandleThickness = GTK_IS_VPANED(l_pPaned) ? l_pPaned->handle_pos.height : l_pPaned->handle_pos.width; if(l_iPos + l_iHandleThickness == l_iMaxPos) { return; } //look for widget in tree ::GtkWidget* l_pTreeWidget = getTreeWidget(pWidget); ::GtkTreeIter l_oIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, l_pTreeWidget) == true) { CIdentifier l_oIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oIdentifier, EVisualisationTreeColumn_StringIdentifier); TAttributeHandler l_oAttributeHandler(*m_rVisualisationTree.getVisualisationWidget(l_oIdentifier)); //store new position and max position l_oAttributeHandler.setAttributeValue<int>(OVD_AttributeId_VisualisationWidget_DividerPosition, l_iPos); l_oAttributeHandler.setAttributeValue<int>(OVD_AttributeId_VisualisationWidget_MaxDividerPosition, l_iMaxPos); } } void CDesignerVisualisation::enablePanedSignals(::GtkWidget* pPaned, boolean b) { if(b) { g_signal_connect(G_OBJECT(pPaned), "notify::position", G_CALLBACK(notify_position_paned_cb), this); } else { g_signal_handlers_disconnect_by_func(G_OBJECT(pPaned), G_CALLBACK2(notify_position_paned_cb), this); } } void CDesignerVisualisation::ask_new_visualisation_window_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->askNewVisualisationWindow(); } void CDesignerVisualisation::new_visualisation_window_cb(::GtkWidget* pWidget, gpointer pUserData) { CInputDialog* l_pInputDialog = static_cast<CInputDialog*>(pUserData); if(l_pInputDialog->getUserData() != NULL) { static_cast<CDesignerVisualisation*>(l_pInputDialog->getUserData())->newVisualisationWindow(l_pInputDialog->getEntry()); } } void CDesignerVisualisation::ask_rename_visualisation_window_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->askRenameVisualisationWindow(); } void CDesignerVisualisation::rename_visualisation_window_cb(::GtkWidget* pWidget, gpointer pUserData) { CInputDialog* l_pInputDialog = static_cast<CInputDialog*>(pUserData); if(l_pInputDialog->getUserData() != NULL) { static_cast<CDesignerVisualisation*>(l_pInputDialog->getUserData())->renameVisualisationWindow(l_pInputDialog->getEntry()); } } void CDesignerVisualisation::remove_visualisation_window_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->removeVisualisationWindow(); } void CDesignerVisualisation::ask_new_visualisation_panel_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->askNewVisualisationPanel(); } void CDesignerVisualisation::new_visualisation_panel_cb(::GtkWidget* pWidget, gpointer pUserData) { CInputDialog* l_pInputDialog = static_cast<CInputDialog*>(pUserData); if(l_pInputDialog->getUserData() != NULL) { static_cast<CDesignerVisualisation*>(l_pInputDialog->getUserData())->newVisualisationPanel(l_pInputDialog->getEntry()); } } void CDesignerVisualisation::ask_rename_visualisation_panel_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->askRenameVisualisationPanel(); } void CDesignerVisualisation::rename_visualisation_panel_cb(::GtkWidget* pWidget, gpointer pUserData) { CInputDialog* l_pInputDialog = static_cast<CInputDialog*>(pUserData); if(l_pInputDialog->getUserData() != NULL) { static_cast<CDesignerVisualisation*>(l_pInputDialog->getUserData())->renameVisualisationPanel(l_pInputDialog->getEntry()); } } void CDesignerVisualisation::remove_visualisation_panel_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->removeVisualisationPanel(); } void CDesignerVisualisation::remove_visualisation_widget_cb(gpointer pUserData, guint callback_action, ::GtkWidget* pWidget) { static_cast<CDesignerVisualisation*>(pUserData)->removeVisualisationWidget(); } void CDesignerVisualisation::visualisation_widget_key_press_event_cb(::GtkWidget* pWidget, GdkEventKey* pEvent, gpointer pUserData) { static_cast<CDesignerVisualisation*>(pUserData)->visualisationWidgetKeyPressEventCB(pWidget, pEvent); } void CDesignerVisualisation::visualisationWidgetKeyPressEventCB(::GtkWidget*, GdkEventKey* pEventKey) { //remove widget if(pEventKey->keyval==GDK_Delete || pEventKey->keyval==GDK_KP_Delete) { if(m_pHighlightedWidget != NULL) { ::GtkTreeIter l_oIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oIter, getTreeWidget(m_pHighlightedWidget)) == true) { CIdentifier l_oIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oIdentifier, EVisualisationTreeColumn_StringIdentifier); removeVisualisationWidget(l_oIdentifier); } } } } gboolean CDesignerVisualisation::visualisation_widget_enter_notify_event_cb(::GtkWidget* pWidget, GdkEventCrossing* pEventCrossing, gpointer pUserData) { static_cast<CDesignerVisualisation*>(pUserData)->visualisationWidgetEnterNotifyEventCB(pWidget, pEventCrossing); return FALSE; } void CDesignerVisualisation::visualisationWidgetEnterNotifyEventCB(::GtkWidget* pWidget, GdkEventCrossing* pEventCrossing) { m_pHighlightedWidget = pWidget; } gboolean CDesignerVisualisation::visualisation_widget_leave_notify_event_cb(::GtkWidget* pWidget, GdkEventCrossing* pEventCrossing, gpointer pUserData) { static_cast<CDesignerVisualisation*>(pUserData)->visualisationWidgetLeaveNotifyEventCB(pWidget, pEventCrossing); return FALSE; } void CDesignerVisualisation::visualisationWidgetLeaveNotifyEventCB(::GtkWidget* pWidget, GdkEventCrossing* pEventCrossing) { m_pHighlightedWidget = NULL; } gboolean CDesignerVisualisation::button_release_cb(::GtkWidget* pWidget, GdkEventButton *pEvent, gpointer pUserData) { static_cast<CDesignerVisualisation*>(pUserData)->buttonReleaseCB(pWidget, pEvent); return FALSE; } void CDesignerVisualisation::buttonReleaseCB(::GtkWidget* pWidget, GdkEventButton* pEvent) { if(GTK_IS_TREE_VIEW(pWidget)) { if(pEvent->button == 3) //right button { if(pEvent->type != GDK_BUTTON_PRESS) { ::GtkTreeIter l_oIter; if(m_rVisualisationTree.getTreeSelection(m_pTreeView, &l_oIter) == false) { std::cout << "oups\n"; return; } unsigned long l_ulType = m_rVisualisationTree.getULongValueFromTreeIter(&l_oIter, EVisualisationTreeColumn_ULongNodeType); if(l_ulType == EVisualisationTreeNode_Unaffected) { gtk_menu_popup(GTK_MENU(gtk_item_factory_get_widget(m_pUnaffectedItemFactory, "<unaffected_main>")),NULL,NULL,NULL,NULL,pEvent->button,pEvent->time); } else if(l_ulType == EVisualisationTreeNode_VisualisationWindow) { gtk_menu_popup(GTK_MENU(gtk_item_factory_get_widget(m_pVisualisationWindowItemFactory, "<visualisation_window_main>")),NULL,NULL,NULL,NULL,pEvent->button,pEvent->time); } else if(l_ulType == EVisualisationTreeNode_VisualisationPanel) { gtk_menu_popup(GTK_MENU(gtk_item_factory_get_widget(m_pVisualisationPanelItemFactory, "<visualisation_panel_main>")),NULL,NULL,NULL,NULL,pEvent->button,pEvent->time); } else if(l_ulType == EVisualisationTreeNode_HorizontalSplit || l_ulType == EVisualisationTreeNode_VerticalSplit) { gtk_menu_popup(GTK_MENU(gtk_item_factory_get_widget(m_pSplitItemFactory, "<split_widget_main>")),NULL,NULL,NULL,NULL,pEvent->button,pEvent->time); } else if(l_ulType == EVisualisationTreeNode_VisualisationBox) { //ensure visualisation box is parented to a tab if(m_rVisualisationTree.findParentNode(&l_oIter, EVisualisationTreeNode_VisualisationPanel) == true) { gtk_menu_popup(GTK_MENU(gtk_item_factory_get_widget(m_pVisualisationBoxItemFactory, "<visualisation_box_main>")),NULL,NULL,NULL,NULL,pEvent->button,pEvent->time); } } else if(l_ulType == EVisualisationTreeNode_Undefined) { //ensure empty plugin is not parented to a panel (because an empty widget is always present in an empty panel) CIdentifier l_oIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oIter, l_oIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oIdentifier); if(l_pVisualisationWidget != NULL) { IVisualisationWidget* l_pParentVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_pVisualisationWidget->getParentIdentifier()); if(l_pParentVisualisationWidget != NULL) { if(l_pParentVisualisationWidget->getType() != EVisualisationWidget_VisualisationPanel) { gtk_menu_popup(GTK_MENU(gtk_item_factory_get_widget(m_pUndefinedItemFactory, "<undefined_widget_main>")),NULL,NULL,NULL,NULL,pEvent->button,pEvent->time); } } } } } } } } void CDesignerVisualisation::cursor_changed_cb(::GtkTreeView* pTreeView, gpointer pUserData) { static_cast<CDesignerVisualisation*>(pUserData)->cursorChangedCB(pTreeView); } void CDesignerVisualisation::cursorChangedCB(::GtkTreeView* pTreeView) { //retrieve selection ::GtkTreeIter l_oSelectionIter; if(m_rVisualisationTree.getTreeSelection(pTreeView, &l_oSelectionIter) == false) { return; } //save active item if(m_rVisualisationTree.getULongValueFromTreeIter(&l_oSelectionIter, EVisualisationTreeColumn_ULongNodeType) == EVisualisationTreeNode_VisualisationBox) { m_rVisualisationTree.getIdentifierFromTreeIter(&l_oSelectionIter, m_oActiveVisualisationBoxIdentifier, EVisualisationTreeColumn_StringIdentifier); } ::GtkTreeIter l_oVisualisationPanelIter = l_oSelectionIter; //if selection lies in a visualisation panel subtree, display this subtree if(m_rVisualisationTree.findParentNode(&l_oVisualisationPanelIter, EVisualisationTreeNode_VisualisationPanel) == true) { //get visualisation panel name char* l_pVisualisationPanelName = NULL; m_rVisualisationTree.getStringValueFromTreeIter(&l_oVisualisationPanelIter, l_pVisualisationPanelName, EVisualisationTreeColumn_StringName); //retrieve visualisation window that contains selection ::GtkTreeIter l_oVisualisationWindowIter = l_oVisualisationPanelIter; if(m_rVisualisationTree.findParentNode(&l_oVisualisationWindowIter, EVisualisationTreeNode_VisualisationWindow) == true) { //get its name char* l_pVisualisationWindowName = NULL; m_rVisualisationTree.getStringValueFromTreeIter(&l_oVisualisationWindowIter, l_pVisualisationWindowName, EVisualisationTreeColumn_StringName); //set active visualisation setActiveVisualisation(l_pVisualisationWindowName, l_pVisualisationPanelName); } } else { ::GtkTreeIter l_oVisualisationWindowIter = l_oSelectionIter; //if selection is a visualisation window, display it if(m_rVisualisationTree.findParentNode(&l_oVisualisationWindowIter, EVisualisationTreeNode_VisualisationWindow) == true) { //retrieve visualisation window CIdentifier l_oVisualisationWindowIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oVisualisationWindowIter, l_oVisualisationWindowIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pVisualisationWindow = m_rVisualisationTree.getVisualisationWidget(l_oVisualisationWindowIdentifier); //if window has at least one panel if(l_pVisualisationWindow->getNbChildren() > 0) { //retrieve first panel CIdentifier l_oVisualisationPanelIdentifier; l_pVisualisationWindow->getChildIdentifier(0, l_oVisualisationPanelIdentifier); m_rVisualisationTree.findChildNodeFromParent(&l_oVisualisationPanelIter, l_oVisualisationPanelIdentifier); //retrieve notebook void* l_pNotebook = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oVisualisationPanelIter, l_pNotebook, EVisualisationTreeColumn_PointerWidget); //get label of its active tab ::GtkWidget* l_pCurrentPageLabel = gtk_notebook_get_tab_label(GTK_NOTEBOOK(l_pNotebook), gtk_notebook_get_nth_page(GTK_NOTEBOOK(l_pNotebook), gtk_notebook_get_current_page(GTK_NOTEBOOK(l_pNotebook)))); //set active visualisation if(l_pCurrentPageLabel != NULL) { setActiveVisualisation((const char*)l_pVisualisationWindow->getName(), gtk_label_get_text(GTK_LABEL(l_pCurrentPageLabel))); } else { setActiveVisualisation((const char*)l_pVisualisationWindow->getName(), NULL); } } else //window has no panels { setActiveVisualisation((const char*)l_pVisualisationWindow->getName(), NULL); } } else { //refresh active visualisation (::GtkWidgets may have changed if tree was reloaded) setActiveVisualisation(m_oActiveVisualisationWindowName, m_oActiveVisualisationPanelName); } } } void CDesignerVisualisation::drag_data_get_from_tree_cb(::GtkWidget* pSrcWidget, ::GdkDragContext* pDragContex, ::GtkSelectionData* pSelectionData, guint uiInfo, guint uiT, gpointer pData) { //m_rKernelContext.getLogManager() << LogLevel_Debug << "drag_data_get_from_tree_cb\n"; static_cast<CDesignerVisualisation*>(pData)->dragDataGetFromTreeCB(pSrcWidget, pSelectionData); } void CDesignerVisualisation::dragDataGetFromTreeCB(::GtkWidget* pSrcWidget, ::GtkSelectionData* pSelectionData) { char l_sString[1024]; sprintf(l_sString, "%p", pSrcWidget); gtk_selection_data_set_text(pSelectionData, l_sString, strlen(l_sString)); } void CDesignerVisualisation::drag_data_get_from_widget_cb(::GtkWidget* pSrcWidget, GdkDragContext* pDragContext, ::GtkSelectionData* pSelectionData, guint uiInfo, guint uiTime, gpointer pData) { static_cast<CDesignerVisualisation*>(pData)->dragDataGetFromWidgetCB(pSrcWidget, pSelectionData); } void CDesignerVisualisation::dragDataGetFromWidgetCB(::GtkWidget* pSrcWidget, ::GtkSelectionData* pSelectionData) { char l_sString[1024]; sprintf(l_sString, "%p", pSrcWidget); gtk_selection_data_set_text(pSelectionData, l_sString, strlen(l_sString)); } void CDesignerVisualisation::drag_data_received_in_widget_cb(::GtkWidget* dstWidget, GdkDragContext* pDragContext,gint iX,gint iY,::GtkSelectionData* pSelectionData,guint uiInfo,guint uiTime,gpointer pData) { static_cast<CDesignerVisualisation*>(pData)->dragDataReceivedInWidgetCB(dstWidget, pSelectionData); } void CDesignerVisualisation::dragDataReceivedInWidgetCB(::GtkWidget* pDstWidget, ::GtkSelectionData* pSelectionData) { void* l_pSrcWidget = NULL; sscanf((const char*)gtk_selection_data_get_text(pSelectionData), "%p", &l_pSrcWidget); ::GtkTreeIter l_oSrcIter; //retrieve source widget iterator if(GTK_IS_TREE_VIEW(l_pSrcWidget)) { //ensure dragged widget is a visualisation box if(m_rVisualisationTree.findChildNodeFromRoot(&l_oSrcIter, m_oActiveVisualisationBoxIdentifier) == false) { m_rKernelContext.getLogManager() << LogLevel_Debug << "dragDataReceivedInWidgetCB couldn't retrieve iterator of active visualisation box!\n"; return; } } else if(GTK_IS_BUTTON(l_pSrcWidget)) { if(l_pSrcWidget == pDstWidget) { return; } if(m_rVisualisationTree.findChildNodeFromRoot(&l_oSrcIter, getTreeWidget(GTK_WIDGET(l_pSrcWidget))) == false) { m_rKernelContext.getLogManager() << LogLevel_Debug << "dragDataReceivedInWidgetCB couldn't retrieve iterator of dragged button!\n"; return; } } else { return; } //retrieve src widget identifier and src visualisation widget CIdentifier l_oSrcIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oSrcIter, l_oSrcIdentifier, EVisualisationTreeColumn_StringIdentifier); IVisualisationWidget* l_pSrcVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oSrcIdentifier); if(l_pSrcVisualisationWidget == NULL) { m_rKernelContext.getLogManager() << LogLevel_Debug << "dragDataReceivedInWidgetCB couldn't retrieve source visualisation widget!\n"; return; } //retrieve dest widget type ::GtkTreeIter l_oDstIter; if(m_rVisualisationTree.findChildNodeFromRoot(&l_oDstIter, getTreeWidget(pDstWidget)) == false) { m_rKernelContext.getLogManager() << LogLevel_Debug << "dragDataReceivedInWidgetCB couldn't retrieve iterator of destination widget!\n"; return; } //if src widget is unaffected or if dest widget is a visualisation box, perform the drop operation directly if(l_pSrcVisualisationWidget->getParentIdentifier() == OV_UndefinedIdentifier || m_rVisualisationTree.getULongValueFromTreeIter(&l_oDstIter, EVisualisationTreeColumn_ULongNodeType) == EVisualisationTreeNode_VisualisationBox) { m_rVisualisationTree.dragDataReceivedInWidgetCB(l_oSrcIdentifier, pDstWidget); } else //dest widget is a dummy : unaffect src widget and simplify the tree before performing the drop operation { //save dest widget identifier CIdentifier l_oDstIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oDstIter, l_oDstIdentifier, EVisualisationTreeColumn_StringIdentifier); //unaffect src widget, so that tree is simplified if(removeVisualisationWidget(l_oSrcIdentifier) == false) { m_rKernelContext.getLogManager() << LogLevel_Debug << "dragDataReceivedInWidgetCB couldn't remove source widget from its parent!\n"; return; } //then drop it if(m_rVisualisationTree.findChildNodeFromRoot(&l_oDstIter, l_oDstIdentifier) == false) { m_rKernelContext.getLogManager() << LogLevel_Debug << "dragDataReceivedInWidgetCB couldn't retrieve iterator of dummy destination widget to delete!\n"; return; } void* l_pNewDstTreeWidget = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oDstIter, l_pNewDstTreeWidget, EVisualisationTreeColumn_PointerWidget); m_rVisualisationTree.dragDataReceivedInWidgetCB(l_oSrcIdentifier, getVisualisationWidget(GTK_WIDGET(l_pNewDstTreeWidget))); } //refresh view ::GtkTreeIter l_oDraggedIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oDraggedIter, l_oSrcIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oDraggedIter)); } void CDesignerVisualisation::drag_data_received_in_event_box_cb(::GtkWidget* pDstWidget,GdkDragContext*,gint,gint,::GtkSelectionData* pSelectionData,guint,guint,gpointer pData) { char buf[1024]; void* pDesignerVisualisation = NULL; sscanf((const char*)pData, "%p %s", &pDesignerVisualisation, buf); EDragDataLocation l_oLocation; if(strcmp(buf, "left") == 0) { l_oLocation = EDragData_Left; } else if(strcmp(buf, "right")==0) { l_oLocation = EDragData_Right; } else if(strcmp(buf, "top")==0) { l_oLocation = EDragData_Top; } else { l_oLocation = EDragData_Bottom; } ((CDesignerVisualisation*)pDesignerVisualisation)->dragDataReceivedInEventBoxCB(pDstWidget, pSelectionData, l_oLocation); } void CDesignerVisualisation::dragDataReceivedInEventBoxCB(::GtkWidget* pDstWidget, ::GtkSelectionData* pSelectionData, EDragDataLocation l_oLocation) { void* l_pSrcWidget = NULL; sscanf((const char*)gtk_selection_data_get_text(pSelectionData), "%p", &l_pSrcWidget); ::GtkTreeIter l_oSrcIter; //get iterator to src widget if(GTK_IS_TREE_VIEW(l_pSrcWidget)) { if(m_rVisualisationTree.findChildNodeFromRoot(&l_oSrcIter, m_oActiveVisualisationBoxIdentifier) == false) { return; } //get actual src widget (item being dropped) and ensure it isn't being dropped in its own table m_rVisualisationTree.getPointerValueFromTreeIter(&l_oSrcIter, l_pSrcWidget, EVisualisationTreeColumn_PointerWidget); if(l_pSrcWidget == gtk_widget_get_parent(pDstWidget)) { return; } } else if(GTK_IS_BUTTON(l_pSrcWidget)) { //ensure src widget isn't being dropped in its own table if(gtk_widget_get_parent(GTK_WIDGET(l_pSrcWidget)) == gtk_widget_get_parent(pDstWidget)) { return; } m_rVisualisationTree.findChildNodeFromRoot(&l_oSrcIter, getTreeWidget(GTK_WIDGET(l_pSrcWidget))); } else { return; } //ensure src widget is a visualisation box if(m_rVisualisationTree.getULongValueFromTreeIter(&l_oSrcIter, EVisualisationTreeColumn_ULongNodeType) != EVisualisationTreeNode_VisualisationBox) { return; } //retrieve src widget identifier CIdentifier l_oSrcIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oSrcIter, l_oSrcIdentifier, EVisualisationTreeColumn_StringIdentifier); //if widget is unaffected, just drag n drop it ::GtkTreeIter l_oUnaffectedIter = l_oSrcIter; if(m_rVisualisationTree.findParentNode(&l_oUnaffectedIter, EVisualisationTreeNode_Unaffected) == true) { m_rVisualisationTree.dragDataReceivedOutsideWidgetCB(l_oSrcIdentifier, pDstWidget, l_oLocation); } else { //save dest widget identifier ::GtkTreeIter l_oDstIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oDstIter, getTreeWidget(pDstWidget)); CIdentifier l_oDstIdentifier; m_rVisualisationTree.getIdentifierFromTreeIter(&l_oDstIter, l_oDstIdentifier, EVisualisationTreeColumn_StringIdentifier); //if dest widget is src widget's parent (paned widget), drop src widget in corresponding event box of parent's other child //(otherwise, DND will fail due to parent's removal during tree simplification process) IVisualisationWidget* l_pSrcVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_oSrcIdentifier); if(l_pSrcVisualisationWidget->getParentIdentifier() == l_oDstIdentifier) { IVisualisationWidget* l_pSrcParentVisualisationWidget = m_rVisualisationTree.getVisualisationWidget(l_pSrcVisualisationWidget->getParentIdentifier()); l_pSrcParentVisualisationWidget->getChildIdentifier(0, l_oDstIdentifier); if(l_oSrcIdentifier == l_oDstIdentifier) { l_pSrcParentVisualisationWidget->getChildIdentifier(1, l_oDstIdentifier); } } //unaffect src widget, so that tree is simplified removeVisualisationWidget(l_oSrcIdentifier); //then drop it m_rVisualisationTree.findChildNodeFromRoot(&l_oDstIter, l_oDstIdentifier); void* l_pNewDstTreeWidget = NULL; m_rVisualisationTree.getPointerValueFromTreeIter(&l_oDstIter, l_pNewDstTreeWidget, EVisualisationTreeColumn_PointerWidget); m_rVisualisationTree.dragDataReceivedOutsideWidgetCB(l_oSrcIdentifier, getVisualisationWidget(GTK_WIDGET(l_pNewDstTreeWidget)), l_oLocation); } //refresh view ::GtkTreeIter l_oDraggedIter; m_rVisualisationTree.findChildNodeFromRoot(&l_oDraggedIter, l_oSrcIdentifier); refreshActiveVisualisation(m_rVisualisationTree.getTreePath(&l_oDraggedIter)); }
11600dd59c967e6c888c2f4fa105199322ae31a0
0291574f3efe05cdf4d9cfe5e0c261853ea7b673
/refills_unicampania_helper_lib/src/Helper/Helper1.0.cpp
018d0d42a35bcaf0e1a42849452761537175b70f
[]
no_license
refills-project/wsg50_ros_sun
7c0bdd975f7530d529ee3b70e11203a79f7a9e15
a92ed9304079c299dc127277048225378310e100
refs/heads/master
2021-05-03T15:12:47.257802
2018-05-08T14:48:39
2018-05-08T14:48:39
120,473,558
0
1
null
2018-02-07T15:23:46
2018-02-06T14:52:50
C++
UTF-8
C++
false
false
2,042
cpp
Helper1.0.cpp
/* Helper Lib Copyright 2017-2018 Università della Campania Luigi Vanvitelli This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <Helper1.0.h> Vector<> readFileV(const char* path, unsigned int dim){ FILE *f; f = fopen(path, "r"); if (f == NULL){ printf(BOLDRED "Error opening file..." CRESET); printf(BOLDBLUE " %s\n" CRESET,path); exit(1); } Vector<> out = Zeros(dim); double tmp; for (int i = 0; i < dim; i++) { fscanf(f, "%lf,", &tmp); out[i] = tmp; } fclose(f); return out; } Matrix<> readFileM(const char* path, unsigned int n_r, unsigned int n_c){ FILE *f; f = fopen(path, "r"); if (f == NULL){ printf(BOLDRED "Error opening file..." CRESET); printf(BOLDBLUE " %s\n" CRESET,path); exit(1); } Matrix<> out = Zeros(n_r,n_c); double tmp; for (int i = 0; i < n_r; i++) { for (int j = 0; j < n_c; j++) { fscanf(f, "%lf", &tmp); out[i][j] = tmp; } } fclose(f); return out; } Matrix<3,3> skew( Vector<3> v ){ return Data( 0.0, -v[2] , v[1], v[2], 0.0 , -v[0], -v[1], v[0] , 0.0); } char askForChar( const char* str){ /* USAGE char ans = askForChar( "Continue? [y = YES / n = nextIter / e = exit ]: " ); switch( ans ){ case 'n' : case 'N' : continue; case 'y' : case 'Y' : case 's' : case 'S' : break; default: exit(1); } ans = 0; */ char ans; cout << str; cin >> ans; cout << endl; return ans; }
3281d2d6799e779137fd0540855b5c4670902e90
141a9b426dd61717ceeff7a63c90c44bf51d2f80
/src/gb28181.cpp
5af63e3cbd698a7946f35ae7fd858b942f959cc3
[]
no_license
akwewak/gb28181_2016
f6df3d8cc15486794955862f40f96275577fc0a9
b593ec24cb889a3e62f1c2e4dc10ff5848a7d237
refs/heads/master
2022-03-30T06:37:04.809651
2019-05-14T08:13:35
2019-05-14T08:13:35
null
0
0
null
null
null
null
GB18030
C++
false
false
50,264
cpp
gb28181.cpp
#include "gb28181.h" /* 新增线程池相关函数 */ //#include <pthread> #define HKREMOTESIP "sip:32010601562000000000@218.94.1.147:7100" using namespace std; //static int g_loop = 0; static int g_video_port = 8402; static int g_thread_index = 0; //static int data_len = 0; osip_body_t* invie_req_body; class SIP_BASIC { public : int PrintMsg(int ch); void Remove_c(char *str); int get_str( const char* data, const char* s_mark, bool with_s_make, const char* e_mark, bool with_e_make, char* dest ); void Answer200(); void Answer180( ); void Set_je(eXosip_event_t * je); virtual ~SIP_BASIC(); eXosip_event_t * m_je; }; class SIP_IPC: public SIP_BASIC { public: void SetSn(char* Sn); void SetUsr(char* usr); void SetPwd(char* pwd); void SetIp(char* ip); void SetSipPort(int sip_port); void BuildRemoteSipSvr(); char * GetRemoteSipSvr(); char * GetSN(); char * GetIP(); char * GetUsr(); char * GetPwd(); void SetVideoPort(unsigned int port); int GetVideoPort(); void SetKeepAlive(int keep_alive); int GetKeepAlive(); int DecreaseKeepAlive(); void UpdateKeepAlive(); void SetExpire(int expire); int GetExpire(); //void Set_invite_je(eXosip_event_t * je); void ClearDeviceData(); SIP_IPC(void) { m_videoport = VIDEOPORT; memset(m_usr, 0, sizeof(m_usr)); memset(m_pwd, 0, sizeof(m_pwd)); memset(m_sn, 0, sizeof(m_sn)); memset(m_ip, 0, sizeof(m_ip)); memset(m_remotesip_srv, 0, sizeof(m_remotesip_srv)); m_keepalive = 0; m_sipport = DEFAULT_IPC_SIPSVR_PORT; m_expire = 0; } private: int m_videoport; char m_usr[128]; char m_pwd[128]; char m_sn[128]; int m_keepalive; int m_expire; char m_ip[128]; int m_sipport; char m_remotesip_srv[128]; }; /* server 中 需要实现对应的回调函数 */ class SIP_SERVER:public SIP_BASIC, public GBCallBack { public : void PushDeviceCatalog(char* rsp_xml_body); void Register(); int RegisterAction(osip_message_t *reg); int RegisterHeart(eXosip_event_t* je, int expires, osip_message_t* reg, char *strAuth ); int RegisterWithAuthentication(osip_message_t* reg, eXosip_event_t* je ); int eXosipInitialize(); void setserverport(int port); int getserverport(); void ProcessRTPDataToPS(int * p_port); void GenerateRadom(); char * GetNonce(); int Init_Server(); void ResponseDeviceInfo(char* rsp_xml_body); int ProcessRegister(); void ResponseDeviceStatus(char* rsp_xml_body); int ProcessInvite(); void ResponseDeviceBoot(char* rsp_xml_body); void ResponseCatalog(char* rsp_xml_body); void ProcessKeepAlive(); void SendKeepAlive(); void VideoFileQuery(char* rsp_xml_body); void Catalog(char* rsp_xml_body); void PTZ_Control_left(char* rsp_xml_body); int Call_Build_Initial_Invite(int index,const char * rtp_svr, int rtp_svr_port); int Get_Ipc_Num(); void UpdateKeepAliveByDeviceID(char *device_id); void DeviceManage(); void RemoveDevice(int index); int GetIpcVideoPortByIndex(int n); int Search_Device_ByIP(char * p_ip); void OnRecVideoDataCallback(void * data, int buf_len , int data_len); /* 设备注册时 需要对应的deviceID 均匹配 */ int Is_device_Register(char * DeviceID); void GetLocalIP(); SIP_SERVER(void) { m_port = PORT; m_ipc_num = 0; memset(m_localsip, 0, sizeof(m_localsip)); memset(m_remotesip, 0,sizeof(m_remotesip)); memcpy(m_localsip, LOCALSIP, strlen(LOCALSIP)); memcpy(m_remotesip, REMOTESIP, strlen(REMOTESIP)); memcpy(m_serverusr, DEFAULT_LOCAL_SIP_USR, min(sizeof(m_serverusr), strlen(DEFAULT_LOCAL_SIP_USR))); memcpy(m_serverpwd, DEFAULT_LOCAL_SIP_PWD, min(sizeof(m_serverpwd), strlen(DEFAULT_LOCAL_SIP_PWD))); for(int loop = 0; loop < MAX_IPC_NUM; loop++) { ipc_list[loop] = NULL; } this->GenerateRadom(); this->GetLocalIP(); } ~SIP_SERVER(); private : int m_port; char m_serverusr[MAX_STRING_LEN]; char m_serverpwd[MAX_STRING_LEN]; char m_remotesip[MAX_STRING_LEN]; char m_localsip[MAX_STRING_LEN]; char m_ip[MAX_STRING_LEN]; char m_Nonce[32]; SIP_IPC * ipc_list[MAX_IPC_NUM]; int m_ipc_num; }; typedef struct str_thread_data { int index; SIP_SERVER * sip_svr; }s_thread_param; int SIP_SERVER::RegisterAction(osip_message_t *reg) { int id; eXosip_lock (); id = eXosip_register_build_initial_register (LOCALSIP, HKREMOTESIP, NULL, 7100, &reg); //osip_message_set_authorization(reg, "Capability algorithm=\"H:MD5\""); if (id < 0) { printf("exosip initial_register error!") eXosip_unlock (); return SIPERROR; } //osip_message_set_supported (reg, "100rel"); //osip_message_set_supported(reg, "path"); int retval = eXosip_register_send_register (id, reg); if(0 != retval) { printf("eXosip_register_send_register no authorization error!\r\n"); return -1; } printf("eXosip_register_send_register no authorization success!\r\n"); eXosip_unlock (); return id; } int SIP_SERVER::RegisterHeart(eXosip_event_t* je, int expires, osip_message_t* reg, char *strAuth ) //abandon { int i; eXosip_lock (); i = eXosip_register_build_register (je->rid, expires, &reg); if (i < 0) { eXosip_unlock (); return -1;} osip_header_t *pMsgHeader=NULL; osip_message_header_get_byname(reg,(const char *)"authorization",0,&pMsgHeader); if (pMsgHeader==NULL) osip_message_set_header(reg,(const char *)"authorization", strAuth); else strcpy(pMsgHeader->hvalue, strAuth); eXosip_register_send_register (je->rid, reg); eXosip_unlock (); } int SIP_SERVER::RegisterWithAuthentication(osip_message_t* reg, eXosip_event_t* je ) { eXosip_lock(); eXosip_clear_authentication_info(); eXosip_add_authentication_info("34020000001110000001", "34020000001110000001", "12345678", "MD5", NULL); eXosip_register_build_register(je->rid, 3600, &reg); int retval = eXosip_register_send_register(je->rid, reg); eXosip_unlock(); if(0 == retval) { printf("eXosip_register_send_register authorization error!\r\n"); return SIPERROR; } printf("eXosip_register_send_register authorization success!\r\n"); return SIPSUCCESS; } void SIP_SERVER::Register() { eXosip_event_t *je = NULL; osip_message_t *invite = NULL; osip_message_t *reg = NULL; osip_message_t* heart_msg = NULL; int register_id = RegisterAction(reg); for(;;) { je = eXosip_event_wait(0, 50); eXosip_lock(); eXosip_automatic_action (); /*????non-200???????????SIP????Retry?????*/ eXosip_automatic_refresh();/*Refresh REGISTER and SUBSCRIBE before the expiration delay*/ eXosip_unlock(); if(NULL == je) { continue; } else if(EXOSIP_REGISTRATION_FAILURE == je->type) { printf("<EXOSIP_REGISTRATION_FAILURE>\r\n"); PrintMsg(RESPONSE); if((NULL != je->response)&&(401 == je->response->status_code)) RegisterWithAuthentication(reg, je); else { printf("EXOSIP_REGISTRATION_FAILURE ERROR!\r\n"); break; } } else if(EXOSIP_REGISTRATION_SUCCESS == je->type) { printf("<EXOSIP_REGISTRATION_SUCCESS>\r\n"); PrintMsg(RESPONSE); register_id = je->rid; printf("register_id=%d\n", register_id); break; } } } int SIP_SERVER::GetIpcVideoPortByIndex(int n) { if(n < 0 || n >= m_ipc_num) { return -1; } return ipc_list[n]->GetVideoPort(); } int SIP_SERVER::Search_Device_ByIP(char * p_ip) { if(NULL == p_ip) { return -1; } int loop = 0; int index = -1; if(m_ipc_num > 0) { for(loop = 0; loop < m_ipc_num; loop++) { if(strcmp(p_ip, ipc_list[loop]->GetIP()) == 0) { index = loop; break; } } } return index; } void SIP_SERVER::GetLocalIP() { int sock_get_ip; char ipaddr[50]; struct sockaddr_in *sin; struct ifreq ifr_ip; if ((sock_get_ip=socket(AF_INET, SOCK_STREAM, 0)) == -1) { printf("socket create failse...GetLocalIp!/n"); return ; } memset(&ifr_ip, 0, sizeof(ifr_ip)); strncpy(ifr_ip.ifr_name, "eth0", sizeof(ifr_ip.ifr_name) - 1); if( ioctl( sock_get_ip, SIOCGIFADDR, &ifr_ip) < 0 ) { return; } sin = (struct sockaddr_in *)&ifr_ip.ifr_addr; memset(ipaddr, 0, sizeof(ipaddr)); strcpy(ipaddr,inet_ntoa(sin->sin_addr)); memset(m_localsip, 0, sizeof(m_localsip)); //memcpy(m_localsip, ipaddr, strlen(ipaddr)); memset(m_ip, 0, sizeof(m_ip)); memcpy(m_ip, ipaddr, strlen(ipaddr)); snprintf(m_localsip, sizeof(m_localsip), "sip:%s@%s:%d", m_serverusr, m_ip, m_port); close( sock_get_ip ); } void SIP_SERVER::OnRecVideoDataCallback(void * data, int len , int data_len) { if((NULL== data) || (len <= 0) || (data_len <= 0)) { return; } while(len) { if(len >= data_len) { printf("\n recv data len is %d \n", data_len); len = len - data_len; } else { printf("\n recv data len is %d \n", data_len); break; } } } void SIP_IPC::ClearDeviceData() { /* 数据全部清零 */ memset(m_usr, 0, sizeof(m_usr)); memset(m_pwd, 0, sizeof(m_pwd)); memset(m_sn, 0, sizeof(m_sn)); m_expire = 0; m_keepalive = 0; } char * SIP_IPC::GetIP() { return m_ip; } char * SIP_IPC::GetRemoteSipSvr() { printf("\n m_remotesip_srv is %s \n", m_remotesip_srv); return m_remotesip_srv; } void SIP_IPC::SetSipPort(int sip_port) { if(sip_port <= 0) { m_sipport = DEFAULT_IPC_SIPSVR_PORT; } else { m_sipport = sip_port; } } void SIP_IPC::SetIp(char * ip_addr) { if(NULL == ip_addr) { //m_siprt = DEFAULT_IPC_SIPSVR_PORT; printf("param ip is null "); } else { memcpy(m_ip, ip_addr, strlen(ip_addr)); } } void SIP_IPC::BuildRemoteSipSvr() { snprintf(m_remotesip_srv , sizeof(m_remotesip_srv), "sip:%s@%s:%d", m_usr, m_ip, m_sipport); printf("\n m_remotesip_srv is %s \n", m_remotesip_srv); } void SIP_SERVER::RemoveDevice(int index) { int loop = 0; if(index < 0 || index >= m_ipc_num) { printf("\n\n remove index is %d ipc num is %d \n\n", index, m_ipc_num); return; } /* 如果是最后一个设备,直接删除,如果不是最后一个,将现有的删除掉,后面的前移就可以 */ if(index == (m_ipc_num - 1)) { /* 直接删除最后一个元素 */ delete ipc_list[index]; m_ipc_num--; } else { /* 先清除当前数据 */ ipc_list[index]->ClearDeviceData(); char * cpydata = NULL; for(loop = index; loop < m_ipc_num; loop++) { /* 将数据前移,删除最后一个对象 */ /* 用户名前移 */ cpydata = ipc_list[loop+1]->GetUsr(); ipc_list[loop]->SetUsr(cpydata); /* 密码前移 */ cpydata = ipc_list[loop+1]->GetPwd(); ipc_list[loop]->SetPwd(cpydata); /* sn前移 */ cpydata = ipc_list[loop+1]->GetSN(); ipc_list[loop]->SetSn(cpydata); /* expire 前移 */ ipc_list[loop]->SetExpire(ipc_list[loop + 1]->GetExpire()); /* keep alvie 前移 */ ipc_list[loop]->SetKeepAlive(ipc_list[loop + 1]->GetKeepAlive()); } /* 删除最后一个对象 */ delete ipc_list[m_ipc_num - 1]; /* 设备数量减1 */ m_ipc_num--; } } void SIP_IPC::SetExpire(int expire) { if(expire > 0) { m_expire = expire; } else { m_expire = DEFAULT_KEEP_ALIVE; } } /* 获取设备的 expire 信息 */ int SIP_IPC::GetExpire() { return m_expire; } /* 获取设备的keep alive信息 */ int SIP_IPC::GetKeepAlive() { return m_keepalive; } void SIP_IPC::UpdateKeepAlive() { /* 将原始的expire值赋值 */ m_keepalive = m_expire; } void SIP_SERVER::UpdateKeepAliveByDeviceID(char *device_id) { if(NULL == device_id || (m_ipc_num == 0)) { return; } for(int loop = 0; loop < m_ipc_num; loop++) { if(strcmp(ipc_list[loop]->GetUsr(), device_id) == 0) { ipc_list[loop]->UpdateKeepAlive(); } } } void SIP_IPC::SetVideoPort(unsigned int port) { m_videoport = port; } int SIP_IPC::GetVideoPort() { printf("\n usr %s pwd %d port is %d \n", m_usr, m_pwd, m_videoport); return m_videoport; } void SIP_IPC::SetKeepAlive(int keep_alive) { m_keepalive = keep_alive; } /* 这里需要判断 */ int SIP_IPC::DecreaseKeepAlive() { if(m_keepalive > 0) { m_keepalive--; } else { m_keepalive = 0; } //printf("\n\n device %s \n ip is %s \n keepalive %d \n srv_sip %s\n\n", m_usr, m_ip, m_keepalive, m_remotesip_srv); if(0 == m_keepalive) { return DEVICE_LOST; } /* else ruturn alive */ return DEVICE_ALIVE; } void * ThreadKeepAlive(void * data) { if(NULL == data) { printf("\n data is null \n"); } else { SIP_SERVER * sip_svr = (SIP_SERVER *)data; sip_svr->ProcessKeepAlive(); } return((void*)0); } /*void * ThreadSendKeepAlive(void * data) { if(NULL == data) { printf("\n data is null \n"); } else { SIP_SERVER * sip_svr = (SIP_SERVER *)data; sip_svr->SendKeepAlive(); } }*/ void * ThreadManageDevice(void * data) { if(NULL == data) { printf("\n data null \n"); } else { SIP_SERVER * sip_svr = (SIP_SERVER *)data; sip_svr->DeviceManage(); } } /* 调用供后续使用的线程处理函数 */ /*void ThreadRegister(void * data) { if(NULL == sip_svr) { printf("\n sip svr null \n"); } else { SIP_SERVER * sip_svr = (SIP_SERVER *)data; sip_svr->Register(); } }*/ int SIP_SERVER::Is_device_Register(char * DeviceID) { if((NULL == DeviceID)|| (this->m_ipc_num == 0)) { return -1; } int num = this->m_ipc_num; for(int loop = 0; loop < num; loop++) { if(strcmp(DeviceID, this->ipc_list[loop]->GetUsr()) == 0) { return loop; } } return -1; } /* device magage for ipc device */ void SIP_SERVER::DeviceManage() { int loop = 0; while(1) { if(m_ipc_num > 0) { for(loop = 0; loop < m_ipc_num; loop++) { if(DEVICE_LOST == ipc_list[loop]->DecreaseKeepAlive()) { this->RemoveDevice(loop); /* 判断删除后的值是否为0 */ if(m_ipc_num <= 0) { break; } } } } //printf("\n $$$##$#$##### ready sleep m_ipc_num is %d \n\n\n\n", m_ipc_num); sleep(1);/* linux下 调用sleep 单位是秒级 */ } } int SIP_SERVER::Get_Ipc_Num() { return this->m_ipc_num; } char*replace(char*src, char*sub, char*dst) { int pos =0; int offset =0; int srcLen, subLen, dstLen; char*pRet = NULL; srcLen = strlen(src); subLen = strlen(sub); dstLen = strlen(dst); pRet = (char*)malloc(srcLen + dstLen - subLen +1);//(澶栭儴鏄惁璇ョ┖闂?if (NULL != pRet) { pos = strstr(src, sub) - src; memcpy(pRet, src, pos); offset += pos; memcpy(pRet + offset, dst, dstLen); offset += dstLen; memcpy(pRet + offset, src + pos + subLen, srcLen - pos - subLen); offset += srcLen - pos - subLen; *(pRet + offset) ='\0'; } return pRet; } void SIP_SERVER::PTZ_Control_left(char* rsp_xml_body) { snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<control>\r\n" "<CmdType>DeviceControl</CmdType>\r\n" "<SN>4</SN>\r\n" "<DeviceID>32010000001320000001</DeviceID>\r\n" "<PTZCmd>A50F0001E0E0F065</PTZCmd>\r\n" "</control>\r\n"); } void SIP_SERVER::VideoFileQuery(char* rsp_xml_body) { snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<Query>\r\n" "<CmdType>RecordInfo</CmdType>\r\n" "<SN>7</SN>\r\n" "<DeviceID>32010000001320000001</DeviceID>\r\n" "<StartTime>2019-04-24T00:00:00</StartTime>\r\n" "<EndTime>2019-04-24T23:59:59</EndTime>\r\n" "<Type>all</Type>\r\n" "</Query>\r\n"); } void SIP_SERVER::Catalog(char* rsp_xml_body) { snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<Query>\r\n" "<CmdType>Catalog</CmdType>\r\n" "<SN>7</SN>\r\n" "<DeviceID>32010000001320000001</DeviceID>\r\n" "</Query>\r\n"); } int SIP_SERVER::Call_Build_Initial_Invite(int index,const char * rtp_svr, int rtp_svr_port) { int i = -1; osip_message_t *invite = NULL; int inviteflag = 1; char req_xml_body[4096] = {0}; eXosip_event_t * je = NULL; int result = -1; int port = this->GetIpcVideoPortByIndex(index); printf("\n local ip is %s \n", m_localsip); /* 调用exsip接口 */ i=eXosip_call_build_initial_invite(&invite,this->ipc_list[index]->GetRemoteSipSvr(), this->m_localsip, NULL, NULL); if(i!=0) { printf("Initial INVITE failed!\n"); return result; } osip_message_set_supported (invite, "100rel"); /*100rel是临时响应的确认机制, 1xx临时响应,要求对端使用PRACK信令确认收到本信令 收到PRACK后,本端针对PRACK相应200OK,便如三次握手*/ memset(req_xml_body, 0, sizeof(req_xml_body)); snprintf(req_xml_body, 4096, "v=0\r\n" "o=34020000002000000001 0 0 IN IP4 %s\r\n" "s=Play\r\n" "c=IN IP4 %s\r\n" "t=0 0\r\n" "m=video %d RTP/AVP 96 98 97\r\n" "a=recvonly\r\n" "a=rtpmap:96 PS/90000\r\n" "a=rtpmap:98 H264/90000\r\n" "a=rtpmap:97 MPEG4/90000\r\n" "y=0100001001\r\n" , rtp_svr, rtp_svr, rtp_svr_port); //"a=setup:passive\r\n" //"a=connection:new\r\n" osip_message_set_content_type(invite, "APPLICATION/SDP"); osip_message_set_body(invite, req_xml_body, strlen(req_xml_body)); eXosip_lock(); i=eXosip_call_send_initial_invite(invite); //invite SIP INVITE message to send eXosip_unlock(); while(inviteflag) { je = eXosip_event_wait(0, 50); //Wait for an eXosip event eXosip_lock(); eXosip_execute(); eXosip_automatic_action (); //部分non-200消息自动重发,SIP会话中Retry很常见 eXosip_automatic_refresh();/*Refresh REGISTER and SUBSCRIBE before the expiration delay*/ eXosip_unlock(); if(je == NULL) { //printf("No response or the time is over!\n"); result = -1; eXosip_execute(); eXosip_automatic_action (); break; } /* 这个时候不要设置上去 */ //this->Set_je(je); /* 设置到IPC上 */ //this->ipc_list[index]->Set_je(je); switch(je->type) { //case EXOSIP_CALL_PROCEEDING: //printf("proceeding!\n"); //this->PrintMsg(RESPONSE); //break; case EXOSIP_CALL_RINGING: //printf("ringing!\n"); //this->PrintMsg(RESPONSE); //printf("call_id is %d,dialog_id is %d \n",je->cid,je->did); break; case EXOSIP_CALL_ANSWERED: printf(" ~~~~~~~~~~~~~~~ ok! connected! ~~~~~~~~~~~~~~~~~~~\n"); //this->PrintMsg(RESPONSE); osip_message_t* ack; eXosip_call_build_ack(je->did,&ack); eXosip_call_send_ack(je->did,ack); inviteflag=0; //推出While循环 result = 0; break; case EXOSIP_CALL_CLOSED: printf("the other side closed!\n"); this->PrintMsg(RESPONSE); break; default: break; } } /* 返回结果 */ return result; } int SIP_SERVER::getserverport() { return this->m_port; } void SIP_BASIC::Set_je(eXosip_event_t * je) { if(NULL != je) { this->m_je = je; } } SIP_BASIC::~SIP_BASIC() { } SIP_SERVER::~SIP_SERVER() { /* 释放ipc 设备资源 */ while(this->m_ipc_num > 0) { delete this->ipc_list[this->m_ipc_num - 1]; this->m_ipc_num--; } eXosip_event_free(this->m_je); } char * SIP_IPC::GetSN() { return this->m_sn; }; char * SIP_IPC::GetUsr() { return this->m_usr; }; char * SIP_IPC::GetPwd() { return this->m_pwd; }; /*去掉字符串前后双引号*/ void SIP_BASIC::Remove_c(char * str) { char remove='"'; if (!str) { return; } int len = (int)strlen(str); if (len>256||len<2) { return; } if( str[len-1]==remove) { str[strlen(str)-1]='\0'; len = (int)strlen(str); if (len<1) { return; } } if (str[0]==remove) { for (int i=0;i<len-1;i++) { str[i]=str[i+1]; } str[len-1]='\0'; } } /*回复设备远程启动查询*/ void SIP_IPC::SetUsr(char* usr) { if(usr) { //printf("\n len is %d and is %s \n", strlen(usr), usr); memcpy(m_usr, usr, strlen(usr)); } else { } } /*回复设备远程启动查询*/ void SIP_IPC::SetPwd(char* pwd) { if(pwd) { memcpy(this->m_pwd, pwd, strlen(pwd)); } else { printf("\n pwd input param is null \n"); } } /* 设置sn */ void SIP_IPC::SetSn(char* Sn) { if(Sn) { memcpy(m_sn, Sn, strlen(Sn)); } else { printf("\n Sn input param is null \n"); } } /*回复设备远程启动查询*/ void SIP_SERVER::PushDeviceCatalog(char* rsp_xml_body) { printf("**************DEVICE CATALOG PUSH BEGIN***************\r\n"); snprintf(rsp_xml_body,4096,"<?xml version=\"1.0\"?>\n" "<Notify>\r\n" "<CmdType>Catalog</CmdType>\r\n" "<SN>12345</SN>\r\n" "<DeviceID>32010000562000800001</DeviceID>\r\n" "<SumNum>1</SumNum>\r\n" "<DeviceList Num=\"1\">\r\n" "<Item>\r\n" "<DeviceID>32010000561310800001</DeviceID>\r\n" "<Name>Camera 16</Name>\r\n" "<Manufacturer>hik</Manufacturer>\r\n" "<CatalogType>1</CatalogType>\r\n" "<DecorderTag>hikvision-v3</DecorderTag>\r\n" "<RecLocation>2</RecLocation>\r\n" "<OperateType>ADD</OperateType>\r\n" "<Model>hik</Model>\r\n" "<Owner>hik</Owner>\r\n" "<CivilCode>32010000562000800001</CivilCode>\r\n" "<Block>1</Block>\r\n" "<Address>1</Address>\r\n" "<Parental>0</Parental>\r\n" "<ParentID>32010000562000800001</ParentID>\r\n" "<RegisterWay>1</RegisterWay>\r\n" "<CertNum>1</CertNum>\r\n" "<Certifiable>1</Certifiable>\r\n" "<ErrCode>400</ErrCode>\r\n" "<EndTime>2011-12-12T12:00:00</EndTime>\r\n" "<Secrecy>0</Secrecy>\r\n" "<Status>ON</Status>\r\n" "<IPAddress>127.0.0.1</IPAddress>\r\n" "<Port>8000</Port>\r\n" "<Password>12345</Password>\r\n" "<Longitude>0</Longitude>\r\n" "<Latitude>0</Latitude>\r\n" "<Info>\r\n" "<CameraType>1</CameraType>\r\n" "</Info>\r\n" "<Privilege>%03%03%00</Privilege>\r\n" "</Item>\r\n" "</DeviceList>\r\n" "</Notify>\r\n"); //this->ipc_list[0]->GetSN(), this->ipc_list[0]->GetUsr()); } void SIP_SERVER::ResponseDeviceBoot(char* rsp_xml_body) { printf("**********DEVICE STATUS BEGIN**********\r\n"); snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\"?>\r\n" "<Response>\r\n" "<CmdType>DeviceStatus</CmdType>\r\n" "<SN>%s</SN>\r\n" "<DeviceID>%s</DeviceID>\r\n" "<Result>OK</Result>\r\n" "</Response>\r\n", this->ipc_list[0]->GetSN() , this->ipc_list[0]->GetUsr()); } /*回复设备状态查询*/ void SIP_SERVER::ResponseDeviceStatus(char* rsp_xml_body) { printf("**********DEVICE STATUS BEGIN**********\r\n"); time_t rawtime; struct tm* timeinfo; time(&rawtime); timeinfo = localtime(&rawtime); char curtime[72] = {0}; sprintf(curtime, "%d-%d-%dT%02d:%02d:%02d", (timeinfo->tm_year + 1900), (timeinfo->tm_mon + 1), timeinfo->tm_mday, timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec); snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\"?>\r\n" "<Response>\r\n" "<CmdType>DeviceStatus</CmdType>\r\n" "<SN>%s</SN>\r\n" "<DeviceID>%s</DeviceID>\r\n" "<Result>OK</Result>\r\n" "<Online>ONLINE</Online>\r\n" "<Status>OK</Status>\r\n" "<DeviceTime>%s</DeviceTime>\r\n" "<Alarmstatus Num=\"0\">\r\n" "</Alarmstatus>\r\n" "<Encode>ON</Encode>\r\n" "<Record>OFF</Record>\r\n" "</Response>\r\n", this->ipc_list[0]->GetSN(), this->ipc_list[0]->GetUsr(), curtime); } /*回复设备目录查询*/ void SIP_SERVER::ResponseCatalog(char* rsp_xml_body) { printf("**********CATALOG BEGIN**********\r\n"); snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\"?>\r\n" "<Response>\r\n" "<CmdType>Catalog</CmdType>\r\n" "<SN>1</SN>\r\n" "<DeviceID>32010000001120000001</DeviceID>\r\n" "<SumNum>1</SumNum>\r\n" "<DeviceList Num=\"1\">\r\n" "<Item>\r\n" "<DeviceID>32010000001320000001</DeviceID>\r\n" "<Name>simulate client</Name>\r\n" "<Manufacturer>HighWayBit</Manufacturer>\r\n" "<Model>28181</Model>\r\n" "<Owner>Owner</Owner>\r\n" "<CivilCode>CivilCode</CivilCode>\r\n" "<Address>Address</Address>\r\n" "<Parental>0</Parental>\r\n" "<ParentID>32010000001120000001</ParentID>\r\n" "<SafetyWay>0</SafetyWay>\r\n" "<RegisterWay>1</RegisterWay>\r\n" "<Secrecy>0</Secrecy>\r\n" "<Status>ON</Status>\r\n" "</Item>\r\n" "</DeviceList>\r\n" "</Response>\r\n" /*this->ipc_list[0]->GetSN()/*, this->ipc_list[0]->GetUsr(), this->ipc_list[0]->GetUsr()*/); } /*响应180Ringing*/ void SIP_BASIC::Answer180( ) { eXosip_lock (); eXosip_call_send_answer (this->m_je->tid, 180, NULL); eXosip_unlock (); } /*回应200 OK*/ void SIP_BASIC::Answer200() { osip_message_t *answer = NULL; eXosip_lock (); eXosip_message_build_answer (this->m_je->tid, 200, &answer); eXosip_message_send_answer (this->m_je->tid, 200, answer); eXosip_unlock (); //printf("********** ANSWER 200 OK **********\n"); } /*处理Register*/ int SIP_SERVER::ProcessRegister() { osip_message_t* asw_register= NULL; //Define authentication variables char WWW_Authenticate[512]={0}; #if 1 char *pszAlg = "md5"; char *pszUserName = ""; char *pszPassword = ""; char *pszRealm = "10.0.0.4"; char *pszMethod = "REGISTER"; char *pszDigestUri = ""; char *pszCNonce = ""; char *pszNonceCount = ""; char *pszQop = ""; int Aka = 0; HASHHEX SessionKey = ""; HASHHEX HEntity = ""; HASHHEX Response; char * response_h=""; #else char *pszAlg = NULL; char *pszUserName =NULL; char *pszPassword = NULL; char *pszRealm = NULL; const char *pszMethod = "REGISTER"; char *pszDigestUri =NULL; char *pszCNonce = NULL; char *pszNonceCount = NULL; char *pszQop = NULL; int Aka = 0; HASHHEX SessionKey = NULL; HASHHEX HEntity = ""; HASHHEX Response; char * response_h=""; #endif //Get Authentication Info from last response osip_authorization_t *AuthHeader; osip_message_get_authorization(this->m_je->request,0,&AuthHeader); /* 第一次的认证返回信息 */ if (!AuthHeader) //Question { printf("\n this m_Nonce is %s \n", m_Nonce); sprintf(WWW_Authenticate, "Digest realm=\"10.0.0.4\",algorithm=MD5,nonce=\"%s\"", m_Nonce); eXosip_lock (); eXosip_default_action(this->m_je); eXosip_message_build_answer (this->m_je->tid, 401, &asw_register); osip_message_set_header(asw_register,"WWW-Authenticate",WWW_Authenticate); eXosip_message_send_answer (this->m_je->tid, 401, asw_register); eXosip_unlock (); } else //Test and Verify { pszPassword = "12345678"; pszRealm = "10.0.0.4"; pszAlg = AuthHeader->algorithm==NULL?NULL:AuthHeader->algorithm; pszUserName = AuthHeader->username==NULL?NULL:AuthHeader->username; pszDigestUri = AuthHeader->uri==NULL?NULL:AuthHeader->uri; pszNonceCount=AuthHeader->nonce_count==NULL?NULL:AuthHeader->nonce_count; pszQop = AuthHeader->opaque==NULL?NULL:AuthHeader->opaque; response_h = AuthHeader->response==NULL?NULL:AuthHeader->response; //Remove the double quotation marks at the first&last place this->Remove_c(pszAlg); this->Remove_c(pszUserName); this->Remove_c(pszDigestUri); this->Remove_c(pszQop); this->Remove_c(pszNonceCount); this->Remove_c(response_h); /* 加密关键字信息 */ //printf("\n pszPassword is %s \n pszUserName is %s \n m_Nonce %s \n pszCNonce \n", pszPassword, pszUserName, this->m_Nonce); DigestCalcHA1(pszAlg, pszUserName, pszRealm, pszPassword, m_Nonce, pszCNonce, SessionKey); DigestCalcResponse(SessionKey, m_Nonce, pszNonceCount, pszCNonce, pszQop, Aka, pszMethod,pszDigestUri, HEntity, Response); if (!strcmp(Response, response_h)) { printf("\n Authentication Ok !!! \n"); /* 获取注册的保活有效期 */ osip_header_t* header = NULL; int expires = 0; osip_message_header_get_byname(this->m_je->request, "expires", 0, &header); if (NULL != header && NULL != header->hvalue) { printf("this expires is %d \n\n", atoi(header->hvalue)); expires = atoi(header->hvalue); } else { expires = DEFAULT_KEEP_ALIVE; } /* 需要先提取请求的数据 */ osip_contact_t * p_contact = NULL; osip_message_get_contact(this->m_je->request, 0, &p_contact); eXosip_lock (); //eXosip_default_action(this->m_je); eXosip_message_build_answer (this->m_je->tid, 200, &asw_register); eXosip_message_send_answer (this->m_je->tid, 200, asw_register); int index = this->Is_device_Register(pszUserName); int index_ipc_svr = 0; /* 设备如果没有注册的情况下 需要注册 */ if(-1 == index) { //SIP_IPC ipc; if(this->m_ipc_num >= MAX_IPC_NUM) { this->m_ipc_num -= MAX_IPC_NUM; } /* 需要重复覆盖时,需要注意将原有的对象释放掉 */ if(this->ipc_list[this->m_ipc_num-1]) { printf("gy666"); //this->ipc_list[this->m_ipc_num] = NULL; delete this->ipc_list[this->m_ipc_num-1]; //delete ipc_list[this->m_ipc_num]; //this->ipc_list[this->m_ipc_num] = NULL; } this->ipc_list[this->m_ipc_num] = new SIP_IPC; /* 将一些关键的子变量赋值到类上 */ /* 用户名 */ this->ipc_list[this->m_ipc_num]->SetUsr(pszUserName); /* 端口配置 */ //this->ipc_list[this->m_ipc_num]->m_videoport = VIDEOPORT; this->ipc_list[this->m_ipc_num]->SetVideoPort(g_video_port++); /* 密码 */ this->ipc_list[this->m_ipc_num]->SetPwd(pszPassword); /* 设置注册设备默认值 */ this->ipc_list[this->m_ipc_num]->SetExpire(expires); /* 更新心跳信息 */ this->ipc_list[this->m_ipc_num]->UpdateKeepAlive(); /* 先记录再加1 操作 */ index_ipc_svr = this->m_ipc_num; this->m_ipc_num++; } else { /* 已经注册的情况下不再增加设备 更新其他信息 密码 video 端口 以及expire */ //this->ipc_list[this->m_ipc_num]->m_videoport = VIDEOPORT; //this->ipc_list[this->m_ipc_num]->SetVideoPort(VIDEOPORT); this->ipc_list[index]->SetVideoPort(g_video_port++); /* 密码 */ this->ipc_list[index]->SetPwd(pszPassword); /* 设置注册设备默认值 */ this->ipc_list[index]->SetExpire(expires); /* 更新心跳信息 */ this->ipc_list[index]->UpdateKeepAlive(); /* 记录需要更新的ipc svr的 index */ index_ipc_svr = index; } if (NULL != p_contact) { printf("thi p_contact is not null \n\n"); /* 设置端口 */ this->ipc_list[index_ipc_svr]->SetSipPort(atoi(p_contact->url->port)); /* 设置IP */ this->ipc_list[index_ipc_svr]->SetIp(p_contact->url->host); /* 最后一步更新组建Remote Sip SVR */ this->ipc_list[index_ipc_svr]->BuildRemoteSipSvr(); } else { } eXosip_unlock (); } //Then store the UserID and show it. Use it for redirect or find route. } // Extract the "expires" , 0 means logout, >0 should be stored and monitor time. return SIPSUCCESS; } /*处理Invite*/ int SIP_SERVER::ProcessInvite() { osip_message_t* asw_invite= NULL;/*请求的确认型应答*/ char sdp_body[4096] = {0}; eXosip_lock(); if(0 != eXosip_call_build_answer(this->m_je->tid, 200, &asw_invite))/*Build default Answer for request*/ { eXosip_call_send_answer(this->m_je->tid, 603, NULL); eXosip_unlock(); printf("eXosip_call_build_answer error!\r\n"); return SIPERROR; } eXosip_unlock(); snprintf(sdp_body, 4096, "v=0\r\n"/*协议版本*/ "o=32032200001120000001 0 0 IN IP4 221.226.150.236\r\n"/*会话源*//*用户名/会话ID/版本/网络类型/地址类型/地址*/ "s=Embedded IPC\r\n"/*会话名*/ "c=IN IP4 221.226.150.236\r\n"/*连接信息*//*网络类型/地址信息/多点会议的地址*/ "t=0 0\r\n"/*时间*//*开始时间/结束时间*/ "m=video %d RTP/AVP 96\r\n"/*媒体/端口/传送层协议/格式列表*/ "a=sendonly\r\n"/*收发模式*/ "a=rtpmap:96 PS/90000\r\n"/*净荷类型/编码名/时钟速率*/ "a=username:32032200001120000001\r\n" "a=password:12345678\r\n" "y=100000001\r\n" "f=\r\n", 15060); eXosip_lock(); osip_message_set_body(asw_invite, sdp_body, strlen(sdp_body)); osip_message_set_content_type(asw_invite, "application/sdp"); eXosip_call_send_answer(this->m_je->tid, 200, asw_invite); printf("eXosip_call_send_answer success!\r\n"); eXosip_unlock(); if(Get_Ipc_Num() > 0) { Call_Build_Initial_Invite(0, "202.102.101.161", 20008); } return SIPSUCCESS; } void SIP_SERVER::SendKeepAlive() { printf("send heartbeat1\n"); char req_xml_body[4096] = {0}; osip_message_t* heart_msg = NULL; memset(req_xml_body, 0, sizeof(req_xml_body)); snprintf(req_xml_body, 4096, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<Notify>\r\n" "<CmdType>Keepalive</CmdType>\r\n" "<SN>4</SN>\r\n" "<DeviceID>654321</DeviceID>\r\n" "<Status>OK</Status>\r\n" "</Notify>\r\n"); eXosip_message_build_request(&heart_msg, "MESSAGE", HKREMOTESIP, LOCALSIP, NULL); osip_message_set_body(heart_msg, req_xml_body, strlen(req_xml_body)); osip_message_set_content_type(heart_msg, "Application/MANSCDP+xml"); eXosip_message_send_request(heart_msg); } void SIP_SERVER::ProcessKeepAlive() { eXosip_event_t * je; osip_message_t *reg = NULL; int register_id ;//= RegisterAction(reg); while(1) { je = eXosip_event_wait(0, 50); eXosip_lock(); eXosip_automatic_action (); //部分non-200消息自动重发,SIP会话中Retry很常见 eXosip_automatic_refresh();/*Refresh REGISTER and SUBSCRIBE before the expiration delay*/ eXosip_unlock(); if(NULL == je) { continue; } else { /* 增加赋值操作 */ //printf("je is not null \n\n"); this->Set_je(je); if (EXOSIP_CALL_INVITE == je->type) { if(MSG_IS_INVITE(je->request)) { //osip_body_t* invie_req_body = NULL; invie_req_body = NULL; osip_message_get_body(je->request, 0, &invie_req_body); this->PrintMsg(REQUEST); this->ProcessInvite(); } } else if(EXOSIP_REGISTRATION_FAILURE == je->type) { printf("<EXOSIP_REGISTRATION_FAILURE>\r\n"); PrintMsg(RESPONSE); if((NULL != je->response)&&(401 == je->response->status_code)) RegisterWithAuthentication(reg, je); else { printf("EXOSIP_REGISTRATION_FAILURE ERROR!\r\n"); } } else if(EXOSIP_REGISTRATION_SUCCESS == je->type) { printf("<EXOSIP_REGISTRATION_SUCCESS>\r\n"); PrintMsg(RESPONSE); register_id = je->rid; printf("register_id=%d\n", register_id); } else if(EXOSIP_IN_SUBSCRIPTION_NEW == je->type) { if(MSG_IS_SUBSCRIBE(je->request)) { printf("MSG_IS_SUBSCRIBE\n"); osip_message_t* subscribe = NULL; int i=eXosip_insubscription_build_answer (this->m_je->tid, 200, &subscribe); int a=eXosip_insubscription_send_answer (this->m_je->tid, 200, subscribe); } } else if (EXOSIP_MESSAGE_NEW == je->type) { if (MSG_IS_REGISTER(je->request)) { printf("ProcessRegister"); this->ProcessRegister(); } /*else if(MSG_IS_SUBSCRIBE(je->request)) { printf("MSG_IS_SUBSCRIBE\n"); this->Answer200(); }*/ else if(MSG_IS_NOTIFY(je->request)) { printf("MSG_IS_NOTIFY\n"); this->Answer200(); } else if(MSG_IS_MESSAGE(je->request)) { osip_body_t* req_body = NULL; osip_message_get_body(je->request, 0, &req_body); char CmdType[99] = {0}, TeleBoot[99] = {0}, rsp_xml_body[4096] = {0}; char Sn[100] = {0}; char DeviceID[100] = {0}; this->get_str(req_body->body, "<CmdType>", false, "</CmdType>", false, CmdType); this->get_str(req_body->body, "<SN>", false, "</SN>", false, Sn); this->get_str(req_body->body, "<DeviceID>", false, "</DeviceID>", false, DeviceID); //printf("The three elements : CmdType~%s, SN~%s,DeviceID~%s\n", CmdType, Sn, DeviceID); /* 已经注册的信息才返回,否则不返回 */ if(1/*this->Is_device_Register(DeviceID) != -1*/) { this->Answer200(); this->UpdateKeepAliveByDeviceID(DeviceID); if(strcmp(CmdType, "DeviceInfo") == 0) { this->ResponseDeviceInfo(rsp_xml_body); } else if (strcmp(CmdType, "Catalog") == 0) { printf("\n ###### receive message is Catalog \n"); this->ResponseCatalog(rsp_xml_body); } else if (strcmp(CmdType, "DeviceStatus") == 0) { this->ResponseDeviceStatus(rsp_xml_body); } else if (strcmp(CmdType, "DeviceControl") == 0) { this->get_str(req_body->body, "<TeleBoot>", false, "</TeleBoot>", false, TeleBoot); if ((*TeleBoot != NULL) && (strcmp(TeleBoot, "Boot") == 0)) { this->ResponseDeviceBoot(rsp_xml_body); } } else if (strcmp(CmdType, "Keepalive") == 0) { } else { printf("\n 3###### receive message is %s \n", CmdType); } //Function Calls below would not happened in case of PTZ or FI messages. Just extract the commands contained and move IPCs. osip_message_t* rsp_msg = NULL; eXosip_message_build_request(&rsp_msg, "MESSAGE", HKREMOTESIP, LOCALSIP, NULL); osip_message_set_body(rsp_msg, rsp_xml_body, strlen(rsp_xml_body)); osip_message_set_content_type(rsp_msg, "Application/MANSCDP+xml"); eXosip_message_send_request(rsp_msg); //printf(" eXosip_message_send_request success! \r\n"); } else { //printf(" @@@@@@@@@@@@@@@@ device not register ! @@@@@@@@@@@@@@@ \r\n"); } } } else if (EXOSIP_CALL_ACK == je->type) { this->PrintMsg(REQUEST); printf("<EXOSIP_CALL_ACK>\r\n"); } else if (EXOSIP_CALL_CLOSED == je->type) { this->PrintMsg(REQUEST); printf("<EXOSIP_CALL_CLOSED>\r\n"); } else if((EXOSIP_CALL_ANSWERED == je->type) || (EXOSIP_MESSAGE_ANSWERED == je->type) ) { printf("\n\n\n 22222222222222 text info is %s 22222222222222222 \n", je->textinfo); osip_message_t* ack; eXosip_call_build_ack(je->did, &ack); eXosip_call_send_ack(je->did, ack); } else { //printf("\n\n\ other @@@@@ text inf is %s \n",je->textinfo); } } } } void SIP_SERVER::ProcessRTPDataToPS(int * p_port) { int sock; if(NULL == p_port) { printf("p_port is null!"); return ; } if((sock = socket(AF_INET, SOCK_DGRAM, 0))<0) { printf("create socket error!"); return ; } printf("socket sock=%d port is %d\n",sock, *p_port); struct sockaddr_in addr; memset(&addr, 0, sizeof(addr)); //bzero(&addr,sizeof(addr)); addr.sin_family=AF_INET; addr.sin_port=htons(*p_port); addr.sin_addr.s_addr=htonl(INADDR_ANY); int r = -1; int fd = sock; r=bind(fd,(struct sockaddr*)&addr,sizeof(addr)); if(r==-1) { printf("Bind error!\n"); close(fd); exit(-1); } printf("Bind successfully.\n"); char buf[MAX_LEN]; struct sockaddr_in from; socklen_t len; len=sizeof(from); //int m_flag = 0; //char while(1) { //printf("准备接受数据··\n"); memset(buf, 0, sizeof(buf)); r=recvfrom(fd, buf, sizeof(buf), 0, (struct sockaddr*)&from, &len);//成功则返回接收到的字符数,失败返回-1. if(r<0) { continue; } printf("\n port is %d \n", *p_port); OnRecVideoDataCallback(buf, r, sizeof(buf)); } close(fd); } void * Call_Build_Initial_Invite(void * data) { if(NULL == data) { printf("\n data is null \n"); } else { //SIP_SERVER * sip_svr = (SIP_SERVER *)data; s_thread_param * p_thread_param= (s_thread_param *)data; SIP_SERVER * sip_svr = p_thread_param->sip_svr; int index = p_thread_param->index; (void)sip_svr->Call_Build_Initial_Invite(index,"172.28.106.129",8402); } } void * ProcessRTPDataToPS(void * data) { if(NULL == data) { printf("\n data is null \n"); } else { //SIP_SERVER * sip_svr = (SIP_SERVER *)data; s_thread_param * p_thread_param= (s_thread_param *)data; SIP_SERVER * sip_svr = p_thread_param->sip_svr; if(NULL != sip_svr) { int num = sip_svr->Get_Ipc_Num(); int port = 0; if(0 == num) { port = VIDEOPORT; } else { port = sip_svr->GetIpcVideoPortByIndex(g_thread_index++); if(g_thread_index >= sip_svr->Get_Ipc_Num()) { g_thread_index = 0; } } sip_svr->ProcessRTPDataToPS(&port); } } while(1) { sleep(10); } } /*eXoisp初始化*/ int SIP_SERVER::eXosipInitialize() { TRACE_INITIALIZE (6, stdout); //initialize log file int i=0; i=eXosip_init(); if(i!=0) { printf("Couldn't initialize eXosip!\n"); return SIPERROR; } else { printf("eXosip_init successfully!\n"); } i=eXosip_listen_addr(IPPROTO_UDP, NULL, this->m_port, AF_INET,0); //initialize transport layer if(i!=0) { eXosip_quit(); fprintf(stderr,"Couldn't initialize transport layer!\n"); return SIPERROR; } return SIPSUCCESS; } /*eXoisp初始化*/ int SIP_SERVER::Init_Server() { int ret = -1; ret = this->eXosipInitialize(); if(SIPSUCCESS != ret) { printf("\n ret is %d \n", ret); return ret; } else { printf("\n eXosipInitialize sucess \n"); } return ret; } /*打印Sip消息*/ int SIP_BASIC::PrintMsg(int ch) { char *dest=NULL; size_t length=0; int i=0; if (ch == 1) { i = osip_message_to_str(this->m_je->request, &dest, &length); } else if(ch == 0) { i = osip_message_to_str(this->m_je->response, &dest, &length); } if (i!=0) { printf("cannot get printable message\n"); return SIPERROR; } printf("/****************New Sip Message****************/\n"); if(dest) { printf("%s\n", dest); } printf("/****************Sip Message End****************/\n"); osip_free(dest); return SIPSUCCESS; } /*获取中间某字符串*/ int SIP_BASIC::get_str( const char* data, const char* s_mark, bool with_s_make, const char* e_mark, bool with_e_make, char* dest ) { const char* satrt = strstr( data, s_mark ); if( satrt != NULL ) { const char* end = strstr( satrt, e_mark ); if( end != NULL ) { int s_pos = with_s_make ? 0 : strlen(s_mark); int e_pos = with_e_make ? strlen(e_mark) : 0; strncpy( dest, satrt+s_pos, (end+e_pos) - (satrt+s_pos) ); } return 0; } return -1; } /*回复设备信息查询*/ void SIP_SERVER::ResponseDeviceInfo(char* rsp_xml_body) { printf("**********DEVICE INFO BEGIN**********\r\n"); /*设备信息查询*/ snprintf(rsp_xml_body, 4096, "<?xml version=\"1.0\"?>\r\n" "<Response>\r\n" "<CmdType>DeviceInfo</CmdType>\r\n"/*命令类型*/ "<SN>%s</SN>\r\n"/*命令序列号*/ "<DeviceID>%s</DeviceID>\r\n"/*目标设备/区域/系统的编码*/ "<Result>OK</Result>\r\n"/*查询结果*/ "<DeviceType>simulate client</DeviceType>\r\n" "<Manufacturer>HighWayBit</Manufacturer>\r\n"/*设备生产商*/ "<Model>28181</Model>\r\n"/*设备型号*/ "<Firmware>fireware</Firmware>\r\n"/*设备固件版本*/ "<MaxCamera>1</MaxCamera>\r\n" "<MaxAlarm>0</MaxAlarm>\r\n" "</Response>\r\n", this->ipc_list[0]->GetSN(), this->ipc_list[0]->GetUsr()); } /*回复设备信息查询*/ void SIP_SERVER::GenerateRadom() { //char* random = (char*)calloc(8, sizeof(char)); char nonce[16] = {0}; char * random = new char[8]; if(NULL == random ) { printf("\n random is null \n"); return; } memset(nonce, 0, sizeof(nonce)); /* 调用函数生成随机数 */ eXosip_generate_random(random, sizeof(char)*8); memset(m_Nonce, 0, sizeof(m_Nonce)); sprintf(m_Nonce, "%02x%02x%02x%02x%02x%02x%02x%02x", random[0], random[1], random[2], random[3],random[4],random[5] ,random[6] ,random[7]); /* 删除new生成的对象 */ delete random; return; } /*回复设备信息查询*/ char * SIP_SERVER::GetNonce() { return this->m_Nonce; } int main (int argc, char *argv[]) { /*Redis *r = new Redis(); if(!r->connect("127.0.0.1", 6379)) { printf("connect error!\n"); return 0; } else { printf("connect success!\n"); }*/ SIP_SERVER sip_svr; sip_svr.Init_Server(); pthread_t ntid; if (pthread_create(&ntid, NULL, ThreadKeepAlive, (void*)&sip_svr)) { printf("error:CreateThread failed!\n"); return -1; } /* 对应的线程起来 */ if (pthread_create(&ntid, NULL, ThreadManageDevice, (void*)&sip_svr)) { printf("error:CreateThread failed!\n"); return -1; } /*while(sip_svr.Get_Ipc_Num() <= 0) { printf("\n no device register!! \n"); sleep(3); }*/ int flag=1; char command ; int loop = 0; char req_xml_body[4096] = {0}; s_thread_param thread_param; for(loop = 0; loop < sip_svr.Get_Ipc_Num(); loop++) { thread_param.index = loop; thread_param.sip_svr = &sip_svr; if (pthread_create(&ntid, NULL, ProcessRTPDataToPS, (void*)&thread_param)) { printf("error:CreateThread failed!\n"); return -1; } } while(flag) { /*char req_xml_body[4096] = {0}; printf("send heartbeat1\n"); osip_message_t* heart_msg = NULL; memset(req_xml_body, 0, sizeof(req_xml_body)); snprintf(req_xml_body, 4096, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<Notify>\r\n" "<CmdType>Keepalive</CmdType>\r\n" "<SN>4</SN>\r\n" "<DeviceID>654321</DeviceID>\r\n" "<Status>OK</Status>\r\n" "</Notify>\r\n"); eXosip_message_build_request(&heart_msg, "MESSAGE", HKREMOTESIP, LOCALSIP, NULL); osip_message_set_body(heart_msg, req_xml_body, strlen(req_xml_body)); osip_message_set_content_type(heart_msg, "Application/MANSCDP+xml"); int qqq=eXosip_message_send_request(heart_msg); printf("%d",qqq); sleep(3);*/ printf("Please input the command:\n"); scanf("%c",&command); getchar(); switch(command) { case 'a': #if 1 printf("\n $$$$$$$$ index @@@@@@@@@@@@@ is %d \n", loop); sip_svr.Call_Build_Initial_Invite(loop,"192.168.75.112",8402); #endif //sip_svr.Call_Build_Initial_Invite(SAMPLE_INDEX); //printf("\n $$$$$$$$ index @@@@@@@@@@@@@ is %d \n", loop); break; case 'b': {printf("catalog start!\n"); sip_svr.Catalog(req_xml_body); osip_message_t* pushdevice = NULL; eXosip_message_build_request(&pushdevice, "MESSAGE", REMOTESIP, LOCALSIP, NULL); osip_message_set_body(pushdevice, req_xml_body, strlen(req_xml_body)); osip_message_set_content_type(pushdevice, "Application/MANSCDP+xml"); eXosip_message_send_request(pushdevice);} break; case 'c': {printf("push video query start!\n"); sip_svr.VideoFileQuery(req_xml_body); osip_message_t* pushdevice = NULL; eXosip_message_build_request(&pushdevice, "MESSAGE", REMOTESIP, LOCALSIP, NULL); osip_message_set_body(pushdevice, req_xml_body, strlen(req_xml_body)); osip_message_set_content_type(pushdevice, "Application/MANSCDP+xml"); eXosip_message_send_request(pushdevice);} break; case 'd': printf("Hang Up!\n"); eXosip_lock(); eXosip_call_terminate(sip_svr.m_je->cid, sip_svr.m_je->did); eXosip_unlock(); break; case 'e': { printf("push device Catalog start!\n"); sip_svr.PushDeviceCatalog(req_xml_body); osip_message_t* pushdevice = NULL; eXosip_message_build_request(&pushdevice, "NOTIFY", REMOTESIP, LOCALSIP, NULL); osip_message_set_body(pushdevice, req_xml_body, strlen(req_xml_body)); osip_message_set_content_type(pushdevice, "Application/MANSCDP+xml"); eXosip_message_send_request(pushdevice); } break; case 'f': eXosip_quit(); printf("Exit the setup!\n"); flag=0; break; case 'g': printf("\n\n num of device is %d\n\n", sip_svr.Get_Ipc_Num()); break; } } while(1) { printf("\n should not in this case \n"); sleep(3); } return 0; }
8f55530f620a9d72914932a99b5587f769dad2de
dabdaddf32562f0e1cbfd704667360fd4a85ab24
/valkopat/src/Game/Point.h
558e465f6ea294167888739d9e9b0209f1bc7a55
[ "MIT" ]
permissive
PatrikValkovic/NibblesSemestralWork
539505b1fd515a6c34c63ac8dbb10c4f50e37a0e
b50800b30fed969e7b2063274201d5af5dfa7a8c
refs/heads/master
2020-07-15T08:13:46.282835
2016-06-07T15:23:34
2016-06-07T15:23:34
55,541,925
0
1
null
2016-06-08T11:25:26
2016-04-05T20:08:45
C++
UTF-8
C++
false
false
1,461
h
Point.h
#ifndef CERVISEMESTRALKA_POINT_H #define CERVISEMESTRALKA_POINT_H namespace Game { /** * Class represent Point in 2D space */ class Point { /** * X Coordinate */ int PositionX = 0; /** * Y Coordinate */ int PositionY = 0; public: /** * @return X Coordinate of point */ int GetPositionX() const; /** * @return Y Coordinate of Point */ int GetPositionY() const; /** * Set X Coordinate of point * @param X X coordinate to set */ void SetPositionX(int X); /** * Set Y Coordinate of point * @param Y Y coordinate to set */ void SetPositionY(int Y); /** * Create new isntance of Point with default coordinates [0,0] * @return New instance of Point */ Point(); /** * Create new instance of Point with coordinates [X,Y] * @param X X coordiante * @param Y Y Coordinate * @return New instance of Point */ Point(int X, int Y); /** * Equal operator that check, if points are equal * @param Second Sec Point to cmopare * @return True if have same coordinates, false otherwise */ bool operator ==(const Point& Second) const; }; } #endif //CERVISEMESTRALKA_POINT_H
b774a3b59fadddf32706782e04e06b9971991126
206bc173b663425bea338b7eb7bc8efc094167b5
/atcoder/abc/30/c.cpp
0f10966408edc6690fb58f3c64ead6090d0c6e32
[]
no_license
rika77/competitive_programming
ac6e7664fe95249a3623c814e6a0c363c5af5f33
a0f860c801e9197bcdd6b029ca3e46e73dfc4253
refs/heads/master
2022-03-01T09:03:01.056933
2019-11-07T01:45:28
2019-11-07T01:45:28
122,687,377
0
0
null
null
null
null
UTF-8
C++
false
false
885
cpp
c.cpp
#include<iostream> #include<cstdio> #include<string> #include<algorithm> #include<vector> #include<cmath> #include<map> #include<bitset> #include<queue> #include<set> using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define rep(i,n) FOR(i,0,n) #define MAX 100000 typedef long long ll; int main(){ int n,m,x,y; cin >> n>>m>>x>>y; int a[MAX]={},b[MAX]={}; rep(i,n) cin >> a[i]; rep(i,m) cin >> b[i]; int cnt=0; ll sua,sub; int next_a=1,next_b=0; sub = a[0]+x; bool end = false; while(1){ FOR(i,next_b,m){ if(b[i]>=sub){ next_b = i+1; sua = b[i]+y; // cout << "b_i"<<i << endl; // cout << "cnt" << cnt << endl; cnt++; break; } if(i==m-1){ end = true; } } if (end) break; FOR(i,next_a,n){ if(i==n-1) end = true; if(a[i]>=sua){ next_a = i+1; sub = a[i]+x; // cout << "a_i"<<i << endl; break; } } } cout << cnt << endl; return 0; }
1f73197f12af83290688d81c399cd290b3d05d8a
883887c3c84bd3ac4a11ac76414129137a1b643b
/Cscl3DWS/rmml/3D/mlRMMLMaterial.h
42b02587b094a4e3b5c31519dc32adbfe91a2c38
[]
no_license
15831944/vAcademia
4dbb36d9d772041e2716506602a602d516e77c1f
447f9a93defb493ab3b6f6c83cbceb623a770c5c
refs/heads/master
2022-03-01T05:28:24.639195
2016-08-18T12:32:22
2016-08-18T12:32:22
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
2,110
h
mlRMMLMaterial.h
#if _MSC_VER > 1000 #pragma once #endif #ifndef _mlRMMLMaterial_H_ #define _mlRMMLMaterial_H_ #include "mlColorJSO.h" namespace rmml { /** * Класс материала для объектов 3D-сцен RMML */ class mlMaterialMaps; class mlRMMLMaterial : public mlRMMLElement, public mlJSClass, public mlRMMLLoadable, public mlIColorCL, public mlIMaterial { mlColor diffuse; JSObject* mjsoDiffuse; mlColor ambient; JSObject* mjsoAmbient; mlColor specular; JSObject* mjsoSpecular; mlColor emissive; JSObject* mjsoEmissive; double power; unsigned char opacity; mlMaterialMaps* maps; public: mlRMMLMaterial(void); void destroy() { MP_DELETE_THIS } ~mlRMMLMaterial(void); MLJSCLASS_DECL private: enum { JSPROP_diffuse = 1, JSPROP_ambient, JSPROP_specular, JSPROP_emissive, JSPROP_power, JSPROP_opacity, JSPROP_maps }; public: void GetProps(moIMaterial* apMat); mlRMMLMap* GetMapElem(const wchar_t* apwcIndex, bool abCreate = true); void NotifyChangeListeners(); void CreateColorJSO(JSObject* &aJso, mlColor* apColor); mlString GetMapName(mlRMMLMap* apMap); // реализация mlRMMLElement MLRMMLELEMENT_IMPL mlresult CreateMedia(omsContext* amcx); mlresult Load(); mlRMMLElement* Duplicate(mlRMMLElement* apNewParent); // реализация mlILoadable MLILOADABLE_IMPL // реализация mlIColorCL public: void ColorChanged(mlColor* apColor){ NotifyChangeListeners(); } // реализация mlIMaterial public: mlIMaterial* GetIMaterial(){ return this; } mlColor GetDiffuse(){ return diffuse; } mlColor GetAmbient(){ return ambient; } mlColor GetSpecular(){ return specular; } double GetPower(){ return power; } mlColor GetEmissive(){ return emissive; } unsigned char GetOpacity(){ return opacity; } // mlMedia* GetMap(const wchar_t* apwcIndex); }; class mlMaterialMaps: public mlJSClass { friend class mlRMMLMaterial; mlRMMLMaterial* mpMaterial; public: mlMaterialMaps(void); void destroy() { MP_DELETE_THIS; } ~mlMaterialMaps(void); MLJSCLASS_DECL2(mlMaterialMaps) private: }; } #endif
006ea8710be8d88975d8a66a0607529d7858807b
ef0e1123d212a169ed9e0a72634e9f2e2050eee6
/GraphicLibrary/Component_Movement.cpp
d64571f574d75178fb06854d23caba03da423079
[]
no_license
seanseankim/CS200ClassProject
0d2487fe5fc795678c25d28886fc5000a89adf6a
b6a3ebd7a81889bf0ce7ebd9fd4b4d0331ff5a63
refs/heads/master
2020-09-21T15:40:43.216387
2019-12-08T13:05:33
2019-12-08T13:05:33
224,834,687
0
0
null
null
null
null
UTF-8
C++
false
false
3,105
cpp
Component_Movement.cpp
/* *Jeesoo Kim *Class Project *CS200 *Fall 2019 */ #include "Component_Movement.hpp" #include "Screenshot.hpp" #include "Application.hpp" void Movement::Init(Object* obj) { m_owner = obj; } void Movement::Update(float dt) { dt; if (input.Is_Key_Pressed(GLFW_KEY_W)) { m_owner->GetTransform().AddTranslation({ 0.0f, 2.0f }); if (input.Is_Key_Pressed((GLFW_KEY_D))) { m_owner->GetTransform().AddTranslation({ 2.0f, 0.0f }); } else if (input.Is_Key_Pressed((GLFW_KEY_A))) { m_owner->GetTransform().AddTranslation({ -2.0f, 0.0f }); } m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } else if (input.Is_Key_Pressed(GLFW_KEY_S)) { m_owner->GetTransform().AddTranslation({ 0.0f, -2.0f }); if (input.Is_Key_Pressed((GLFW_KEY_D))) { m_owner->GetTransform().AddTranslation({ 2.0f, 0.0f }); } else if (input.Is_Key_Pressed((GLFW_KEY_A))) { m_owner->GetTransform().AddTranslation({ -2.0f, 0.0f }); } m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } else if (input.Is_Key_Pressed((GLFW_KEY_A))) { m_owner->GetTransform().AddTranslation({ -2.0f, 0.0f }); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } else if (input.Is_Key_Pressed((GLFW_KEY_D))) { m_owner->GetTransform().AddTranslation({ 2.0f, 0.0f }); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } if (input.Is_Key_Pressed(GLFW_KEY_Q)) { float original_rotation = m_owner->GetTransform().GetRotation(); m_owner->GetTransform().SetRotation(++original_rotation); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } if (input.Is_Key_Pressed(GLFW_KEY_E)) { float original_rotation = m_owner->GetTransform().GetRotation(); m_owner->GetTransform().SetRotation(--original_rotation); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } if (input.Is_Key_Pressed(GLFW_KEY_Z)) { float original_scale = m_owner->GetTransform().GetScale().x; original_scale += (0.01f); m_owner->GetTransform().SetScale(original_scale); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } if (input.Is_Key_Pressed(GLFW_KEY_C)) { float original_scale = m_owner->GetTransform().GetScale().x; original_scale -= (0.01f); m_owner->GetTransform().SetScale(original_scale); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } if (input.Is_Key_Pressed(GLFW_KEY_SPACE)) { m_owner->GetTransform().SetRotation(0); m_owner->GetTransform().SetScale(1); m_owner->GetMesh().Get_Is_Moved() = true; m_owner->Set_Need_Update_Points(true); } if (input.Is_Key_Pressed(GLFW_KEY_CAPS_LOCK)) { Application* currentApp = Application::Get_Application(); vector2<float> windowSize; windowSize = currentApp->Get_Window_Size(); auto screenShot = capture_screenshot_of_back_buffer_to_image(static_cast<int>(windowSize.x), static_cast<int>(windowSize.y)); screenShot.SaveToPNG("Screenshot.png"); } }
7f920133d7b6b0d89431b36a1a2395eeb301949f
a43da640fc31090930ae9306cd3e7a3dbc2e8559
/engine/src/engine/graphics/PhysicalRenderable.cpp
edffacbf3aad48f6226dac3338d970da4ed6597a
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
CaptureTheBanana/CaptureTheBanana
e207e54c85dbf315f34fe7af74829257ad759c85
1398bedc80608e502c87b880c5b57d272236f229
refs/heads/master
2020-03-25T03:00:16.419572
2018-08-02T16:16:46
2018-08-02T16:16:46
143,317,798
1
0
null
null
null
null
UTF-8
C++
false
false
6,678
cpp
PhysicalRenderable.cpp
// This file is part of CaptureTheBanana++. // // Copyright (c) 2018 the CaptureTheBanana++ contributors (see CONTRIBUTORS.md) // This file is licensed under the MIT license; see LICENSE file in the root of this // project for details. #include "engine/graphics/PhysicalRenderable.hpp" #include "engine/Window.hpp" #include "engine/core/Game.hpp" #include "engine/util/Vector2d.hpp" namespace ctb { namespace engine { PhysicalRenderable::PhysicalRenderable(SDL_Texture* animations, int animationWidth, int animationHeight, int animationCount, bool dynamic) : TextureBasedRenderable(animations), m_animationCount(animationCount), m_currentAnimationStep(0), m_animationHeight(animationHeight), m_animationWidth(animationWidth), m_animationDuration(0), m_lastTick(0), m_body(nullptr), m_joint(nullptr), m_fixtureDef(nullptr), m_shapeBox(nullptr), m_fixture(nullptr), m_dynamic(dynamic), m_scaleX(1.0f), m_scaleY(1.0f) { m_sourceRect.w = animationWidth; m_sourceRect.h = animationHeight; m_targetRect.w = animationWidth; m_targetRect.h = animationHeight; computeWorldCoordinates(); } PhysicalRenderable::~PhysicalRenderable() { // removes and destroyes the body from the world if (m_fixtureDef) { delete m_fixtureDef; m_fixtureDef = nullptr; } if (m_shapeBox) { delete m_shapeBox; m_shapeBox = nullptr; } } void PhysicalRenderable::nextAnimation() { Uint32 ticks = SDL_GetTicks(); if (m_animationDuration < (ticks - m_lastTick)) { // Set next animation step m_currentAnimationStep++; if (m_currentAnimationStep >= m_animationCount) { m_currentAnimationStep = 0; } m_sourceRect.x = m_currentAnimationStep * m_animationWidth; m_lastTick = ticks; } } void PhysicalRenderable::reset() { m_body->SetLinearVelocity(b2Vec2(0, 0)); } void PhysicalRenderable::setFPS(int frames) { m_animationDuration = static_cast<Uint32>(1000.0 / static_cast<double>(frames)); } void PhysicalRenderable::setWorldPosition(const b2Vec2& position) { m_worldPosition = position; m_body->SetTransform(position, 0); computeScreenCoordinates(); } b2Vec2 PhysicalRenderable::worldPosition() const { return m_worldPosition; } void PhysicalRenderable::setPosition(const Vector2dT& vector) { TextureBasedRenderable::setPosition(vector); computeWorldCoordinates(); } void PhysicalRenderable::createJoint(PhysicalRenderable* other) { b2RevoluteJointDef jointDef; jointDef.bodyA = m_body; jointDef.bodyB = other->getBody(); jointDef.collideConnected = false; jointDef.localAnchorA.Set(0, 2); m_joint = other->m_joint = m_body->GetWorld()->CreateJoint(&jointDef); } void PhysicalRenderable::destroyJoint() { if (m_joint) { auto* j = m_joint; PhysicalRenderable* a = static_cast<PhysicalRenderable*>(j->GetBodyA()->GetUserData()); PhysicalRenderable* b = static_cast<PhysicalRenderable*>(j->GetBodyB()->GetUserData()); a->m_joint = nullptr; b->m_joint = nullptr; // Perform a little jump by the banana if (a->getCollisionId() == Game::FLAG_ID) { j->GetBodyA()->SetLinearVelocity(b2Vec2(0, -15)); } else if (b->getCollisionId() == Game::FLAG_ID) { j->GetBodyB()->SetLinearVelocity(b2Vec2(0, -15)); } m_body->GetWorld()->DestroyJoint(j); } } void PhysicalRenderable::render() { if (m_texture != nullptr) { nextAnimation(); Vector2dT position = computeTargetPosition(); SDL_Rect animationRect; animationRect.x = position.x; animationRect.y = position.y; animationRect.w = m_targetRect.w; animationRect.h = m_targetRect.h; SDL_RenderCopyEx(Window::getWindow().renderer(), m_texture, &m_sourceRect, &animationRect, m_flip_angle, nullptr, m_flip); } } void PhysicalRenderable::addToWorld(b2World& world, Kinematics& kinematics) { // Is there a physical representation for this object in the given world? for (auto& pair : m_representations) { if (pair.first == &world) { m_body = pair.second; return; } } b2BodyDef boxdef; if (m_dynamic) { boxdef.type = b2_dynamicBody; } else { boxdef.type = b2_staticBody; } boxdef.position.Set(m_worldPosition.x, m_worldPosition.y); boxdef.fixedRotation = true; // second step create body b2Body* body = world.CreateBody(&boxdef); // third step create shape delete m_shapeBox; m_shapeBox = new b2PolygonShape; m_shapeBox->SetAsBox(convertToWorldCoordinate(m_animationWidth / 2), convertToWorldCoordinate(m_animationHeight / 2)); // create fixture delete m_fixtureDef; m_fixtureDef = new b2FixtureDef; m_fixtureDef->shape = m_shapeBox; //[in kg/m^2] m_fixtureDef->density = kinematics.getDensity(); //[0-1] m_fixtureDef->friction = kinematics.getFriction(); //[0-1] m_fixtureDef->restitution = kinematics.getRestitution(); // Sets the collision behavior m_fixtureDef->filter.maskBits = kinematics.getMask(); m_fixtureDef->filter.categoryBits = kinematics.getCategory(); m_fixture = body->CreateFixture(m_fixtureDef); m_body = body; m_body->SetBullet(false); m_body->SetUserData(this); setCollisionId(kinematics.getId()); // Creates a new representation entry m_representations.emplace_back(&world, m_body); } void PhysicalRenderable::computeScreenCoordinates() { // Round world coordinates to nearest int m_targetRect.x = convertToScreenCoordinate(m_worldPosition.x) - m_animationWidth / 2; m_targetRect.y = convertToScreenCoordinate(m_worldPosition.y) - m_animationHeight / 2; // Copy screen coordinates to position vector m_position.x = m_targetRect.x; m_position.y = m_targetRect.y; } void PhysicalRenderable::computeWorldCoordinates() { m_worldPosition.x = convertToWorldCoordinate(m_targetRect.x + m_animationWidth / 2); m_worldPosition.y = convertToWorldCoordinate(m_targetRect.y + m_animationHeight / 2); // Actualize world coordinates if (m_body) { m_body->SetTransform(m_worldPosition, 0); } } void PhysicalRenderable::update() { setWorldPosition(m_body->GetPosition()); } } // namespace engine } // namespace ctb
cdc640eb3909dfc227708755604b2f609379341b
344db7c30f7bf34d8ae20d5ed040280a8c038f9c
/参数解析.cpp
c0844dc58f31a79dd82ed78e08ba0ab85c2f526a
[]
no_license
CoderDXQ/Brush-Algorithm-problem
75d5a700eae5df8be600fea3a5427c94a9f941b9
78cf6a79c7c0fe1a9fc659101ba5ba9196912df5
refs/heads/master
2023-06-19T14:20:01.117764
2021-07-18T04:59:19
2021-07-18T04:59:19
253,854,814
4
0
null
null
null
null
GB18030
C++
false
false
1,278
cpp
参数解析.cpp
#include<bits/stdc++.h> using namespace std; int main(){ string st; string shuchu[100]; getline(cin,st);//读取整行字符串 int i=0,num=0; bool yn=0; int qian,hou; qian=0; /* for(int i=0;i<st.length();i++){ printf("%4d",i); } cout<<endl; for(int i=0;i<st.length();i++){ printf("%4c",st[i]) ; } cout<<endl; */ /* while(i<st.length()){ if(st[i]=='"') {// 防备双引号里的空格 yn=!yn; //cout<<i<<' '; } if(yn==0 && st[i]==' '){ num++; hou=i; // cout<<i<<' '; } i++; } num++; cout<<num<<endl; */ i=0;num=0; while(i<st.length()){ if(st[i]=='"') {// 防备双引号里的空格 yn=!yn; if(yn==1) qian=i+1; if(yn==0) //????????????? { hou=i; // cout<<qian<<' '<<hou<<endl; shuchu[num]=st.substr(qian,hou-qian); num++; qian=hou+2; i=i+2; continue; } } if(yn==0 && st[i]==' '){ hou=i; // cout<<qian<<' '<<hou<<endl; shuchu[num]=st.substr(qian,hou-qian+1); num++; qian=hou+1; } if(i==st.length()-1 && hou<st.length()-1){ // cout<<qian<<' '<<hou<<endl; hou=st.length()-1; shuchu[num]=st.substr(qian,hou-qian+1); num++; } i++; } cout<<num<<endl; for(int i=0;i<num;i++) cout<<shuchu[i]<<endl; }
1f23b6c2d57882e962a7a6c1b297afa063b45036
450dbfa81aca2d87e10ec3513065ae526f6f12a0
/CPP/example/明解CPP/Chap11/Counter02/Counter.h
955cb75d5725614ccbafadec168621143409a775
[]
no_license
shihyu/C_and_CPP
cd6eac18e724409d9dff0d4601db525d830e179e
d69e3089a9b6ee191548a492612b54bb037e7df2
refs/heads/master
2020-12-15T22:29:42.675236
2016-09-25T07:01:08
2016-09-25T07:01:08
14,917,164
1
8
null
null
null
null
UTF-8
C++
false
false
855
h
Counter.h
// 記數類別Counter (第2版) #if !defined(___Class_Counter) #define ___Class_Counter #include <climits> using namespace std; //===== 記數類別 =====// class Counter { unsigned cnt; // 記數 public: Counter() : cnt(0) { } // 建構子 operator unsigned() { return cnt; } // 轉換函數 unsigned(op) bool operator!() { return cnt == 0; } // 邏輯否定運算子 !op Counter& operator++() { // 前置遞增運算子 ++op if (cnt < UINT_MAX) cnt++; return *this; } Counter operator++(int) { // 後置遞增運算子 op++ Counter x = *this; if (cnt < UINT_MAX) cnt++; return x; } Counter& operator--() { // 前置遞減運算子 --op if (cnt > 0) cnt--; return *this; } Counter operator--(int) { // 後置遞減運算子 op-- Counter x = *this; if (cnt > 0) cnt--; return x; } }; #endif
d5dfbb0a3af82aa5e2a40ca5d529ad2f546dd5d3
1497386b0fe450e6c3881c8c6d52d9e6ad9117ab
/trunk/CrypTool/ModifiedDocument_Blanks.cpp
eec98bf6c12f8ffe75d0e84f9764c19bad39ca5c
[ "Apache-2.0" ]
permissive
flomar/CrypTool-VS2015
403f538d6cad9b2f16fbf8846d94456c0944569b
6468257af2e1002418882f22a9ed9fabddde096d
refs/heads/master
2021-01-21T14:39:58.113648
2017-02-22T14:10:19
2017-02-22T14:10:19
57,972,666
0
5
null
null
null
null
ISO-8859-1
C++
false
false
5,892
cpp
ModifiedDocument_Blanks.cpp
/************************************************************************** Copyright [2009] [CrypTool Team] This file is part of CrypTool. 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. **************************************************************************/ // ModifiedDocument_Blanks.cpp: Implementierung der Klasse ModifiedDocument_Blanks. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "ModifiedDocument_Blanks.h" #include "CrypToolApp.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Konstruktion/Destruktion ////////////////////////////////////////////////////////////////////// void ModifiedDocument_Blanks::SetData(const char *OriginalDocument, const int OriginalDocumentLength, const int SignificantBitLength, const int Blanks, const int DoubledBlanks) // Beschreibung: Reserviert den Speicher, den das modifizierte Dokument maximal benötigen könnte (wenn alle signifikanten // bits gesetzt sind), // setzt m_GeneralPositionsTable - in ihr sind die Positionen gespeichert, an denen Veränderungen im // Dokument vorgenommen werden können - in m_ModifiablePositions ist die Anzahl der Positionen abgelegt; // Parameter: das Originaldokument (= Ausgangsbasis für Modifikationen) [in], // Länge des Originaldokuments [in], signifikante Bitlänge [in], Flag, ob vor einem Zeilenumbruch ein // weiteres Leerzeichen eingefügt werden soll [in], Flag, ob ein Leerzeichen verdoppelt werden kann [in]; // Rückgabewert: keiner; { int counter = 0, ii; ModifiedDocumentForHashing::SetData(OriginalDocument, OriginalDocumentLength, SignificantBitLength); memcpy(m_DocumentData, OriginalDocument, OriginalDocumentLength); for (ii = m_OriginalDocument->GetDocumentLength() - 1; ii >= 0 ; ii --) { if (1 == Blanks && '\r' == m_OriginalDocument->GetDocumentDataAt(ii)) // ToDo: Problematik CR + LF unter UNIX! { m_GeneralPositionsTable[counter] = ii; counter ++; if (counter == SignificantBitLength) // die Anzahl der Stellen, an denen im Dokument Modifkationen durchge- { // führt werden können, ist auf die Anzahl der signifikanten bits break; // begrenzt } } else if (1 == DoubledBlanks && ' ' == m_OriginalDocument->GetDocumentDataAt(ii)) { m_GeneralPositionsTable[counter] = ii; counter ++; if (counter == SignificantBitLength) // die Anzahl der Stellen, an denen im Dokument Modifkationen durchge- { // führt werden können, ist auf die Anzahl der signifikanten bits break; // begrenzt } } } m_ModifiablePositions = counter; // m_ModifiablePositions = Anzahl der modifizierbaren Stellen if (m_ModifiablePositions < SignificantBitLength) { m_Errorcode = _SIG_ATT_BAD_MODIFIABILITY; // in diesem Dokument gibt es zu wenige Stellen, an denen es modifiziert } // werden kann else { m_Errorcode = _SIG_ATT_OK; } } void ModifiedDocument_Blanks::ModifyDocument(const char *HashValue) // Beschreibung: Modifiziert dieses Dokument (Suchrichtung: von rechts nach links im Dokument) an seinen signifikanten // Stellen (m_GeneralPositions), wenn das entsprechende bit des Hashwerts (dieser wird von links nach // rechts durchgegangen) auf '1' gesetzt ist; // Parameter: Hashwert [in]; // Rückgabewert: keiner; { int ii, MaxPositions = 0, OrigDocCurrPos, SelectedPositionsTable[_MAX_HASH_BIT_LENGTH]; char c_current; OrigDocCurrPos = m_OriginalDocument->GetDocumentLength(); for (ii = 1; ii <= m_ModifiablePositions; ii ++) // hier werden die Stellen, an denen grundsätzlich eine Modifi- { // kation im Dokument durchgeführt werden können c_current = HashValue[(ii - 1) / 8]; // (m_GeneralPositionsTable), auf die Stellen reduziert, bei denen int shift_it = 7 - ((ii - 1) % 8); // das entsprechende bit im Hashwert gesetzt ist und in if(((c_current >> shift_it) & 1)) // SelectedPositionsTable gespeichert { SelectedPositionsTable[MaxPositions] = m_GeneralPositionsTable[ii - 1]; MaxPositions ++; } } m_ModifiedBytes = MaxPositions; for (ii = 0; ii < MaxPositions; ii ++) { memcpy(m_DocumentData + (SelectedPositionsTable[ii] + MaxPositions - ii), m_OriginalDocument->GetDocumentData() + SelectedPositionsTable[ii], OrigDocCurrPos - SelectedPositionsTable[ii]); m_DocumentData[SelectedPositionsTable[ii] + MaxPositions - ii - 1] = ' '; OrigDocCurrPos = SelectedPositionsTable[ii]; } memcpy(m_DocumentData + m_GeneralPositionsTable[m_ModifiablePositions - 1], m_OriginalDocument->GetDocumentData() + m_GeneralPositionsTable[m_ModifiablePositions - 1], OrigDocCurrPos - m_GeneralPositionsTable[m_ModifiablePositions - 1]); // der Teil des Dokumentes, der vor Position m_GeneralPositionsTable[m_ModifiablePositions - 1] liegt, verändert sich // nie, muss also nicht kopiert werden m_DocumentLength = m_OriginalDocument->GetDocumentLength() + MaxPositions; } void ModifiedDocument_Blanks::ModifyOriginalDocument(const int RunNo) {/* m_OriginalDocument->SetDocumentDataAt(m_OriginalDocument->GetDocumentLength() - 2, m_ch_unprintable[RunNo / 4]); m_OriginalDocument->SetDocumentDataAt(m_OriginalDocument->GetDocumentLength() - 1, m_ch_unprintable[RunNo % 4]);*/ }
e12a926ac2d179d77305332c59b74a4850cc52fa
0b7ca5708a0ca8afbb8bc61cfd783995491e3a1d
/TextEscapeGame/Project1/Project1/Player.h
517550ca74585c239d337c7f810e1cd0b2990226
[]
no_license
amgonzFDU/StarfoxTextGame
6222f324facc56bac5849376b0c1387ff9881b40
d251ae53dfcdd513026edce513117a1164df2f56
refs/heads/master
2020-08-06T07:01:39.629213
2019-12-02T00:39:24
2019-12-02T00:39:24
212,880,962
0
0
null
2019-11-20T00:43:18
2019-10-04T18:40:42
C++
UTF-8
C++
false
false
137
h
Player.h
#include <string> class Player { private: std::string name; public: Player(std::string name); ~Player(); std::string getName(); };
dfafa2ee6439f55d7445e838f7a34728d9b2375d
fbeafcddb48c5e84d3b991f33e2a54bd76bbd9f2
/src/components/model.h
365e110a19207f437eba38ffe4780d1c0e00a68f
[]
no_license
sysfce2/SFML_Asteroids.MBronko
b479ae0ffd9a8b0787267c41618708c8a311e8da
7425a17cf3640091ba1537579ea6a5d97781db7c
refs/heads/main
2023-06-03T22:51:07.319754
2021-06-16T22:01:03
2021-06-16T22:17:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
623
h
model.h
#ifndef ASTEROIDS_MODEL_H #define ASTEROIDS_MODEL_H #include <iostream> #include <memory> #include <vector> #include "../objects/player.h" #include "../objects/asteroid.h" enum GameState { MENU, RUNNING, LOST }; class Model { public: std::vector<std::shared_ptr<Asteroid>> asteroids = {}; std::vector<Bullet> bullets = {}; Player player; GameState game_state = MENU; int score = 0; int lives = 0; bool is_paused = false; Model(); void check_collisions(double delta_time); void move_all(double delta_time); void player_shoot(); void create_asteroid(); }; #endif
7201cd4108239a72d5beae5177c3438a4957ffcb
26aea82ed3815751053a133d9190389add667b23
/fluffy-dollop/ctrvisual/state/measurestateobject.cpp
06d3bce716b4f7fd42ba84b269c47d725a1ddc0d
[]
no_license
autocomp/fluffy-dollop
f8d234151f3ca91664cf3361f6b2cd6646bf7b95
c7ebd5a26016a604ce42a3c829253ba1a1e58537
refs/heads/master
2020-04-06T04:01:01.085460
2017-03-06T17:36:53
2017-03-06T17:36:53
83,069,411
2
1
null
2017-03-12T11:24:59
2017-02-24T18:10:50
C++
UTF-8
C++
false
false
333
cpp
measurestateobject.cpp
#include "measurestateobject.h" #include <QPainter> #include <QPen> #include <QLineF> #include <QRegion> #include <QPointF> #include <QWidget> #include <QDebug> void MeasureStateObject::statePushedToStack() { emit signalPushedToStack(); } void MeasureStateObject::statePoppedFromStack() { emit signalPoppedFromStack(); }
14262ec235987d5ab4a969a394925abc0fb0a83d
c75a69cb2dbd27f91187004c7d45a80c2b3ed34e
/SDNNBiOpenMP.cpp
ec0b3e7459c89ea8b03e47722e633bf810e9b7c4
[]
no_license
RegentLee/graduation_research
d655afb000cc1464537a26b226a69469b731ba77
65a1643120acfb8ecedef04f54a27ebe9a9c2e55
refs/heads/master
2023-01-11T04:18:36.982085
2020-11-16T12:36:42
2020-11-16T12:36:42
221,961,969
0
0
null
null
null
null
UTF-8
C++
false
false
11,153
cpp
SDNNBiOpenMP.cpp
// // Created by 李明曄 on 2019/12/03. // #include "SDNNBiOpenMP.h" using namespace std; SDNNBiOpenMP::SDNNBiOpenMP(int input_size, vector<vector<int> > pattern, int thread, vector<vector<int> > w) { int pattern_size = pattern.size(); int pattern0_size = pattern[0].size(); #ifdef _OPENMP omp_set_num_threads(thread); #endif // 保存原始pattern // 元のパターンを保存 original_pattern.insert(original_pattern.end(), pattern.begin(), pattern.end()); // 打乱原始pattern并保存 // 元のパターンをランダムにしてから保存 bi_pattern.resize(input_size + 1); for(int i = 0; i < input_size + 1; i++){ bi_pattern[i].resize(pattern_size); for(int j = 0; j < pattern_size; j++) bi_pattern[i][j].resize(pattern0_size / 4, 0); } SDNNBiOpenMP::MakeBiPattern(pattern, bi_pattern); // 初始化权重或读取权重 // 重みを初期化か読み取る if(w.size() == 0) { int weight_size = input_size * (input_size - 1) * pattern0_size; weight.resize(pattern0_size); for (int i = 0; i < pattern0_size; i++) weight[i].resize(weight_size); } else { weight = w; } } void SDNNBiOpenMP::MakeBiPattern(vector<vector<int> > og_pattern, vector<vector<vector<char> > > &bi_pattern) { int og_pattern_size = og_pattern.size(); int og_pattern0_size = og_pattern[0].size(); int og_pattern0_size_4 = og_pattern[0].size()/4; int bi_pattern_size_1 = bi_pattern.size() - 1; vector<int> range(og_pattern0_size); //mt19937_64 mt(static_cast<unsigned int>(time(nullptr))); mt19937_64 mt(0); // 保存原始pattern // 元のパターンを保存 for(int j = 0; j < og_pattern_size; j++){ for(int k = 0; k < og_pattern0_size_4; k++){ for(int l = 0; l < 4; l++){ //printf("%d\n", og_pattern[j][k*4 + l]); switch(og_pattern[j][k*4 + l]){ case 1:{ bi_pattern[bi_pattern_size_1][j][k] |= 1 << (2*l); bi_pattern[bi_pattern_size_1][j][k] |= 1 << (2*l + 1); break; } case -1:{ bi_pattern[bi_pattern_size_1][j][k] |= 1 << (2*l); //bi_pattern[bi_pattern_size_1][j][k] |= 0 << (2*l + 1); //printf("%d\n", bi_pattern[bi_pattern_size_1][j][k]); break; } /*case 0:{ //bi_pattern[bi_pattern_size_1][j][k] |= 0 << (2*l); //bi_pattern[bi_pattern_size_1][j][k] |= 0 << (2*l + 1); //break; }*/ } } //printf("%d\n", bi_pattern[bi_pattern_size_1][j][k]); } } // 打乱原始pattern并保存 // 元のパターンをランダムにしてから保存 for(int i = 0; i < og_pattern0_size; i++) range[i] = i; for(int i = 0; i < bi_pattern_size_1; i++){ shuffle(range.begin(), range.end(), mt); for(int j = 0; j < og_pattern_size; j++){ //int *prp = &bi_pattern[i][j][0]; for(int k = 0; k < og_pattern0_size_4; k++){ for(int l = 0; l < 4; l++){ switch(og_pattern[j][range[k*4 + l]]){ case 1:{ bi_pattern[i][j][k] |= 1 << (2*l); bi_pattern[i][j][k] |= 1 << (2*l + 1); break; } case -1:{ bi_pattern[i][j][k] |= 1 << (2*l); //bi_pattern[i][j][k] |= 0 << (2*l + 1); break; } /*case 0:{ //bi_pattern[i][j][k] |= 0 << (2*l); //bi_pattern[i][j][k] |= 0 << (2*l + 1); //break; }*/ } } //*prp++ = og_pattern[j][range[k]]; } } } } vector<int> SDNNBiOpenMP::SD(vector<int> input) { int input_size = input.size(); int original_pattern0_size_4 = original_pattern[0].size()/4; int bi_og_pattern_position = bi_pattern.size() - 1; // 不感化 // x, 1/-1, x, 1/-1, ... // 隔了多少个零,1或-1, 隔了多少个零,1或-1,... // 何個0を離れているか、1/-1, ... vector<int> nn_input(1, 0); for(int s = 0; s < input_size; s++){ for(int c = s + 1; c < input_size; c++){ char *prpc = &bi_pattern[c][input[c]][0]; char *prps = &bi_pattern[s][input[s]][0]; char *pops = &bi_pattern[bi_og_pattern_position][input[s]][0]; char *popc = &bi_pattern[bi_og_pattern_position][input[c]][0]; for(int j = 0; j < original_pattern0_size_4; j++) { char popst = *pops++; char prpct = *prpc++; for(int k = 0; k < 4; k++){ if((popst & 0x1) && (prpct & 0x1)){ popst >>= 1; prpct >>= 1; if(prpct & 0x1){ nn_input.push_back(2*(popst & 0x1) - 1); nn_input.push_back(0); } else { nn_input.back()++; } popst >>= 1; prpct >>= 1; } else { popst >>= 2; prpct >>= 2; nn_input.back()++; } } } for(int j = 0; j < original_pattern0_size_4; j++) { char prpst = *prps++; char popct = *popc++; for(int k = 0; k < 4; k++){ if((prpst & 0x1) && (popct & 0x1)){ prpst >>= 1; popct >>= 1; if(prpst & 0x1){ nn_input.push_back(2*(popct & 0x1) - 1); nn_input.push_back(0); } else { nn_input.back()++; } prpst >>= 1; popct >>= 1; } else { prpst >>= 2; popct >>= 2; nn_input.back()++; } } } } } return nn_input; } /*vector<int> SDNNOpenMP::SD(vector<int> input) { int input_size = input.size(); int original_pattern0_size = original_pattern[0].size(); vector<int> nn_input(1, 0); for(int s = 0; s < input_size; s++){ for(int c = s + 1; c < input_size; c++){ int *prpc = &random_pattern[c][input[c]][0]; int *prps = &random_pattern[s][input[s]][0]; int *pops = &original_pattern[input[s]][0]; int *popc = &original_pattern[input[c]][0]; for(int j = 0; j < original_pattern0_size; j++) { int st = ((1 + *prpc++) / 2) * *pops++; if (st == 0) { nn_input.back()++; } else { nn_input.push_back(st); nn_input.push_back(0); } int ct = ((1 + *prps++) / 2) * *popc++; if(ct == 0){ nn_input.back()++; } else { nn_input.push_back(ct); nn_input.push_back(0); } } } } return nn_input; }*/ float SDNNBiOpenMP::Train(vector<int> input, int target) { int output_size = input.size(); int output0_size = original_pattern[0].size(); vector<int> nn_input; vector<vector<int> > nn_output(output_size, vector<int>(output0_size)); vector<int> pattern_target(output0_size); pattern_target.assign(original_pattern[target].begin(), original_pattern[target].end()); nn_input = SDNNBiOpenMP::SD(input); NNTrain(nn_input, pattern_target); return 0; } float SDNNBiOpenMP::NNTrain(vector<int> nn_input, vector<int> target) { int original_pattern0_size = original_pattern[0].size(); int nn_input_size = nn_input.size()/2; // int weight_size = weight[0].size(); //nn_input0_size #ifdef _OPENMP #pragma omp parallel for #endif for(int o = 0; o < original_pattern0_size; o++){ //int *pt = &target[0]; int potential = 0; int *pni = &nn_input[0]; int *pw = &weight[o][0]; for(int j = 0; j < nn_input_size; j++){ pw += *pni++; potential += *pni++**pw++; } int nn_output = potential < 0 ? -1 : 1; int loss = (nn_output - target[o])/2; //float loss = (nn_output - *(pt + o))/2.0; //float loss = (nn_output - *pt++)/2.0; if(loss == 0) continue; pni = &nn_input[0]; pw = &weight[o][0]; for(int j = 0; j < nn_input_size; j++){ pw += *pni++; *pw++ -= *pni++*loss; } } return 0; } vector<int> SDNNBiOpenMP::Predict(vector<int> input) { vector<int> nn_input; vector<vector<int> > nn_output(input.size(), vector<int>(original_pattern[0].size())); //int output_size = input.size(); //int output0_size = original_pattern[0].size(); nn_input = SDNNBiOpenMP::SD(input); return NNPredict(nn_input); } vector<int> SDNNBiOpenMP::NNPredict(vector<int> nn_input) { int original_pattern_size = original_pattern.size(); int original_pattern0_size = original_pattern[0].size(); int nn_input_size = nn_input.size()/2; //int weight_size = weight[0].size(); //nn_input0_size vector<int> nn_output(original_pattern0_size); vector<int> result(original_pattern_size + 1, 0); // 计算各个出力素子的值 // 各出力素子の値を計算 #ifdef _OPENMP #pragma omp parallel for #endif for(int o = 0; o < original_pattern0_size; o++){ int potential = 0; int *pni = &nn_input[0]; int *pw = &weight[o][0]; for(int j = 0; j < nn_input_size; j++){ pw += *pni++; potential += *pni++**pw++; } nn_output[o] = potential < 0 ? -1 : 1; } //int *pr = &result[1]; // 计算输出和各pattern的内积 // 出力と各パターンの内積を計算 #ifdef _OPENMP #pragma omp parallel for #endif for(int i = 0; i < original_pattern_size; i++){ //int *pr = &result[1]; int *po = &nn_output[0]; int *pp = &original_pattern[i][0]; for(int j = 0; j < original_pattern0_size; j++){ result[i + 1] += *po++ * *pp++; //*(pr + i) += *po++ * *pp++; } //pr++; } return result; } vector<vector<int> > SDNNBiOpenMP::GetWeight() { return weight; }
38d9a168e45130b82deacdd198e13ff157ccb915
10034fcccd5cd1ab780e0593a85209f74257197d
/Assignment 5/Gaddis_6thEd_Chap6_Prob7/main.cpp
bc0ea5bf589c9b69cdabd12a92d6e1e3a8ea679f
[]
no_license
kr2558873/RenKenley_CSC5_40718
240896c2e37e62c880a754351e0f095daedb14ec
4b4cbfc29d045c2db2f7cb6b1f9c8e06713d9fb1
refs/heads/master
2016-09-05T09:18:27.177851
2015-01-27T07:27:43
2015-01-27T07:27:43
28,896,974
0
0
null
null
null
null
UTF-8
C++
false
false
522
cpp
main.cpp
/* * File: main.cpp * Author: Kenley Ren * Created on January 25, 2015, 1:45 PM * Purpose: Homework */ //System Libraries #include <iostream> #include <iomanip> using namespace std; //User Libraries //Global Constants //Function Prototype float toCelcius (int fTemp) { return (5.0/9.0)*((float)fTemp - 32.0); } //Execution begins here! int main(int argc, char** argv) { cout << "F\t\tC\n"; for (int i = 0;i <= 20;i++) { cout << i << "\t\t" << (int)toCelcius(i) << endl; } return 0; }
e3b120130b748203fd7a7ef634d8d494e8da9477
09397aa17d69fee1ca10f220adcd4fdf9b198682
/src/Hathor/Hathor.h
e030dd9eb316c95e59e5b44f26f8e48f9da60ff4
[]
no_license
yduh/Hathor2Yukawa
c5f5af8e7a5f517fa2593e156c4f24d23cb88e27
2a448d899a9ea3330653cad954d119a59ef9bf67
refs/heads/master
2021-09-11T17:09:42.235248
2018-04-10T09:22:00
2018-04-10T09:22:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,170
h
Hathor.h
#ifndef HATHOR_H_ #define HATHOR_H_ #include "AbstractHathor.h" #include "HathorFits.h" #include "HathorPdf.h" #include "SgTop.h" #include "SgTopTChannel.h" #include "SgTopSChannel.h" #include "SgTopWtChannel.h" #include "HathorWeakCorrections.h" class Hathor : public AbstractHathor { public: enum MASSRENORMALISATIONSCHEME { POLE_MASS=0, MS_MASS=1 }; enum APPROXSCHEMES { LOG_ONLY=(1<<4), NOQG= (1<<8), NOHIGHENERGY= (1<<9), NNLOAPPROX=(1<<10), NOGG = (1<<11), NOQQB = (1<<12), NOQQ = (1<<13), NOQQP = (1<<14), NOQQPB = (1<<15)}; enum ABSCHEMES { ASCHEME=0, BSCHEME=1, ABSCHEME=2 }; static const double z2,z3,ln2; static const double ca,ca2,cf; Hathor(Pdf & pdf_); void setMass(PARTONS parton, double mass); void setSwq(double newval){weak.setSwq(newval);}; void setAlpha(double newval){weak.setAlpha(newval);}; void setNf(int n); void setCqq(double tmp); void setCgg(double tmp); void setHighEnergyScheme(ABSCHEMES scheme); inline double dsigmagg(const double mt, const double shat, const double z){ return(weak.dsigmagg(mt,shat,z));}; inline double dsigmaqq(const double mt, const double shat, const double z){ return(weak.dsigmaqq(mt, shat, z)); }; inline double dsigmaWeakgg(const double mt, const double shat, const double z){ return(weak.dsigmaWeakgg(mt,shat,z));}; inline void dsigmaWeakqq(const double mt, const double shat, const double z, double & up, double & down){ weak.dsigmaWeakqq(mt, shat, z, up, down); }; virtual void setScheme(unsigned int newscheme); virtual void PrintOptions(); protected: virtual void update(); virtual void setPartonicEnergy(const double x[]); virtual void evaluatePDFs(const double h1[], const double h2[], const double h2left[] = 0, const double h2right[] = 0); virtual void evaluateScalingFunctions(); virtual double evaluateIntegral(double as, double wgt); private: void evaluateNLO(double beta); void evaluateNNLO(double beta); static inline double fluxgg(const double h1[], const double h2[]); static inline double fluxqqb(const double h1[], const double h2[]); static inline double fluxqq(const double h1[], const double h2[]); static inline double fluxqqp(const double h1[], const double h2[]); static inline double fluxqqpb(const double h1[], const double h2[]); static inline double fluxqg(const double h1[], const double h2[]); static inline double fluxgqb(const double h1[], const double h2[]); static const double inv4pi, inv4pi2, inv4pi4; double mw,mz,mh,mb,swq,alpha; WeakCorrections weak; double sparton, jacobian; double beta, rho, beta2, beta4; double gg, qqb, qq, qqp, qqpb, qg, gqb; double dgg, dqqb, dqg, dgqb; int nf; double as,as2,a; double b0, b1,d1,d2; double Cqq, Cgg; double fgg00,fqqb00; double fgg10, fgg11, fqqb10, fqqb11, fgq10, fgq11, nlogg,nloqqb,nlogq; // double fgg20, fgg21, fgg22; double fqqb20, fqqb21, fqqb22,fqq20,fqqp20,fqqpb20, fqq21,fqq22, fqqp21,fqqp22,fqqpb21,fqqpb22; double fgq20, fgq21,fgq22; double nnlogg,nnloqqb,nnloqq, nnloqqp, nnloqqpb, nnlogq; }; #endif // HATHOR_H_
07b7859af3e655c22264e7e36fd4cffde9777e02
7d3494a8adc37f4adc859a5dfa5568124e9350a2
/AMS_progetto/PROGETTO_AMS__testbench_TLM_xtea/src/AMS-RTL_transactor.cpp
1f1e27fe9ee101a248f6455de63696f9d507ffa9
[]
no_license
snukneLeo/LABORATORIO_PSE
c8c1f099e14103a27468d1985cadc6a5463f0eab
dec0a5020a11f39d9625ec7ddf36ef651c9334da
refs/heads/master
2020-04-12T16:22:05.743100
2018-12-30T17:55:04
2018-12-30T17:55:04
162,609,395
0
0
null
null
null
null
UTF-8
C++
false
false
370
cpp
AMS-RTL_transactor.cpp
#include "AMS-RTL_transactor.hpp" AMS_TO_RTL::AMS_TO_RTL( sc_core::sc_module_name ) : waterTankLevelInput_ams("waterTankLevelInput_ams"), waterLevelOutput_rtl("waterLevelOutput_rtl") { } void AMS_TO_RTL::processing() { //ciò che vogliamo fare waterLevelOutput_rtl.write(waterTankLevelInput_ams.read()); } void AMS_TO_RTL::set_attribute() { //NULL }
248ff4f6720b60f7038e1465cbf0172e71256c29
5276f3c7c4c4e213d208784723e37190c00d032c
/algorithms_and_data_structures/term_3/lab_3/a.cpp
1a9ecb7c4225f2068e9bc05fc349afce74ab0cc7
[ "MIT" ]
permissive
RevealMind/itmo
16a62e4a21b0a7034853fceb3712ae4e4e41fe49
fc076d385fd46c50056cfb72d1990e10a1369f2b
refs/heads/master
2023-01-22T10:46:16.918977
2020-07-20T10:11:57
2020-07-20T10:11:57
279,388,468
2
1
MIT
2023-01-05T11:56:48
2020-07-13T19:02:13
C++
UTF-8
C++
false
false
1,144
cpp
a.cpp
#include <iostream> #include <vector> std::string s; using std::size_t; using std::vector; void solve() { size_t k, a, b, c, d; std::cin >> s >> k; size_t n = s.size(); vector<long long> pow(n); vector<long long> hash(n); pow[0] = 1; for (int i = 1; i < n; ++i) { pow[i] = pow[i - 1] * 31; } for (int i = 0; i < n; i++) { hash[i] = (s[i] - 'a' + 1) * pow[i] + ((i) ? hash[i - 1] : 0); } for (int i = 0; i < k; ++i) { std::cin >> a >> b >> c >> d; if ((b - a) == (d - c)) { long long hash_first = hash[b - 1] - ((a - 1) ? hash[a - 2] : 0); long long hash_second = hash[d - 1] - ((c - 1) ? hash[c - 2] : 0); if (a < c) { hash_first *= pow[c - a]; } else { hash_second *= pow[a - c]; } if (hash_first == hash_second) { std::cout << "Yes"; } else { std::cout << "No"; } } else { std::cout << "No"; } std::cout << "\n"; } } int main() { solve(); return 0; }
9b61c1649c0659415cfa167c8b878ef364c5fecb
8ca9f28c2a23dda0815692d45b25f8a97f2895ca
/server/include/MyLock.h
ef66865e007b56cd8b7509dcbf45ba8982d686a9
[]
no_license
BravePeanuts/Mini-Search-Engine
f92c3f041b1d22386900b66f9e39f7c4a463d175
8cd1485c901148d52a32c5f7f2cc5fbdd42748b2
refs/heads/master
2021-06-01T06:20:33.123055
2016-08-19T15:35:39
2016-08-19T15:35:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
206
h
MyLock.h
#if !defined(_MYLOCK_H) #define _MYLOCK_H #include <pthread.h> class MyLock { public: MyLock(pthread_mutex_t& ); void Lock(); void Unlock(); private: pthread_mutex_t m_mutex; }; #endif //_MYLOCK_H
e52ab89e88160895268b420b50e4932f54c2b678
3c9fa62938a4f09f894f945e00313bc928417e17
/main.cpp
d8d4c0931ff9d07afd4ca050137dcd7ea4d8440f
[ "Apache-2.0" ]
permissive
matsbror/MockExchange
08d5aa041bad837771302312cb9938328af5250e
1c7323a6e19f77d30217c5592bb9e602fe3d4a90
refs/heads/master
2021-01-18T23:45:12.162569
2016-07-12T11:48:08
2016-07-12T11:48:08
53,665,699
0
0
null
null
null
null
UTF-8
C++
false
false
21,266
cpp
main.cpp
// Copyright 2016 Mats Brorsson, OLA Mobile S.a.r.l // // 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. // stdlib includes #include <iostream> #include <fstream> #include <string> #include <sstream> #include <exception> #include <chrono> #include <random> #include <vector> #include <mutex> #include <condition_variable> #include <thread> #include <cassert> #include <unistd.h> // Poco lib includes #include <Poco/Net/HTTPClientSession.h> #include <Poco/Net/HTTPRequest.h> #include <Poco/Net/HTTPResponse.h> #include <Poco/Net/IPAddress.h> #include "Poco/Net/NetException.h" #include <Poco/StreamCopier.h> #include <Poco/Path.h> #include <Poco/URI.h> #include <Poco/Exception.h> #include <Poco/Logger.h> #include <Poco/FormattingChannel.h> #include <Poco/PatternFormatter.h> #include <Poco/FileChannel.h> #include <Poco/ConsoleChannel.h> #include <Poco/SplitterChannel.h> #include <Poco/AutoPtr.h> // local includes #include "json/json.h" #include "aux_info.h" #include "bid.h" using namespace Poco::Net; using namespace Poco; using Poco::Logger; using Poco::FormattingChannel; using Poco::PatternFormatter; using Poco::FileChannel; using Poco::ConsoleChannel; using Poco::SplitterChannel; using Poco::AutoPtr; using namespace std; struct event { float timestamp; string bidRequestId; string impId; string type; Logger & logger; }; // Shared queue for click events condition_variable cv_clicks; mutex mtx_clicks; vector<event> clicks; // Shared queue for conversion events condition_variable cv_conversions; mutex mtx_conversions; vector<event> conversions; Json::Value configuration{}; std::default_random_engine generator; std::uniform_int_distribution<int> rand100(0, 100); Json::Value readConf(const std::string confFile) { ifstream confs(confFile); if (!confs.good()) { throw runtime_error("Could not open configuration file: " + confFile); } Json::Value configuration; confs >> configuration; // read configuration json file return configuration; } // sends a win notice to the RTBkit void sendWin(Logger & logger, string nurl, string bidRequestId, string impId, float winPrice) { URI uri(nurl); const string host{uri.getHost()}; const unsigned short port{static_cast<unsigned short> (configuration["winport"].asInt())}; const string query{uri.getQuery()}; vector<string> pathSegments{}; uri.getPathSegments(pathSegments); try { HTTPClientSession session(host, port); if (configuration["wnstyle"].asString() == "smaato") { std::string winNotice{""}; // build the winNotice based on the nurl substitution macros for (auto ps : pathSegments) { if (ps == "${AUCTION_ID}") { winNotice += "/" + bidRequestId; } else if (ps == "${AUCTION_IMP_ID}") { winNotice += "/" + impId; } else if (ps == "${AUCTION_PRICE}") { winNotice += "/" + to_string(winPrice * 0.9765432); // arbitrary scaling } else { winNotice += "/" + ps; } } // debug //cerr << "winNotice: " << winNotice << endl; HTTPRequest request(HTTPRequest::HTTP_GET, winNotice); // request.setKeepAlive(true); std::ostream& myOStream = session.sendRequest(request); // sends request, returns open stream if (!myOStream.good()) { cerr << "Problem sending win notice header..." << endl; } } else { // It's rtbkit style, send the win notice as POST JSON chrono::system_clock::time_point tp = chrono::system_clock::now(); int ts = std::chrono::duration_cast<std::chrono::seconds>(tp.time_since_epoch()).count(); Json::Value wn; wn["timestamp"] = static_cast<float>(ts); wn["bidRequestId"] = bidRequestId; wn["impid"] = impId; wn["price"] = winPrice * 0.9765432; stringstream reqStream{}; reqStream << wn; string reqBody{reqStream.str()}; HTTPRequest request(HTTPRequest::HTTP_POST, "/wins"); request.setKeepAlive(true); request.setContentType("application/json"); request.setContentLength(reqBody.length()); // debug //cerr << "host: " << host << ", port: " << port << endl; //cerr << "winNotice: " << wn << endl; std::ostream& myOStream = session.sendRequest(request); // sends request, returns open stream if (!myOStream.good()) { cerr << "Problem sending event header..." << endl; } myOStream << reqBody; // sends the body if (!myOStream.good()) { cerr << "Problem sending event body..." << endl; } } // else wnStyle rtbkit logger.information("WIN\t" + bidRequestId); HTTPResponse winNoticeResponse{}; istream& rs = session.receiveResponse(winNoticeResponse); // debug //cerr << "WinNotice response:" << endl; //StreamCopier::copyStream(rs, cerr); } catch (const Poco::Net::HostNotFoundException &noHostEx) { std::cerr << "Host Not found: " << host << ", port: " << port << std::endl; exit(-1); } // for every win, enter a click with some probability // 20% chance to get a click if (rand100(generator) < 20) { unique_lock<mutex> lck(mtx_clicks); event ev{0.0, bidRequestId, impId, "CLICK", logger}; clicks.push_back(ev); } } // sends a PostAuction event void sendPAEvent(Logger & logger, string bidRequestId, string impId, string type) { // prepare session string uri_string = configuration["winsite"].asString(); URI uri(uri_string); string host { uri.getHost() }; unsigned short port { static_cast<unsigned short>(configuration["eventsport"].asInt()) }; try { HTTPClientSession session(host, port ); session.setKeepAlive(true); chrono::system_clock::time_point tp = chrono::system_clock::now(); int ts = std::chrono::duration_cast<std::chrono::seconds>(tp.time_since_epoch()).count(); Json::Value clickEvent; clickEvent["timestamp"] = static_cast<float>(ts); clickEvent["bidRequestId"] = bidRequestId; clickEvent["impid"] = impId; clickEvent["type"] = type; // CLICK or CONVERSION stringstream reqStream{}; reqStream << clickEvent; string reqBody{reqStream.str()}; HTTPRequest request(HTTPRequest::HTTP_POST, "/"); request.setKeepAlive(true); request.setContentType("application/json"); request.setContentLength(reqBody.length()); // debug //cerr << "clickEvent: " << clickEvent << endl; std::ostream& myOStream = session.sendRequest(request); // sends request, returns open stream if (!myOStream.good()) { cerr << "Problem sending " << type << " event header..." << endl; } myOStream << reqBody; // sends the body if (!myOStream.good()) { cerr << "Problem sending " << type << " event body..." << endl; } logger.information(type + "\t" + bidRequestId); HTTPResponse clickEventResponse{}; istream& rs = session.receiveResponse(clickEventResponse); // //std::cerr << type << " event response:" << endl; //StreamCopier::copyStream(rs, std::cerr); } catch (const Poco::Net::HostNotFoundException &noHostEx) { std::cerr << "SendPAevent: Host Not found: " << host << ", port: " << port << std::endl; exit(-1); } } // thread simulating sending clicks void sendClicks() { vector<event> local_clicks{}; cerr << "Starting sendClicks thread" << endl; while (true) { { unique_lock<mutex> lck(mtx_clicks); cv_clicks.wait_for(lck, chrono::duration<int>(10)); // wait 10 seconds local_clicks = std::move(clicks); // remove all elements // clicks.clear(); // not needed when moved! } assert(clicks.empty()); sleep(5); // sleep 5 seconds to make sure the win comes before the click if (false /* change to true for debug output */) { if (!local_clicks.empty()) { cout << "Sending: " << local_clicks.size() << " click events" << endl; // empty entire queue } else { cout << "No clicks to send..." << endl; } } for (auto & ev : local_clicks) { //cerr << "Sending click on Id: " << ev.bidRequestId << endl; sendPAEvent(ev.logger, ev.bidRequestId, ev.impId, "CLICK"); // for every click, enter a conversion with some probability // 10% chance to get a conversion if (rand100(generator) < 0) { unique_lock<mutex> lck(mtx_conversions); event ev2{0.0, ev.bidRequestId, ev.impId, "CONVERSION", ev.logger}; conversions.push_back(ev2); } } } } // thread simulating sending conversions void sendConversions() { vector<event> local_conversions{}; cerr << "Starting sendConversion thread" << endl; while (true) { { unique_lock<mutex> lck(mtx_conversions); cv_conversions.wait_for(lck, chrono::duration<int>(95)); // wait 95 seconds if (false /* change to true for debug output */) { if (!conversions.empty()) { cout << "Sending: " << conversions.size() << " conversion events" << endl; // empty entire queue } else { cout << "No conversions to send..." << endl; } } local_conversions = std::move(conversions); // remove all elements // conversions.clear(); // not needed when moved! } for (auto & ev : local_conversions) { //cerr << "Sending conversion on Id: " << ev.bidRequestId << endl; sendPAEvent(ev.logger, ev.bidRequestId, ev.impId, "CONVERSION"); } } } int main(int argc, char **argv) { int nrq{0}; int nrestarts{0}; Json::Value latestBr{}; Json::Value latestBr2{}; // read configuration file. If no command line argument is given, use rtb-adex.json string const conf_file{(argc == 1 ? "rtb-adex.json" : argv[1])}; configuration = Json::Value(readConf(conf_file)); string lf{configuration["logfile"].asString()}; std::cerr << "Setting log file to " + lf << std::endl; AutoPtr<FileChannel> pChannel(new FileChannel); pChannel->setProperty("path", lf); pChannel->setProperty("rotation", "1 M"); pChannel->setProperty("archive", "timestamp"); AutoPtr<ConsoleChannel> pcChannel(new ConsoleChannel); AutoPtr<PatternFormatter> pPF(new PatternFormatter); pPF->setProperty("pattern", "%Y-%m-%d %H:%M:%S %s: %t"); AutoPtr<FormattingChannel> pFC(new FormattingChannel(pPF, pChannel)); AutoPtr<SplitterChannel> pSplitter(new SplitterChannel); // Uncomment the line below if you want log messages go to console in addition to file. // pSplitter->addChannel(pcChannel); pSplitter->addChannel(pFC); Logger::root().setChannel(pSplitter); Logger& logger = Logger::get("IDGeneratorLogger"); // inherits root channel logger.information("******** NEW LOG ENTRY *********"); read_vals(configuration["aux"]["city"].asString(), city_map); read_vals(configuration["aux"]["region"].asString(), region_map); read_vals(configuration["aux"]["upt"].asString(), user_profile_tags_map); const chrono::milliseconds defaultTmax{configuration["tmax"].asInt()}; // define and kick off the event threads thread clickThread(sendClicks); // thread conversionThread(sendConversions); try { // prepare session string uri_string = configuration["site"].asString(); URI uri(uri_string); HTTPClientSession session(uri.getHost(), configuration["port"].asInt()); session.setKeepAlive(true); string bid_file{configuration["bids"].asString()}; ifstream bids{bid_file}; if (!bids.good()) { throw runtime_error("Could not open bids file: " + bid_file); } chrono::milliseconds accumulated_time{}; while (!bids.eof()) { BidRequest br{defaultTmax}; bids >> br; // Construct a bid request, one line at a time // filter all br that are not of format 300x50 or 300x250 int height = {br.imp[0].banner.h}; int width = {br.imp[0].banner.w}; if (width != 300) { continue; } else if ((height != 50) && (height != 250)) { continue; } // set blocked categories br.bcat.push_back("IAB22"); // set fake operator br.ext.carrierName = "personal"; // Now construct a JSON object out of the bid request object Json::Value brJson{br.toJson()}; latestBr2 = latestBr; latestBr = brJson; // save a copy // debug //cerr << "Request: " << nrq << ":" << endl; //cerr << brJson << endl; stringstream reqStream{}; reqStream << brJson; string reqBody{reqStream.str()}; HTTPRequest request(HTTPRequest::HTTP_POST, "/auctions"); request.setKeepAlive(true); request.setContentType("application/json"); request.setContentLength(reqBody.length()); request.set("x-openrtb-version", "2.0"); // Sets openrtb version header 2.0 is used by Smaato request.set("x-openrtb-verbose", "1"); // request verbose reply bool failed{false}; do { try { std::ostream& myOStream = session.sendRequest(request); // sends request, returns open stream if (!myOStream.good()) { session.reset(); continue; // restart sending } chrono::high_resolution_clock::time_point t1 = chrono::high_resolution_clock::now(); myOStream << reqBody; // sends the body if (!myOStream.good()) { session.reset(); continue; // restart sending } if (false /* change to true for debug output */) { // for debug output request.write(std::cout); cout << "request body: " << reqBody << endl; } logger.information("BR\t" + brJson["id"].asString()); HTTPResponse res; istream &is = session.receiveResponse(res); if (!is.good()) { session.reset(); continue; // restart sending } if (false /* change to true for debug output */) cout << res.getStatus() << " " << res.getReason() << endl; chrono::high_resolution_clock::time_point t2 = chrono::high_resolution_clock::now(); chrono::high_resolution_clock::duration responseTime = t2 - t1; chrono::milliseconds rt{chrono::duration_cast<chrono::milliseconds>(responseTime)}; if (rt > defaultTmax) { cout << "Bid id: " << br.id << " arrived too late: " << rt.count() << " ms." << endl; } // Get respons to Json Value Json::Value bid{}; if (res.getStatus() != 204) { // This is a good bid, parse it and determine if it's a win is >> bid; if (!is.good()) { session.reset(); continue; // restart sending } // debug printout //cerr << bid << endl; logger.information("BID\t" + bid["id"].asString()); // 50% chance to get a win if (rand100(generator) < 50) { // find nurl, requestId, impId and winPrice string nurl{bid["seatbid"][0]["bid"][0]["nurl"].asString()}; string requestId = {bid["id"].asString()}; string impId = {bid["seatbid"][0]["bid"][0]["impid"].asString()}; float winPrice = {bid["seatbid"][0]["bid"][0]["price"].asFloat() * static_cast<float> (0.76)}; sendWin(logger, nurl, requestId, impId, winPrice); } } if (false /* change to true for debug output */) { // print response if (!bid.empty()) cout << bid; //StreamCopier::copyStream(is, cout); cout << endl; } //cout << nrq << ": It took " << rt.count() << " ms to get bid back" << endl; accumulated_time += rt; ++nrq; failed = false; }// end of try catch (const Poco::Net::NoMessageException &noMsgEx) { std::cerr << "No message received. Restart connection..." << std::endl; session.reset(); continue; } catch (const Poco::Net::ConnectionResetException &netEx) { std::string errstr = {"Socket Error : " + netEx.displayText()}; std::cerr << errstr << std::endl; break; } catch (const Poco::Net::ConnectionRefusedException &netEx) { std::string errstr = {"Socket Error : " + netEx.displayText()}; std::cerr << errstr << std::endl; break; } catch (const Poco::Net::ConnectionAbortedException &netEx) { std::string errstr = {"Socket Error : " + netEx.displayText()}; std::cerr << "Msg forward failed: " << errstr << std::endl; break; } catch (const Exception &ex) { if (strncmp(ex.name(), "No message received", 19) == 0) { //cerr << ex.displayText() << endl; cerr << "restart connection..." << endl; ++nrestarts; session.reset(); continue; } else { cerr << ex.displayText() << endl; cout << "Time for bid reply on average: " << accumulated_time.count() / nrq << " ms over " << nrq << " bid requests sent." << endl; cout << "Number of restarts:" << nrestarts << endl; return -1; } } } while (failed); //session.reset(); } cout << "Time for bid reply on average: " << accumulated_time.count() / nrq << " ms over " << nrq << " bid requests sent." << endl; cout << "My work is done..." << endl; } catch (Exception &ex) { cerr << "Sent " << nrq << " bid requests before failing..." << endl; cerr << "Bid request before failed:" << endl; cerr << latestBr2 << endl; cerr << "Failed bid request:" << endl; cerr << latestBr << endl; cerr << ex.displayText() << endl; return -1; } return 0; }
c53a40701ca82b770e48aa26c0cd6459dc3299d5
1ff441f52cb446a1917c7b00d827e8e838f8d685
/Assignment 4/B_2.cpp
14653f961252b0eb64b9430936ca6fbbd4ccf8fd
[]
no_license
ggaabe/Fighter-Jet-Game-C--
83f380b5a38fcee76a366eb9e6ee5aa1225b7ec6
5757f3ec2a70b48db62c18cca80bb0ab2ac77653
refs/heads/master
2021-01-22T05:20:22.000341
2014-11-16T17:41:40
2014-11-16T17:41:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,642
cpp
B_2.cpp
#include "B_2.h" B_2::B_2() { fuel = 2000; flightStatus = false; landingGear = true; flightSpeed = 0; engineOn = false; bombs = 500; altitude = 0; }; B_2::B_2(bool checkTakeoff) { if (checkTakeoff) //if user wants to take off, initialize to these variables { engineOn = true; flightSpeed = 162; flightStatus = true; landingGear = true; fuel = 2000; bombs = 500; altitude = 50; } else //if user doesn't want to take off, initialize to these variables { fuel = 2000; flightStatus = false; landingGear = true; flightSpeed = 0; bombs = 500; engineOn = false; altitude = 0; } }; void B_2::checkFlightStatus() //defines checkflight status, tells user whether the aircraft is in the air or not { cout << "Flight status: "; if (flightStatus) { cout << "In Flight "; } else if (!flightStatus) { cout << "Grounded"; } } void B_2::land() //defines land, allows user to land bomber, deploys landing gear, reduces flight speed { if (!landingGear) { landGear(); } do { srand(0); flightSpeed -= (rand() % 7); fuel -= 0.15; cout << "Flight Speed: " << flightSpeed << endl; } while(flightSpeed > 0); flightSpeed = 0; cout << "Landing Successful"; flightStatus = false; } void B_2::checkSpeed() //defines checkSpeed, displays flight speed to user { if (flightSpeed < 0) { flightSpeed = 0; } cout << " Flight Speed: " << flightSpeed << " mph" << endl; } void B_2::checkFuel() //defines checkFuel, displays the fuel level to user { if (fuel < 0) { fuel = 0; } cout << "Fuel Level: " << fuel << " gallons"; } void B_2::checkHeight() //defines checkHeight, displays the altitude/height of the bomber to the pilot { cout << "Altitude: " << altitude << " feet"; } void B_2::bombCheck(int i) //defines bombCheck, displays how many bombs have been dropped to the pilot { if (bombs < 0) { bombs = 0; } cout << "Bombs dropped: " << i << endl; } void B_2::engage() //defines engage, allows pilot to drops their bombs, shows pilot total bombs dropped { cout << "BEGINNING AIRSTRIKE.\nBOMB HATCH OPENING....\nBOMBS DROPPING|||||" << endl; system("pause"); for (int i = 0; i <= 500; i++) { bombCheck(i); bombs -= 1; } } void B_2::increaseSpeed() //increases speed of bomber, presents options to pilot to withdraw landing gear, to engage, and to land { checkFlightStatus(); for (flightSpeed; flightSpeed < 202; flightSpeed += 0) //standard loop to increase speed/spend fuel/increase altitude { srand(0); checkSpeed(); cout << "\t "; //checkFuel(); flightSpeed += 1; altitude += 10; fuel -= 0.5; if (flightSpeed == 200) //break if flight speed equals 200 { break; } } char yn; //yes/no input variable declarations char yn2; char yn3; char yn4; if (landingGear) //if landing gear is deployed, prompt appears for user to withdraw it cout << "\nALERT! Landing gear is still deployed. Withdraw landing gear? (Y/N)" << endl; cin >> yn; if (yn == 'Y' || yn == 'y') { landGear(); } while(flightSpeed < 560) //run this while flight speed is less than 560, increases speed and height, decreases fuel { // srand(1776); checkSpeed(); cout << "\t "; checkHeight(); flightSpeed += 1; altitude += 10; fuel -= 0.2; } while(altitude < 50000) //run this while altitude is less than 50,000, increase height, decrease fuel { srand(1776); checkSpeed(); cout << "\t "; checkHeight(); altitude += 50; fuel -= 0.2; } if (altitude > 50000) { altitude = 50000; } //allows user to engage enemy combatants cout << "\n ALERT! Russian tank columns detected within the vicinity. Engage? (Y/N)" << endl; //prompts pilot to engage cin >> yn2; if (yn2 == 'Y' || yn2 == 'y') { engage(); system("pause"); } else if (yn2 == 'N' || yn2 == 'n') //bomber is destroyed if pilot makes wrong choice { cout << "\nEnemy Anti-Aircraft has fired missiles. Rudders under critical damage. Ejecting." << endl; system("pause"); return; } while(fuel > 200) //decreases fuel after engagement { srand(8); checkSpeed(); cout << "\t "; checkFuel(); // flightSpeed += (rand() % 10); fuel -= 5; } cout << "\nWARNING! Fuel is low. Land? (Y/N)" << endl; //warns pilot of low fuel, prompts to land cin >> yn3; if (yn3 == 'Y' || yn3 == 'y') { land(); } else if (yn3 == 'N' || yn3 == 'n') { while(fuel > 100) { srand(6); checkSpeed(); cout << "\t "; checkFuel(); milesLeft(); // flightSpeed += (rand() % 10); fuel -= 1.0; } cout << "\nWARNING: IF YOU TRAVEL ANY FARTHER YOU WILL NOT HAVE ENOUGH FUEL TO RETURN TO BASE.\n CENTRAL COMMAND ORDERS YOU BACK TO BASE." << "\nReturn? (Y/N)" << endl; //final warning to land due to low fuel cin >> yn4; if (yn4 == 'Y' || yn4 == 'y') { land(); } else if (yn4 == 'N' || yn4 == 'n') { while(fuel >= 0) //B-2 runs out of fuel, plane is destroyed { srand(4); checkSpeed(); cout << "\t "; checkFuel(); milesLeft(); // flightSpeed += (rand() % 10); fuel -= 0.25; } cout << "You have run out of gas and are about to be ejected from the aircraft in 10 seconds. " << "Please direct your craft to a safe landing zone and prepare to eject.\n"; for (int i = 10; i < 0; i++) { cout << i << flush << "\r"; } engineOn = false; return; } } } void B_2::bomberStatus() //displays the status of all variables involved in the functioning of the B-2 Bomber { cout << "\nB-2 craft status: "; cout << endl; checkFlightStatus(); cout << endl; checkFuel(); cout << endl; checkSpeed(); cout << endl; if (engineOn) { cout << "Engine: On" << endl; } else if(!engineOn) { cout << "Engine: Off" << endl; } if (bombs < 0) { bombs = 0; } cout << "Bombs remaining: " << bombs; if (landingGear) { cout << "\nLanding gear: Deployed." << endl; } else if (!landingGear) { cout << "\nLanding gear is not deployed. It seems you may have crashed." << endl; } }
cedd731b9d830078f3c4b65e0393048c9727b266
d777a3bfb6cbc1ae04c3269af37ea972868fd12a
/CsTech/mainwindow.cpp
4ac521a7ef9ad35c1a6f79de30b206557c053d2a
[]
no_license
Mervetek/CsTech
4b9e5974ca9e0227bc1686df3f9dad2e0512d007
ece712ada3f80183fa06238c366d6f8b05794914
refs/heads/main
2023-03-17T18:28:10.248466
2021-03-10T19:04:14
2021-03-10T19:04:14
346,104,447
1
0
null
null
null
null
UTF-8
C++
false
false
8,230
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include <iostream> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); connect(ui.pbSelectFile, SIGNAL(clicked()), this, SLOT(slot_OpenFileDialogAndReadSelectedFile())); connect(ui.pbFind, SIGNAL(clicked()), this, SLOT(slot_FindWord())); connect(ui.pbReplace, SIGNAL(clicked()), this, SLOT(slot_ReplaceWord())); connect(ui.pbDelete, SIGNAL(clicked()), this, SLOT(slot_DeleteWord())); selectedFileName = ""; ui.leCount->setText("0"); } MainWindow::~MainWindow() { } bool MainWindow::doesWordExist(std::vector<QString> words, QString word) { //jenerik bir metoddur, girilen kelime okunan dosyada var ise true, yok ise false doner. bool result = false; for (size_t index = 0; index < words.size(); index++) { if (words[index] == word) { result = true; break; } else result = false; } return result; } bool MainWindow::checkCharacter(QString chr, QString word) { //recursive aramalar icin yazilmis bir metoddur. Kullanıcının verdiği char a gore kelimeyi kontrol eder. if (word.at(0) == chr && word.at(word.size() - 1) == chr) { return true; } else return false; } QString MainWindow::parseString(QString complexString, QString chr) { //kelimeden - veya * karakterlerini çıkarıp bir alt string elde eder. QString substring; if (checkCharacter(chr, complexString)) { for (size_t index = 1; index < complexString.size() - 1; index++) { substring.append(complexString.at(index)); } } return substring; } QString MainWindow::parseIncomingString(QString incomingStr) { //Verilen stringden ilk ve son karakteri cikarip kalan degerleri string olarak doner. QString substring; for (size_t index = 1; index < incomingStr.size() - 1; index++) { substring.append(incomingStr.at(index)); } return substring; } void MainWindow::writeFile(std::vector<QString> newLines) { QFile file(selectedFileName); if (file.open(QFile::WriteOnly | QFile::Truncate)) { QTextStream stream(&file); for (size_t index = 0; index < newLines.size(); index++) { stream << newLines[index] << '\n'; } file.close(); } } void MainWindow::slot_OpenFileDialogAndReadSelectedFile() { allWords.clear(); //Dosya adini elle girmek maliyetli olacagindan kullanıcıya filedialog uzerinden secim yaptırılır. QString filePath = QFileDialog::getOpenFileName(this, tr("Open Selected File"), "/home", tr("Txt Files (*.txt)")); selectedFileName = filePath; ui.cbFiles->addItem(selectedFileName); QFile file(filePath); if (!file.open(QIODevice::ReadWrite | QIODevice::Text)) { QMessageBox::information(0, "error", file.errorString()); return; } QTextStream in(&file); //dosya satir satir okunur, cumle ve kelimelere ayrilip veri yapilarinda tutulur. while (!in.atEnd()) { QString line = in.readLine(); lines.push_back(line); QStringList fields = line.split(" "); for (size_t index = 0; index < fields.size(); index++) { allWords.push_back(fields[index]); } } file.close(); } void MainWindow::slot_FindWord() { ui.listWidget->clear(); int count = 0; std::vector<QString> findingList; QString findingWord = ui.leWord->text(); if (findingWord.size() == 0) { QMessageBox msg; msg.setText("Finding word can not be empty."); msg.exec(); return; } //chr == - , -ada- (radar) if (checkCharacter("-", findingWord)) { for (size_t index = 0; index < allWords.size(); index++) { if (allWords[index].size() == findingWord.size()) { QString substring = parseString(findingWord, "-"); QString incomingStr = parseIncomingString(allWords[index]); if (substring == incomingStr) { findingList.push_back(allWords[index]); } } } } // chr == * -> *ata* (salatalik, atamak) else if (checkCharacter("*", findingWord)) { for (size_t index = 0; index < allWords.size(); index++) { QString substring = parseString(findingWord, "*"); if (allWords[index].contains(substring)) { findingList.push_back(allWords[index]); } } } else { for (size_t index = 0; index < allWords.size(); index++) { if (allWords[index] == findingWord) { count++; findingList.push_back(findingWord); } else if (allWords[index].contains(findingWord)) { count++; findingList.push_back(allWords[index]); } } } //bulunan tum kelimeler for (size_t index = 0; index < findingList.size(); index++) { ui.listWidget->addItem(findingList[index]); } //aranan kelime dokumanda kac tane geciyorsa ekrana yazan kod parcasi ui.leCount->setText(QString::number(findingList.size())); } void MainWindow::slot_ReplaceWord() { QPalette palette = ui.leOldWord->palette(); palette.setColor(QPalette::Base, QColor(255, 255, 255)); ui.leOldWord->setPalette(palette); updatedLines.clear(); QString oldWord = ui.leOldWord->text(); QString newWord = ui.leNewWord->text(); //Replace edilecek kelime bos ise kullaniciya hata mesaji doner. if (oldWord.size() == 0) { QMessageBox msg; QPalette palette = ui.leOldWord->palette(); palette.setColor(QPalette::Base, QColor(255, 0, 0)); //Red ui.leOldWord->setPalette(palette); msg.setText("This field can not be empty."); } //aranan kelime bulunamadiysa kullanciya hata mesaji doner ve metoddan cikilir. if (!doesWordExist(allWords, oldWord)) { QMessageBox msg; msg.setText(oldWord + " can not find selected file."); msg.exec(); return; } //hata durumlarina dusmeyen durumda asagisi isletilir. //replace edilecek kelime tüm kelimelerde aranir ve degistirilir. //tum islemler yapildiktan sonra ayni dosyaya yazdirilir. else { for (size_t index = 0; index < lines.size(); index++) { QString updatedLine; QString line = lines[index]; auto words = line.split(" ", QString::SkipEmptyParts); for (size_t j = 0; j < words.size(); j++) { if (words[j] != oldWord) { updatedLine.append(words[j]); } else { updatedLine.append(newWord); } if (j != words.size() -1) { updatedLine.append(" "); } } updatedLines.push_back(updatedLine); } writeFile(updatedLines); } } void MainWindow::slot_DeleteWord() { //Silinecek edilecek kelime bos ise kullaniciya hata mesaji doner. QString deletedWord = ui.leDelete->text(); if(deletedWord.size() == 0) { QMessageBox msg; msg.setText("This field can not be empty."); msg.exec(); } else { //aranan kelime bulunamadiysa kullanciya hata mesaji doner ve metoddan cikilir. if(!doesWordExist(allWords, deletedWord)) { QMessageBox msg; msg.setText(deletedWord + " can not find this document."); msg.exec(); return; } //hata durumlarina dusmeyen durumda asagisi isletilir. //replace edilecek kelime tüm kelimelerde aranir ve silinir. //tum islemler yapildiktan sonra ayni dosyaya yazdirilir. else { std::vector<QString> updatedLines; updatedLines.clear(); for(size_t index = 0; index < lines.size(); index++) { QString line = lines[index]; QString updatedLine; auto words = line.split(" ", QString::SkipEmptyParts); for (size_t j = 0; j < words.size(); j++) { if(words[j] != deletedWord) { updatedLine.append(words[j]); updatedLine.append(" "); } else { continue; } } updatedLines.push_back(updatedLine); } writeFile(updatedLines); } } }
01eadcabe44ac0ac2d4d1602aa070363ea3322c1
3d2cf3ad3d69fcd36453a5b21aa2440c83012158
/src/main.cpp
0c52e23766d2bfe621a04bbde63a58dae55400e5
[]
no_license
MusaTamzid05/2DOpenglEngine
43c7b41813d3dfb75e85259708531b42eb05229b
9cd24909fee1089cd4a5ab2bb5b908092d9c23c1
refs/heads/master
2020-07-09T08:30:45.256087
2019-11-04T11:05:35
2019-11-04T11:05:35
203,927,232
0
0
null
null
null
null
UTF-8
C++
false
false
125
cpp
main.cpp
#include "display.h" int main(int argc , char** argv) { OpenGL::Display display; display.run(); return 0; }
6f5b9daf1df946ed24bf21beb81eb38b126b693c
2c78de0b151238b1c0c26e6a4d1a36c7fa09268c
/common/components/rtl/external/Embarcadero/DelphiBerlin/data/dsnap/midas/canex.h
6cc21baf22b25ee575043e21c8cb4f7bf9bc76b3
[]
no_license
bravesoftdz/realwork
05a3b308cef59bed8a9efda4212849c391b4b267
19b446ce8ad2adf82ab8ce7988bc003221accad2
refs/heads/master
2021-06-07T23:57:22.429896
2016-11-01T18:30:21
2016-11-01T18:30:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,772
h
canex.h
/******************************************************** * * * Delphi Runtime Library * * * * Copyright(c) 2016 Embarcadero Technologies, Inc. * * All rights reserved * * * * Copyright and license exceptions noted in source * * * ********************************************************/ #ifndef CANX_H #define CANX_H #define QLITE_DLL TRUE #ifdef QLITE_DLL #ifndef _UNIX #include "windows.h" #endif #include "alctypes.h" #include "alchemy.h" #define EC extern "C" extern "C" { #include "bdetypes.h" #include "filter.h" } #ifndef INT64_MAX #define INT64_MAX ((int64_t) 9223372036854775807LL) #endif #ifndef INT64_MIN #define INT64_MIN ((int64_t) -9223372036854775807LL - 1) #endif class QSet; #if 0 class QCanExecStreamSet; typedef QCanExecStreamSet *pQCanExecStreamSet; #endif class QCanExecElem; typedef QCanExecElem *pQCanExecElem; typedef pQCanExecElem *ppQCanExecElem; class QCanExecElemSet; typedef QCanExecElemSet *pQCanExecElemSet; class QAggregateElemSet; typedef QAggregateElemSet *pQAggregateElemSet; class QAggregate; typedef QAggregate *pQAggregate; class QAggregateElem; typedef QAggregateElem *pQAggregateElem; #if QLITE_DLL typedef struct _MemMark { pVOID mark; } MemMark, far *pMemMark; typedef enum { qnodeAdd = 1, qnodeAvg = 2, qnodeCount = 3, qnodeMax = 4, qnodeMin = 5, qnodeTotal = 6, qnodeAlias = 7, qnodeAnd = 8, qnodeConstant = 9, qnodeDivide = 10, qnodeEqual = 11, qnodeField = 12, qnodeGreaterEq = 13, qnodeGreater = 14, qnodeLessEq = 15, qnodeLike = 16, qnodeLess = 17, qnodeMultiply = 18, qnodeNotEqual = 19, qnodeNot = 20, qnodeOr = 21, qnodeSubtract = 22, qnodeColumn = 23, qnodeCast = 24, qnodeAssign = 25, qnodeIsNull = 26, qnodeExists = 27, qnodeVariable = 28, qnodeSelect = 29, qnodeNegate = 30, qnodeUdf = 31, qnodeIN = 32, qnodeANY = 33, qnodeALL = 34, qnodeTrim = 35, qnodeLower = 36, qnodeUpper = 37, qnodeSubstring = 38, qnodeList = 39, qnodeExtract = 40, qnodeCorrVar = 41, qnodeTrue = 42, qnodeIsNotNull = 43, qnodeFunc = 44 } QNodeType; #define Catch(x) setjmp(x) #define Throw(x,y) longjmp(SysGetActiveSes()->JmpBuf[SysGetActiveSes()->iJmpBuf-1], y) #include "setjmp.h" typedef enum { streamSELECT, streamPROJECT } StreamType; #endif class QSet { public: QSet(); ~QSet(); pVOID GetElem(); VOID ToFirst(); UINT16 Length(); VOID AddElem( pVOID ); private: UINT16 iMaxElems; UINT16 iNumElems; ppVOID pElems; UINT16 iCurElem; UINT16 iNextElem; }; typedef QSet *pQSet; #endif class QCanExpr; typedef QCanExpr *pQCanExpr; class QCanFilter; typedef QCanFilter *pQCanFilter; class QCanExecStream; typedef QCanExecStream *pQCanExecStream; typedef pQCanExecStream *ppQCanExecStream; class QCanExecElemSet : public QSet { public: QCanExecElemSet() {}; ~QCanExecElemSet() { } pQCanExecElem GetElem() { return (pQCanExecElem) QSet::GetElem(); } }; typedef enum { eAggNoop, eAggAdd, eAggSub, eAggReset }eAggAct; class QCanExecStream { public: QCanExecStream(); ~QCanExecStream(); VOID Compile(); BOOL Execute( pBYTE pRecBuf, eAggAct eaggAct, AGGVALUE *pValue ); VOID AddElem(pVOID pElem) { pFieldExecElemSet->AddElem(pElem); } pQCanExecElem GetResElem(); pQCanExecElemSet pArgs; UINT32 lcid; pQCanExecElemSet pFieldExecElemSet; pDSBASE pDS; private: }; typedef enum { CanNoop = 0, CanFloatAdd , CanFloatSubtract , CanFloatDivide , CanFloatMultiply , CanFloatEqual , CanFloatNotEqual , CanFloatLess , CanFloatLessEq , CanFloatGreater , CanFloatGreaterEq , CanFloatNegate , CanSingleAdd , CanSingleSubtract , CanSingleDivide , CanSingleMultiply , CanSingleEqual , CanSingleNotEqual , CanSingleLess , CanSingleLessEq , CanSingleGreater , CanSingleGreaterEq , CanSingleNegate , CanBytesEqual , CanBytesNotEqual , CanBcdAdd , CanBcdSubtract , CanBcdDivide , CanBcdMultiply , CanBcdEqual , CanBcdNotEqual , CanBcdLess , CanBcdLessEq , CanBcdGreater , CanBcdGreaterEq , CanBcdNegate , CanBoolAnd , CanBoolOr , CanBoolNot , CanStringAdd , CanStringEqual , CanStringNotEqual , CanStringLess , CanStringLessEq, CanStringGreater , CanStringGreaterEq , CanStringLike, CanStringLikeRedo , CanStringLower , CanStringUpper , CanStringLowerLd , CanStringUpperLd , CanSubstring3 , CanSubstring2 , CanTrimLead , CanTrimTrail , CanTrimBoth , CanStringEqualLd , CanStringNotEqualLd , CanStringLessLd , CanStringLessEqLd, CanStringGreaterLd , CanStringGreaterEqLd , CanLongSubtract , CanLongAdd , CanLongMultiply , CanLongDivide , CanLongEqual , CanLongNotEqual , CanLongLess , CanLongLessEq, CanLongGreater , CanLongGreaterEq , CanLongNegate , CanShortSubtract , CanShortAdd , CanShortMultiply , CanShortDivide , CanShortEqual , CanShortNotEqual , CanShortLess , CanShortLessEq, CanShortGreater , CanShortGreaterEq , CanShortNegate , //U32 CanLongWordSubtract , CanLongWordAdd , CanLongWordMultiply , CanLongWordDivide , CanLongWordEqual , CanLongWordNotEqual , CanLongWordLess , CanLongWordLessEq, CanLongWordGreater , CanLongWordGreaterEq , //U16 CanWordSubtract , CanWordAdd , CanWordMultiply , CanWordDivide , CanWordEqual , CanWordNotEqual , CanWordLess , CanWordLessEq, CanWordGreater , CanWordGreaterEq , CanShortIntSubtract , CanShortIntAdd , CanShortIntMultiply , CanShortIntDivide , CanShortIntEqual , CanShortIntNotEqual , CanShortIntLess , CanShortIntLessEq, CanShortIntGreater , CanShortIntGreaterEq , CanShortIntNegate , CanByteSubtract , CanByteAdd , CanByteMultiply , CanByteDivide , CanByteEqual , CanByteNotEqual , CanByteLess , CanByteLessEq, CanByteGreater , CanByteGreaterEq , CanFmtMemoLike , CanDateShortAdd , CanDateLongAdd, CanDateSubtract, CanDateFloatAdd, CanDateFloatSubtract, CanFloatDateAdd, CanDatetimeShortAdd, CanDatetimeLongAdd, CanDatetimeFloatAdd, CanDatetimeFloatSubtract, CanTimeFloatSubtract, CanFloatDatetimeAdd, CanDatetimeSubtract, CanTimeShortAdd , CanTimeLongAdd , CanTimeFloatAdd , CanFloatTimeAdd , CanBoolEqStr , CanStrEqBool , CanBoolNotEqStr , CanStrNotEqBool , CanStrToBool , CanBoolEq , CanBoolNotEq , CanCastField , CanCastFieldLoss , CanCopyField , CanCopyBlob , CanExtractYearFromDate , CanExtractYearFromTS , CanExtractMonthFromDate , CanExtractMonthFromTS , CanExtractDayFromDate , CanExtractDayFromTS , CanExtractHourFromTS , CanExtractHourFromTime , CanExtractMinFromTS , CanExtractMinFromTime , CanExtractSecFromTS , CanExtractSecFromTime , CanShortSum, CanLongSum, CanFloatSum, CanBcdSum, CanShortAvg, CanLongAvg, CanFloatAvg, CanBcdAvg, CanDateAvg, CanShortMin, CanLongMin, CanFloatMin, CanBcdMin, CanCount, CanIsNull, CanIN, CanSmallToFloat, CanShortToFloat, CanLongToFloat, CanByteToFloat, CanWordToFloat, CanLongWordToFloat, CanUInt64ToFloat, CanBcdToFloat, CanFloatToSmall, CanFloatToShort, CanFloatToLong, CanFloatToByte, CanFloatToWord, CanFloatToLongWord, CanFloatToUInt64, CanFloatToBcd, CanSmallToSingle, CanShortToSingle, CanLongToSingle, CanByteToSingle, CanWordToSingle, CanLongWordToSingle, CanUInt64ToSingle, CanBcdToSingle, CanSingleToSmall, CanSingleToShort, CanSingleToLong, CanSingleToByte, CanSingleToWord, CanSingleToLongWord, CanSingleToUInt64, CanSingleToBcd, CanAssign, CanIsNotNull, CanTimestampToTime, CanDateToTimestamp, CanGetDateTime, CanTimestampToDate, CanMemoLike, CanExtractDateFromTS, CanExtractTimeFromTS, CanAnsiToUnicode, CanUnicodeToAnsi, CanUnicodeStringAdd, CanUnicodeStringEqual, CanUnicodeStringNotEqual , CanUnicodeStringLess , CanUnicodeStringLessEq, CanUnicodeStringGreater , CanUnicodeStringGreaterEq , CanUnicodeStringLike , CanUnicodeMemoLike , CanUnicodeStringLower , CanUnicodeStringUpper , CanUnicodeSubstring3 , CanUnicodeSubstring2 , CanUnicodeTrimLead , CanUnicodeTrimTrail , CanUnicodeTrimBoth , // from here, added for SqlTimestamp CanSqlTimestampEqual, CanSqlTimestampNotEqual , CanSqlTimestampLess , CanSqlTimestampLessEq , CanSqlTimestampGreater , CanSqlTimestampGreaterEq , CanSqlTimestampShortAdd, CanSqlTimestampLongAdd, CanSqlTimestampFloatAdd, CanSqlTimestampFloatSubtract, CanSqlTimestampOffsetEqual, CanSqlTimestampOffsetNotEqual , CanSqlTimestampOffsetLess , CanSqlTimestampOffsetLessEq , CanSqlTimestampOffsetGreater , CanSqlTimestampOffsetGreaterEq , CanSqlTimestampOffsetShortAdd, CanSqlTimestampOffsetLongAdd, CanSqlTimestampOffsetFloatAdd, CanSqlTimestampOffsetFloatSubtract, CanFloatSqlTimestampAdd, CanSqlTimestampSubtract, CanGetSqlTimestamp, CanSqlTimestampToTime, CanDateToSqlTimestamp, CanSqlTimestampToDate, CanFloatSqlTimestampOffsetAdd, CanSqlTimestampOffsetSubtract, CanGetSqlTimestampOffset, CanSqlTimestampOffsetToTime, CanDateToSqlTimestampOffset, CanSqlTimestampOffsetToDate, CanExtractYearFromSQLTS, CanExtractMonthFromSQLTS, CanExtractDayFromSQLTS, CanExtractHourFromSQLTS, CanExtractMinFromSQLTS, CanExtractSecFromSQLTS, CanExtractYearFromSQLTSOS, CanExtractMonthFromSQLTSOS, CanExtractDayFromSQLTSOS, CanExtractHourFromSQLTSOS, CanExtractMinFromSQLTSOS, CanExtractSecFromSQLTSOS, CanInt64Subtract , CanInt64Add , CanInt64Multiply , CanInt64Divide , CanInt64Equal , CanInt64NotEqual , CanInt64Less , CanInt64LessEq, CanInt64Greater , CanInt64GreaterEq , CanInt64Negate , CanInt64ToFloat , CanFloatToInt64, CanInt64ToSingle , CanSingleToInt64 } QFieldFuncType ; typedef enum { aggopNoop = 0, aggopSmallSum, aggopShortSum, aggopLongSum, aggopLongIntSum, aggopByteSum, aggopWordSum, aggopLongWordSum, aggopU64Sum, aggopFloatSum, aggopSingleSum, aggopBcdSum, aggopSmallAvg, aggopShortAvg, aggopLongAvg, aggopLongIntAvg, aggopByteAvg, aggopWordAvg, aggopLongWordAvg, aggopU64Avg, aggopFloatAvg, aggopSingleAvg, aggopBcdAvg, aggopDateAvg, aggopStringMin, aggopSmallMin, aggopShortMin, aggopLongMin, aggopLongIntMin, aggopByteMin, aggopWordMin, aggopLongWordMin, aggopU64Min, aggopFloatMin, aggopSingleMin, aggopBcdMin, aggopCount, aggopCountAll, aggopStringMax, aggopSmallMax, aggopShortMax, aggopLongMax, aggopLongIntMax, aggopByteMax, aggopWordMax, aggopLongWordMax, aggopU64Max, aggopFloatMax, aggopSingleMax, aggopBcdMax, aggopUnicodeMin, aggopUnicodeMax, aggopSqlTimestampMin, aggopSqlTimestampMax, aggopSqlTimestampAvg, aggopSqlTimestampOffsetMin, aggopSqlTimestampOffsetMax, aggopSqlTimestampOffsetAvg } QAggFuncType; typedef QFieldFuncType *pQFieldFuncType ; class QCanExecElem { public: QCanExecElem(); ~QCanExecElem(); QNodeType eType; QFieldFuncType eFuncType; QAggFuncType eAggFunc; // arg1: ppBYTE ppRecReg1; UINT32 iArg1Off; UINT32 iArg1NullOff; UINT16 iLen; UINT16 iFldType; UINT16 iArg1Units1; UINT16 iArg1Units2; UINT16 iFldNum; // arg2: UINT32 iArg2Off; UINT32 iArg2NullOff; UINT16 iLen2; ppBYTE ppRecReg2; pBYTE pRecReg2; UINT16 iArg2Units1; UINT16 iArg2Units2; // arg3: UINT32 iArg3Off; UINT32 iArg3NullOff; UINT16 iLen3; ppBYTE ppRecReg3; pBYTE pRecReg3; // result: UINT32 iResOff; UINT32 iResNullOff; ppBYTE ppRecRegRes; pBYTE pRecRegRes; UINT32 iResLen; UINT32 iResUnits1; UINT32 iResUnits2; UINT16 iPartialLen; BOOL bCaseInsensitive; BOOL bLeftIsField; UINT16 iUnitLen; // for IN list UINT16 iNumElems; // for IN list UINT16 iArgFldType; // for IN operation pCHAR pszFuncName; UINT16 iAggAcumOff; BOOL bIsAgg; pQCanExecElemSet pArgList; UINT16 iExtraAcumSpace; }; class QCanExpr { public: QCanExpr() ; ~QCanExpr(); DBIResult Compile(pCANExpr pCan); UINT32 lcid; UINT32 iFldNum; pQCanExecStream pStream; pQCanExecStream pStreamPostAgg; pUINT16 piAggNest; UINT16 iCurAggAcumOff; pDSBASE pDS; protected: ppBYTE ppRecBuf; pBYTE pRecB; ppBYTE ppAggBuf; pBYTE pAggB; DBIResult errRslt; DBIResult BuildExecStream(pCANExpr pCanExprArg); VOID BuildOp(pQCanExecElem pElem1, pQCanExecElem pElem2, pQCanExecElem pElem3, pQCanExecElem pElemRes, BOOL bIsAgg); private: QNodeType CanNodeToQNode ( CANOp canOp ); pQCanExecElem CompileCanEx(pCANNode pcanNode, BOOL bAllowBlobs); pCANExpr pCanExpr; UINT16 iCurNodeOff; UINT16 iCurLitOff; pBYTE pLitPool; pBYTE pNodePool; jmp_buf JmpBuf; }; class QCanFilter : public QCanExpr { public: QCanFilter(); ~QCanFilter(); BOOL Execute(pBYTE pRecBuf) ; DBIMSG szErrorMsg; }; #if 0 class QCanCalcField : public QCanExpr { public: QCanCalcField(); ~QCanCalcField(); DBIResult Execute(pBYTE pRecBuf) ; pFLDDesc GetResultType(pUINT16 pDataLen); DBIResult GetResult(AGGVALUE *pAggValue, pBYTE pSrc, pBYTE pDest, pBOOL pbBlank); }; #endif class QAggregate : public QCanExpr { public: QAggregate(); ~QAggregate(); DBIResult Prepare(pBYTE pExpr, pCANExpr pCan, pDSBASE pDS); DBIResult Execute(pBYTE pRecBuf) ; VOID AddValue( AGGVALUE *pValue, pBYTE pRecBuf ); BOOL SubValue( AGGVALUE *pValue, pBYTE pRecBuf ); // if TRUE, rescan needed VOID Reset(AGGVALUE *pValue ); pFLDDesc GetResultType(pUINT16 pDataLen); DBIResult GetResult(AGGVALUE *pAggValue, pBYTE pSrc, pBYTE pDest, pBOOL pbBlank); private: FLDDesc fldRes; pQCanExecElem pResElem; BOOL bInit; }; #if QLITE_DLL typedef enum { opNone, opBoolOp, opRelOp, opArithOp, opAggOp, opOther } OpType; typedef enum { clNone, clNumeric, clTime, clChar } TypeClass ; VOID SetMem( pBYTE pStr, UINT16 iLen, CHAR val); VOID MemMove( pBYTE pSrc, pBYTE pDst, UINT16 iLen); INT16 CmpMem( pBYTE pSrc, pBYTE pDst, UINT16 iLen); VOID StrCat( pBYTE pSrc, pBYTE pDst ); UINT16 StrLen( pBYTE pSrc); VOID StrCpy( pBYTE pDst, pBYTE pSrc); INT16 StrCmp( pBYTE p1, pBYTE p2); INT16 StrCmpI( pBYTE p1, pBYTE p2); VOID TrimExt( pCHAR ); VOID StrNCpy( pBYTE pDst, pBYTE pSrc, UINT16 iLen ); VOID SetMem( pCHAR pStr, UINT16 iLen, CHAR val); VOID MemMove( pCHAR pSrc, pCHAR pDst, UINT16 iLen); INT16 CmpMem( pCHAR pSrc, pCHAR pDst, UINT16 iLen); VOID StrCat( pCHAR pSrc, pCHAR pDst ); UINT16 StrLen( pCHAR pSrc); VOID StrCpy( pCHAR pDst, pCHAR pSrc); INT16 StrCmp( pCHAR p1, pCHAR p2); CHAR ToUpper ( CHAR c); CHAR ToLower ( CHAR c ); INT16 NameCmp( pBYTE, pBYTE ); #define ForEachInSet(pSet, pObj) for( pSet->ToFirst(); (pObj = pSet->GetElem()) != NULL; ) #if 0 class QAggExecElemSet : public QSet { public: QAggExecElemSet() { } ~QAggExecElemSet(); pQAggExecElem GetElem() { return (pQAggExecElem) QSet::GetElem(); } pQAggExecElem GetElem(iNum) { return (pQAggExecElem) QSet::GetElem(iNum); } }; typedef QAggExecElemSet *pQAggExecElemSet; #endif class QAggregateElem { public: QAggregateElem() ; QAggregateElem(UINT16 iOff, UINT16 iNullOff) { iOffset = iOff; iNullOffset = iNullOff; } virtual ~QAggregateElem(); virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); protected: UINT32 lCount; UINT16 iOffset; DFLOAT fAcum; DFLOAT fFinal; private: UINT16 iNullOffset; BOOL bIncludeNulls; pBYTE pInitVal; UINT16 iInitValLen; }; class AggElemShortSum : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT16 iVal; }; class AggElemLongSum : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT32 lVal; }; class AggElemFloatSum : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemSingleSum : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemBcdSum : public QAggregateElem { public: virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); }; class AggElemShortAvg : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT16 iVal; }; class AggElemLongAvg : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT32 lVal; }; class AggElemFloatAvg : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemSingleAvg : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemBcdAvg : public QAggregateElem { public: virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); }; class AggElemDateAvg : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: DBIDATE date; DBIDATE dateAvg; }; class AggElemShortMin : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT16 iVal; }; class AggElemLongMin : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT32 lVal; }; class AggElemFloatMin : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemSingleMin : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemBcdMin : public QAggregateElem { public: virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); }; class AggElemStringMin : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemShortMax : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT16 iVal; }; class AggElemLongMax : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); private: UINT32 lVal; }; class AggElemFloatMax : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemSingleMax : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); }; class AggElemBcdMax : public QAggregateElem { public: virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); }; #if 0 class AggElemCount : public QAggregateElem { public: virtual VOID Reset(); virtual VOID Add(AGGVALUE *pValue,pBYTE pRecBuf); virtual BOOL Sub(AGGVALUE *pValue,pBYTE pRecBuf); virtual pBYTE Fetch(); } #endif class QAggregateElemSet : public QSet { public: QAggregateElemSet() { } ~QAggregateElemSet(); pQAggregateElem GetElem() { return (pQAggregateElem) QSet::GetElem(); } }; typedef QAggregateElemSet *pQAggregateElemSet; #endif #endif // CANEX_H
00076ab47870e709efed7752a32f565519e09c05
8e2191bf076824a37110790fb8b718012fa13501
/src/challenge/challenge.cpp
e1454e212d2cd21d205cb33bbd37ac9f9b8358c3
[ "MIT" ]
permissive
farrer/memwar
131fbd69e4577bd01c76303d85748b9c25d58728
5b4e308f5d986ea69d0c46e46db570f6df1be8e7
refs/heads/master
2022-09-28T21:25:16.534064
2020-06-04T20:38:10
2020-06-04T20:38:10
103,827,776
0
0
null
null
null
null
UTF-8
C++
false
false
14,815
cpp
challenge.cpp
#include "challenge.h" #include "../game/mblock.h" #include "../game/pair.h" #include "../game/level.h" #include "alien.h" #include "bomb.h" #include "chrono.h" #include "compass.h" #include "punk.h" #include "thief.h" namespace MemWar { /////////////////////////////////////////////////////////////////////////// // // // Challenge // // // /////////////////////////////////////////////////////////////////////////// /*********************************************************************** * Constructor * ***********************************************************************/ Challenge::Challenge(int t, Level* l) { type=t; active=true; curLevel=l; icon = NULL; displayingInfo = false; } /*********************************************************************** * Destructor * ***********************************************************************/ Challenge::~Challenge() { if(icon) { delete(icon); } } /*********************************************************************** * setDisplayingInfo * ***********************************************************************/ void Challenge::setDisplayingInfo(bool displaying) { displayingInfo = displaying; } /*********************************************************************** * getIcon * ***********************************************************************/ ChallengeInfo* Challenge::getIcon() { return icon; } /*********************************************************************** * getType * ***********************************************************************/ int Challenge::getType() { return type; } /*********************************************************************** * isActive * ***********************************************************************/ bool Challenge::isActive() { return active; } /*********************************************************************** * setIconPosition * ***********************************************************************/ void Challenge::setIconPosition(int i) { int mod = (Goblin::ScreenInfo::shouldUseDoubleSizedGui()) ? 2 : 1; icon->setTargetPosition((2 + ((i % 5) * 26 * mod)), (10 + ( i / 5) * 26 * mod)); } /*********************************************************************** * setIcon * ***********************************************************************/ void Challenge::setIcon(Ogre::Overlay* ogreOverlay, Ogre::Real x, Ogre::Real y, Ogre::String imageFileName, bool useTime) { int mod = (Goblin::ScreenInfo::shouldUseDoubleSizedGui()) ? 2 : 1; if(icon) { delete(icon); icon = NULL; } icon = new MemWar::ChallengeInfo(ogreOverlay, x, y, imageFileName, useTime, this); icon->setDimensions(24 * mod, 24 * mod); } /*********************************************************************** * inPair * ***********************************************************************/ bool Challenge::inPair(Block* b, Pair* pairs, int totalpairs) { int i; for(i=0; i < totalpairs; i++) { if( (pairs[i].getBlock1() == b) || (pairs[i].getBlock2() == b) ) { return(true); } } return(false); } /*********************************************************************** * repospairs * ***********************************************************************/ void Challenge::reposPairs(Pair* pairs, int totalpairs, bool unMatch) { int i, p, r; Ogre::Vector2* positions; Ogre::Vector3 pos; bool* used; Block* b=NULL; int totalBlocks = totalpairs*2; if(totalpairs == 0) { /* No need to repositionate */ return; } /* Get the positions */ positions = new Ogre::Vector2[totalBlocks]; used = new bool[totalBlocks]; for(i=0; i<totalBlocks; i++) { p = i / 2; if((i % 2) == 0) { pos = pairs[p].getBlock1()->getPosition(); if(unMatch) { curLevel->decPairsDone(); } } else { pos = pairs[p].getBlock2()->getPosition(); } positions[i][0] = pos[0]; positions[i][1] = pos[2]; used[i] = false; } /* Let's randomize them */ for(i=0; i < totalBlocks; i++) { /* Get random position */ r = (int)(totalBlocks * (rand() / (RAND_MAX + 1.0))); while(used[r]) { r = (r+1)%(totalBlocks); } used[r] = true; /* Set the new Block position */ p = i / 2; if((i % 2) == 0) { b = pairs[p].getBlock1(); } else { b = pairs[p].getBlock2(); } b->setTargetPosition(positions[r][0], BLOCK_POS_Y, positions[r][1]); if(unMatch) { b->unsetMatched(); if(b->isFaceUp()) { b->setFaceDownWithoutAnimation(); } } } /* Done. Free the mallocs! */ delete[] positions; delete[] used; } /////////////////////////////////////////////////////////////////////////// // // // Challenges // // // /////////////////////////////////////////////////////////////////////////// /*********************************************************************** * Constructor * ***********************************************************************/ Challenges::Challenges(Level* l) { curLevel = l; guiOverlay = curLevel->getOverlay(); } /*********************************************************************** * Destructor * ***********************************************************************/ Challenges::~Challenges() { /* Destroy the list */ clearList(); } /*********************************************************************** * isChallenge * ***********************************************************************/ bool Challenges::isChallenge(int type) { return( (type == CHALLENGE_BOMB) || (type == CHALLENGE_THIEF) || (type == CHALLENGE_PUNK) || (type == CHALLENGE_ALIEN) || (type == CHALLENGE_LLAMA) || (type == CHALLENGE_ZOSIMA) || (type == CHALLENGE_COMPASS) ); } /*********************************************************************** * pauseTimer * ***********************************************************************/ void Challenges::pauseTimer() { int i; Challenge* chal = static_cast<Challenge*>(getFirst()); for(i=0; i < getTotal(); i++) { if(chal->isActive()) { chal->pauseTimer(); } chal = static_cast<Challenge*>(chal->getNext()); } } /*********************************************************************** * resumeTimer * ***********************************************************************/ void Challenges::resumeTimer() { int i; Challenge* chal = static_cast<Challenge*>(getFirst()); for(i=0; i < getTotal(); i++) { if(chal->isActive()) { chal->resumeTimer(); } chal = static_cast<Challenge*>(chal->getNext()); } } /*********************************************************************** * add * ***********************************************************************/ Challenge* Challenges::add(int type) { Challenge* chal = NULL; Ogre::String iconFile = ""; bool useTime = false; /* Verify if the Challenge already is active */ chal = find(type); if(chal != NULL) { /* No need to add! */ return chal; } switch(type) { case CHALLENGE_BOMB: { chal = (Challenge*) new Bomb(curLevel); iconFile = ICON_CHALLENGE_BOMB; useTime = true; } break; case CHALLENGE_THIEF: { chal = (Challenge*) new Thief(curLevel); iconFile = ICON_CHALLENGE_THIEF; useTime = true; } break; case CHALLENGE_LLAMA: { } break; case CHALLENGE_ALIEN: { chal = (Challenge*) new Alien(curLevel); iconFile = ICON_CHALLENGE_ALIEN; useTime = false; } break; case CHALLENGE_ZOSIMA: { chal = (Challenge*)new Chrono(curLevel); iconFile = ICON_CHALLENGE_ZOSIMA; useTime = true; } break; case CHALLENGE_COMPASS: { chal = (Challenge*)new Compass(curLevel); iconFile = ICON_CHALLENGE_COMPASS; useTime = false; } break; case CHALLENGE_PUNK: { chal = (Challenge*) new Punk(curLevel); iconFile = ICON_CHALLENGE_PUNK; useTime = true; } break; } /* Insert it on list and set image */ if(chal) { chal->setIcon(guiOverlay, getTotal(), 10, iconFile, useTime); chal->setIconPosition(getTotal()); insert((Kobold::ListElement*)chal); } return chal; } /*********************************************************************** * removeInactive * ***********************************************************************/ void Challenges::removeInactive() { int i; Challenge* c = static_cast<Challenge*>(getFirst()); Challenge* aux; for(i=0; i < getTotal(); i++) { if(!c->isActive()) { if(c->getIcon()->getPosX() == -100) { /* At hide position, must remove from list */ aux = c; c = static_cast<Challenge*>(c->getNext()); remove(aux); } else if(c->getIcon()->getTargetPosX() != -100) { /* Not at hide and not updating: must send to hide position */ c->getIcon()->setTargetPosition(-100, -60); c = static_cast<Challenge*>(c->getNext()); } } else { c = static_cast<Challenge*>(c->getNext()); } } } /*********************************************************************** * update * ***********************************************************************/ void Challenges::update() { int i; int iActive = 0; removeInactive(); Challenge* c = static_cast<Challenge*>(getFirst()); for(i=0; i < getTotal(); i++) { /* Only need to update if no animation is running, * otherwise, must wait the animation end. */ if(curLevel->isAnimationRunning()) { break; } if(c->isActive()) { /* Update the Challenge */ c->update(); c->setIconPosition(getTotal() - iActive - 1); /*! Update icon */ if (c->getIcon() != NULL) { c->getIcon()->update(); } c = static_cast<Challenge*>(c->getNext()); iActive++; } else { /* Just update its icon */ if (c->getIcon() != NULL) { c->getIcon()->update(); } } } } /*********************************************************************** * firstBlockSelected * ***********************************************************************/ void Challenges::firstBlockSelected(Block* b) { int i; Challenge* c = static_cast<Challenge*>(getFirst()); /* Tell all active Challenges! */ for(i=0; i < getTotal(); i++) { if(c->isActive()) { c->firstBlockSelected(b); } c = static_cast<Challenge*>(c->getNext()); } } /*********************************************************************** * PairNotMatched * ***********************************************************************/ void Challenges::pairNotMatched(Pair* p) { int i; Challenge* c = static_cast<Challenge*>(getFirst()); /* Tell all Challenges! */ for(i=0; i < getTotal(); i++) { if(c->isActive()) { c->pairNotMatched(p); } c = static_cast<Challenge*>(c->getNext()); } } /*********************************************************************** * PairMatched * ***********************************************************************/ void Challenges::pairMatched(Pair* p) { int i; Challenge* c = static_cast<Challenge*>(getFirst()); /* Tell all Challenges! */ for(i=0; i < getTotal(); i++) { if(c->isActive()) { c->pairMatched(p); } c = static_cast<Challenge*>(c->getNext()); } } /*********************************************************************** * find * ***********************************************************************/ Challenge* Challenges::find(int type) { int i; Challenge* c = static_cast<Challenge*>(getFirst()); /* search all list */ for(i=0; i < getTotal(); i++) { if((c->getType() == type) && (c->isActive())) { return c; } c = static_cast<Challenge*>(c->getNext()); } return NULL; } /*********************************************************************** * clear * ***********************************************************************/ void Challenges::clear() { int i; Challenge* c = static_cast<Challenge*>(getFirst()); /* Unapply all challenges */ for(i=0; i < getTotal(); i++) { c->unApply(); c = static_cast<Challenge*>(c->getNext()); } /* Clear the list */ clearList(); } }
64d46ff697fa7c6ccd60e79b50de5b379ace36c7
86c7687520183d49115338d66b009de1e6dbdf6f
/src/image.h
21fe407253cfac619a5b396a3798bee6c5d983f6
[]
no_license
hantempo/fuxi
0b0c390beaf14b42b910da3edb3ea5a5dae8f169
2c530225e8a362befb12761cd65b19397881b4c7
refs/heads/master
2020-04-05T22:51:11.164898
2013-12-06T14:17:31
2013-12-06T14:17:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
392
h
image.h
#ifndef _INCLUDE_IMAGE_ #define _INCLUDE_IMAGE_ #include "common.h" class Image { public: int width, height, channels; unsigned char *pixels; Image(); Image(int w, int h, int c = 4); virtual ~Image(); void set_size(int w, int h, int c); float overdraw_ratio() const; static void LoadBMP(const char *filepath, Image &image); }; #endif // _INCLUDE_IMAGE_
93078c54427719e2975e7be5f8f1780723ea9460
4ff3fd81566a5951a1dde968794eba8d9604a307
/table.cpp
4e90a462d53b81348705358b0580abeca13fc8c8
[]
no_license
tahaShm/brick-breaker-game
538b092d94d13f72c66908f42814e31f9b9fe595
62a13ce5e093b7bcdddc1f2807a52e96a0eeee7e
refs/heads/master
2023-07-17T08:00:47.736742
2021-08-27T08:24:20
2021-08-27T08:24:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,585
cpp
table.cpp
#include "table.hpp" Table::Table(int X , int Y , int W , int H ){ x = X; y = Y; width = W; height = H; for (int a = 0;a < COLS ; a++){ vector <Block> col; for (int i=0;i<ROWS;i++) col.push_back(Block(EMPTY , 0 , x + a * BLOCK_WIDTH , y + i * BLOCK_HEIGHT)); blocks.push_back(col); } srand (time(NULL)); arrivedBalls = 0; fireCatched = false; rowsDown = 0; pullRowsDown(0); } void Table::showTable(Window * win){ for (int i=0 ; i<COLS ; i++) for (int j=0 ; j<ROWS-1 ; j++) blocks[i][j].showBlock(win); } int Table::checkBallPosition(bool &spacepressed ,bool & firePower, vector<Ball> & balls){ int mode = 0; vector<vector<bool> > percussions(ROWS,vector<bool> (COLS)); for (int a=0 ; a<COLS ; a++) for (int b=0 ; b<ROWS-1 ; b++) percussions[a][b] = false; for (int a=0 ; a<COLS ; a++){ for (int b=0 ; b<ROWS-1 ; b++){ for (int i=0;i<balls.size();i++){ if (percussions[a][b] == false){ int whichPercussion = blocks[a][b].checkPercussion(&balls[i]); if (whichPercussion == BOMB){ deleteBomb(balls , a , b); } if (whichPercussion){ percussions[a][b]==true; mode = whichPercussion; } } } } } if (mode == FIREBALL) fireCatched = true; bool is_percussion = false; for (int i=0;i<balls.size();i++){ if (balls[i].getX() > x + width ){ double vx = -balls[i].getVx(); int X = 2*(x + width) - balls[i].getX(); int degree = balls[i].getDegree(); degree = 180 - degree; balls[i].setDegree(degree); balls[i].setVx(vx); balls[i].setX(X); is_percussion = true; } if (balls[i].getY() < y ){ double vy = -balls[i].getVy(); int Y = 2*(y) - balls[i].getY(); int degree = balls[i].getDegree(); degree = 360 - degree; balls[i].setDegree(degree); balls[i].setVy(vy); balls[i].setY(Y); is_percussion = true; } if (balls[i].getX() < x ){ double vx = -balls[i].getVx(); int X = 2*(x) - balls[i].getX(); int degree = balls[i].getDegree(); degree = 540 - degree; balls[i].setDegree(degree); balls[i].setVx(vx); balls[i].setX(X); is_percussion = true; } if (balls[i].getY() > y + height ){ double vy = 0; double vx = 0; int Y = 2*(y + height) - balls[i].getY(); balls[i].setDegree(90); balls[i].setVy(vy); balls[i].setVx(vx); balls[i].setY(Y); arrivedBalls ++; if (arrivedBalls == 1) setMainCoordinates(balls[i]); if (arrivedBalls == balls.size()){ setBallsCoordinates(balls); spacepressed = false; arrivedBalls = 0; score = 1; } } } if (is_percussion && balls[0].getMode() == FIRE_BALL){ for (int i=0;i<balls.size();i++){ balls[i].setDegree(90); balls[i].setVy(0); balls[i].setVx(0); balls[i].setX(x + width/2); balls[i].setY(y + height); spacepressed = false; score = 1; } unequipFirePower(balls , firePower); } return mode; } void Table::setBallsCoordinates(vector<Ball> & balls){ double X = mainX; double Y = mainY; for (int i=0 ; i<balls.size();i++){ balls[i].setX(X); balls[i].setY(Y); } } void Table::setMainCoordinates(Ball ball){ mainX = ball.getX(); mainY = ball.getY(); } void Table:: deleteBomb(vector<Ball> & balls , int a , int b){ int minCol = a+2 , minRow = b+2; int startCol = a-1 , startRow = b-1; if (minCol>COLS) minCol = COLS; if (minRow>ROWS-1) minRow = ROWS-1; if (startCol < 0) startCol = 0; if (startRow < 0) startRow = 0; for (int k=startCol;k<minCol;k++) for (int l=startRow;l<minRow;l++){ blocks[k][l].add_lowered(blocks[k][l].get_resistance()); blocks[k][l].set_resistance(0); if (blocks[k][l].get_mode() == BOMB){ blocks[k][l].set_mode(EMPTY); deleteBomb(balls , k , l); } } } void Table::unequipFirePower(vector<Ball> & balls , bool & firePower){ for (int i=0;i<balls.size();i++) balls[i].setMode(NORMAL_BALL); firePower = false; } int Table::after_turn(int playerScore){ if (score == 1){ score = 0; if (pullRowsDown(playerScore)) return 1; else return -1; } else return 0; } bool Table::pullRowsDown(int playerScore){ bool continue_game = 1; for (int i=0;i<COLS;i++){ if (continue_game){ for (int j=ROWS-2;j>0;j--){ if (j == ROWS - 2 && (blocks[i][j].get_mode() == BRICK || blocks[i][j].get_mode() == BOMB )){ continue_game = 0; break; } blocks[i][j] = blocks[i][j-1]; } } } if (continue_game){ if (rowsDown % 5 < 3){ int random1 = rand() % COLS; int random2 = rand() % COLS; random2 = (random1 + random2) % COLS; for (int i=0;i<COLS;i++){ blocks[i][0].set_mode(EMPTY); blocks[i][0].set_resistance(0); } blocks[random1][0].set_mode(BRICK); blocks[random1][0].set_resistance(playerScore + 1); blocks[random2][0].set_mode(BRICK); blocks[random2][0].set_resistance(playerScore + 1); for (int i=0;i<COLS;i++){ if (i!= random1 && i!= random2){ int R = rand() % 10; blocks[i][0].setType(R); } } } else if (rowsDown % 5 == 3){ int random1 = rand() % COLS; for (int i=0;i<COLS;i++){ blocks[i][0].set_mode(EMPTY); blocks[i][0].set_resistance(0); } blocks[random1][0].set_mode(BRICK); blocks[random1][0].set_resistance(playerScore + 1); for (int i=0;i<COLS;i++){ if (i!= random1){ int R = rand() % 10; blocks[i][0].setType(R); } } } else if (rowsDown % 5 == 4){ int random1 = rand() % COLS; for (int i=0;i<COLS;i++){ blocks[i][0].set_mode(BRICK); blocks[i][0].set_resistance(playerScore + 1); } int R = rand() % 10; blocks[random1][0].setType(R); } rowsDown ++; } return continue_game ; }
e7407605b10772650985e500b8801f8126515dae
4d8d23981e4ff9d46f4c54b76e1bd13ae83d70eb
/Program/qrs_data.h
20624a1613e0b63840c1743e9df235be4bdfb6a3
[]
no_license
kamilfocus/ESDMiT-Naive-Bayes
56becf98f5da9202d1bc083ea6430843a454508e
b43dd65db26ea62933d73d086706a6e238083db8
refs/heads/master
2020-06-17T19:12:46.191345
2017-01-12T23:08:51
2017-01-12T23:08:51
74,978,362
0
0
null
null
null
null
UTF-8
C++
false
false
828
h
qrs_data.h
#ifndef QRS_DATA_H #define QRS_DATA_H #include <Eigen/Dense> using Eigen::VectorXd; class Qrs { public: Qrs(size_t class_id, std::vector<double> & data) { this->class_id = class_id; this->data = VectorXd::Map(data.data(), data.size()); } size_t get_class_id(){ return class_id; } VectorXd & get_data(){ return data; } std::string to_string() { std::ostringstream oss; oss << class_id << ": "; for(int i = 0; i<data.size(); i++) { oss << data[i] << " "; } oss << std::endl; return oss.str(); } private: size_t class_id; VectorXd data; }; #endif // QRS_DATA_H
be9e7211b164583f181139a540187a404fe67dd8
06cc6e99ee1d0a6ad120763ad004c38d757b77cd
/pku/predi/2869/9058696_AC_32MS_724K.cc
792a6a9bfed6ae21b7238ff7f36d01a9ecd585a0
[]
no_license
MaicolGomez/ACM
0eddec0ba8325c6bdc07721acc57a361c03c4588
ff23b2c24daa5df1cc864b134886ff81a6d488c7
refs/heads/master
2020-03-06T20:57:14.628666
2018-03-28T01:46:27
2018-03-28T01:51:08
127,066,787
0
0
null
null
null
null
UTF-8
C++
false
false
1,140
cc
9058696_AC_32MS_724K.cc
#include<iostream> #include<sstream> #include<cstdio> #include<vector> #include<algorithm> using namespace std; int n , a; bool valida( vector <int> v){ sort( v.begin() , v.end() ); for(int i = 0 ; i < n ; i++){ if( v[i] != i + 1) return false; } return true; } int main(){ while( scanf("%d",&n) ){ if( n == 0 ) break; vector <int> v , res; for(int i = 0 ; i < n ; i++){ scanf("%d",&a); v.push_back(a); } if( valida( v ) ){ for(int i = 0 ; i < n - 1 ; i++){ for(int j = 0 ; j < n - 1 ; j++){ if( v[j] > v[j+1] ){ swap( v[j] , v[j+1] ); res.push_back(j+1); } } } int tam = res.size(); //cout<<tam<<" >>>"; printf("%d",tam); for(int i = 0 ; i < res.size() ; i++){ printf(" %d",res[i]); } puts(""); } else puts("No solution"); } }
8d0e70e2f20d508a4adc0566c06b304f6f734131
d162b2d449f312d6a376e35581f49cf035b4d0c9
/utils_lib/tags/1.0.0/Include/Verbose/VerboseUtil.hpp
ed727aef4743f7be995c3d558063525b6830cf3f
[]
no_license
awangenh/fogo
0aeec41c7496ec01bc36aabe9ffb2fe4839fa4d3
e4f1c27049edf5bdc3c0870757477c0fdc7c6fc0
refs/heads/master
2020-05-18T12:27:50.922343
2018-09-06T18:55:48
2018-09-06T18:55:48
184,408,611
0
0
null
null
null
null
UTF-8
C++
false
false
1,105
hpp
VerboseUtil.hpp
#ifndef VERBOSEUTIL_HPP_ #define VERBOSEUTIL_HPP_ // --------------- INCLUDE's -------------- // //std stuff #include <string> #include <istream> #include <map> #include <vector> // ----------- class VERBOSEUNIT ---------- // class VerboseUnit { public: virtual bool Process(const std::string& str) = 0; bool IsOptional() {return m_optional;}; protected: bool m_optional; }; // ----------- namespace UTILS ------------ // namespace Utils { int VerboseReader(std::istream& input, std::map<std::string,VerboseUnit* >& states_map, char delimiter = '\n'); int VerboseReader(std::istream& input, std::vector<VerboseUnit*>& states, char delimiter = '\n'); /*int VerboseReader(int argc, char** argv, std::map<std::string,VerboseUnit* >& states_map, char delimiter = '\n'); */ }; // ---------------------------------------- // #endif /*VERBOSEUTIL_HPP_*/
5d866989c238a831fa3bbf559cff96f7c4f4d53a
073f9a3b6e9defde09bdb453d7c79a2169c4a31b
/2015-04-11 Google Codejam Qualification/b.cpp
8727477a9fb5102c48df511f5aa6f9f12d5f5770
[]
no_license
kenrick95/code-archive
9dc1c802f6d733ad10324ed217bacd3d4b2c455f
72c420353e3aa7b18af6970b6a81f710c4f5d1b0
refs/heads/master
2021-03-24T12:47:52.016103
2018-07-08T13:22:46
2018-07-08T13:22:46
69,313,404
1
0
null
null
null
null
UTF-8
C++
false
false
2,140
cpp
b.cpp
#include <iostream> #include <fstream> #include <cstdio> #include <cmath> #include <algorithm> #include <cstring> #include <string> //#include <bits/stdc++.h> #define INF 1000000007 #define INFLL 9223372036854775807LL typedef long long int64; typedef unsigned long long qword; using namespace std; /** * @problem Problem B. Infinite House of Pancakes * @url * @status */ int T, D, P[1010], sav[1010]; int f(int P[], int n) { // for (int i = 0; i < n; ++i) { // printf("%d ", P[i]); // } // printf("\n"); // if all P = 0, return bool allzero = true; int max_P = P[0], max_P_idx = 0; for (int i = 0; i < n; ++i) { if (P[i] != 0) { allzero = false; break; } if (P[i] > max_P) { max_P = P[i]; max_P_idx = i; } } if (allzero) return 0; // normal hours int cP[n]; for (int i = 0; i < n; ++i) { cP[i] = P[i]; if (P[i]) P[i]--; } int ret = f(P, n) + 1; for (int i = 0; i < n; ++i) { P[i] = cP[i]; } // special hours for (int i = 0; i < n; ++i) { P[i] = cP[i]; } int bef = P[max_P_idx]; if (bef > 1) { P[max_P_idx] = bef / 2; P[n] = bef - P[max_P_idx]; // printf("##############\n"); // for (int i = 0; i < n; ++i) { // printf("%d ", cP[i]); // } // printf("\n"); // for (int i = 0; i < n + 1; ++i) { // printf("%d ", P[i]); // } // printf("\n"); // printf("##############\n"); ret = min(ret, f(P, n + 1) + 1); for (int i = 0; i < n; ++i) { P[i] = cP[i]; } } return ret; } int main(){ // freopen("test.in","r",stdin); // freopen("test.out","w",stdout); scanf("%d", &T); int ans; memset(sav, -1, sizeof sav); for (int t = 1; t <= T; t++) { scanf("%d", &D); for (int i = 0; i < D; i++) { scanf("%d", &P[i]); } ans = f(P, D); printf("Case #%d: %d\n", t, ans); } return 0; }
7e4352e43c10ef08d9a1405e4df194686127196a
b08b7e3160ae9947b6046123acad8f59152375c3
/Programming Language Detection/Experiment-2/Dataset/Train/C++/casting-out-nines-3.cpp
d2bccd8cf487f4d91d54a2498c9593da7e574902
[]
no_license
dlaststark/machine-learning-projects
efb0a28c664419275e87eb612c89054164fe1eb0
eaa0c96d4d1c15934d63035b837636a6d11736e3
refs/heads/master
2022-12-06T08:36:09.867677
2022-11-20T13:17:25
2022-11-20T13:17:25
246,379,103
9
5
null
null
null
null
UTF-8
C++
false
false
181
cpp
casting-out-nines-3.cpp
struct ran { const int base; std::vector<int> rs; ran(const int base) : base(base) { for (int nz=0; nz<base-1; nz++) if(SumDigits(nz) == SumDigits(nz*nz)) rs.push_back(nz); } };
8bfb8bc741c7c6fc11e720e38b85335a998d9245
056031c0883e9e9547af1726a97e2973ad28f155
/blatt02/a06-zaehlen-basis-3.cpp
c05587728a3d5524706feed2e0a425bbd961d8d5
[]
no_license
mxsg/programmieren-cpp
c30dbc6bbe0e8ed3d43fe7079376bc6022dc9709
99be3608bd532f30435d554bb2f6b95bb1de1bd1
refs/heads/master
2021-01-01T17:10:56.838145
2015-01-17T00:44:43
2015-01-17T00:44:43
20,354,890
0
0
null
null
null
null
UTF-8
C++
false
false
398
cpp
a06-zaehlen-basis-3.cpp
/* * Programmieren fuer Physiker: C++ * SS 2014 * * Aufgabe 6 * Zaehlen in der Basis 3 */ #include <iostream> using namespace std; int main() { int counter = 0; for(int i = 0; i < 3; i++) { for(int j = 0; j < 3; j++) { for(int k = 0; k < 3; k++) { cout << i << j << k << "[3] = " << counter << "[10]" << endl; counter++; } } } return(0); }
ead32ca11ff06c21f576ea79d80b97858fa727ff
f35c55c79faadc1b4b11c36453a1d12a32309870
/models/client_models/fortnite_session_client_type.cpp
2ab4befa8e7ed2b6632a48048fb213524a5b1b15
[]
no_license
bluzelle/cache-simulator
9f343b4d29bfa1550239bca8989278e8a5a01960
10019563a8c02c307448b71cbf7ef64dc0cd940d
refs/heads/master
2020-05-27T05:09:11.845426
2019-07-24T23:28:55
2019-07-24T23:28:55
188,495,073
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cpp
fortnite_session_client_type.cpp
#include <models/client_models/fortnite_session_client_type.hpp> using namespace ksim; fortnite_session_client_type::fortnite_session_client_type(const ksim::location_model& location_model, const Json::Value& spec) : regions(location_model, spec["regions_x"].asUInt(), spec["regions_y"].asUInt()) , clients_per_session(spec["clients_per_session"].asUInt()) {} client_work_spec fortnite_session_client_type::generate(ksim::location_model::location_t loc) { auto key = this->regions.region_key(loc); client_work_spec work; if (this->slots_remaining.count(key) == 0) { this->slots_remaining[key] = 0; } if (this->slots_remaining.at(key) == 0) { this->sessions_building[key] = this->rand.next_string(20); this->sessions_building[key] += " [fortnite session chunk " + std::to_string(this->sessions_built[key]) + " for " + region_model::to_string(key) + "]"; this->slots_remaining[key] = this->clients_per_session; this->sessions_built[key]++; } this->slots_remaining[key]--; work.chunk = this->sessions_building[key]; work.name = "fortnite client for session chunk"; return work; }
da0b637080e8e232052e4b875c0dc9fa309b8030
c029229195cc5e8b049d11763d31708a90064752
/code/1084.cpp
92326e6fb5b193e43dbc99c92f6408bbce4c8f83
[ "MIT" ]
permissive
Tomspiano/PAT-Advanced-Level-Practice
83abe3a1255429846f66977a946fa77d7e00af62
e7f543a23f852bcbad52170897a42b41622191ed
refs/heads/master
2022-11-28T15:28:01.791633
2020-08-18T18:29:19
2020-08-18T18:29:19
282,151,437
0
0
null
null
null
null
UTF-8
C++
false
false
496
cpp
1084.cpp
#include<bits/stdc++.h> #define N 85 using namespace std; #define rep(i,a,b) for(int i=(a); i<(b); ++i) char s[2][N], c; unordered_set<char> us; //set<char> us; int main() { scanf("%s", s[0]); scanf("%s", s[1]); int len1=strlen(s[0]), len2=strlen(s[1]); int j = 0; rep(i,0,len1) { if(s[0][i] == s[1][j]) { ++j; } else { c = s[0][i]; if(c>='a' && c<='z') c = c - 'a' + 'A'; if(us.find(c) == us.end()) { us.insert(c); printf("%c", c); } } } return 0; }
5de5342b39c9097e75a17c7b6e63b0526a516270
de6e12cfd3d8206659bcf12b3cf5824a456365e8
/codeforces/1005A.cpp
53348503b576312ba13deb3d0f59d53c7589a5bc
[]
no_license
NitinSundar/Comp
15d443f1f9d16f230f43af677c14d973eae81b25
639f35a7a58ae045964e4090246f363ed6d33a05
refs/heads/master
2020-06-13T09:28:47.579817
2019-07-24T16:12:07
2019-07-24T16:12:07
194,613,376
0
0
null
null
null
null
UTF-8
C++
false
false
548
cpp
1005A.cpp
#include<bits/stdc++.h> using namespace std; typedef long long int lli; #define pb push_back #define mp make_pair #define mod 1000000007 #define IOS ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); int main() { IOS int n; cin>>n; int x =0; vector<int> ans; for(int i=0;i<n;i++) { int y; cin>>y; if(y == 1) { if(x != 0) { ans.push_back(x); x = 1; } else { x = 1; } } else x++; } if(x) ans.push_back(x); cout<<ans.size()<<endl; for(int i=0;i<ans.size();i++) cout<<ans[i]<<" "; return 0; }
30c9da4ac721441fbb6540cbd125b84ddfcf6b2a
fd9f5186fa5d19db077dbf302fe9c940cb42e82f
/src/graph/executor/admin/ShowMetaLeaderExecutor.cpp
86a95241915b6843ddfa618ef8a0e78910a81f6b
[ "Apache-2.0" ]
permissive
vesoft-inc/nebula
a0b9af548e124e59ecbfb0c5152098a1020b621c
7c32088dec1891870a24aaa37ee5818e69f5ad6d
refs/heads/master
2023-08-17T00:00:29.022525
2023-08-16T04:02:03
2023-08-16T04:02:03
146,459,443
11,007
1,220
Apache-2.0
2023-09-05T05:48:16
2018-08-28T14:25:09
C++
UTF-8
C++
false
false
960
cpp
ShowMetaLeaderExecutor.cpp
// Copyright (c) 2020 vesoft inc. All rights reserved. // // This source code is licensed under Apache 2.0 License. #include "graph/executor/admin/ShowMetaLeaderExecutor.h" #include <thrift/lib/cpp/util/EnumUtils.h> #include "common/time/TimeUtils.h" #include "graph/planner/plan/Admin.h" namespace nebula { namespace graph { folly::Future<Status> ShowMetaLeaderExecutor::execute() { SCOPED_TIMER(&execTime_); auto metaLeader = qctx()->getMetaClient()->getMetaLeader(); auto now = time::WallClock::fastNowInMilliSec(); auto lastHeartBeatTime = qctx()->getMetaClient()->HeartbeatTime(); auto intervalMs = now - lastHeartBeatTime; DataSet ds({"Meta Leader", "secs from last heart beat"}); auto strLeader = folly::sformat("{}:{}", metaLeader.host, metaLeader.port); nebula::Row r({std::move(strLeader), intervalMs / 1000}); ds.emplace_back(std::move(r)); finish(ds); return Status::OK(); } } // namespace graph } // namespace nebula
0e98ed28ba3d39bfb80f6a241b4021eafeac3dd3
47e2a00360201ef23dbf869e2c44f4d20d60e21b
/src/googleclouddebugger/common.h
98d393f7104d9a29378a735c4bd09ff41a97bcbe
[ "Apache-2.0" ]
permissive
thegamer87/cloud-debug-python
72c57b88bc0f3aac44e61a4606a70f5785ec2da6
22cf43bf3d2969c6eb45878a2957eb073163fe3f
refs/heads/master
2020-04-23T06:48:15.525263
2019-02-25T16:18:51
2019-02-25T16:18:51
170,986,086
0
1
Apache-2.0
2019-02-16T09:32:20
2019-02-16T09:32:20
null
UTF-8
C++
false
false
2,560
h
common.h
/** * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef DEVTOOLS_CDBG_DEBUGLETS_PYTHON_COMMON_H_ #define DEVTOOLS_CDBG_DEBUGLETS_PYTHON_COMMON_H_ // // Open source includes and definition of common constants. // // Python.h must be included before any other header files. // For details see: https://docs.python.org/2/c-api/intro.html #include "Python.h" #include "frameobject.h" #include "structmember.h" #include "opcode.h" #include <string.h> #include <stdint.h> #include <memory> #include "glog/logging.h" #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ TypeName(const TypeName&) = delete; \ void operator=(const TypeName&) = delete template <typename T, size_t N> char (&ArraySizeHelper(const T (&array)[N]))[N]; #define arraysize(array) (sizeof(ArraySizeHelper(array))) typedef signed char int8; typedef short int16; typedef int int32; typedef long long int64; typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; typedef unsigned long long uint64; using std::string; using google::LogSink; using google::LogSeverity; using google::AddLogSink; using google::RemoveLogSink; // Python 3 compatibility #if PY_MAJOR_VERSION >= 3 // Python 2 has both an 'int' and a 'long' type, and Python 3 only as an 'int' // type which is the equivalent of Python 2's 'long'. // PyInt* functions will refer to 'int' in Python 2 and 3. #define PyInt_FromLong PyLong_FromLong #define PyInt_AsLong PyLong_AsLong #define PyInt_CheckExact PyLong_CheckExact // Python 3's 'bytes' type is the equivalent of Python 2's 'str' type, which are // byte arrays. Python 3's 'str' type represents a unicode string. // In this codebase: // PyString* functions will refer to 'str' in Python 2 and 3. // PyBytes* functions will refer to 'str' in Python 2 and 'bytes' in Python 3. #define PyString_AsString PyUnicode_AsUTF8 #endif #endif // DEVTOOLS_CDBG_DEBUGLETS_PYTHON_COMMON_H_
1122cf0212a12497dcf865b36bd05a04c689364b
38b9daafe39f937b39eefc30501939fd47f7e668
/tutorials/2WayCouplingOceanWave3D/EvalResults180628-oneWay/69.8/phi
2ff4dc626f521ad5fd1e2c4c41993b45217d62dc
[]
no_license
rubynuaa/2-way-coupling
3a292840d9f56255f38c5e31c6b30fcb52d9e1cf
a820b57dd2cac1170b937f8411bc861392d8fbaa
refs/heads/master
2020-04-08T18:49:53.047796
2018-08-29T14:22:18
2018-08-29T14:22:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
530,005
phi
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "69.8"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 42423 ( -0.000155536 3.65054e-06 -0.000158484 2.94761e-06 -0.000160803 2.3195e-06 -0.000162511 1.70788e-06 -0.000163613 1.10243e-06 -0.00016414 5.26365e-07 -0.000163988 -1.51471e-07 -0.000163181 -8.0779e-07 -0.000161795 -1.38604e-06 -0.000159649 -2.14599e-06 -0.000156847 -2.80119e-06 -0.000153394 -3.45365e-06 -0.00014907 -4.32369e-06 -0.000143992 -5.0782e-06 -0.000138051 -5.94094e-06 -0.000131279 -6.77198e-06 -0.000123776 -7.5027e-06 -0.000115297 -8.47917e-06 -0.000105857 -9.44062e-06 -9.5523e-05 -1.03336e-05 -8.41479e-05 -1.13751e-05 -7.17376e-05 -1.24104e-05 -5.84896e-05 -1.32479e-05 -4.41866e-05 -1.43031e-05 -2.90378e-05 -1.51488e-05 -1.29831e-05 -1.60548e-05 3.88509e-06 -1.68682e-05 2.1265e-05 -1.73799e-05 3.92509e-05 -1.7986e-05 5.76542e-05 -1.84034e-05 7.61267e-05 -1.84726e-05 9.46259e-05 -1.84992e-05 0.000112863 -1.82368e-05 0.000130635 -1.77729e-05 0.00014771 -1.70746e-05 0.000163715 -1.60047e-05 0.000178465 -1.475e-05 0.000191744 -1.32799e-05 0.000203302 -1.15578e-05 0.000213005 -9.70329e-06 0.000220649 -7.6438e-06 0.000226114 -5.46447e-06 0.000229285 -3.17127e-06 0.000230093 -8.08264e-07 0.000228562 1.53094e-06 0.000224752 3.81035e-06 0.000218613 6.13846e-06 0.00021043 8.18345e-06 0.000200314 1.01159e-05 0.000188377 1.19363e-05 0.000174895 1.34826e-05 0.000160115 1.47799e-05 0.000144272 1.58426e-05 0.000127617 1.66554e-05 0.000110355 1.72619e-05 9.26743e-05 1.76805e-05 7.4801e-05 1.78733e-05 5.69122e-05 1.78888e-05 3.92685e-05 1.76436e-05 2.19951e-05 1.72733e-05 5.26188e-06 1.67332e-05 -1.08344e-05 1.60962e-05 -2.62418e-05 1.54074e-05 -4.08737e-05 1.46319e-05 -5.4673e-05 1.37993e-05 -6.75918e-05 1.29188e-05 -7.95771e-05 1.19852e-05 -9.06761e-05 1.10991e-05 -0.000100824 1.01478e-05 -0.000110147 9.32313e-06 -0.000118562 8.41517e-06 -0.000126082 7.51996e-06 -0.000132911 6.82875e-06 -0.000138912 6.00106e-06 -0.000144134 5.22248e-06 -0.000148671 4.53676e-06 -0.000152428 3.75695e-06 -0.00015554 3.11194e-06 -0.000157968 2.4275e-06 -0.000159669 1.70136e-06 -0.000160724 1.0549e-06 -0.000161124 4.00357e-07 -0.000160794 -3.30615e-07 -0.000159756 -1.03749e-06 -0.000157993 -1.76341e-06 -0.000155471 -2.52191e-06 -0.00015225 -3.22125e-06 -0.000148192 -4.05753e-06 -0.000143369 -4.82345e-06 -0.000137727 -5.6419e-06 -0.00013123 -6.49716e-06 -0.000123894 -7.33606e-06 -0.000115791 -8.10245e-06 -0.000106878 -8.91358e-06 -9.72203e-05 -9.6573e-06 -8.68428e-05 -1.03775e-05 -7.57826e-05 -1.10603e-05 -6.40191e-05 -1.17635e-05 -5.15973e-05 -1.24218e-05 -3.84901e-05 -1.31073e-05 -2.48133e-05 -1.36768e-05 -1.0492e-05 -1.43214e-05 4.43547e-06 -1.49275e-05 1.99472e-05 -1.55118e-05 3.58857e-05 -1.59386e-05 5.22087e-05 -1.6323e-05 6.87834e-05 -1.65748e-05 8.5427e-05 -1.66436e-05 0.000102017 -1.65896e-05 0.000118341 -1.63242e-05 0.000134238 -1.58978e-05 0.000149546 -1.53075e-05 0.000164002 -1.44566e-05 0.000177461 -1.34589e-05 0.000189715 -1.22542e-05 0.000200572 -1.08565e-05 0.000209844 -9.27241e-06 0.000217362 -7.51777e-06 0.00022298 -5.6182e-06 0.000226574 -3.59433e-06 0.000228061 -1.48648e-06 0.000227369 6.9192e-07 0.000224463 2.90556e-06 0.000219268 5.19545e-06 0.000212014 7.25389e-06 0.000202734 9.28009e-06 0.000191598 1.11353e-05 0.000178787 1.28112e-05 0.000164503 1.42843e-05 0.000148983 1.55196e-05 0.000132386 1.65965e-05 0.000115064 1.73226e-05 9.71932e-05 1.78706e-05 7.90254e-05 1.81678e-05 6.07633e-05 1.82621e-05 4.26206e-05 1.81427e-05 2.48413e-05 1.77793e-05 7.44157e-06 1.73997e-05 -9.28756e-06 1.67291e-05 -2.53106e-05 1.6023e-05 -4.04375e-05 1.51269e-05 -5.46375e-05 1.42e-05 -6.7828e-05 1.31905e-05 -8.00591e-05 1.2231e-05 -9.12007e-05 1.11416e-05 -0.000101301 1.01003e-05 -0.000110362 9.06077e-06 -0.000118415 8.05343e-06 -0.000125514 7.09922e-06 -0.000131668 6.15379e-06 -0.000136912 5.24385e-06 -0.000141419 4.50716e-06 -0.000145134 3.71437e-06 -0.000148151 3.01707e-06 -0.000150489 2.33798e-06 -0.000152205 1.71608e-06 -0.000153328 1.12313e-06 -0.000153895 5.66653e-07 -0.000153949 5.47982e-08 -0.00015351 -4.39231e-07 -0.000152552 -9.58296e-07 -0.000151105 -1.44721e-06 -0.000149149 -1.95546e-06 -0.000146662 -2.48722e-06 -0.000143624 -3.03822e-06 -0.000139991 -3.63246e-06 -0.000135783 -4.20801e-06 -0.000130925 -4.85792e-06 -0.000125417 -5.50837e-06 -0.000119261 -6.15635e-06 -0.000112399 -6.86194e-06 -0.000104794 -7.60448e-06 -9.64567e-05 -8.33769e-06 -8.73024e-05 -9.15436e-06 -7.73165e-05 -9.98591e-06 -6.65786e-05 -1.07379e-05 -5.50018e-05 -1.15768e-05 -4.25907e-05 -1.24111e-05 -2.93498e-05 -1.3241e-05 -1.53076e-05 -1.40422e-05 -5.43684e-07 -1.4764e-05 1.49354e-05 -1.54791e-05 3.1006e-05 -1.60707e-05 4.75533e-05 -1.65474e-05 6.43793e-05 -1.68261e-05 8.14191e-05 -1.70398e-05 9.83856e-05 -1.69666e-05 0.000115131 -1.67455e-05 0.000131385 -1.62538e-05 0.000146895 -1.55098e-05 0.000161387 -1.44927e-05 0.000174604 -1.32174e-05 0.000186314 -1.17093e-05 0.000196207 -9.89304e-06 0.000204099 -7.89236e-06 0.00020981 -5.71122e-06 0.000213109 -3.29852e-06 0.000213952 -8.43733e-07 0.000212319 1.63349e-06 0.000208128 4.19024e-06 0.000201539 6.58961e-06 0.000192723 8.81612e-06 0.000181738 1.09846e-05 0.000168881 1.2857e-05 0.000154364 1.45167e-05 0.00013847 1.58938e-05 0.000121417 1.70528e-05 0.0001036 1.78172e-05 8.52832e-05 1.8317e-05 6.66565e-05 1.86267e-05 4.81408e-05 1.85157e-05 2.9915e-05 1.82258e-05 1.20455e-05 1.78694e-05 -5.18739e-06 1.72329e-05 -2.17219e-05 1.65345e-05 -3.7434e-05 1.57121e-05 -5.22964e-05 1.48625e-05 -6.63121e-05 1.40156e-05 -7.92597e-05 1.29476e-05 -9.11906e-05 1.19309e-05 -0.000102166 1.09755e-05 -0.000112075 9.90901e-06 -0.000120995 8.91983e-06 -0.000128965 7.96964e-06 -0.000135983 7.01845e-06 -0.000142258 6.27492e-06 -0.000147715 5.45664e-06 -0.000152466 4.7517e-06 -0.000156513 4.04654e-06 -0.000159885 3.37205e-06 -0.000162605 2.72044e-06 -0.000164706 2.10017e-06 -0.000166181 1.47548e-06 -0.000167014 8.32991e-07 -0.000167283 2.68617e-07 -0.000167022 -2.60149e-07 -0.000166209 -8.13559e-07 -0.00016491 -1.29859e-06 -0.000163146 -1.76474e-06 -0.000160903 -2.24276e-06 -0.000158129 -2.77432e-06 -0.000154714 -3.41453e-06 -0.000150596 -4.11825e-06 -0.000145724 -4.87176e-06 -0.000140036 -5.68781e-06 -0.000133445 -6.59121e-06 -0.000125957 -7.48798e-06 -0.000117581 -8.3758e-06 -0.000108319 -9.26258e-06 -9.82071e-05 -1.01117e-05 -8.72748e-05 -1.09323e-05 -7.55511e-05 -1.17237e-05 -6.30259e-05 -1.25253e-05 -4.97453e-05 -1.32806e-05 -3.57327e-05 -1.40126e-05 -2.10903e-05 -1.46425e-05 -5.87887e-06 -1.52115e-05 9.79749e-06 -1.56764e-05 2.58211e-05 -1.60237e-05 4.20461e-05 -1.6225e-05 5.84132e-05 -1.63672e-05 7.47515e-05 -1.63384e-05 9.07958e-05 -1.60443e-05 0.000106391 -1.55951e-05 0.000121214 -1.48234e-05 0.000134931 -1.37172e-05 0.000147296 -1.23645e-05 0.000158011 -1.07148e-05 0.000166837 -8.82684e-06 0.000173566 -6.72893e-06 0.000178144 -4.57783e-06 0.000180443 -2.29927e-06 0.000180416 2.68881e-08 0.000178249 2.16714e-06 0.000173973 4.27566e-06 0.000167737 6.2359e-06 0.000159637 8.10069e-06 0.000149883 9.75404e-06 0.00013889 1.0993e-05 0.000126659 1.22305e-05 0.000113563 1.30965e-05 9.96166e-05 1.39459e-05 8.48417e-05 1.47749e-05 6.95186e-05 1.53231e-05 5.34997e-05 1.60189e-05 3.71225e-05 1.63772e-05 2.05301e-05 1.65924e-05 3.97641e-06 1.65537e-05 -1.2424e-05 1.64004e-05 -2.83302e-05 1.59061e-05 -4.36675e-05 1.53373e-05 -5.82139e-05 1.45464e-05 -7.19167e-05 1.37027e-05 -8.47711e-05 1.28544e-05 -9.66827e-05 1.19116e-05 -0.000107664 1.09818e-05 -0.00011774 1.00758e-05 -0.000126871 9.13121e-06 -0.000135085 8.21399e-06 -0.000142405 7.31944e-06 -0.000148825 6.4202e-06 -0.000154392 5.56702e-06 -0.00015908 4.68784e-06 -0.000162899 3.81877e-06 -0.00016587 2.97159e-06 -0.00016795 2.07972e-06 -0.000169114 1.16348e-06 -0.000169401 2.87258e-07 -0.00016898 -4.20535e-07 -0.000167841 -1.13912e-06 -0.000165881 -1.96053e-06 -0.000163037 -2.8436e-06 -0.000159361 -3.6763e-06 -0.000154828 -4.53259e-06 -0.000149213 -5.61496e-06 -0.000142654 -6.55907e-06 -0.000134976 -7.67822e-06 -0.000126319 -8.65739e-06 -0.000116707 -9.61183e-06 -0.000105966 -1.07413e-05 -9.40633e-05 -1.19022e-05 -8.12002e-05 -1.28631e-05 -6.72284e-05 -1.39718e-05 -5.23326e-05 -1.48959e-05 -3.62898e-05 -1.60429e-05 -1.92995e-05 -1.69903e-05 -1.80335e-06 -1.74962e-05 1.6422e-05 -1.82254e-05 3.51933e-05 -1.87714e-05 5.41603e-05 -1.8967e-05 7.33299e-05 -1.91697e-05 9.24864e-05 -1.91566e-05 0.000111172 -1.86853e-05 0.000129313 -1.81408e-05 0.000146567 -1.72543e-05 0.000162747 -1.61806e-05 0.000177618 -1.48709e-05 0.000190821 -1.32027e-05 0.000202201 -1.13804e-05 0.000211561 -9.35977e-06 0.000218673 -7.11225e-06 0.000223454 -4.78044e-06 0.000225826 -2.37214e-06 0.000225712 1.13539e-07 0.00022309 2.62169e-06 0.000217886 5.20442e-06 0.0002104 7.48579e-06 0.00020072 9.67987e-06 0.000188866 1.18546e-05 0.000175287 1.35784e-05 0.000160062 1.52254e-05 0.000143603 1.64581e-05 0.00012599 1.76134e-05 0.000107433 1.85573e-05 8.84605e-05 1.89721e-05 6.90878e-05 1.93726e-05 1.94563e-05 -0.000155569 7.30669e-06 -0.00015852 5.89874e-06 -0.000160846 4.64527e-06 -0.000162558 3.42024e-06 -0.000163661 2.20529e-06 -0.000164183 1.04857e-06 -0.000164029 -3.0528e-07 -0.00016322 -1.61653e-06 -0.000161842 -2.76498e-06 -0.000159697 -4.29055e-06 -0.000156891 -5.6076e-06 -0.00015344 -6.90402e-06 -0.000149122 -8.64158e-06 -0.000144043 -1.01577e-05 -0.000138103 -1.18811e-05 -0.000131328 -1.35472e-05 -0.000123825 -1.50058e-05 -0.000115344 -1.69597e-05 -0.00010591 -1.88752e-05 -9.55812e-05 -2.0662e-05 -8.41963e-05 -2.27601e-05 -7.17853e-05 -2.48214e-05 -5.8537e-05 -2.64963e-05 -4.42298e-05 -2.86104e-05 -2.9077e-05 -3.03016e-05 -1.30154e-05 -3.21164e-05 3.85386e-06 -3.37376e-05 2.12448e-05 -3.47709e-05 3.92418e-05 -3.59832e-05 5.76489e-05 -3.68105e-05 7.61307e-05 -3.69544e-05 9.46396e-05 -3.70082e-05 0.000112887 -3.64845e-05 0.000130673 -3.55584e-05 0.00014776 -3.41624e-05 0.000163774 -3.20181e-05 0.000178542 -2.95186e-05 0.000191835 -2.65732e-05 0.000203397 -2.31195e-05 0.000213107 -1.94133e-05 0.000220756 -1.52933e-05 0.000226222 -1.09299e-05 0.0002294 -6.34979e-06 0.000230211 -1.61902e-06 0.000228667 3.07448e-06 0.000224858 7.61918e-06 0.000218719 1.2278e-05 0.000210526 1.63761e-05 0.000200408 2.02336e-05 0.00018846 2.38844e-05 0.000174969 2.69732e-05 0.000160181 2.95688e-05 0.000144329 3.16945e-05 0.000127666 3.3318e-05 0.000110392 3.45362e-05 9.27014e-05 3.53708e-05 7.48137e-05 3.57609e-05 5.69181e-05 3.57844e-05 3.92665e-05 3.52952e-05 2.19859e-05 3.45539e-05 5.24371e-06 3.34754e-05 -1.08667e-05 3.22067e-05 -2.62815e-05 3.08222e-05 -4.09243e-05 2.92746e-05 -5.47254e-05 2.76004e-05 -6.76467e-05 2.58401e-05 -7.96329e-05 2.39714e-05 -9.07415e-05 2.22076e-05 -0.000100891 2.02972e-05 -0.000110213 1.86456e-05 -0.000118624 1.68258e-05 -0.000126141 1.50365e-05 -0.000132973 1.36612e-05 -0.000138977 1.20049e-05 -0.000144198 1.04434e-05 -0.000148734 9.07237e-06 -0.000152487 7.5102e-06 -0.0001556 6.2251e-06 -0.000158028 4.85566e-06 -0.000159732 3.40557e-06 -0.000160786 2.10811e-06 -0.000161186 8.0104e-07 -0.000160854 -6.6252e-07 -0.000159811 -2.0804e-06 -0.000158055 -3.52027e-06 -0.000155529 -5.04804e-06 -0.000152302 -6.44796e-06 -0.000148242 -8.11716e-06 -0.000143415 -9.65039e-06 -0.000137768 -1.12888e-05 -0.000131268 -1.2998e-05 -0.000123923 -1.46808e-05 -0.00011581 -1.62158e-05 -0.000106888 -1.78349e-05 -9.72223e-05 -1.93234e-05 -8.68393e-05 -2.07606e-05 -7.57774e-05 -2.21222e-05 -6.40136e-05 -2.35274e-05 -5.15921e-05 -2.48434e-05 -3.84838e-05 -2.62156e-05 -2.48113e-05 -2.73495e-05 -1.04795e-05 -2.86533e-05 4.4537e-06 -2.98608e-05 1.99699e-05 -3.1028e-05 3.59155e-05 -3.18844e-05 5.22467e-05 -3.26543e-05 6.88308e-05 -3.3159e-05 8.54768e-05 -3.32897e-05 0.000102074 -3.31869e-05 0.000118411 -3.26611e-05 0.000134321 -3.18086e-05 0.000149644 -3.06301e-05 0.00016411 -2.89231e-05 0.000177579 -2.69271e-05 0.00018984 -2.45159e-05 0.0002007 -2.1716e-05 0.000209973 -1.85454e-05 0.000217489 -1.50344e-05 0.000223112 -1.12408e-05 0.000226709 -7.19172e-06 0.000228193 -2.97025e-06 0.000227464 1.42045e-06 0.00022452 5.84964e-06 0.000219333 1.03819e-05 0.000212089 1.4498e-05 0.000202763 1.86065e-05 0.000191636 2.22621e-05 0.00017876 2.56864e-05 0.000164451 2.85934e-05 0.000148894 3.10769e-05 0.000132289 3.32014e-05 0.000114944 3.46675e-05 9.70534e-05 3.57613e-05 7.88654e-05 3.63557e-05 6.05836e-05 3.65438e-05 4.24235e-05 3.63028e-05 2.4578e-05 3.56247e-05 7.2053e-06 3.47723e-05 -9.53868e-06 3.34731e-05 -2.55505e-05 3.20349e-05 -4.06808e-05 3.02572e-05 -5.4839e-05 2.83582e-05 -6.80814e-05 2.64329e-05 -8.03218e-05 2.44715e-05 -9.14486e-05 2.22684e-05 -0.000101494 2.0146e-05 -0.000110606 1.81724e-05 -0.00011865 1.60977e-05 -0.000125752 1.42014e-05 -0.000131888 1.22893e-05 -0.000137138 1.04944e-05 -0.00014165 9.01846e-06 -0.000145345 7.40993e-06 -0.000148348 6.01982e-06 -0.000150679 4.66856e-06 -0.00015238 3.41751e-06 -0.000153491 2.23445e-06 -0.000154009 1.08437e-06 -0.000154106 1.5162e-07 -0.000153653 -8.92489e-07 -0.000152691 -1.92024e-06 -0.000151236 -2.90186e-06 -0.000149263 -3.92881e-06 -0.000146769 -4.98146e-06 -0.000143729 -6.07823e-06 -0.000140093 -7.26821e-06 -0.000135875 -8.42556e-06 -0.000131021 -9.71272e-06 -0.000125507 -1.10216e-05 -0.000119343 -1.2321e-05 -0.000112479 -1.37258e-05 -0.00010487 -1.52133e-05 -9.65197e-05 -1.66883e-05 -8.73598e-05 -1.83143e-05 -7.73706e-05 -1.99752e-05 -6.66298e-05 -2.14788e-05 -5.50413e-05 -2.31654e-05 -4.26249e-05 -2.48277e-05 -2.93813e-05 -2.64847e-05 -1.53329e-05 -2.80907e-05 -5.57912e-07 -2.95391e-05 1.49299e-05 -3.09671e-05 3.10033e-05 -3.21442e-05 4.7558e-05 -3.31023e-05 6.43953e-05 -3.36635e-05 8.14448e-05 -3.40894e-05 9.84169e-05 -3.39388e-05 0.00011517 -3.34987e-05 0.000131429 -3.25134e-05 0.000146943 -3.10238e-05 0.000161441 -2.89909e-05 0.000174662 -2.64381e-05 0.000186365 -2.34125e-05 0.00019627 -1.97978e-05 0.000204167 -1.579e-05 0.000209854 -1.13984e-05 0.00021315 -6.5941e-06 0.000213979 -1.67272e-06 0.000212327 3.28549e-06 0.000208124 8.393e-06 0.000201521 1.31926e-05 0.000192652 1.76842e-05 0.000181668 2.19688e-05 0.000168794 2.57314e-05 0.00015425 2.90599e-05 0.00013834 3.18034e-05 0.000121278 3.41147e-05 0.000103435 3.56605e-05 8.51094e-05 3.66425e-05 6.64624e-05 3.72736e-05 4.7947e-05 3.7031e-05 2.9633e-05 3.65398e-05 1.1809e-05 3.56934e-05 -5.41539e-06 3.44572e-05 -2.19427e-05 3.30618e-05 -3.76599e-05 3.14291e-05 -5.25233e-05 2.97259e-05 -6.65449e-05 2.80371e-05 -7.94933e-05 2.5896e-05 -9.14167e-05 2.38543e-05 -0.000102392 2.19511e-05 -0.000112298 1.98147e-05 -0.000121209 1.7831e-05 -0.000129163 1.59229e-05 -0.00013621 1.40662e-05 -0.00014245 1.25146e-05 -0.000147894 1.09006e-05 -0.000152636 9.49412e-06 -0.000156674 8.08401e-06 -0.000160039 6.73668e-06 -0.000162763 5.44479e-06 -0.000164839 4.17652e-06 -0.000166306 2.94232e-06 -0.000167131 1.65777e-06 -0.000167424 5.61255e-07 -0.000167129 -5.54588e-07 -0.000166306 -1.63624e-06 -0.000165012 -2.59262e-06 -0.000163249 -3.52832e-06 -0.000160994 -4.49807e-06 -0.000158204 -5.56432e-06 -0.000154793 -6.82543e-06 -0.000150659 -8.25233e-06 -0.000145809 -9.72141e-06 -0.000140111 -1.13863e-05 -0.000133513 -1.31887e-05 -0.000126023 -1.49785e-05 -0.000117645 -1.67536e-05 -0.000108378 -1.85299e-05 -9.82636e-05 -2.02259e-05 -8.73326e-05 -2.18634e-05 -7.56088e-05 -2.34476e-05 -6.30801e-05 -2.50541e-05 -4.97951e-05 -2.65657e-05 -3.57844e-05 -2.80235e-05 -2.11424e-05 -2.92845e-05 -5.92558e-06 -3.04284e-05 9.75443e-06 -3.13565e-05 2.57868e-05 -3.20561e-05 4.2019e-05 -3.24574e-05 5.83879e-05 -3.27361e-05 7.47331e-05 -3.26837e-05 9.07991e-05 -3.21104e-05 0.000106408 -3.12042e-05 0.000121247 -2.96623e-05 0.000134977 -2.74474e-05 0.000147358 -2.47456e-05 0.000158085 -2.14424e-05 0.000166919 -1.76601e-05 0.000173658 -1.34683e-05 0.000178267 -9.18714e-06 0.000180545 -4.57703e-06 0.000180529 4.29106e-08 0.000178334 4.36205e-06 0.000174051 8.558e-06 0.000167803 1.2484e-05 0.000159706 1.61978e-05 0.000149937 1.95233e-05 0.000138926 2.20037e-05 0.000126692 2.44641e-05 0.000113588 2.62005e-05 9.96434e-05 2.78904e-05 8.48671e-05 2.95511e-05 6.95433e-05 3.06467e-05 5.35181e-05 3.20441e-05 3.71343e-05 3.27609e-05 2.05343e-05 3.31923e-05 3.97136e-06 3.31166e-05 -1.24359e-05 3.28076e-05 -2.83465e-05 3.18167e-05 -4.36865e-05 3.06773e-05 -5.8235e-05 2.90949e-05 -7.19389e-05 2.74066e-05 -8.47937e-05 2.57092e-05 -9.67054e-05 2.38232e-05 -0.000107688 2.19642e-05 -0.000117765 2.01526e-05 -0.000126894 1.82609e-05 -0.000135107 1.64266e-05 -0.000142428 1.46404e-05 -0.000148844 1.28365e-05 -0.000154409 1.11318e-05 -0.000159101 9.37984e-06 -0.000162924 7.64203e-06 -0.000165898 5.94544e-06 -0.000167968 4.14931e-06 -0.000169127 2.32236e-06 -0.000169431 5.91359e-07 -0.000169024 -8.27289e-07 -0.000167883 -2.28035e-06 -0.000165933 -3.91013e-06 -0.000163092 -5.6845e-06 -0.000159411 -7.35762e-06 -0.000154875 -9.06897e-06 -0.000149272 -1.12178e-05 -0.000142723 -1.31082e-05 -0.000135042 -1.53587e-05 -0.00012638 -1.73204e-05 -0.000116766 -1.92253e-05 -0.000106001 -2.1506e-05 -9.41302e-05 -2.37736e-05 -8.12597e-05 -2.57337e-05 -6.72807e-05 -2.79509e-05 -5.23748e-05 -2.98018e-05 -3.63334e-05 -3.20843e-05 -1.93364e-05 -3.39874e-05 -1.83922e-06 -3.49934e-05 1.63905e-05 -3.64552e-05 3.51708e-05 -3.75517e-05 5.41489e-05 -3.79451e-05 7.33303e-05 -3.83512e-05 9.25001e-05 -3.83264e-05 0.000111199 -3.7384e-05 0.000129352 -3.62941e-05 0.000146625 -3.4528e-05 0.00016282 -3.23749e-05 0.000177698 -2.97494e-05 0.000190908 -2.64132e-05 0.000202306 -2.27783e-05 0.000211678 -1.87323e-05 0.000218789 -1.42229e-05 0.000223571 -9.56279e-06 0.000225949 -4.74987e-06 0.000225831 2.31204e-07 0.000223202 5.25061e-06 0.000217997 1.04093e-05 0.000210503 1.49803e-05 0.000200818 1.93648e-05 0.000188952 2.37204e-05 0.000175363 2.71675e-05 0.000160124 3.04641e-05 0.000143653 3.29287e-05 0.000126027 3.52394e-05 0.000107457 3.71269e-05 8.84737e-05 3.79558e-05 6.90904e-05 3.87559e-05 3.89226e-05 -0.000155624 1.09641e-05 -0.000158576 8.8508e-06 -0.000160903 6.97196e-06 -0.000162617 5.13472e-06 -0.000163723 3.31116e-06 -0.000164238 1.56334e-06 -0.000164079 -4.63791e-07 -0.000163268 -2.42764e-06 -0.000161885 -4.14782e-06 -0.000159761 -6.41521e-06 -0.000156934 -8.43451e-06 -0.000153484 -1.03534e-05 -0.000149166 -1.29601e-05 -0.000144088 -1.52352e-05 -0.000138152 -1.78178e-05 -0.000131389 -2.03104e-05 -0.000123888 -2.25063e-05 -0.000115413 -2.54349e-05 -0.00010599 -2.8298e-05 -9.56856e-05 -3.09667e-05 -8.4269e-05 -3.41767e-05 -7.1858e-05 -3.72324e-05 -5.86077e-05 -3.97468e-05 -4.42961e-05 -4.2922e-05 -2.91375e-05 -4.54603e-05 -1.30696e-05 -4.81844e-05 3.81211e-06 -5.06194e-05 2.12109e-05 -5.21697e-05 3.92293e-05 -5.40016e-05 5.76561e-05 -5.52374e-05 7.61565e-05 -5.54549e-05 9.46774e-05 -5.55292e-05 0.000112941 -5.47477e-05 0.000130744 -5.33614e-05 0.000147847 -5.12664e-05 0.000163874 -4.80448e-05 0.00017866 -4.43044e-05 0.000191977 -3.98909e-05 0.000203555 -3.46975e-05 0.000213279 -2.91371e-05 0.000220934 -2.29479e-05 0.000226403 -1.64e-05 0.000229585 -9.53121e-06 0.000230394 -2.4284e-06 0.000228831 4.63779e-06 0.000225023 1.14269e-05 0.00021888 1.84207e-05 0.000210666 2.45901e-05 0.000200547 3.03522e-05 0.000188576 3.58555e-05 0.000175072 4.04772e-05 0.000160267 4.43734e-05 0.000144399 4.75626e-05 0.000127728 4.99891e-05 0.000110424 5.18401e-05 9.27173e-05 5.30775e-05 7.48004e-05 5.36778e-05 5.68977e-05 5.36871e-05 3.92355e-05 5.29573e-05 2.19462e-05 5.18432e-05 5.19409e-06 5.02275e-05 -1.09249e-05 4.83256e-05 -2.63467e-05 4.6244e-05 -4.09988e-05 4.39267e-05 -5.48e-05 4.14016e-05 -6.77234e-05 3.87634e-05 -7.97098e-05 3.59578e-05 -9.08209e-05 3.33187e-05 -0.000100968 3.04443e-05 -0.000110286 2.79641e-05 -0.00011869 2.5229e-05 -0.0001262 2.25474e-05 -0.00013304 2.05004e-05 -0.000139042 1.80071e-05 -0.000144257 1.56588e-05 -0.000148795 1.36099e-05 -0.000152545 1.12602e-05 -0.000155656 9.33665e-06 -0.000158086 7.28486e-06 -0.000159792 5.1121e-06 -0.00016085 3.16641e-06 -0.000161248 1.19886e-06 -0.000160913 -9.97617e-07 -0.000159872 -3.12124e-06 -0.000158121 -5.27156e-06 -0.000155594 -7.57507e-06 -0.000152375 -9.66717e-06 -0.000148314 -1.21776e-05 -0.000143492 -1.44725e-05 -0.000137844 -1.69375e-05 -0.000131342 -1.94998e-05 -0.000124012 -2.20105e-05 -0.000115878 -2.43499e-05 -0.000106964 -2.67495e-05 -9.72996e-05 -2.89874e-05 -8.69174e-05 -3.11428e-05 -7.58587e-05 -3.31809e-05 -6.41075e-05 -3.52786e-05 -5.17017e-05 -3.72493e-05 -3.85905e-05 -3.93269e-05 -2.48843e-05 -4.10558e-05 -1.05943e-05 -4.29433e-05 4.34409e-06 -4.47993e-05 1.98449e-05 -4.65289e-05 3.58119e-05 -4.78515e-05 5.21319e-05 -4.89744e-05 6.87098e-05 -4.9737e-05 8.53778e-05 -4.99578e-05 0.00010199 -4.97987e-05 0.000118346 -4.90177e-05 0.000134274 -4.77369e-05 0.000149606 -4.59618e-05 0.000164096 -4.34131e-05 0.000177579 -4.04102e-05 0.000189856 -3.67937e-05 0.000200733 -3.25928e-05 0.000210023 -2.78352e-05 0.000217552 -2.2564e-05 0.000223179 -1.68673e-05 0.000226768 -1.0781e-05 0.000228268 -4.47044e-06 0.000227545 2.1433e-06 0.000224554 8.84102e-06 0.000219377 1.55587e-05 0.000212089 2.17852e-05 0.00020279 2.79059e-05 0.000191601 3.34511e-05 0.00017873 3.85569e-05 0.0001644 4.29231e-05 0.000148806 4.66714e-05 0.000132198 4.98096e-05 0.000114823 5.20417e-05 9.69089e-05 5.36757e-05 7.86934e-05 5.45711e-05 6.03934e-05 5.48439e-05 4.22566e-05 5.44396e-05 2.4337e-05 5.35443e-05 6.9566e-06 5.21527e-05 -9.80047e-06 5.02301e-05 -2.58125e-05 4.80469e-05 -4.09515e-05 4.53962e-05 -5.51159e-05 4.25225e-05 -6.84071e-05 3.97241e-05 -8.06127e-05 3.6677e-05 -9.17362e-05 3.33919e-05 -0.000101775 3.01846e-05 -0.00011089 2.72879e-05 -0.000118942 2.41498e-05 -0.000126029 2.12879e-05 -0.000132123 1.83835e-05 -0.000137468 1.58393e-05 -0.000141923 1.34731e-05 -0.000145613 1.11004e-05 -0.000148602 9.00876e-06 -0.00015092 6.98597e-06 -0.00015262 5.11763e-06 -0.000153726 3.34041e-06 -0.000154237 1.59522e-06 -0.000154334 2.4952e-07 -0.000153878 -1.34876e-06 -0.00015291 -2.88832e-06 -0.000151442 -4.36954e-06 -0.000149472 -5.89957e-06 -0.00014698 -7.47304e-06 -0.000143944 -9.11439e-06 -0.000140305 -1.09075e-05 -0.000136047 -1.2683e-05 -0.000131253 -1.4507e-05 -0.000125747 -1.65282e-05 -0.000119569 -1.84991e-05 -0.000112709 -2.0585e-05 -0.000105095 -2.28274e-05 -9.67319e-05 -2.50518e-05 -8.75283e-05 -2.75179e-05 -7.76247e-05 -2.98789e-05 -6.68926e-05 -3.2211e-05 -5.52803e-05 -3.47778e-05 -4.2861e-05 -3.72471e-05 -2.96059e-05 -3.974e-05 -1.55483e-05 -4.21483e-05 -7.53807e-07 -4.43338e-05 1.47387e-05 -4.64598e-05 3.08224e-05 -4.82279e-05 4.73806e-05 -4.96607e-05 6.42496e-05 -5.05326e-05 8.13213e-05 -5.11613e-05 9.83135e-05 -5.09311e-05 0.000115085 -5.02699e-05 0.000131364 -4.87934e-05 0.000146896 -4.65555e-05 0.000161417 -4.35126e-05 0.000174658 -3.96783e-05 0.000186364 -3.51191e-05 0.000196312 -2.97455e-05 0.000204211 -2.36891e-05 0.000209904 -1.70918e-05 0.000213233 -9.92387e-06 0.000214039 -2.47793e-06 0.000212357 4.96673e-06 0.000208154 1.25964e-05 0.00020156 1.97866e-05 0.000192641 2.66028e-05 0.000181646 3.29633e-05 0.000168781 3.8597e-05 0.000154175 4.36659e-05 0.000138234 4.77435e-05 0.00012115 5.11988e-05 0.000103274 5.35364e-05 8.49088e-05 5.50079e-05 6.62743e-05 5.59081e-05 4.77271e-05 5.55781e-05 2.93903e-05 5.48766e-05 1.15468e-05 5.35368e-05 -5.6704e-06 5.16743e-05 -2.21798e-05 4.95712e-05 -3.79345e-05 4.71838e-05 -5.28264e-05 4.46178e-05 -6.68202e-05 4.20308e-05 -7.97771e-05 3.88529e-05 -9.17507e-05 3.5828e-05 -0.000102667 3.28678e-05 -0.000112583 2.97298e-05 -0.000121474 2.67221e-05 -0.000129375 2.38238e-05 -0.000136494 2.11855e-05 -0.000142706 1.87264e-05 -0.000148148 1.63423e-05 -0.000152865 1.42114e-05 -0.0001569 1.2119e-05 -0.000160274 1.01111e-05 -0.000162993 8.1635e-06 -0.000165072 6.25549e-06 -0.000166537 4.40711e-06 -0.000167335 2.45572e-06 -0.000167662 8.88374e-07 -0.000167344 -8.72927e-07 -0.000166529 -2.45103e-06 -0.000165225 -3.89663e-06 -0.000163457 -5.29585e-06 -0.000161209 -6.74633e-06 -0.000158425 -8.34884e-06 -0.000155014 -1.02362e-05 -0.000150874 -1.23925e-05 -0.000146046 -1.45493e-05 -0.000140345 -1.70874e-05 -0.000133756 -1.97779e-05 -0.000126257 -2.2477e-05 -0.000117883 -2.51273e-05 -0.000108604 -2.78095e-05 -9.84867e-05 -3.03431e-05 -8.75445e-05 -3.28056e-05 -7.58151e-05 -3.5177e-05 -6.3289e-05 -3.75802e-05 -5.00025e-05 -3.98522e-05 -3.59884e-05 -4.20377e-05 -2.13377e-05 -4.39353e-05 -6.10117e-06 -4.56651e-05 9.58197e-06 -4.70397e-05 2.56361e-05 -4.81103e-05 4.18994e-05 -4.87208e-05 5.82898e-05 -4.91266e-05 7.46582e-05 -4.90522e-05 9.07614e-05 -4.82136e-05 0.000106402 -4.68448e-05 0.000121277 -4.45379e-05 0.000135037 -4.12071e-05 0.000147444 -3.71524e-05 0.000158194 -3.21925e-05 0.000167043 -2.65098e-05 0.000173797 -2.02222e-05 0.000178432 -1.38221e-05 0.0001807 -6.84497e-06 0.000180715 2.72502e-08 0.000178463 6.61448e-06 0.000174175 1.2846e-05 0.000167904 1.87547e-05 0.000159806 2.42952e-05 0.000150011 2.93189e-05 0.000138968 3.30464e-05 0.000126726 3.67063e-05 0.000113608 3.93178e-05 9.96654e-05 4.18334e-05 8.48874e-05 4.4329e-05 6.95655e-05 4.59686e-05 5.35304e-05 4.80792e-05 3.71339e-05 4.91574e-05 2.05204e-05 4.98058e-05 3.94204e-06 4.96949e-05 -1.24763e-05 4.9226e-05 -2.8395e-05 4.77353e-05 -4.37422e-05 4.60245e-05 -5.8295e-05 4.36477e-05 -7.20012e-05 4.11128e-05 -8.48582e-05 3.85662e-05 -9.67698e-05 3.57348e-05 -0.00010775 3.29443e-05 -0.000117824 3.02264e-05 -0.00012695 2.73868e-05 -0.000135162 2.46388e-05 -0.000142477 2.19554e-05 -0.000148887 1.92463e-05 -0.000154446 1.66911e-05 -0.000159128 1.40616e-05 -0.000162943 1.14571e-05 -0.000165912 8.91474e-06 -0.000167991 6.22765e-06 -0.000169173 3.50477e-06 -0.000169491 9.08966e-07 -0.000169089 -1.22886e-06 -0.000167951 -3.41879e-06 -0.000166008 -5.85255e-06 -0.00016317 -8.52243e-06 -0.000159481 -1.1047e-05 -0.000154932 -1.36179e-05 -0.000149347 -1.68032e-05 -0.000142819 -1.96355e-05 -0.000135146 -2.3032e-05 -0.000126475 -2.59912e-05 -0.000116858 -2.88424e-05 -0.000106073 -3.22913e-05 -9.42177e-05 -3.56291e-05 -8.13475e-05 -3.86039e-05 -6.73626e-05 -4.19359e-05 -5.24476e-05 -4.47169e-05 -3.6409e-05 -4.81231e-05 -1.94005e-05 -5.0996e-05 -1.89692e-06 -5.24971e-05 1.63388e-05 -5.4691e-05 3.51365e-05 -5.63495e-05 5.41332e-05 -5.69419e-05 7.33364e-05 -5.75545e-05 9.25304e-05 -5.75205e-05 0.00011125 -5.61039e-05 0.000129426 -5.44701e-05 0.000146725 -5.18265e-05 0.00016294 -4.85899e-05 0.000177843 -4.46531e-05 0.000191071 -3.96408e-05 0.000202479 -3.41864e-05 0.000211866 -2.81197e-05 0.00021899 -2.13472e-05 0.000223778 -1.43508e-05 0.000226158 -7.12927e-06 0.000226025 3.63281e-07 0.000223381 7.89443e-06 0.000218177 1.5614e-05 0.000210668 2.24888e-05 0.000200973 2.90597e-05 0.000189095 3.55988e-05 0.000175489 4.0773e-05 0.000160229 4.57244e-05 0.000143738 4.94198e-05 0.000126091 5.2886e-05 0.000107501 5.57166e-05 8.84965e-05 5.69604e-05 6.90939e-05 5.81583e-05 5.84073e-05 -0.000155707 1.4624e-05 -0.000158665 1.1809e-05 -0.000160996 9.30307e-06 -0.000162714 6.85263e-06 -0.000163821 4.41816e-06 -0.000164318 2.06007e-06 -0.000164151 -6.3094e-07 -0.00016334 -3.23882e-06 -0.000161953 -5.5348e-06 -0.000159842 -8.52641e-06 -0.000156997 -1.12787e-05 -0.000153541 -1.38097e-05 -0.000149229 -1.72718e-05 -0.000144163 -2.03018e-05 -0.000138234 -2.37467e-05 -0.000131483 -2.70611e-05 -0.000123985 -3.00043e-05 -0.000115516 -3.39046e-05 -0.000106111 -3.77024e-05 -9.58123e-05 -4.12657e-05 -8.43767e-05 -4.56124e-05 -7.19689e-05 -4.96403e-05 -5.87129e-05 -5.30029e-05 -4.43962e-05 -5.72388e-05 -2.92299e-05 -6.06267e-05 -1.31521e-05 -6.42622e-05 3.75196e-06 -6.75235e-05 2.11684e-05 -6.95863e-05 3.92053e-05 -7.20386e-05 5.76594e-05 -7.36916e-05 7.61914e-05 -7.39869e-05 9.47269e-05 -7.40649e-05 0.000113014 -7.30352e-05 0.000130847 -7.11943e-05 0.000147981 -6.84003e-05 0.00016403 -6.40939e-05 0.00017884 -5.91144e-05 0.000192193 -5.32445e-05 0.000203788 -4.6292e-05 0.000213531 -3.88801e-05 0.000221197 -3.06139e-05 0.000226677 -2.18801e-05 0.000229862 -1.27169e-05 0.000230661 -3.22678e-06 0.000229078 6.22087e-06 0.000225273 1.52312e-05 0.000219123 2.4571e-05 0.000210879 3.28337e-05 0.000200756 4.04754e-05 0.000188752 4.78598e-05 0.000175226 5.40026e-05 0.000160398 5.92018e-05 0.000144505 6.34547e-05 0.000127827 6.66673e-05 0.000110472 6.91955e-05 9.27408e-05 7.08086e-05 7.47827e-05 7.16358e-05 5.68674e-05 7.16022e-05 3.91894e-05 7.06353e-05 2.18866e-05 6.91461e-05 5.11987e-06 6.69941e-05 -1.10166e-05 6.4462e-05 -2.6447e-05 6.16745e-05 -4.11035e-05 5.85832e-05 -5.49169e-05 5.52149e-05 -6.78407e-05 5.16872e-05 -7.9827e-05 4.79441e-05 -9.09393e-05 4.4431e-05 -0.000101084 4.05887e-05 -0.000110398 3.72782e-05 -0.000118782 3.36127e-05 -0.000126311 3.00771e-05 -0.000133139 2.73283e-05 -0.000139142 2.40095e-05 -0.00014435 2.08672e-05 -0.000148891 1.81507e-05 -0.000152631 1.49999e-05 -0.000155743 1.24486e-05 -0.000158179 9.72109e-06 -0.000159886 6.81937e-06 -0.000160949 4.22932e-06 -0.000161349 1.59855e-06 -0.000161008 -1.33852e-06 -0.000159968 -4.16122e-06 -0.000158227 -7.01265e-06 -0.000155699 -1.01032e-05 -0.000152486 -1.28794e-05 -0.000148429 -1.62353e-05 -0.000143612 -1.92889e-05 -0.000137964 -2.25854e-05 -0.000131472 -2.5992e-05 -0.000124157 -2.93258e-05 -0.000115995 -3.25122e-05 -0.000107097 -3.56474e-05 -9.74407e-05 -3.86437e-05 -8.70651e-05 -4.15185e-05 -7.60174e-05 -4.42286e-05 -6.42918e-05 -4.70043e-05 -5.19073e-05 -4.96339e-05 -3.88606e-05 -5.23736e-05 -2.50963e-05 -5.48201e-05 -1.07776e-05 -5.72621e-05 4.13121e-06 -5.97082e-05 1.9611e-05 -6.20088e-05 3.5575e-05 -6.38156e-05 5.1908e-05 -6.53075e-05 6.84842e-05 -6.63133e-05 8.51805e-05 -6.66541e-05 0.000101802 -6.64199e-05 0.000118187 -6.54031e-05 0.000134157 -6.37065e-05 0.000149492 -6.12971e-05 0.000164017 -5.79387e-05 0.000177527 -5.39196e-05 0.000189832 -4.90988e-05 0.000200739 -4.35009e-05 0.00021007 -3.71657e-05 0.000217623 -3.01169e-05 0.000223269 -2.25142e-05 0.000226874 -1.4386e-05 0.000228318 -5.9139e-06 0.000227566 2.89549e-06 0.000224588 1.18188e-05 0.000219453 2.06932e-05 0.000212108 2.91302e-05 0.000202791 3.72231e-05 0.000191577 4.46651e-05 0.000178697 5.14373e-05 0.000164328 5.72913e-05 0.000148694 6.2306e-05 0.000132062 6.64408e-05 0.000114654 6.94505e-05 9.67088e-05 7.16205e-05 7.84566e-05 7.28233e-05 6.01278e-05 7.31726e-05 4.19236e-05 7.26438e-05 2.40085e-05 7.14594e-05 6.60981e-06 6.95514e-05 -1.01684e-05 6.70084e-05 -2.61712e-05 6.40496e-05 -4.13444e-05 6.05694e-05 -5.55752e-05 5.67533e-05 -6.88217e-05 5.29707e-05 -8.10134e-05 4.88687e-05 -9.21345e-05 4.45129e-05 -0.000102232 4.02822e-05 -0.00011129 3.63462e-05 -0.000119337 3.21962e-05 -0.000126415 2.83659e-05 -0.000132515 2.44841e-05 -0.000137864 2.11874e-05 -0.000142302 1.79114e-05 -0.000145979 1.47776e-05 -0.000148958 1.19873e-05 -0.00015125 9.27855e-06 -0.000152954 6.82184e-06 -0.000154033 4.41904e-06 -0.000154621 2.18314e-06 -0.00015466 2.88459e-07 -0.000154198 -1.8106e-06 -0.000153222 -3.86429e-06 -0.000151746 -5.84521e-06 -0.000149789 -7.85731e-06 -0.00014729 -9.97195e-06 -0.000144266 -1.21385e-05 -0.000140609 -1.45639e-05 -0.000136377 -1.69149e-05 -0.000131595 -1.92894e-05 -0.000126096 -2.20271e-05 -0.000119934 -2.46613e-05 -0.000113068 -2.74511e-05 -0.000105455 -3.04406e-05 -9.70265e-05 -3.34801e-05 -8.79372e-05 -3.66073e-05 -7.80508e-05 -3.97654e-05 -6.72726e-05 -4.29892e-05 -5.56473e-05 -4.64031e-05 -4.32199e-05 -4.96747e-05 -2.99601e-05 -5.29999e-05 -1.59134e-05 -5.61951e-05 -1.09321e-06 -5.91541e-05 1.44192e-05 -6.19723e-05 3.05239e-05 -6.43327e-05 4.70964e-05 -6.62333e-05 6.40084e-05 -6.74448e-05 8.10798e-05 -6.82327e-05 9.81183e-05 -6.79697e-05 0.000114923 -6.70747e-05 0.000131238 -6.51088e-05 0.000146803 -6.21207e-05 0.000161361 -5.80707e-05 0.000174638 -5.29554e-05 0.000186379 -4.686e-05 0.000196354 -3.97204e-05 0.000204305 -3.16401e-05 0.000209983 -2.27702e-05 0.00021334 -1.32811e-05 0.00021413 -3.26814e-06 0.00021242 6.67656e-06 0.000208217 1.67999e-05 0.000201614 2.63894e-05 0.000192654 3.55624e-05 0.000181627 4.399e-05 0.000168732 5.14923e-05 0.000154084 5.83137e-05 0.000138103 6.37247e-05 0.000121007 6.82948e-05 0.00010306 7.14833e-05 8.46523e-05 7.34154e-05 6.60313e-05 7.4529e-05 4.73922e-05 7.42172e-05 2.9092e-05 7.31768e-05 1.11964e-05 7.14323e-05 -6.02482e-06 6.88956e-05 -2.2502e-05 6.60483e-05 -3.83106e-05 6.29924e-05 -5.32287e-05 5.95359e-05 -6.71951e-05 5.59972e-05 -8.01303e-05 5.17881e-05 -9.21721e-05 4.78697e-05 -0.000103081 4.37768e-05 -0.000112981 3.96302e-05 -0.000121842 3.5583e-05 -0.000129756 3.17374e-05 -0.000136869 2.82988e-05 -0.000143068 2.49248e-05 -0.0001485 2.17747e-05 -0.000153202 1.8913e-05 -0.000157232 1.615e-05 -0.000160603 1.34817e-05 -0.00016332 1.08803e-05 -0.000165393 8.32838e-06 -0.000166851 5.86489e-06 -0.000167715 3.32005e-06 -0.000167996 1.16956e-06 -0.000167683 -1.18616e-06 -0.000166846 -3.28815e-06 -0.000165548 -5.19457e-06 -0.000163776 -7.06806e-06 -0.00016154 -8.98248e-06 -0.000158761 -1.11278e-05 -0.000155297 -1.37003e-05 -0.000151276 -1.64134e-05 -0.000146406 -1.94187e-05 -0.000140705 -2.27884e-05 -0.000134125 -2.63581e-05 -0.000126623 -2.99789e-05 -0.000118248 -3.35022e-05 -0.000108957 -3.71014e-05 -9.88454e-05 -4.04543e-05 -8.78979e-05 -4.37533e-05 -7.61501e-05 -4.69248e-05 -6.36163e-05 -5.01141e-05 -5.03201e-05 -5.31485e-05 -3.62934e-05 -5.60645e-05 -2.16179e-05 -5.86109e-05 -6.36485e-06 -6.09182e-05 9.34443e-06 -6.27491e-05 2.54247e-05 -6.41907e-05 4.17523e-05 -6.50485e-05 5.81646e-05 -6.5539e-05 7.45717e-05 -6.54594e-05 9.07232e-05 -6.43652e-05 0.000106411 -6.25332e-05 0.000121324 -5.94509e-05 0.000135131 -5.50136e-05 0.000147575 -4.95966e-05 0.000158357 -4.29743e-05 0.00016723 -3.53837e-05 0.00017401 -2.7002e-05 0.000178653 -1.8465e-05 0.000180923 -9.11472e-06 0.000180925 2.47406e-08 0.00017866 8.87945e-06 0.00017436 1.71463e-05 0.000168063 2.50515e-05 0.000159963 3.23952e-05 0.000150125 3.91561e-05 0.000139039 4.41325e-05 0.00012678 4.89654e-05 0.000113636 5.24618e-05 9.96986e-05 5.57706e-05 8.49156e-05 5.91119e-05 6.95941e-05 6.129e-05 5.35496e-05 6.41236e-05 3.71341e-05 6.5573e-05 2.05001e-05 6.64397e-05 3.89747e-06 6.62975e-05 -1.25379e-05 6.56613e-05 -2.84685e-05 6.36659e-05 -4.38262e-05 6.13822e-05 -5.83845e-05 5.82059e-05 -7.20931e-05 5.48214e-05 -8.49515e-05 5.14246e-05 -9.68617e-05 4.7645e-05 -0.00010784 4.3923e-05 -0.000117913 4.02989e-05 -0.000127034 3.65081e-05 -0.000135236 3.28407e-05 -0.000142545 2.92639e-05 -0.000148943 2.56446e-05 -0.00015449 2.22379e-05 -0.000159158 1.87294e-05 -0.000162957 1.52565e-05 -0.000165915 1.18724e-05 -0.000167995 8.3084e-06 -0.000169212 4.72129e-06 -0.000169571 1.26768e-06 -0.000169187 -1.61225e-06 -0.000168058 -4.54785e-06 -0.000166121 -7.78967e-06 -0.000163288 -1.13558e-05 -0.000159587 -1.47479e-05 -0.000155021 -1.81838e-05 -0.000149433 -2.23914e-05 -0.000142953 -2.6115e-05 -0.000135292 -3.06933e-05 -0.000126616 -3.46668e-05 -0.000116999 -3.84601e-05 -0.000106195 -4.30947e-05 -9.43486e-05 -4.74758e-05 -8.1484e-05 -5.14686e-05 -6.74895e-05 -5.59304e-05 -5.25611e-05 -5.96453e-05 -3.65225e-05 -6.41617e-05 -1.94981e-05 -6.80204e-05 -1.98407e-06 -7.00112e-05 1.62615e-05 -7.29367e-05 3.50832e-05 -7.51713e-05 5.41036e-05 -7.59624e-05 7.33445e-05 -7.67955e-05 9.25729e-05 -7.67489e-05 0.000111327 -7.48581e-05 0.00012954 -7.2683e-05 0.000146874 -6.91606e-05 0.000163124 -6.48399e-05 0.000178056 -5.95855e-05 0.000191312 -5.28969e-05 0.000202748 -4.56221e-05 0.000212155 -3.75268e-05 0.000219288 -2.84805e-05 0.000224084 -1.91466e-05 0.000226466 -9.51175e-06 0.000226316 5.13123e-07 0.000223653 1.05573e-05 0.000218439 2.08286e-05 0.000210918 3.00097e-05 0.000201202 3.87748e-05 0.00018931 4.74913e-05 0.00017568 5.44029e-05 0.000160386 6.10177e-05 0.000143865 6.59417e-05 0.000126187 7.05636e-05 0.000107567 7.43361e-05 8.85306e-05 7.59971e-05 6.90991e-05 7.75897e-05 7.79196e-05 -0.000155813 1.82822e-05 -0.000158773 1.47685e-05 -0.000161105 1.16354e-05 -0.000162824 8.57182e-06 -0.000163933 5.52646e-06 -0.000164417 2.54443e-06 -0.000164245 -8.03039e-07 -0.000163435 -4.04868e-06 -0.00016205 -6.91966e-06 -0.000159952 -1.06247e-05 -0.000157101 -1.41294e-05 -0.000153646 -1.72646e-05 -0.00014934 -2.15786e-05 -0.00014428 -2.53615e-05 -0.000138357 -2.96697e-05 -0.000131614 -3.38039e-05 -0.000124119 -3.74999e-05 -0.000115649 -4.23746e-05 -0.000106253 -4.70985e-05 -9.59719e-05 -5.15465e-05 -8.45325e-05 -5.70519e-05 -7.21236e-05 -6.20492e-05 -5.8861e-05 -6.62655e-05 -4.45358e-05 -7.15641e-05 -2.93587e-05 -7.58038e-05 -1.32662e-05 -8.03548e-05 3.6586e-06 -8.44484e-05 2.10919e-05 -8.70197e-05 3.91513e-05 -9.00981e-05 5.7646e-05 -9.21864e-05 7.62129e-05 -9.25539e-05 9.47781e-05 -9.26301e-05 0.000113101 -9.13578e-05 0.000130972 -8.90655e-05 0.000148143 -8.55718e-05 0.000164224 -8.01747e-05 0.000179067 -7.39572e-05 0.00019245 -6.66277e-05 0.00020409 -5.79321e-05 0.00021386 -4.86507e-05 0.000221544 -3.82974e-05 0.000227036 -2.73725e-05 0.000230228 -1.59087e-05 0.000231016 -4.01526e-06 0.000229423 7.81408e-06 0.000225613 1.90412e-05 0.000219448 3.07355e-05 0.000211167 4.11143e-05 0.000201014 5.06289e-05 0.000188987 5.98866e-05 0.000175432 6.75571e-05 0.000160572 7.40619e-05 0.000144649 7.93783e-05 0.000127947 8.33684e-05 0.000110535 8.66078e-05 9.27729e-05 8.85708e-05 7.47637e-05 8.9645e-05 5.68286e-05 8.95373e-05 3.91295e-05 8.83343e-05 2.18088e-05 8.64667e-05 5.02426e-06 8.37787e-05 -1.11327e-05 8.0619e-05 -2.65741e-05 7.71158e-05 -4.12364e-05 7.32455e-05 -5.50673e-05 6.90458e-05 -6.7994e-05 6.46139e-05 -7.99856e-05 5.99357e-05 -9.10934e-05 5.55389e-05 -0.000101233 5.07285e-05 -0.000110544 4.6589e-05 -0.000118903 4.19713e-05 -0.000126477 3.76513e-05 -0.000133274 3.41256e-05 -0.000139275 3.00106e-05 -0.000144474 2.6066e-05 -0.000149019 2.26952e-05 -0.000152749 1.87303e-05 -0.000155859 1.55586e-05 -0.000158303 1.21646e-05 -0.000160011 8.52742e-06 -0.000161075 5.29412e-06 -0.000161479 2.00232e-06 -0.000161133 -1.6851e-06 -0.000160087 -5.20636e-06 -0.000158368 -8.73186e-06 -0.00015584 -1.26311e-05 -0.000152637 -1.60823e-05 -0.000148588 -2.02851e-05 -0.00014377 -2.41071e-05 -0.000138116 -2.82391e-05 -0.000131643 -3.24643e-05 -0.000124335 -3.66346e-05 -0.000116144 -4.07028e-05 -0.000107277 -4.45143e-05 -9.76289e-05 -4.8292e-05 -8.72632e-05 -5.18842e-05 -7.62338e-05 -5.52581e-05 -6.45416e-05 -5.86966e-05 -5.21661e-05 -6.20095e-05 -3.91513e-05 -6.53885e-05 -2.54425e-05 -6.85289e-05 -1.10632e-05 -7.16415e-05 3.84808e-06 -7.46196e-05 1.93063e-05 -7.74671e-05 3.52645e-05 -7.97739e-05 5.16409e-05 -8.1684e-05 6.82059e-05 -8.28783e-05 8.49353e-05 -8.33836e-05 0.000101574 -8.3059e-05 0.000117991 -8.18198e-05 0.000134012 -7.97273e-05 0.000149361 -7.66462e-05 0.000163924 -7.25017e-05 0.000177469 -6.74653e-05 0.000189832 -6.14623e-05 0.000200744 -5.44121e-05 0.000210072 -4.64941e-05 0.000217634 -3.76794e-05 0.000223299 -2.81785e-05 0.000226917 -1.80051e-05 0.000228396 -7.39254e-06 0.000227632 3.6594e-06 0.000224661 1.479e-05 0.00021948 2.58734e-05 0.000212167 3.64438e-05 0.000202811 4.65792e-05 0.000191573 5.59026e-05 0.000178695 6.43156e-05 0.000164268 7.17179e-05 0.000148585 7.79888e-05 0.000131926 8.31001e-05 0.000114464 8.69118e-05 9.64674e-05 8.96174e-05 7.81886e-05 9.11022e-05 5.98241e-05 9.15371e-05 4.16096e-05 9.08582e-05 2.36306e-05 8.94384e-05 6.21615e-06 8.69658e-05 -1.05788e-05 8.38033e-05 -2.6558e-05 8.00288e-05 -4.18074e-05 7.58188e-05 -5.60621e-05 7.10079e-05 -6.92955e-05 6.6204e-05 -8.14886e-05 6.10619e-05 -9.26009e-05 5.56252e-05 -0.000102718 5.03994e-05 -0.000111774 4.5402e-05 -0.000119812 4.02339e-05 -0.000126864 3.54185e-05 -0.000133026 3.06462e-05 -0.000138304 2.64647e-05 -0.000142741 2.23485e-05 -0.000146405 1.84413e-05 -0.000149379 1.4962e-05 -0.000151678 1.15769e-05 -0.000153356 8.50023e-06 -0.000154439 5.50216e-06 -0.000155029 2.77282e-06 -0.000155058 3.17183e-07 -0.0001546 -2.26853e-06 -0.000153613 -4.85136e-06 -0.000152077 -7.38068e-06 -0.000150125 -9.80927e-06 -0.000147658 -1.24394e-05 -0.000144608 -1.5188e-05 -0.000141002 -1.81703e-05 -0.000136859 -2.10575e-05 -0.000132008 -2.41406e-05 -0.00012652 -2.75157e-05 -0.000120365 -3.08157e-05 -0.000113498 -3.43187e-05 -0.000105868 -3.80707e-05 -9.75264e-05 -4.18214e-05 -8.84255e-05 -4.57083e-05 -7.85048e-05 -4.96862e-05 -6.77375e-05 -5.37566e-05 -5.61144e-05 -5.80263e-05 -4.36658e-05 -6.21233e-05 -3.04016e-05 -6.62642e-05 -1.63494e-05 -7.02474e-05 -1.48419e-06 -7.40194e-05 1.4024e-05 -7.74806e-05 3.01441e-05 -8.04529e-05 4.67428e-05 -8.28321e-05 6.37007e-05 -8.44028e-05 8.07887e-05 -8.53209e-05 9.78776e-05 -8.50587e-05 0.000114731 -8.39277e-05 0.00013109 -8.14688e-05 0.000146701 -7.77314e-05 0.000161298 -7.2668e-05 0.000174636 -6.62933e-05 0.000186424 -5.8648e-05 0.000196434 -4.97307e-05 0.000204385 -3.9591e-05 0.000210108 -2.84937e-05 0.00021345 -1.66225e-05 0.000214277 -4.09568e-06 0.000212552 8.40133e-06 0.000208369 2.0983e-05 0.000201665 3.30928e-05 0.000192701 4.45267e-05 0.000181639 5.5052e-05 0.000168669 6.44622e-05 0.000154014 7.29687e-05 0.000137976 7.97624e-05 0.000120869 8.54016e-05 0.000102844 8.95083e-05 8.43889e-05 9.18707e-05 6.5662e-05 9.32558e-05 4.70338e-05 9.28453e-05 2.86824e-05 9.15281e-05 1.07994e-05 8.93152e-05 -6.4563e-06 8.61512e-05 -2.29998e-05 8.25918e-05 -3.87673e-05 7.87599e-05 -5.36813e-05 7.44498e-05 -6.76495e-05 6.99654e-05 -8.06198e-05 6.47584e-05 -9.26503e-05 5.99002e-05 -0.000103557 5.46831e-05 -0.000113451 4.9525e-05 -0.000122269 4.44002e-05 -0.000130276 3.97443e-05 -0.000137313 3.53366e-05 -0.000143502 3.11134e-05 -0.000148917 2.71893e-05 -0.000153625 2.36217e-05 -0.00015766 2.01851e-05 -0.000161032 1.68531e-05 -0.00016372 1.35686e-05 -0.000165776 1.03838e-05 -0.000167225 7.31395e-06 -0.000168137 4.2327e-06 -0.000168396 1.42838e-06 -0.000168078 -1.50425e-06 -0.000167226 -4.13972e-06 -0.00016594 -6.48081e-06 -0.000164166 -8.84185e-06 -0.000161899 -1.12496e-05 -0.000159103 -1.39244e-05 -0.000155763 -1.70395e-05 -0.000151731 -2.04457e-05 -0.000146849 -2.43009e-05 -0.000141139 -2.84981e-05 -0.00013457 -3.29279e-05 -0.000127084 -3.74648e-05 -0.00011869 -4.18956e-05 -0.000109414 -4.63773e-05 -9.92891e-05 -5.05798e-05 -8.83447e-05 -5.46978e-05 -7.65676e-05 -5.87019e-05 -6.40224e-05 -6.26594e-05 -5.07118e-05 -6.64591e-05 -3.66668e-05 -7.01095e-05 -2.19524e-05 -7.33255e-05 -6.68992e-06 -7.61807e-05 9.05861e-06 -7.84977e-05 2.51781e-05 -8.03103e-05 4.15524e-05 -8.14229e-05 5.80159e-05 -8.20026e-05 7.44646e-05 -8.19082e-05 9.0684e-05 -8.05848e-05 0.000106443 -7.82923e-05 0.000121388 -7.43962e-05 0.000135264 -6.88895e-05 0.000147754 -6.20871e-05 0.00015858 -5.38e-05 0.000167489 -4.42924e-05 0.00017432 -3.38331e-05 0.000178955 -2.31002e-05 0.000181227 -1.13866e-05 0.000181217 3.41894e-08 0.000178935 1.11615e-05 0.000174612 2.14692e-05 0.000168285 3.1378e-05 0.000160176 4.05042e-05 0.000150288 4.90447e-05 0.000139147 5.52733e-05 0.000126871 6.12407e-05 0.000113685 6.56483e-05 9.97489e-05 6.97065e-05 8.49547e-05 7.3906e-05 6.96299e-05 7.66148e-05 5.35765e-05 8.0177e-05 3.71328e-05 8.20167e-05 2.04722e-05 8.31002e-05 3.83803e-06 8.29317e-05 -1.26203e-05 8.21196e-05 -2.85675e-05 7.96131e-05 -4.39395e-05 7.67542e-05 -5.85053e-05 7.27717e-05 -7.22187e-05 6.85347e-05 -8.50802e-05 6.42861e-05 -9.69897e-05 5.95545e-05 -0.000107965 5.48984e-05 -0.000118036 5.03703e-05 -0.000127154 4.56256e-05 -0.000135351 4.10378e-05 -0.000142654 3.65664e-05 -0.000149044 3.20351e-05 -0.000154583 2.77773e-05 -0.000159241 2.33869e-05 -0.000163032 1.90471e-05 -0.000165984 1.48252e-05 -0.000168082 1.0406e-05 -0.000169319 5.95789e-06 -0.000169696 1.64513e-06 -0.000169319 -1.98937e-06 -0.000168201 -5.66545e-06 -0.000166272 -9.71927e-06 -0.000163445 -1.41831e-05 -0.000159729 -1.84636e-05 -0.00015518 -2.27326e-05 -0.000149591 -2.79805e-05 -0.00014312 -3.25861e-05 -0.000135469 -3.83441e-05 -0.000126794 -4.33416e-05 -0.000117178 -4.80764e-05 -0.000106367 -5.39058e-05 -9.45235e-05 -5.93193e-05 -8.16579e-05 -6.43342e-05 -6.76538e-05 -6.99345e-05 -5.27143e-05 -7.45849e-05 -3.66745e-05 -8.02016e-05 -1.96296e-05 -8.50653e-05 -2.09364e-06 -8.75473e-05 1.61678e-05 -9.11982e-05 3.50181e-05 -9.40216e-05 5.40685e-05 -9.50129e-05 7.33545e-05 -9.60816e-05 9.26244e-05 -9.60189e-05 0.000111422 -9.36555e-05 0.000129679 -9.09401e-05 0.000147058 -8.65403e-05 0.000163358 -8.11396e-05 0.000178326 -7.45539e-05 0.000191619 -6.61893e-05 0.000203085 -5.70885e-05 0.000212515 -4.69574e-05 0.000219669 -3.5634e-05 0.000224478 -2.39559e-05 0.000226864 -1.18979e-05 0.000226704 6.73442e-07 0.000224026 1.32356e-05 0.000218791 2.60634e-05 0.000211253 3.75475e-05 0.000201511 4.85164e-05 0.000189597 5.9405e-05 0.000175935 6.80651e-05 0.000160597 7.6356e-05 0.000144034 8.25047e-05 0.000126315 8.82827e-05 0.000107656 9.29949e-05 8.85762e-05 9.50765e-05 6.91058e-05 9.706e-05 9.74686e-05 -0.000155943 2.19356e-05 -0.000158899 1.7724e-05 -0.000161229 1.39659e-05 -0.000162947 1.02898e-05 -0.000164057 6.63674e-06 -0.000164535 3.02229e-06 -0.000164362 -9.75926e-07 -0.000163555 -4.85577e-06 -0.000162177 -8.29745e-06 -0.000160054 -1.2748e-05 -0.000157242 -1.69413e-05 -0.000153795 -2.07122e-05 -0.000149492 -2.58815e-05 -0.000144437 -3.04163e-05 -0.00013852 -3.55874e-05 -0.000131781 -4.05421e-05 -0.00012429 -4.49913e-05 -0.000115817 -5.08472e-05 -0.000106398 -5.65178e-05 -9.61746e-05 -6.177e-05 -8.47439e-05 -6.84826e-05 -7.23218e-05 -7.44714e-05 -5.90513e-05 -7.9536e-05 -4.47151e-05 -8.59003e-05 -2.95248e-05 -9.09942e-05 -1.34136e-05 -9.64661e-05 3.53432e-06 -0.000101396 2.09834e-05 -0.000104469 3.90719e-05 -0.000108187 5.76134e-05 -0.000110728 7.62197e-05 -0.00011116 9.48296e-05 -0.00011124 0.000113198 -0.000109726 0.000131116 -0.000106984 0.000148335 -0.00010279 0.000164459 -9.62989e-05 0.000179345 -8.88429e-05 0.000192763 -8.0046e-05 0.000204438 -6.96076e-05 0.00021426 -5.84723e-05 0.000221974 -4.60121e-05 0.000227483 -3.28812e-05 0.000230683 -1.91089e-05 0.000231465 -4.79761e-06 0.000229873 9.40656e-06 0.000226044 2.28696e-05 0.000219857 3.6923e-05 0.000211533 4.94381e-05 0.000201336 6.08255e-05 0.000189284 7.19387e-05 0.000175692 8.11494e-05 0.000160792 8.89612e-05 0.000144831 9.53393e-05 0.000128066 0.000100134 0.000110613 0.00010406 9.2809e-05 0.000106375 7.4745e-05 0.000107709 5.67819e-05 0.0001075 3.90566e-05 0.00010606 2.17135e-05 0.00010381 4.90961e-06 0.000100583 -1.12729e-05 9.68014e-05 -2.67292e-05 9.25721e-05 -4.14012e-05 8.79175e-05 -5.52488e-05 8.28933e-05 -6.81823e-05 7.75474e-05 -8.0198e-05 7.19514e-05 -9.12836e-05 6.66245e-05 -0.000101419 6.08635e-05 -0.000110722 5.58923e-05 -0.00011909 5.03394e-05 -0.000126666 4.52277e-05 -0.000133441 4.09006e-05 -0.000139442 3.60117e-05 -0.000144632 3.12556e-05 -0.000149174 2.72372e-05 -0.000152901 2.24571e-05 -0.000156004 1.86619e-05 -0.000158455 1.46158e-05 -0.000160166 1.02384e-05 -0.000161229 6.35682e-06 -0.000161637 2.41018e-06 -0.000161285 -2.0374e-06 -0.000160203 -6.28824e-06 -0.000158547 -1.03878e-05 -0.000156024 -1.51539e-05 -0.000152821 -1.92857e-05 -0.000148786 -2.43198e-05 -0.000143976 -2.89175e-05 -0.000138299 -3.39155e-05 -0.000131857 -3.89063e-05 -0.000124564 -4.39279e-05 -0.000116403 -4.88644e-05 -0.00010751 -5.34068e-05 -9.78751e-05 -5.79272e-05 -8.75285e-05 -6.22308e-05 -7.65184e-05 -6.62682e-05 -6.48481e-05 -7.03669e-05 -5.25121e-05 -7.43456e-05 -3.94978e-05 -7.84028e-05 -2.58151e-05 -8.22117e-05 -1.14978e-05 -8.59589e-05 3.45884e-06 -8.95764e-05 1.89396e-05 -9.29479e-05 3.49181e-05 -9.57525e-05 5.12738e-05 -9.80398e-05 6.79189e-05 -9.95235e-05 8.46351e-05 -0.0001001 0.000101325 -9.97487e-05 0.000117793 -9.82883e-05 0.000133816 -9.57506e-05 0.000149222 -9.20523e-05 0.000163853 -8.71327e-05 0.000177409 -8.10209e-05 0.000189771 -7.38248e-05 0.000200741 -6.53816e-05 0.000210116 -5.58693e-05 0.000217711 -4.52743e-05 0.000223413 -3.38805e-05 0.000227034 -2.16264e-05 0.000228522 -8.88039e-06 0.000227767 4.41416e-06 0.000224823 1.77337e-05 0.000219621 3.10758e-05 0.00021228 4.37841e-05 0.000202885 5.59742e-05 0.000191615 6.71728e-05 0.00017867 7.72605e-05 0.000164202 8.61863e-05 0.000148484 9.37061e-05 0.000131823 9.9761e-05 0.00011429 0.000104445 9.62376e-05 0.00010767 7.79137e-05 0.000109426 5.94536e-05 0.000109997 4.11771e-05 0.000109135 2.32142e-05 0.000107401 5.77881e-06 0.000104401 -1.1061e-05 0.000100643 -2.71208e-05 9.60886e-05 -4.23561e-05 9.1054e-05 -5.66068e-05 8.52586e-05 -6.98281e-05 7.94254e-05 -8.20298e-05 7.32635e-05 -9.30975e-05 6.66929e-05 -0.000103296 6.05981e-05 -0.000112329 5.44347e-05 -0.00012035 4.82547e-05 -0.000127356 4.24248e-05 -0.000133557 3.68474e-05 -0.000138819 3.17269e-05 -0.000143257 2.67857e-05 -0.0001469 2.20845e-05 -0.000149878 1.79401e-05 -0.000152148 1.38473e-05 -0.000153763 1.01154e-05 -0.00015495 6.68898e-06 -0.000155499 3.32166e-06 -0.000155517 3.34896e-07 -0.000155068 -2.71774e-06 -0.000154061 -5.85788e-06 -0.000152594 -8.84777e-06 -0.000150626 -1.17772e-05 -0.000148127 -1.49389e-05 -0.000145141 -1.81733e-05 -0.000141526 -2.17862e-05 -0.000137354 -2.52294e-05 -0.000132493 -2.90009e-05 -0.000127014 -3.29953e-05 -0.000120862 -3.69673e-05 -0.00011399 -4.11907e-05 -0.000106365 -4.56964e-05 -9.80875e-05 -5.00985e-05 -8.89539e-05 -5.4842e-05 -7.90093e-05 -5.96308e-05 -6.82646e-05 -6.45014e-05 -5.66266e-05 -6.96644e-05 -4.41718e-05 -7.45782e-05 -3.09067e-05 -7.95295e-05 -1.68343e-05 -8.43199e-05 -1.9928e-06 -8.88609e-05 1.35678e-05 -9.30412e-05 2.97137e-05 -9.65989e-05 4.63288e-05 -9.94473e-05 6.33543e-05 -0.000101428 8.04571e-05 -0.000102424 9.75998e-05 -0.000102201 0.000114512 -0.00010084 0.00013094 -9.78971e-05 0.000146612 -9.3403e-05 0.000161243 -8.72988e-05 0.000174599 -7.96497e-05 0.000186431 -7.04803e-05 0.000196474 -5.97741e-05 0.000204504 -4.76203e-05 0.000210295 -3.42849e-05 0.000213632 -1.996e-05 0.000214509 -4.97322e-06 0.000212778 1.01331e-05 0.00020852 2.52404e-05 0.000201817 3.97954e-05 0.000192829 5.35152e-05 0.000181703 6.61779e-05 0.000168673 7.74918e-05 0.000153973 8.76691e-05 0.000137873 9.5862e-05 0.000120655 0.00010262 0.000102613 0.000107549 8.40591e-05 0.000110425 6.53105e-05 0.000112004 4.66352e-05 0.000111521 2.82496e-05 0.000109914 1.03547e-05 0.00010721 -6.94206e-06 0.000103448 -2.35041e-05 9.91538e-05 -3.92792e-05 9.45349e-05 -5.41899e-05 8.93605e-05 -6.81917e-05 8.39673e-05 -8.123e-05 7.77966e-05 -9.32134e-05 7.18836e-05 -0.000104113 6.55827e-05 -0.000113991 5.94031e-05 -0.000122835 5.32439e-05 -0.000130811 4.77209e-05 -0.000137829 4.23545e-05 -0.000144024 3.73076e-05 -0.000149425 3.25903e-05 -0.000154116 2.83135e-05 -0.000158136 2.4205e-05 -0.000161516 2.02323e-05 -0.000164197 1.62501e-05 -0.000166219 1.24058e-05 -0.000167776 8.8709e-06 -0.000168607 5.06334e-06 -0.000168858 1.67995e-06 -0.000168548 -1.81499e-06 -0.000167672 -5.01514e-06 -0.000166336 -7.81752e-06 -0.000164621 -1.05569e-05 -0.000162377 -1.34931e-05 -0.000159653 -1.66487e-05 -0.000156273 -2.04194e-05 -0.000152227 -2.44913e-05 -0.000147376 -2.91527e-05 -0.000141647 -3.42269e-05 -0.00013508 -3.94943e-05 -0.000127607 -4.49383e-05 -0.00011921 -5.02925e-05 -0.000109942 -5.56451e-05 -9.98101e-05 -6.07121e-05 -8.88495e-05 -6.56584e-05 -7.70788e-05 -7.04727e-05 -6.44928e-05 -7.52455e-05 -5.11555e-05 -7.97966e-05 -3.70874e-05 -8.41777e-05 -2.23419e-05 -8.8071e-05 -7.03389e-06 -9.14888e-05 8.74002e-06 -9.42717e-05 2.49001e-05 -9.64704e-05 4.13081e-05 -9.78311e-05 5.78484e-05 -9.85429e-05 7.43486e-05 -9.84085e-05 9.06371e-05 -9.68733e-05 0.000106496 -9.41512e-05 0.000121479 -8.9379e-05 0.000135436 -8.28473e-05 0.000147997 -7.46484e-05 0.000158868 -6.46701e-05 0.000167817 -5.32421e-05 0.000174766 -4.07819e-05 0.000179344 -2.76781e-05 0.00018161 -1.36529e-05 0.000181602 4.18443e-08 0.000179306 1.34579e-05 0.000174929 2.58453e-05 0.000168568 3.77395e-05 0.000160449 4.86232e-05 0.00015051 5.89834e-05 0.000139297 6.64866e-05 0.000127033 7.3504e-05 0.000113754 7.8927e-05 9.98138e-05 8.3647e-05 8.5005e-05 8.87148e-05 6.9671e-05 9.19488e-05 5.36272e-05 9.62207e-05 3.71304e-05 9.85134e-05 2.04365e-05 9.97941e-05 3.76311e-06 9.9605e-05 -1.27242e-05 9.86069e-05 -2.86931e-05 9.55819e-05 -4.40812e-05 9.21423e-05 -5.86577e-05 8.73481e-05 -7.23772e-05 8.22542e-05 -8.52411e-05 7.715e-05 -9.71523e-05 7.14657e-05 -0.000108127 6.58731e-05 -0.000118197 6.04403e-05 -0.000127315 5.47433e-05 -0.000135505 4.92281e-05 -0.000142805 4.38663e-05 -0.000149193 3.84236e-05 -0.000154729 3.33131e-05 -0.000159382 2.80392e-05 -0.000163174 2.28392e-05 -0.000166129 1.77806e-05 -0.000168238 1.25152e-05 -0.000169483 7.20284e-06 -0.000169861 2.02333e-06 -0.000169487 -2.36426e-06 -0.00016838 -6.77199e-06 -0.00016646 -1.16394e-05 -0.00016364 -1.70025e-05 -0.000159944 -2.21599e-05 -0.000155377 -2.72998e-05 -0.000149788 -3.35692e-05 -0.000143319 -3.90556e-05 -0.000135676 -4.59866e-05 -0.000127005 -5.20134e-05 -0.000117391 -5.76904e-05 -0.000106579 -6.47175e-05 -9.47427e-05 -7.11558e-05 -8.18685e-05 -7.72084e-05 -6.78542e-05 -8.39489e-05 -5.29036e-05 -8.95356e-05 -3.68655e-05 -9.62398e-05 -1.97987e-05 -0.000102132 -2.22447e-06 -0.000105122 1.60594e-05 -0.000109482 3.4943e-05 -0.000112905 5.40304e-05 -0.0001141 7.33675e-05 -0.000115419 9.26858e-05 -0.000115337 0.000111535 -0.000112505 0.000129845 -0.00010925 0.000147281 -0.000103976 0.000163648 -9.75074e-05 0.000178655 -8.95604e-05 0.00019199 -7.95242e-05 0.000203493 -6.85916e-05 0.000212951 -5.64162e-05 0.000220132 -4.28143e-05 0.00022496 -2.87849e-05 0.000227356 -1.4294e-05 0.000227194 8.35805e-07 0.000224503 1.59262e-05 0.000219237 3.13293e-05 0.000211676 4.51092e-05 0.000201901 5.82908e-05 0.000189958 7.13475e-05 0.000176257 8.17669e-05 0.00016086 9.17525e-05 0.000144245 9.91194e-05 0.000126474 0.000106054 0.000107766 0.000111703 8.86331e-05 0.000114209 6.91138e-05 0.000116579 0.000117063 -0.000156098 2.55823e-05 -0.000159047 2.06736e-05 -0.000161375 1.62932e-05 -0.000163091 1.2006e-05 -0.000164206 7.75214e-06 -0.000164676 3.49198e-06 -0.000164504 -1.14785e-06 -0.000163701 -5.65904e-06 -0.000162332 -9.66615e-06 -0.000160208 -1.48724e-05 -0.000157415 -1.97337e-05 -0.000153978 -2.415e-05 -0.000149679 -3.01799e-05 -0.00014463 -3.54658e-05 -0.000138717 -4.14996e-05 -0.000131984 -4.72753e-05 -0.000124499 -5.24767e-05 -0.000116026 -5.93201e-05 -0.0001066 -6.59441e-05 -9.6413e-05 -7.19567e-05 -8.50315e-05 -7.98642e-05 -7.25629e-05 -8.694e-05 -5.92813e-05 -9.28177e-05 -4.49323e-05 -0.000100249 -2.97271e-05 -0.000106199 -1.35941e-05 -0.000112599 3.37882e-06 -0.000118369 2.0849e-05 -0.000121939 3.89742e-05 -0.000126312 5.75697e-05 -0.000129324 7.62243e-05 -0.000129815 9.48888e-05 -0.000129905 0.000113311 -0.000128148 0.000131289 -0.000124963 0.000148563 -0.000120064 0.000164742 -0.000112477 0.00017968 -0.000103781 0.000193144 -9.35105e-05 0.00020486 -8.13236e-05 0.000214715 -6.83267e-05 0.000222472 -5.37691e-05 0.000228019 -3.84286e-05 0.000231232 -2.23224e-05 0.000232011 -5.57586e-06 0.000230425 1.09925e-05 0.000226565 2.67287e-05 0.00022035 4.31385e-05 0.000211977 5.78106e-05 0.000201734 7.10691e-05 0.000189644 8.4028e-05 0.000176006 9.47879e-05 0.00016106 0.000103907 0.000145063 0.000111337 0.000128209 0.000116987 0.000110706 0.000121563 9.27955e-05 0.000124286 7.47267e-05 0.000125778 5.67277e-05 0.000125499 3.89709e-05 0.000123816 2.16022e-05 0.000121179 4.78105e-06 0.000117404 -1.144e-05 0.000113022 -2.6916e-05 0.000108048 -4.1603e-05 0.000102604 -5.54641e-05 9.67545e-05 -6.84015e-05 9.04847e-05 -8.04144e-05 8.39643e-05 -9.15083e-05 7.77184e-05 -0.000101641 7.0996e-05 -0.000110935 6.51863e-05 -0.000119303 5.8708e-05 -0.000126883 5.28067e-05 -0.000133644 4.76623e-05 -0.000139642 4.20099e-05 -0.000144819 3.64326e-05 -0.000149354 3.17722e-05 -0.000153081 2.6184e-05 -0.000156182 2.17621e-05 -0.000158634 1.70683e-05 -0.000160349 1.19533e-05 -0.000161413 7.42048e-06 -0.000161818 2.81515e-06 -0.000161445 -2.4095e-06 -0.000160398 -7.33528e-06 -0.000158754 -1.20319e-05 -0.000156257 -1.76513e-05 -0.000153049 -2.24934e-05 -0.000149023 -2.83464e-05 -0.000144227 -3.37129e-05 -0.000138562 -3.95804e-05 -0.000132112 -4.53563e-05 -0.000124834 -5.12061e-05 -0.000116704 -5.69947e-05 -0.000107752 -6.2359e-05 -9.81929e-05 -6.74861e-05 -8.78691e-05 -7.25547e-05 -7.6889e-05 -7.72484e-05 -6.52292e-05 -8.20268e-05 -5.29195e-05 -8.66553e-05 -3.99239e-05 -9.13985e-05 -2.62483e-05 -9.58873e-05 -1.1941e-05 -0.000100266 3.01438e-06 -0.000104532 1.85052e-05 -0.000108439 3.45153e-05 -0.000111763 5.09065e-05 -0.000114431 6.75543e-05 -0.000116171 8.43385e-05 -0.000116884 0.000101058 -0.000116468 0.000117574 -0.000114805 0.000133651 -0.000111827 0.000149087 -0.000107489 0.000163729 -0.000101774 0.000177355 -9.46473e-05 0.000189776 -8.62461e-05 0.000200775 -7.63809e-05 0.000210195 -6.52889e-05 0.00021784 -5.29201e-05 0.000223589 -3.96296e-05 0.000227213 -2.52504e-05 0.00022871 -1.03768e-05 0.000227972 5.15187e-06 0.000224995 2.07102e-05 0.00021979 3.62809e-05 0.000212437 5.11373e-05 0.000203054 6.53572e-05 0.000191716 7.85105e-05 0.00017868 9.02967e-05 0.000164177 0.000100689 0.00014841 0.000109473 0.000131625 0.000116546 0.000114059 0.000122011 9.60004e-05 0.000125729 7.75469e-05 0.00012788 5.90731e-05 0.000128471 4.07435e-05 0.000127464 2.27386e-05 0.000125406 5.27567e-06 0.000121864 -1.16132e-05 0.000117532 -2.76873e-05 0.000112163 -4.29469e-05 0.000106314 -5.72244e-05 9.95361e-05 -7.0457e-05 9.2658e-05 -8.26624e-05 8.54689e-05 -9.38196e-05 7.78502e-05 -0.000103946 7.07244e-05 -0.000112977 6.34661e-05 -0.000120945 5.62228e-05 -0.000128057 4.95359e-05 -0.000134186 4.29766e-05 -0.00013942 3.69609e-05 -0.000143852 3.12175e-05 -0.000147478 2.57105e-05 -0.000150423 2.08858e-05 -0.000152671 1.60954e-05 -0.000154375 1.18191e-05 -0.000155521 7.83532e-06 -0.000156071 3.87115e-06 -0.000156063 3.26973e-07 -0.000155588 -3.19278e-06 -0.000154595 -6.85126e-06 -0.000153167 -1.02753e-05 -0.000151213 -1.37312e-05 -0.000148708 -1.74441e-05 -0.000145715 -2.1166e-05 -0.000142097 -2.54045e-05 -0.000137919 -2.94076e-05 -0.000133093 -3.38265e-05 -0.000127604 -3.84852e-05 -0.000121408 -4.31632e-05 -0.000114562 -4.80362e-05 -0.000107005 -5.32535e-05 -9.87005e-05 -5.84032e-05 -8.95725e-05 -6.39701e-05 -7.96199e-05 -6.95835e-05 -6.88675e-05 -7.52538e-05 -5.72475e-05 -8.12846e-05 -4.47746e-05 -8.70511e-05 -3.1487e-05 -9.28172e-05 -1.74106e-05 -9.83964e-05 -2.5464e-06 -0.000103725 1.30277e-05 -0.000108615 2.92171e-05 -0.000112788 4.58767e-05 -0.000116107 6.29067e-05 -0.000118459 8.00903e-05 -0.000119608 9.72796e-05 -0.000119391 0.000114261 -0.000117822 0.000130731 -0.000114367 0.000146466 -0.000109138 0.000161178 -0.000102011 0.000174595 -9.30671e-05 0.000186515 -8.24007e-05 0.000196617 -6.98755e-05 0.000204685 -5.56887e-05 0.000210506 -4.01063e-05 0.00021386 -2.33141e-05 0.000214722 -5.83494e-06 0.000213012 1.18433e-05 0.000208795 2.94566e-05 0.000202017 4.65732e-05 0.00019299 6.2543e-05 0.000181797 7.73705e-05 0.000168719 9.05694e-05 0.000153971 0.000102417 0.000137785 0.000112048 0.000120475 0.000119931 0.000102376 0.000125648 8.37523e-05 0.000129048 6.4936e-05 0.000130821 4.61888e-05 0.000130268 2.77511e-05 0.000128351 9.82617e-06 0.000125135 -7.44775e-06 0.000120722 -2.41167e-05 0.000115823 -3.99084e-05 0.000110327 -5.48415e-05 0.000104294 -6.87537e-05 9.78795e-05 -8.18908e-05 9.09337e-05 -9.3864e-05 8.38568e-05 -0.000104759 7.64777e-05 -0.000114567 6.92111e-05 -0.000123511 6.21876e-05 -0.000131442 5.56526e-05 -0.00013844 4.93518e-05 -0.000144622 4.34896e-05 -0.000150041 3.80096e-05 -0.000154707 3.29795e-05 -0.000158713 2.82109e-05 -0.000162035 2.35543e-05 -0.000164763 1.89781e-05 -0.000166858 1.45012e-05 -0.000168345 1.03577e-05 -0.000169171 5.88896e-06 -0.000169399 1.90819e-06 -0.000169094 -2.12002e-06 -0.000168221 -5.88768e-06 -0.000166913 -9.12561e-06 -0.000165178 -1.22921e-05 -0.00016295 -1.57209e-05 -0.00016022 -1.9379e-05 -0.000156867 -2.3773e-05 -0.000152812 -2.85457e-05 -0.000147975 -3.39898e-05 -0.000142274 -3.99284e-05 -0.000135686 -4.6082e-05 -0.000128205 -5.24197e-05 -0.000119809 -5.86882e-05 -0.000110523 -6.49307e-05 -0.000100387 -7.08484e-05 -8.94231e-05 -7.66224e-05 -7.7635e-05 -8.22608e-05 -6.50181e-05 -8.78625e-05 -5.16466e-05 -9.31681e-05 -3.75443e-05 -9.82801e-05 -2.27724e-05 -0.000102843 -7.41381e-06 -0.000106848 8.38175e-06 -0.000110067 2.45881e-05 -0.000112677 4.10459e-05 -0.000114289 5.76676e-05 -0.000115165 7.42335e-05 -0.000114975 9.05879e-05 -0.000113228 0.000106538 -0.000110102 0.000121611 -0.000104452 0.000135652 -9.68882e-05 0.000148295 -8.7291e-05 0.000159224 -7.55994e-05 0.000168223 -6.22414e-05 0.000175203 -4.77619e-05 0.000179811 -3.2286e-05 0.000182086 -1.5928e-05 0.000182069 5.85686e-08 0.000179767 1.57595e-05 0.000175325 3.02877e-05 0.00016891 4.41544e-05 0.000160729 5.68037e-05 0.000150822 6.88903e-05 0.000139476 7.78332e-05 0.000127238 8.5742e-05 0.000113841 9.23236e-05 9.98879e-05 9.76001e-05 8.50901e-05 0.000103513 6.97136e-05 0.000107325 5.36839e-05 0.00011225 3.71284e-05 0.000115069 2.03931e-05 0.000116529 3.67145e-06 0.000116327 -1.28503e-05 0.000115129 -2.88453e-05 0.000111577 -4.42517e-05 0.000107549 -5.88421e-05 0.000101939 -7.25693e-05 9.59815e-05 -8.54357e-05 9.00164e-05 -9.73484e-05 8.33783e-05 -0.000108323 7.68475e-05 -0.000118393 7.05108e-05 -0.000127512 6.38621e-05 -0.000135698 5.74143e-05 -0.000142997 5.1165e-05 -0.000149386 4.48126e-05 -0.000154922 3.88485e-05 -0.000159575 3.26928e-05 -0.000163371 2.66349e-05 -0.000166333 2.07426e-05 -0.000168446 1.46281e-05 -0.000169699 8.456e-06 -0.000170082 2.40592e-06 -0.000169711 -2.73504e-06 -0.000168594 -7.88886e-06 -0.000166684 -1.35491e-05 -0.000163875 -1.98119e-05 -0.0001602 -2.58345e-05 -0.000155611 -3.18888e-05 -0.00015005 -3.91311e-05 -0.000143534 -4.55707e-05 -0.000135925 -5.35964e-05 -0.000127255 -6.06831e-05 -0.000117645 -6.73006e-05 -0.000106833 -7.55294e-05 -9.50065e-05 -8.29824e-05 -8.2123e-05 -9.00919e-05 -6.80943e-05 -9.79778e-05 -5.31299e-05 -0.0001045 -3.70962e-05 -0.000112274 -2.00146e-05 -0.000119214 -2.37961e-06 -0.000122757 1.59316e-05 -0.000127793 3.48556e-05 -0.000131829 5.39868e-05 -0.000133232 7.33831e-05 -0.000134815 9.27589e-05 -0.000134713 0.000111668 -0.000131414 0.000130042 -0.000127624 0.000147542 -0.000121476 0.000163972 -0.000113937 0.000179052 -0.000104641 0.000192433 -9.29053e-05 0.00020398 -8.0138e-05 0.000213472 -6.59087e-05 0.000220684 -5.00264e-05 0.000225538 -3.36382e-05 0.000227948 -1.67048e-05 0.000227785 9.99245e-07 0.000225082 1.86285e-05 0.00021978 3.66319e-05 0.000212187 5.27017e-05 0.000202373 6.81047e-05 0.000190393 8.33272e-05 0.000176647 9.55137e-05 0.000161176 0.000107223 0.000144499 0.000115796 0.000126666 0.000123887 0.000107894 0.000130474 8.87015e-05 0.000133402 6.91229e-05 0.000136158 0.000136713 -0.000156278 2.9221e-05 -0.000159221 2.36165e-05 -0.000161545 1.86168e-05 -0.000163259 1.37205e-05 -0.000164357 8.85036e-06 -0.000164839 3.97412e-06 -0.000164671 -1.31664e-06 -0.000163872 -6.45762e-06 -0.000162513 -1.10248e-05 -0.000160398 -1.69878e-05 -0.000157622 -2.25102e-05 -0.00015419 -2.75812e-05 -0.000149897 -3.4473e-05 -0.000144854 -4.05092e-05 -0.000138948 -4.74052e-05 -0.000132222 -5.40014e-05 -0.000124745 -5.99541e-05 -0.000116275 -6.77902e-05 -0.00010685 -7.53688e-05 -9.66201e-05 -8.21869e-05 -8.53355e-05 -9.11489e-05 -7.28512e-05 -9.94244e-05 -5.95488e-05 -0.00010612 -4.51863e-05 -0.000114612 -2.99649e-05 -0.000121421 -1.38075e-05 -0.000128756 3.18743e-06 -0.000135364 2.06924e-05 -0.000139444 3.88617e-05 -0.000144481 5.75187e-05 -0.000147981 7.62305e-05 -0.000148527 9.49645e-05 -0.000148639 0.000113446 -0.00014663 0.000131493 -0.000143009 0.000148832 -0.000137404 0.000165075 -0.000128721 0.000180076 -0.000118782 0.000193597 -0.000107031 0.000205363 -9.30897e-05 0.000215259 -7.82235e-05 0.000223045 -6.15544e-05 0.000228613 -4.39975e-05 0.000231863 -2.55721e-05 0.000232648 -6.36102e-06 0.000231084 1.25563e-05 0.000227174 3.06385e-05 0.000220899 4.94141e-05 0.0002125 6.62096e-05 0.000202205 8.13637e-05 0.000190068 9.61652e-05 0.000176375 0.000108481 0.000161379 0.000118902 0.000145351 0.000127365 0.000128378 0.00013396 0.000110816 0.000139125 9.28105e-05 0.000142292 7.47103e-05 0.000143878 5.66668e-05 0.000143543 3.88735e-05 0.00014161 2.14773e-05 0.000138575 4.65313e-06 0.000134228 -1.16365e-05 0.000129312 -2.71371e-05 0.000123549 -4.18409e-05 0.000117308 -5.57169e-05 0.00011063 -6.86577e-05 0.000103426 -8.06585e-05 9.59651e-05 -9.17695e-05 8.88293e-05 -0.000101898 8.11249e-05 -0.000111188 7.44757e-05 -0.000119546 6.7066e-05 -0.000127126 6.03871e-05 -0.000133882 5.44184e-05 -0.000139874 4.80017e-05 -0.000145039 4.15979e-05 -0.000149565 3.6298e-05 -0.000153289 2.99072e-05 -0.000156388 2.48613e-05 -0.000158841 1.95214e-05 -0.000160556 1.3668e-05 -0.000161621 8.48564e-06 -0.000162009 3.20323e-06 -0.00016164 -2.77858e-06 -0.000160635 -8.34038e-06 -0.000158989 -1.36778e-05 -0.000156527 -2.01129e-05 -0.00015332 -2.57e-05 -0.000149315 -3.23524e-05 -0.000144514 -3.85135e-05 -0.000138873 -4.52208e-05 -0.00013243 -5.17994e-05 -0.000125151 -5.84856e-05 -0.000117068 -6.50774e-05 -0.000108165 -7.12623e-05 -9.85567e-05 -7.70944e-05 -8.83035e-05 -8.28079e-05 -7.73315e-05 -8.82205e-05 -6.57135e-05 -9.36448e-05 -5.34114e-05 -9.89574e-05 -4.04343e-05 -0.000104376 -2.67699e-05 -0.000109552 -1.24499e-05 -0.000114586 2.50517e-06 -0.000119487 1.80183e-05 -0.000123952 3.40397e-05 -0.000127784 5.04624e-05 -0.000130854 6.7145e-05 -0.000132854 8.39619e-05 -0.000133701 0.000100734 -0.00013324 0.000117288 -0.000131359 0.000133412 -0.000127951 0.000148925 -0.000123002 0.000163632 -0.000116481 0.000177316 -0.000108332 0.000189781 -9.87114e-05 0.000200847 -8.74464e-05 0.000210325 -7.47667e-05 0.000218012 -6.06077e-05 0.000223768 -4.53852e-05 0.000227441 -2.89234e-05 0.000228957 -1.18934e-05 0.000228239 5.87014e-06 0.000225244 2.37054e-05 0.00022003 4.14944e-05 0.000212651 5.8517e-05 0.000203171 7.48364e-05 0.000191816 8.9866e-05 0.000178729 0.000103384 0.000164168 0.00011525 0.000148316 0.000125326 0.000131455 0.000133407 0.000113838 0.000139627 9.56681e-05 0.000143899 7.71709e-05 0.000146377 5.86366e-05 0.000147005 4.02671e-05 0.000145834 2.22062e-05 0.000143467 4.64509e-06 0.000139425 -1.2252e-05 0.000134429 -2.83732e-05 0.000128284 -4.35609e-05 0.000121501 -5.79345e-05 0.00011391 -7.12094e-05 0.000105933 -8.33476e-05 9.7607e-05 -9.4567e-05 8.90696e-05 -0.00010469 8.08471e-05 -0.00011372 7.24967e-05 -0.000121703 6.42056e-05 -0.000128783 5.66157e-05 -0.000134882 4.90753e-05 -0.000140111 4.219e-05 -0.000144528 3.56349e-05 -0.000148124 2.93069e-05 -0.00015107 2.38309e-05 -0.000153403 1.84293e-05 -0.000155056 1.34721e-05 -0.000156164 8.94295e-06 -0.000156712 4.41879e-06 -0.000156697 3.12248e-07 -0.000156147 -3.74304e-06 -0.000155252 -7.74628e-06 -0.000153806 -1.17216e-05 -0.000151861 -1.56752e-05 -0.000149366 -1.99392e-05 -0.000146375 -2.41572e-05 -0.000142763 -2.90172e-05 -0.000138572 -3.3598e-05 -0.000133761 -3.86378e-05 -0.000128214 -4.40322e-05 -0.000122106 -4.92707e-05 -0.000115281 -5.48613e-05 -0.000107705 -6.08301e-05 -9.93908e-05 -6.67173e-05 -9.02831e-05 -7.30778e-05 -8.03209e-05 -7.95457e-05 -6.95699e-05 -8.6005e-05 -5.79447e-05 -9.29098e-05 -4.54367e-05 -9.95592e-05 -3.21423e-05 -0.000106112 -1.80439e-05 -0.000112495 -3.16955e-06 -0.0001186 1.24145e-05 -0.0001242 2.86326e-05 -0.000129007 4.53426e-05 -0.000132817 6.24176e-05 -0.000135534 7.96785e-05 -0.000136869 9.69465e-05 -0.000136659 0.000113987 -0.000134863 0.000130528 -0.000130908 0.000146336 -0.000124946 0.000161132 -0.000116807 0.00017463 -0.000106565 0.000186607 -9.43787e-05 0.000196772 -8.004e-05 0.000204898 -6.38153e-05 0.000210782 -4.59906e-05 0.000214169 -2.67006e-05 0.000215086 -6.75188e-06 0.000213301 1.36281e-05 0.000209001 3.37566e-05 0.000202319 5.3255e-05 0.000193215 7.16468e-05 0.000181988 8.85974e-05 0.000168798 0.000103759 0.000153959 0.000117256 0.000137649 0.000128357 0.000120269 0.000137311 0.00010213 0.000143787 8.33808e-05 0.000147798 6.45079e-05 0.000149693 4.5714e-05 0.000149062 2.72066e-05 0.000146859 9.20724e-06 0.000143134 -8.1728e-06 0.000138102 -2.47978e-05 0.000132448 -4.05314e-05 0.00012606 -5.5557e-05 0.000119319 -6.95669e-05 0.000111889 -8.2655e-05 0.000104022 -9.46248e-05 9.58266e-05 -0.000105517 8.73697e-05 -0.000115411 7.91057e-05 -0.000124268 7.10441e-05 -0.000132176 6.3561e-05 -0.000139163 5.63383e-05 -0.000145333 4.96597e-05 -0.000150725 4.34019e-05 -0.000155346 3.76005e-05 -0.000159325 3.21894e-05 -0.000162739 2.69685e-05 -0.000165469 2.17082e-05 -0.000167529 1.65604e-05 -0.000168999 1.18282e-05 -0.000169834 6.72421e-06 -0.000170051 2.1251e-06 -0.000169732 -2.4394e-06 -0.000168802 -6.81802e-06 -0.000167543 -1.03845e-05 -0.000165804 -1.4031e-05 -0.000163593 -1.79322e-05 -0.000160857 -2.21147e-05 -0.000157543 -2.70867e-05 -0.000153495 -3.25941e-05 -0.000148655 -3.88296e-05 -0.000142941 -4.56423e-05 -0.000136349 -5.26741e-05 -0.000128852 -5.99172e-05 -0.000120428 -6.71117e-05 -0.000111134 -7.4225e-05 -0.000100984 -8.09987e-05 -9.00029e-05 -8.76032e-05 -7.81966e-05 -9.40672e-05 -6.55741e-05 -0.000100485 -5.21512e-05 -0.000106591 -3.80029e-05 -0.000112428 -2.31909e-05 -0.000117655 -7.77769e-06 -0.000122261 7.98601e-06 -0.000125831 2.42445e-05 -0.000128935 4.07626e-05 -0.000130807 5.7475e-05 -0.000131877 7.41231e-05 -0.000131623 9.05564e-05 -0.000129661 0.000106578 -0.000126123 0.000121774 -0.000119648 0.000135908 -0.000111022 0.000148643 -0.000100026 0.000159645 -8.6602e-05 0.000168714 -7.13101e-05 0.000175722 -5.477e-05 0.000180282 -3.68464e-05 0.000182541 -1.8187e-05 0.000182613 -1.30573e-08 0.000180371 1.8001e-05 0.000175796 3.48628e-05 0.000169317 5.0633e-05 0.000161012 6.51087e-05 0.000151172 7.87307e-05 0.000139681 8.93241e-05 0.000127389 9.80335e-05 0.00011394 0.000105773 9.99656e-05 0.000111574 8.5216e-05 0.000118262 6.97497e-05 0.000122791 5.37451e-05 0.000128255 3.71272e-05 0.000131687 2.03422e-05 0.000133314 3.56223e-06 0.000133106 -1.29978e-05 0.000131689 -2.90234e-05 0.000127602 -4.44517e-05 0.000122977 -5.90574e-05 0.000116544 -7.27941e-05 0.000109718 -8.56648e-05 0.000102887 -9.75793e-05 9.52928e-05 -0.000108554 8.78218e-05 -0.000118622 8.05795e-05 -0.000127737 7.2977e-05 -0.000135926 6.56033e-05 -0.000143222 5.84606e-05 -0.00014961 5.12011e-05 -0.000155146 4.43842e-05 -0.000159801 3.7348e-05 -0.0001636 3.04333e-05 -0.000166568 2.37112e-05 -0.000168686 1.67456e-05 -0.000169946 9.7156e-06 -0.000170333 2.79306e-06 -0.000169965 -3.10304e-06 -0.000168842 -9.01138e-06 -0.000166943 -1.54481e-05 -0.000164147 -2.26078e-05 -0.000160486 -2.94957e-05 -0.000155882 -3.64933e-05 -0.00015036 -4.46533e-05 -0.000143798 -5.21318e-05 -0.000136216 -6.11793e-05 -0.000127548 -6.93511e-05 -0.000117942 -7.69061e-05 -0.00010713 -8.63421e-05 -9.52888e-05 -9.48231e-05 -8.2429e-05 -0.000102952 -6.83754e-05 -0.000112031 -5.33937e-05 -0.000119482 -3.7314e-05 -0.000128353 -2.03018e-05 -0.000136226 -2.56497e-06 -0.000140494 1.57819e-05 -0.00014614 3.47539e-05 -0.000150801 5.39365e-05 -0.000152414 7.33893e-05 -0.000154268 9.2844e-05 -0.000154168 0.000111824 -0.000150394 0.000130271 -0.000146072 0.000147846 -0.000139051 0.000164346 -0.000130438 0.000179524 -0.000119819 0.000192957 -0.000106338 0.000204551 -9.17324e-05 0.000214084 -7.54413e-05 0.000221332 -5.72749e-05 0.000226213 -3.85198e-05 0.000228647 -1.91384e-05 0.000228475 1.17126e-06 0.000225753 2.13499e-05 0.000220418 4.19673e-05 0.000212789 6.03308e-05 0.000202928 7.79651e-05 0.000190903 9.53521e-05 0.000177103 0.000109314 0.000161545 0.00012278 0.000144795 0.000132546 0.000126889 0.000141794 0.000108043 0.00014932 8.87812e-05 0.000152664 6.9133e-05 0.000155806 0.000156427 -0.000156484 3.28506e-05 -0.00015942 2.65521e-05 -0.000161738 2.09357e-05 -0.000163454 1.5436e-05 -0.000164535 9.93146e-06 -0.000165027 4.46559e-06 -0.000164863 -1.48057e-06 -0.00016407 -7.25078e-06 -0.000162722 -1.23726e-05 -0.000160618 -1.90919e-05 -0.00015789 -2.52377e-05 -0.000154432 -3.10391e-05 -0.000150147 -3.87583e-05 -0.000145109 -4.55476e-05 -0.000139212 -5.33021e-05 -0.000132496 -6.07177e-05 -0.000125028 -6.74214e-05 -0.000116564 -7.62546e-05 -0.000107144 -8.47885e-05 -9.69121e-05 -9.24191e-05 -8.56577e-05 -0.000102403 -7.32081e-05 -0.000111874 -5.98523e-05 -0.000119476 -4.54779e-05 -0.000128986 -3.02386e-05 -0.00013666 -1.40542e-05 -0.000144941 2.96879e-06 -0.000152388 2.05145e-05 -0.00015699 3.87343e-05 -0.000162701 5.74599e-05 -0.000166706 7.62376e-05 -0.000167305 9.5067e-05 -0.000167468 0.000113605 -0.000165169 0.000131727 -0.000161131 0.000149143 -0.000154819 0.00016546 -0.000145039 0.000180533 -0.000133854 0.00019412 -0.000120618 0.000205945 -0.000104915 0.000215892 -8.8171e-05 0.000223714 -6.93761e-05 0.000229305 -4.95886e-05 0.000232566 -2.8833e-05 0.000233377 -7.17216e-06 0.00023182 1.41131e-05 0.000227872 3.45863e-05 0.000221534 5.57525e-05 0.000213102 7.4641e-05 0.000202751 9.17149e-05 0.000190556 0.00010836 0.000176803 0.000122235 0.000161759 0.000133946 0.000145612 0.000143512 0.000128571 0.000151001 0.000110944 0.000156752 9.28455e-05 0.00016039 7.4696e-05 0.000162027 5.66003e-05 0.000161639 3.87662e-05 0.000159444 2.13448e-05 0.000155996 4.57482e-06 0.000150998 -1.18454e-05 0.000145732 -2.73911e-05 0.000139094 -4.21145e-05 0.000132032 -5.60079e-05 0.000124524 -6.89524e-05 0.00011637 -8.09588e-05 0.000107971 -9.20666e-05 9.99371e-05 -0.000102192 9.125e-05 -0.000111472 8.3756e-05 -0.000119843 7.54373e-05 -0.0001274 6.79437e-05 -0.000134156 6.11746e-05 -0.000140134 5.39796e-05 -0.000145291 4.67549e-05 -0.000149804 4.08109e-05 -0.000153522 3.36251e-05 -0.000156619 2.79582e-05 -0.000159069 2.19713e-05 -0.000160788 1.53872e-05 -0.000161839 9.53628e-06 -0.000162204 3.56897e-06 -0.000161913 -3.07012e-06 -0.000160922 -9.33146e-06 -0.000159203 -1.53965e-05 -0.000156829 -2.24869e-05 -0.000153607 -2.89226e-05 -0.000149644 -3.63148e-05 -0.00014485 -4.33076e-05 -0.000139237 -5.08344e-05 -0.000132808 -5.82283e-05 -0.000125529 -6.57638e-05 -0.000117486 -7.31214e-05 -0.000108599 -8.01489e-05 -9.90458e-05 -8.66476e-05 -8.87916e-05 -9.30621e-05 -7.78646e-05 -9.91476e-05 -6.62816e-05 -0.000105228 -5.39738e-05 -0.000111265 -4.10311e-05 -0.000117318 -2.73536e-05 -0.000123229 -1.30622e-05 -0.000128878 1.91214e-06 -0.000134461 1.74443e-05 -0.000139484 3.35025e-05 -0.000143843 4.99719e-05 -0.000147323 6.66988e-05 -0.000149581 8.35588e-05 -0.000150561 0.00010039 -0.000150072 0.000116984 -0.000147954 0.000133169 -0.000144136 0.000148761 -0.000138593 0.000163529 -0.000131249 0.000177275 -0.000122078 0.000189805 -0.000111242 0.000200924 -9.85651e-05 0.000210457 -8.42997e-05 0.0002182 -6.83508e-05 0.000223997 -5.11825e-05 0.000227742 -3.26687e-05 0.000229257 -1.34083e-05 0.000228528 6.5993e-06 0.000225546 2.66864e-05 0.000220313 4.67274e-05 0.000212885 6.59448e-05 0.00020337 8.43513e-05 0.000191947 0.000101289 0.000178776 0.000116555 0.000164139 0.000129886 0.000148252 0.000141212 0.000131276 0.000150383 0.000113576 0.000157327 9.53074e-05 0.000162167 7.67519e-05 0.000164932 5.81996e-05 0.000165557 3.96884e-05 0.000164345 2.16168e-05 0.000161539 3.97982e-06 0.000157062 -1.29538e-05 0.000151363 -2.91388e-05 0.000144469 -4.44326e-05 0.000136795 -5.87172e-05 0.000128194 -7.20373e-05 0.000119253 -8.42684e-05 0.000109838 -9.54407e-05 0.000100242 -0.000105525 9.09316e-05 -0.000114493 8.14646e-05 -0.000122573 7.22855e-05 -0.000129611 6.36534e-05 -0.000135711 5.5176e-05 -0.000140897 4.73757e-05 -0.00014525 3.99881e-05 -0.000148946 3.30021e-05 -0.000151876 2.6761e-05 -0.000154171 2.07244e-05 -0.000155806 1.51069e-05 -0.000156891 1.00288e-05 -0.00015743 4.95741e-06 -0.000157358 2.39869e-07 -0.000156923 -4.17769e-06 -0.000155996 -8.67308e-06 -0.000154537 -1.3181e-05 -0.000152594 -1.7618e-05 -0.000150102 -2.2431e-05 -0.000147115 -2.71443e-05 -0.000143523 -3.26095e-05 -0.000139341 -3.77796e-05 -0.000134447 -4.3532e-05 -0.000129062 -4.94177e-05 -0.000122902 -5.54308e-05 -0.000116074 -6.16895e-05 -0.000108518 -6.83856e-05 -0.000100182 -7.50534e-05 -9.10943e-05 -8.21657e-05 -8.11241e-05 -8.9516e-05 -7.0292e-05 -9.68372e-05 -5.86534e-05 -0.000104548 -4.62061e-05 -0.000112007 -3.29029e-05 -0.000119415 -1.87827e-05 -0.000126615 -3.80461e-06 -0.000133578 1.17252e-05 -0.000139729 2.80096e-05 -0.000145291 4.4752e-05 -0.000149559 6.18725e-05 -0.000152654 7.92292e-05 -0.000154225 9.6568e-05 -0.000153998 0.000113693 -0.000151988 0.000130323 -0.000147538 0.000146201 -0.000140825 0.000161073 -0.000131679 0.000174663 -0.000120154 0.000186736 -0.000106452 0.000196982 -9.0286e-05 0.000205162 -7.19953e-05 0.000211089 -5.19182e-05 0.000214544 -3.01552e-05 0.000215393 -7.60173e-06 0.000213646 1.53755e-05 0.000209316 3.80865e-05 0.000202517 6.00541e-05 0.000193404 8.07595e-05 0.000182123 9.98784e-05 0.000168845 0.000117037 0.000153897 0.000132204 0.000137529 0.000144725 0.000120038 0.000154802 0.000101753 0.000162073 8.29715e-05 0.000166579 6.40559e-05 0.000168609 4.50998e-05 0.000168018 2.65459e-05 0.000165413 8.58523e-06 0.000161095 -8.89825e-06 0.000155585 -2.55787e-05 0.000149128 -4.14113e-05 0.000141893 -5.63924e-05 0.0001343 -7.0429e-05 0.000125926 -8.35084e-05 0.000117101 -9.54846e-05 0.000107803 -0.000106371 9.82565e-05 -0.000116311 8.9045e-05 -0.000125144 7.9877e-05 -0.000133009 7.14269e-05 -0.000139973 6.3302e-05 -0.000146124 5.5811e-05 -0.00015149 4.87679e-05 -0.000156172 4.22818e-05 -0.000160178 3.61957e-05 -0.000163521 3.03114e-05 -0.000166241 2.44283e-05 -0.000168285 1.86039e-05 -0.000169751 1.32944e-05 -0.000170593 7.56629e-06 -0.000170796 2.3281e-06 -0.000170425 -2.81037e-06 -0.000169582 -7.66084e-06 -0.000168257 -1.17094e-05 -0.000166512 -1.57762e-05 -0.000164316 -2.01278e-05 -0.000161608 -2.48232e-05 -0.00015831 -3.03843e-05 -0.000154279 -3.66251e-05 -0.000149447 -4.36617e-05 -0.000143773 -5.13167e-05 -0.000137181 -5.92658e-05 -0.000129697 -6.74017e-05 -0.000121274 -7.55342e-05 -0.000111979 -8.35204e-05 -0.000101817 -9.11609e-05 -9.0817e-05 -9.86028e-05 -7.89891e-05 -0.000105895 -6.63446e-05 -0.00011313 -5.28844e-05 -0.000120051 -3.86741e-05 -0.000126639 -2.38258e-05 -0.000132503 -8.36732e-06 -0.000137719 7.54589e-06 -0.000141744 2.38672e-05 -0.000145257 4.0462e-05 -0.000147402 5.72123e-05 -0.000148628 7.39707e-05 -0.000148381 9.05305e-05 -0.000146221 0.000106623 -0.000142216 0.000121963 -0.000134989 0.000136209 -0.000125268 0.000149042 -0.000112859 0.00016013 -9.76896e-05 0.000169327 -8.0507e-05 0.000176327 -6.17708e-05 0.000180829 -4.13478e-05 0.000183099 -2.04569e-05 0.000183129 -4.36974e-08 0.00018097 2.01602e-05 0.000176341 3.94915e-05 0.00016979 5.71837e-05 0.000161386 7.35131e-05 0.000151491 8.86252e-05 0.000139913 0.000100903 0.000127537 0.000110409 0.000114046 0.000119265 0.000100017 0.000125602 8.534e-05 0.000132939 6.98248e-05 0.000138307 5.3811e-05 0.000144269 3.71268e-05 0.000148371 2.02836e-05 0.000150158 3.43508e-06 0.000149955 -1.3167e-05 0.000148291 -2.92276e-05 0.000143663 -4.46812e-05 0.000138431 -5.93041e-05 0.000131167 -7.30514e-05 0.000123465 -8.5927e-05 0.000115763 -9.78432e-05 0.000107209 -0.000108817 9.87957e-05 -0.000118884 9.06466e-05 -0.000127996 8.20886e-05 -0.000136186 7.37938e-05 -0.000143479 6.57529e-05 -0.000149867 5.75895e-05 -0.000155403 4.99201e-05 -0.00016006 4.20049e-05 -0.00016386 3.42333e-05 -0.000166836 2.66871e-05 -0.000168958 1.8868e-05 -0.000170223 1.09807e-05 -0.000170615 3.18507e-06 -0.00017025 -3.46818e-06 -0.000169123 -1.0138e-05 -0.000167231 -1.73404e-05 -0.000164456 -2.53826e-05 -0.000160806 -3.31459e-05 -0.000156231 -4.10687e-05 -0.000150693 -5.01911e-05 -0.000144125 -5.86997e-05 -0.00013655 -6.87549e-05 -0.000127884 -7.80169e-05 -0.000118282 -8.65074e-05 -0.000107469 -9.71556e-05 -9.55864e-05 -0.000106706 -8.28189e-05 -0.000115719 -6.86984e-05 -0.000126152 -5.36959e-05 -0.000134484 -3.75521e-05 -0.000144497 -2.05691e-05 -0.000153209 -2.78058e-06 -0.000158282 1.56107e-05 -0.000164532 3.46381e-05 -0.000169829 5.38794e-05 -0.000171656 7.33951e-05 -0.000173784 9.29414e-05 -0.000173714 0.000112001 -0.000169454 0.000130533 -0.000164604 0.000148192 -0.000156711 0.000164774 -0.00014702 0.000180035 -0.00013508 0.000193567 -0.00011987 0.00020521 -0.000103375 0.000214787 -8.5019e-05 0.000222076 -6.45638e-05 0.000226989 -4.3433e-05 0.000229466 -2.16155e-05 0.000229265 1.37295e-06 0.000226498 2.41163e-05 0.000221153 4.73127e-05 0.000213482 6.80016e-05 0.000203568 8.78793e-05 0.000191489 0.000107431 0.000177603 0.0001232 0.000161967 0.000138415 0.000145134 0.00014938 0.000127144 0.000159785 0.000108213 0.00016825 8.8872e-05 0.000172005 6.91439e-05 0.000175534 0.000176215 -0.000156715 3.647e-05 -0.000159643 2.94792e-05 -0.000161956 2.32489e-05 -0.000163665 1.71453e-05 -0.000164743 1.10093e-05 -0.000165239 4.96141e-06 -0.000165081 -1.63859e-06 -0.000164294 -8.03777e-06 -0.000162957 -1.37093e-05 -0.000160865 -2.11845e-05 -0.000158128 -2.7974e-05 -0.000154702 -3.44654e-05 -0.000150437 -4.30235e-05 -0.000145405 -5.05791e-05 -0.000139515 -5.91926e-05 -0.000132805 -6.74274e-05 -0.000125349 -7.48777e-05 -0.000116893 -8.47109e-05 -0.000107479 -9.42018e-05 -9.72553e-05 -0.000102643 -8.59432e-05 -0.000113715 -7.36157e-05 -0.000124201 -6.02116e-05 -0.00013288 -4.58083e-05 -0.00014339 -3.05488e-05 -0.00015192 -1.43401e-05 -0.00016115 2.72227e-06 -0.00016945 2.0318e-05 -0.000174586 3.85912e-05 -0.000180975 5.73709e-05 -0.000185486 7.62408e-05 -0.000186174 9.51472e-05 -0.000186375 0.000113791 -0.000183813 0.000131995 -0.000179335 0.000149496 -0.00017232 0.000165898 -0.000161441 0.000181053 -0.000149009 0.000194715 -0.000134281 0.000206608 -0.000116808 0.000216613 -9.81764e-05 0.000224478 -7.7241e-05 0.000230098 -5.52088e-05 0.000233377 -3.21122e-05 0.000234202 -7.99664e-06 0.000232626 1.56884e-05 0.00022866 3.85528e-05 0.000222264 6.21481e-05 0.000213786 8.31189e-05 0.000203371 0.00010213 0.000191111 0.00012062 0.000177293 0.000136052 0.000162194 0.000149045 0.000145909 0.000159797 0.000128786 0.000168123 0.000111016 0.000174522 9.28941e-05 0.000178512 7.46834e-05 0.000180238 5.65297e-05 0.000179792 3.8653e-05 0.00017732 2.12228e-05 0.000173426 4.35338e-06 0.000167867 -1.20961e-05 0.000162182 -2.76816e-05 0.00015468 -4.24242e-05 0.000146774 -5.63393e-05 0.000138439 -6.92867e-05 0.000129317 -8.13e-05 0.000119985 -9.24103e-05 0.000111047 -0.000102521 0.00010136 -0.000111748 9.29834e-05 -0.000120218 8.39076e-05 -0.00012771 7.54354e-05 -0.000134465 6.79295e-05 -0.000140424 5.99384e-05 -0.000145572 5.19035e-05 -0.00015007 4.53087e-05 -0.000153777 3.73315e-05 -0.000156868 3.10494e-05 -0.000159302 2.4406e-05 -0.000161005 1.70897e-05 -0.000162056 1.05872e-05 -0.000162503 4.01626e-06 -0.000162217 -3.35642e-06 -0.0001613 -1.0248e-05 -0.000159531 -1.71661e-05 -0.000157161 -2.48568e-05 -0.000153964 -3.21193e-05 -0.000150005 -4.02735e-05 -0.000145229 -4.80844e-05 -0.000139652 -5.64108e-05 -0.000133238 -6.46422e-05 -0.000125991 -7.30115e-05 -0.000117956 -8.11565e-05 -0.000109128 -8.89768e-05 -9.96112e-05 -9.61642e-05 -8.93717e-05 -0.000103302 -7.84665e-05 -0.000110053 -6.69233e-05 -0.000116771 -5.46542e-05 -0.000123534 -4.17153e-05 -0.000130257 -2.80744e-05 -0.00013687 -1.3733e-05 -0.000143219 1.22702e-06 -0.000149421 1.68056e-05 -0.000155063 3.28912e-05 -0.000159928 4.93934e-05 -0.000163826 6.61796e-05 -0.000166367 8.30833e-05 -0.000167465 9.99727e-05 -0.000166961 0.000116646 -0.000164627 0.000132904 -0.000160394 0.000148567 -0.000154256 0.000163397 -0.000146079 0.000177224 -0.000135905 0.000189832 -0.000123851 0.000201027 -0.00010976 0.000210616 -9.38888e-05 0.000218413 -7.61481e-05 0.000224262 -5.70319e-05 0.000228009 -3.64153e-05 0.000229593 -1.49921e-05 0.000228871 7.32106e-06 0.000225906 2.96508e-05 0.000220609 5.20247e-05 0.000213148 7.34062e-05 0.000203569 9.39295e-05 0.000192122 0.000112737 0.000178892 0.000129784 0.00016413 0.000144649 0.000148106 0.000157237 0.000131064 0.000167424 0.000113248 0.000175143 9.49052e-05 0.00018051 7.62772e-05 0.00018356 5.75706e-05 0.000184264 3.90568e-05 0.000182859 2.08869e-05 0.000179709 3.18621e-06 0.000174763 -1.37777e-05 0.000168327 -3.00065e-05 0.000160698 -4.53384e-05 0.000152127 -5.96899e-05 0.000142546 -7.29248e-05 0.000132488 -8.52601e-05 0.000122173 -9.64268e-05 0.000111409 -0.000106453 0.000100958 -0.000115518 9.05295e-05 -0.000123523 8.02901e-05 -0.00013055 7.06812e-05 -0.000136618 6.12437e-05 -0.000141787 5.25446e-05 -0.000146228 4.4429e-05 -0.000149847 3.66219e-05 -0.00015275 2.96636e-05 -0.000155026 2.30003e-05 -0.000156668 1.67491e-05 -0.000157724 1.10844e-05 -0.000158186 5.41916e-06 -0.000158232 2.86215e-07 -0.000157757 -4.65286e-06 -0.000156793 -9.63702e-06 -0.000155349 -1.46248e-05 -0.000153419 -1.95478e-05 -0.000150952 -2.48988e-05 -0.000147973 -3.01225e-05 -0.000144363 -3.62201e-05 -0.000140112 -4.20306e-05 -0.000135389 -4.82547e-05 -0.000129939 -5.48684e-05 -0.000123797 -6.15722e-05 -0.000116978 -6.85088e-05 -0.000109418 -7.59456e-05 -0.000101073 -8.33986e-05 -9.19153e-05 -9.13233e-05 -8.20293e-05 -9.9402e-05 -7.12959e-05 -0.000107571 -5.9663e-05 -0.000116181 -4.71707e-05 -0.000124499 -3.38394e-05 -0.000132746 -1.96954e-05 -0.000140759 -4.74327e-06 -0.00014853 1.09329e-05 -0.000155406 2.72317e-05 -0.00016159 4.40778e-05 -0.000166406 6.12523e-05 -0.000169829 7.86638e-05 -0.000171637 9.60822e-05 -0.000171416 0.000113282 -0.000169188 0.000130035 -0.000164291 0.000146015 -0.000156804 0.000161009 -0.000146673 0.000174733 -0.000133879 0.000186863 -0.000118582 0.000197217 -0.000100641 0.000205506 -8.02836e-05 0.000211447 -5.78593e-05 0.000214934 -3.36425e-05 0.000215797 -8.46514e-06 0.000214038 1.71349e-05 0.000209667 4.24571e-05 0.000202796 6.69248e-05 0.000193655 8.99006e-05 0.000182234 0.000111299 0.000168932 0.00013034 0.000153875 0.000147261 0.000137468 0.000161131 0.000119795 0.000172475 0.000101379 0.000180489 8.25508e-05 0.000185407 6.34226e-05 0.000187737 4.45012e-05 0.000186939 2.58249e-05 0.000184089 7.69081e-06 0.000179229 -9.76999e-06 0.000173046 -2.64594e-05 0.000165817 -4.22976e-05 0.000157731 -5.7309e-05 0.000149311 -7.14121e-05 0.000140029 -8.44016e-05 0.000130091 -9.63975e-05 0.000119799 -0.00010741 0.000109269 -0.000117301 9.89361e-05 -0.000126117 8.86933e-05 -0.000133979 7.92891e-05 -0.000140872 7.01944e-05 -0.000147052 6.19918e-05 -0.000152407 5.41226e-05 -0.000157068 4.69431e-05 -0.000161071 4.01983e-05 -0.000164399 3.3639e-05 -0.000167108 2.7138e-05 -0.000169149 2.06442e-05 -0.000170615 1.47608e-05 -0.000171442 8.39274e-06 -0.000171575 2.46112e-06 -0.000171292 -3.09289e-06 -0.000170406 -8.54677e-06 -0.000169056 -1.30595e-05 -0.000167319 -1.7513e-05 -0.000165118 -2.23294e-05 -0.00016244 -2.75008e-05 -0.000159157 -3.36671e-05 -0.00015512 -4.06623e-05 -0.000150261 -4.85208e-05 -0.000144696 -5.68825e-05 -0.000138103 -6.58581e-05 -0.000130621 -7.48841e-05 -0.000122191 -8.3964e-05 -0.000112863 -9.28491e-05 -0.000102674 -0.000101349 -9.16498e-05 -0.000109627 -7.97937e-05 -0.000117751 -6.71138e-05 -0.00012581 -5.36227e-05 -0.000133543 -3.93633e-05 -0.000140898 -2.44405e-05 -0.000147426 -8.92535e-06 -0.000153235 7.06384e-06 -0.000157734 2.3443e-05 -0.000161636 4.01209e-05 -0.00016408 5.695e-05 -0.000165457 7.38012e-05 -0.000165233 9.05058e-05 -0.000162926 0.000106703 -0.000158413 0.00012218 -0.000150465 0.000136549 -0.000139637 0.000149495 -0.000125806 0.000160679 -0.000108874 0.000169998 -8.98256e-05 0.000176896 -6.8669e-05 0.000181488 -4.59397e-05 0.000183767 -2.27365e-05 0.000183755 -3.10258e-08 0.000181622 2.22928e-05 0.000176982 4.41317e-05 0.000170332 6.38332e-05 0.000161828 8.20171e-05 0.000151862 9.85917e-05 0.000140182 0.000112582 0.0001276 0.000122991 0.000114162 0.000132702 0.000100096 0.000139668 8.54659e-05 0.00014757 6.99306e-05 0.000153842 5.3882e-05 0.000160317 3.71277e-05 0.000165125 2.02169e-05 0.000167068 3.28912e-06 0.000166883 -1.33581e-05 0.000164938 -2.94582e-05 0.000159763 -4.494e-05 0.000153912 -5.95819e-05 0.000145809 -7.33405e-05 0.000137224 -8.62211e-05 0.000128643 -9.81383e-05 0.000119126 -0.000109113 0.000109771 -0.000119181 0.000100714 -0.000128294 9.12015e-05 -0.000136475 8.19755e-05 -0.000143768 7.30454e-05 -0.000150156 6.39772e-05 -0.000155692 5.54563e-05 -0.00016035 4.66635e-05 -0.00016415 3.80332e-05 -0.000167134 2.96711e-05 -0.000169262 2.09958e-05 -0.000170533 1.22514e-05 -0.00017093 3.58265e-06 -0.000170569 -3.82948e-06 -0.000169437 -1.12699e-05 -0.000167535 -1.9243e-05 -0.000164802 -2.81152e-05 -0.000161163 -3.67851e-05 -0.000156632 -4.55993e-05 -0.000151064 -5.57597e-05 -0.000144557 -6.5206e-05 -0.000136926 -7.63866e-05 -0.000128264 -8.66791e-05 -0.000118665 -9.61059e-05 -0.000107852 -0.000107969 -9.5953e-05 -0.000118604 -8.32144e-05 -0.000128458 -6.90656e-05 -0.000140301 -5.40378e-05 -0.000149512 -3.78505e-05 -0.000160684 -2.08567e-05 -0.000170203 -3.03132e-06 -0.000176108 1.54193e-05 -0.000182982 3.45082e-05 -0.000188918 5.38158e-05 -0.000190963 7.34052e-05 -0.000193373 9.3031e-05 -0.00019334 0.000112199 -0.000188621 0.000130827 -0.000183232 0.000148581 -0.000174465 0.000165256 -0.000163695 0.00018061 -0.000150434 0.000194231 -0.000133491 0.00020596 -0.000115104 0.000215586 -9.46452e-05 0.000222918 -7.18956e-05 0.000227862 -4.83771e-05 0.000230354 -2.41077e-05 0.000230154 1.57342e-06 0.000227353 2.69169e-05 0.000221985 5.26803e-05 0.000214268 7.57194e-05 0.000204292 9.7855e-05 0.000192154 0.000119568 0.000178167 0.000137187 0.000162443 0.00015414 0.000145515 0.000166307 0.000127433 0.000177867 0.000108405 0.000187278 8.89739e-05 0.000191436 6.91555e-05 0.000195352 0.000196085 -0.000156972 4.00775e-05 -0.00015989 3.23974e-05 -0.000162197 2.55563e-05 -0.000163889 1.88367e-05 -0.000164978 1.20985e-05 -0.000165477 5.45987e-06 -0.000165326 -1.78936e-06 -0.000164546 -8.8175e-06 -0.00016322 -1.50355e-05 -0.000161137 -2.32671e-05 -0.00015839 -3.07214e-05 -0.000155011 -3.78442e-05 -0.000150757 -4.72778e-05 -0.00014574 -5.55957e-05 -0.000139858 -6.50749e-05 -0.000133154 -7.41314e-05 -0.000125707 -8.23245e-05 -0.000117261 -9.31572e-05 -0.000107859 -0.000103604 -9.76427e-05 -0.00011286 -8.63095e-05 -0.000125049 -7.40116e-05 -0.000136499 -6.06509e-05 -0.000146241 -4.6181e-05 -0.00015786 -3.08962e-05 -0.000167205 -1.466e-05 -0.000177386 2.44749e-06 -0.000186558 2.01111e-05 -0.000192249 3.84329e-05 -0.000199296 5.7276e-05 -0.000204329 7.62431e-05 -0.000205142 9.52404e-05 -0.000205372 0.000114013 -0.000202586 0.000132299 -0.000197621 0.000149893 -0.000189915 0.000166389 -0.000177937 0.000181635 -0.000164256 0.000195383 -0.000148028 0.000207352 -0.000128777 0.000217421 -0.000108246 0.000225336 -8.51556e-05 0.00023099 -6.08634e-05 0.000234291 -3.54131e-05 0.00023513 -8.83535e-06 0.000233527 1.72912e-05 0.000229508 4.25711e-05 0.000223085 6.85712e-05 0.000214552 9.16518e-05 0.000204066 0.000112616 0.000191735 0.000132952 0.00017786 0.000149927 0.000162614 0.00016429 0.000146239 0.000176172 0.000129029 0.000185334 0.000111132 0.000192419 9.29554e-05 0.000196689 7.46736e-05 0.00019852 5.64586e-05 0.000198007 3.85438e-05 0.000195235 2.11054e-05 0.000190865 4.11097e-06 0.000184862 -1.23847e-05 0.000178677 -2.8012e-05 0.000170307 -4.27701e-05 0.000161532 -5.67208e-05 0.00015239 -6.96672e-05 0.000142264 -8.16811e-05 0.000131999 -9.27872e-05 0.000122154 -0.000102888 0.000111461 -0.000112103 0.000102199 -0.000120585 9.23895e-05 -0.000128052 8.29022e-05 -0.000134798 7.46754e-05 -0.000140742 6.58825e-05 -0.000145877 5.70384e-05 -0.00015036 4.97914e-05 -0.000154044 4.1016e-05 -0.000157113 3.41185e-05 -0.00015952 2.68132e-05 -0.000161274 1.88433e-05 -0.000162378 1.16912e-05 -0.000162834 4.47281e-06 -0.000162642 -3.54897e-06 -0.00016168 -1.12099e-05 -0.000159929 -1.89167e-05 -0.00015752 -2.72663e-05 -0.00015437 -3.5269e-05 -0.000150417 -4.4227e-05 -0.000145668 -5.28333e-05 -0.000140112 -6.19663e-05 -0.000133723 -7.10315e-05 -0.000126504 -8.02302e-05 -0.000118493 -8.91676e-05 -0.00010972 -9.77498e-05 -0.000100228 -0.000105656 -9.0053e-05 -0.000113477 -7.9169e-05 -0.000120937 -6.76003e-05 -0.00012834 -5.53465e-05 -0.000135788 -4.24582e-05 -0.000143146 -2.88254e-05 -0.000150503 -1.45071e-05 -0.000157538 4.87462e-07 -0.000164416 1.6075e-05 -0.000170651 3.22049e-05 -0.000176058 4.87462e-05 -0.000180367 6.55865e-05 -0.000183208 8.25953e-05 -0.000184474 9.95241e-05 -0.00018389 0.00011627 -0.000181373 0.000132611 -0.000176735 0.000148341 -0.000169986 0.000163245 -0.000160983 0.000177158 -0.000149818 0.000189859 -0.000136552 0.000201146 -0.000121047 0.000210807 -0.00010355 0.00021868 -8.40203e-05 0.000224588 -6.29402e-05 0.000228386 -4.02138e-05 0.000229963 -1.65691e-05 0.00022927 8.01424e-06 0.000226252 3.26684e-05 0.000220986 5.72904e-05 0.000213428 8.09643e-05 0.000203823 0.000103535 0.000192236 0.000124324 0.000178909 0.000143112 0.000164072 0.000159486 0.000147974 0.000173335 0.000130832 0.000184566 0.000112899 0.000193076 9.44525e-05 0.000198957 7.57325e-05 0.00020228 5.69717e-05 0.000203025 3.836e-05 0.00020147 2.0069e-05 0.000197999 2.33188e-06 0.0001925 -1.47187e-05 0.000185377 -3.09502e-05 0.000176929 -4.6337e-05 0.000167514 -6.07324e-05 0.000156941 -7.40609e-05 0.000145816 -8.63415e-05 0.000134454 -9.74913e-05 0.000122558 -0.000107581 0.000111048 -0.000116617 9.95651e-05 -0.000124602 8.82747e-05 -0.000131604 7.7683e-05 -0.000137664 6.73045e-05 -0.000142853 5.77329e-05 -0.000147236 4.88125e-05 -0.000150826 4.02118e-05 -0.000153725 3.25628e-05 -0.000155973 2.52481e-05 -0.000157584 1.83596e-05 -0.00015862 1.21211e-05 -0.000159161 5.95941e-06 -0.000159168 2.93881e-07 -0.000158689 -5.13253e-06 -0.00015774 -1.05853e-05 -0.000156252 -1.61126e-05 -0.00015432 -2.14807e-05 -0.000151859 -2.73597e-05 -0.000148877 -3.31037e-05 -0.000145313 -3.97841e-05 -0.000141151 -4.61931e-05 -0.000136368 -5.30374e-05 -0.000130926 -6.03109e-05 -0.000124788 -6.77101e-05 -0.000117966 -7.53309e-05 -0.000110346 -8.35652e-05 -0.000102093 -9.1652e-05 -9.30143e-05 -0.000100402 -8.30808e-05 -0.000109336 -7.23305e-05 -0.000118321 -6.06933e-05 -0.000127819 -4.815e-05 -0.000137042 -3.48244e-05 -0.000146072 -2.06745e-05 -0.000154909 -5.6938e-06 -0.000163511 1.00634e-05 -0.000171163 2.64039e-05 -0.000177931 4.32977e-05 -0.0001833 6.05905e-05 -0.000187122 7.80461e-05 -0.000189093 9.55692e-05 -0.00018894 0.00011287 -0.000186488 0.000129755 -0.000181177 0.000145833 -0.000172882 0.000160937 -0.000161777 0.000174737 -0.000147678 0.00018699 -0.000130835 0.000197443 -0.000111094 0.000205794 -8.86354e-05 0.000211824 -6.38889e-05 0.000215345 -3.71634e-05 0.000216256 -9.37673e-06 0.000214462 1.89289e-05 0.000210051 4.68683e-05 0.000203165 7.38105e-05 0.000193888 9.91776e-05 0.000182406 0.000122781 0.000169017 0.000143729 0.000153823 0.000162454 0.000137231 0.000177723 0.000119528 0.000190178 0.000100975 0.000199042 8.20159e-05 0.000204366 6.27547e-05 0.000206998 4.36499e-05 0.000206044 2.49702e-05 0.000202768 6.77407e-06 0.000197425 -1.07141e-05 0.000190534 -2.73739e-05 0.000182477 -4.33419e-05 0.000173699 -5.83368e-05 0.000164306 -7.24814e-05 0.000154174 -8.5563e-05 0.000143172 -9.7577e-05 0.000131813 -0.000108532 0.000120224 -0.000118415 0.000108819 -0.0001272 9.74782e-05 -0.000135001 8.70901e-05 -0.000141983 7.71758e-05 -0.000148091 6.81e-05 -0.000153444 5.94764e-05 -0.000158074 5.15723e-05 -0.00016205 4.41742e-05 -0.000165369 3.69583e-05 -0.000168076 2.98448e-05 -0.000170103 2.2672e-05 -0.000171536 1.61934e-05 -0.000172378 9.23435e-06 -0.000172591 2.6746e-06 -0.000172226 -3.45807e-06 -0.000171311 -9.46194e-06 -0.000169951 -1.44198e-05 -0.000168208 -1.9256e-05 -0.000166015 -2.45216e-05 -0.000163294 -3.02224e-05 -0.000160038 -3.69229e-05 -0.000156129 -4.45716e-05 -0.000151356 -5.32933e-05 -0.000145704 -6.25349e-05 -0.000139122 -7.24401e-05 -0.000131623 -8.23836e-05 -0.000123178 -9.24082e-05 -0.000113825 -0.000102203 -0.000103601 -0.000111573 -9.2543e-05 -0.000120686 -8.06584e-05 -0.000129636 -6.79454e-05 -0.000138523 -5.44229e-05 -0.000147065 -4.01104e-05 -0.000155211 -2.51253e-05 -0.000162411 -9.53382e-06 -0.000168826 6.53441e-06 -0.000173802 2.29862e-05 -0.000178088 3.97356e-05 -0.000180829 5.6661e-05 -0.000182382 7.36314e-05 -0.000182203 9.0436e-05 -0.00017973 0.000106797 -0.000174775 0.000122418 -0.000166086 0.000136935 -0.000154154 0.000150002 -0.000138873 0.000161295 -0.000120166 0.000170692 -9.92229e-05 0.000177593 -7.55705e-05 0.000182248 -5.05949e-05 0.000184533 -2.50212e-05 0.000184492 9.80937e-09 0.000182365 2.44195e-05 0.000177792 4.87052e-05 0.000170958 7.06669e-05 0.000162332 9.06433e-05 0.000152159 0.000108764 0.000140531 0.00012421 0.000127766 0.000135756 0.000114301 0.000146167 0.000100274 0.000153695 8.55983e-05 0.000162245 7.00463e-05 0.000169394 5.39575e-05 0.000176406 3.71303e-05 0.000181952 2.01422e-05 0.000184056 3.12302e-06 0.000183902 -1.35714e-05 0.000181632 -2.97155e-05 0.000175907 -4.52289e-05 0.000169426 -5.98917e-05 0.000160472 -7.36626e-05 0.000150995 -8.65483e-05 0.000141529 -9.84656e-05 0.000131044 -0.00010944 0.000120745 -0.000119508 0.000110782 -0.000128623 0.000100317 -0.000136798 9.01505e-05 -0.000144091 8.03375e-05 -0.000150476 7.03628e-05 -0.000156013 6.09928e-05 -0.000160673 5.13236e-05 -0.000164476 4.18369e-05 -0.000167463 3.26579e-05 -0.000169598 2.31305e-05 -0.000170875 1.3528e-05 -0.000171279 3.98694e-06 -0.000170923 -4.18519e-06 -0.000169784 -1.24094e-05 -0.00016789 -2.11364e-05 -0.000165183 -3.0822e-05 -0.000161556 -4.04122e-05 -0.000157047 -5.01084e-05 -0.000151474 -6.13326e-05 -0.000144986 -7.16941e-05 -0.000137332 -8.40409e-05 -0.000128687 -9.53239e-05 -0.000119092 -0.000105701 -0.000108278 -0.000118783 -9.63714e-05 -0.000130512 -8.36387e-05 -0.000141191 -6.94812e-05 -0.000154458 -5.44204e-05 -0.000164573 -3.8195e-05 -0.00017691 -2.11833e-05 -0.000187215 -3.33042e-06 -0.000193961 1.5213e-05 -0.000201526 3.43647e-05 -0.00020807 5.37458e-05 -0.000210345 7.34191e-05 -0.000213047 9.31366e-05 -0.000213058 0.000112404 -0.000207889 0.000131153 -0.000201981 0.000149013 -0.000192325 0.000165792 -0.000180474 0.000181248 -0.00016589 0.00019496 -0.000147203 0.000206807 -0.000126951 0.000216488 -0.000104327 0.000223861 -7.92691e-05 0.000228836 -5.33522e-05 0.000231337 -2.66081e-05 0.000231144 1.76568e-06 0.000228314 2.97473e-05 0.000222918 5.80764e-05 0.000215148 8.34886e-05 0.000205103 0.0001079 0.000192908 0.000131763 0.000178797 0.000151298 0.000162971 0.000169966 0.000145939 0.000183339 0.000127757 0.000196049 0.000108618 0.000206417 8.90866e-05 0.000210967 6.91676e-05 0.000215271 0.000216047 -0.000157253 4.36714e-05 -0.000160162 3.53063e-05 -0.000162466 2.7861e-05 -0.000164145 2.05152e-05 -0.000165241 1.3194e-05 -0.000165742 5.96088e-06 -0.0001656 -1.93092e-06 -0.00016483 -9.58702e-06 -0.00016351 -1.63562e-05 -0.000161437 -2.53403e-05 -0.000158712 -3.34462e-05 -0.000155344 -4.12122e-05 -0.00015111 -5.15118e-05 -0.000146128 -6.05772e-05 -0.000140256 -7.09475e-05 -0.000133542 -8.08449e-05 -0.000126104 -8.97627e-05 -0.000117673 -0.000101589 -0.000108281 -0.000112996 -9.80717e-05 -0.000123068 -8.67324e-05 -0.000136388 -7.43689e-05 -0.000148863 -6.11264e-05 -0.000159483 -4.66193e-05 -0.000172367 -3.12828e-05 -0.000182541 -1.50132e-05 -0.000193656 2.14294e-06 -0.000203714 1.98704e-05 -0.000209977 3.82587e-05 -0.000217685 5.71769e-05 -0.000223248 7.62456e-05 -0.00022421 9.53406e-05 -0.000224467 0.000114218 -0.000221463 0.000132656 -0.000216059 0.000150342 -0.000207601 0.000166938 -0.000194533 0.000182284 -0.000179601 0.000196125 -0.000161869 0.000208179 -0.00014083 0.000218318 -0.000118385 0.000226288 -9.31257e-05 0.00023198 -6.65561e-05 0.000235306 -3.87387e-05 0.00023618 -9.70983e-06 0.000234524 1.89474e-05 0.000230444 4.66511e-05 0.000223998 7.50172e-05 0.000215404 0.000100246 0.000204838 0.000123181 0.000192433 0.000145357 0.000178476 0.000163883 0.00016308 0.000179687 0.000146604 0.000192649 0.000129253 0.000202684 0.000111281 0.000210391 9.30284e-05 0.000214941 7.46693e-05 0.000216879 5.63969e-05 0.00021628 3.84799e-05 0.000213152 2.08715e-05 0.000208473 3.85178e-06 0.000201881 -1.27106e-05 0.00019524 -2.83936e-05 0.00018599 -4.31533e-05 0.000176292 -5.71489e-05 0.000166385 -7.01057e-05 0.000155221 -8.21012e-05 0.000143994 -9.31847e-05 0.000133237 -0.000103291 0.000121568 -0.000112508 0.000111415 -0.000120973 0.000100855 -0.000128432 9.03613e-05 -0.000135166 8.14088e-05 -0.00014109 7.18069e-05 -0.000146204 6.2152e-05 -0.000150652 5.42394e-05 -0.000154286 4.46498e-05 -0.000157382 3.72144e-05 -0.000159853 2.92844e-05 -0.000161616 2.06063e-05 -0.000162729 1.28047e-05 -0.000163273 5.0163e-06 -0.000163058 -3.76342e-06 -0.000162078 -1.21901e-05 -0.000160402 -2.05928e-05 -0.000157862 -2.98061e-05 -0.000154821 -3.83105e-05 -0.000150886 -4.81618e-05 -0.000146166 -5.75527e-05 -0.000140613 -6.75199e-05 -0.00013426 -7.73849e-05 -0.000127071 -8.74186e-05 -0.000119107 -9.71318e-05 -0.000110376 -0.000106481 -0.000100934 -0.000115099 -9.08079e-05 -0.000123603 -7.99817e-05 -0.000131763 -6.84976e-05 -0.000139824 -5.62809e-05 -0.000148005 -4.33843e-05 -0.000156042 -2.97393e-05 -0.000164148 -1.53965e-05 -0.000171881 -4.0578e-07 -0.000179407 1.52439e-05 -0.0001863 3.14011e-05 -0.000192215 4.80197e-05 -0.000196986 6.49376e-05 -0.000200126 8.19846e-05 -0.000201521 9.90365e-05 -0.000200942 0.000115857 -0.000198194 0.000132276 -0.000193154 0.000148107 -0.000185817 0.000163149 -0.000176025 0.000177137 -0.000163806 0.000189911 -0.000149326 0.000201268 -0.000132405 0.000211005 -0.000113287 0.000218935 -9.19504e-05 0.000224902 -6.89076e-05 0.000228724 -4.4036e-05 0.000230351 -1.81958e-05 0.000229666 8.69905e-06 0.000226671 3.56629e-05 0.000221324 6.26382e-05 0.000213761 8.85269e-05 0.000204066 0.000113229 0.0001924 0.000135989 0.000179022 0.00015649 0.000164039 0.000174468 0.000147799 0.000189575 0.00013057 0.000201794 0.000112528 0.000211118 9.39846e-05 0.000217501 7.51352e-05 0.00022113 5.62355e-05 0.000221925 3.75285e-05 0.000220177 1.91685e-05 0.000216359 1.44456e-06 0.000210224 -1.574e-05 0.000202562 -3.20244e-05 0.000193214 -4.74595e-05 0.000182949 -6.18172e-05 0.000171299 -7.52169e-05 0.000159216 -8.75229e-05 0.00014676 -9.86901e-05 0.000133726 -0.000108809 0.000121167 -0.000117835 0.000108591 -0.000125768 9.62073e-05 -0.000132767 8.46817e-05 -0.000138826 7.33642e-05 -0.000143981 6.28877e-05 -0.000148346 5.31775e-05 -0.000151926 4.37915e-05 -0.000154772 3.54091e-05 -0.000156977 2.74525e-05 -0.000158646 2.00293e-05 -0.000159681 1.31559e-05 -0.000160205 6.48368e-06 -0.0001602 2.87971e-07 -0.0001597 -5.63225e-06 -0.000158726 -1.15596e-05 -0.000157283 -1.75557e-05 -0.000155396 -2.3367e-05 -0.000152933 -2.98233e-05 -0.000149961 -3.60757e-05 -0.000146392 -4.33525e-05 -0.000142227 -5.03589e-05 -0.000137421 -5.78427e-05 -0.000131978 -6.57541e-05 -0.000125803 -7.38852e-05 -0.000119063 -8.20713e-05 -0.000111543 -9.10851e-05 -0.000103231 -9.9964e-05 -9.4144e-05 -0.000109489 -8.42059e-05 -0.000119274 -7.34631e-05 -0.000129064 -6.17927e-05 -0.000139489 -4.92804e-05 -0.000149555 -3.58944e-05 -0.000159458 -2.17153e-05 -0.000169088 -6.70458e-06 -0.000178522 9.09582e-06 -0.000186964 2.54964e-05 -0.000194331 4.24545e-05 -0.000200258 5.97853e-05 -0.000204453 7.73582e-05 -0.000206666 9.49952e-05 -0.000206577 0.000112441 -0.000203934 0.000129395 -0.000198131 0.0001456 -0.000189087 0.000160831 -0.000177009 0.000174754 -0.000161601 0.000187129 -0.00014321 0.00019768 -0.000121645 0.000206132 -9.70874e-05 0.000212263 -7.00202e-05 0.000215819 -4.07198e-05 0.000216734 -1.02918e-05 0.000214966 2.06969e-05 0.000210506 5.13281e-05 0.000203501 8.08159e-05 0.000194157 0.000108521 0.000182591 0.000134347 0.000169096 0.000157223 0.000153787 0.000177763 0.000137072 0.000194439 0.000119228 0.000208022 0.000100498 0.000217771 8.13523e-05 0.000223512 6.20364e-05 0.000226314 4.28152e-05 0.000225265 2.40154e-05 0.000221568 5.76433e-06 0.000215676 -1.177e-05 0.000208069 -2.85344e-05 0.000199242 -4.44743e-05 0.000189639 -5.95423e-05 0.000179374 -7.36464e-05 0.000168278 -8.67776e-05 0.000156303 -9.88231e-05 0.000143858 -0.00010977 0.00013117 -0.000119626 0.000118675 -0.000128407 0.000106259 -0.000136248 9.49309e-05 -0.000143154 8.40823e-05 -0.000149231 7.41768e-05 -0.000154552 6.47979e-05 -0.000159171 5.61905e-05 -0.000163153 4.81564e-05 -0.000166449 4.02543e-05 -0.000169066 3.24618e-05 -0.000171151 2.47569e-05 -0.000172648 1.76908e-05 -0.000173483 1.00691e-05 -0.000173642 2.83366e-06 -0.000173254 -3.84599e-06 -0.000172309 -1.0407e-05 -0.00017091 -1.58189e-05 -0.000169195 -2.09711e-05 -0.000167027 -2.66894e-05 -0.000164409 -3.28403e-05 -0.000161193 -4.01389e-05 -0.00015725 -4.85151e-05 -0.000152473 -5.80696e-05 -0.000146812 -6.81959e-05 -0.000140249 -7.90032e-05 -0.000132749 -8.98843e-05 -0.000124265 -0.000100892 -0.000114887 -0.000111581 -0.000104648 -0.000121813 -9.35564e-05 -0.000131777 -8.16391e-05 -0.000141553 -6.88664e-05 -0.000151296 -5.52888e-05 -0.000160643 -4.09236e-05 -0.000169576 -2.58725e-05 -0.000177463 -1.01988e-05 -0.0001845 5.99485e-06 -0.000189996 2.24955e-05 -0.000194589 3.9324e-05 -0.000197658 5.63509e-05 -0.000199409 7.34796e-05 -0.000199332 9.03857e-05 -0.000196637 0.000106918 -0.000191307 0.000122704 -0.000181872 0.000137367 -0.000168817 0.000150591 -0.000152097 0.000162005 -0.00013158 0.000171355 -0.000108574 0.000178387 -8.26019e-05 0.0001831 -5.53079e-05 0.000185394 -2.73153e-05 0.000185323 8.03109e-08 0.000183076 2.6667e-05 0.000178532 5.32483e-05 0.000171699 7.75004e-05 0.000162902 9.94397e-05 0.000152541 0.000119125 0.00014099 0.000135761 0.000127972 0.000148774 0.000114495 0.000159645 0.000100445 0.000167744 8.57347e-05 0.000176956 7.01723e-05 0.000184956 5.40378e-05 0.00019254 3.71348e-05 0.000198855 2.00603e-05 0.000201131 2.93497e-06 0.000201027 -1.38071e-05 0.000198374 -2.99999e-05 0.0001921 -4.5548e-05 0.000184974 -6.02339e-05 0.000175158 -7.40187e-05 0.00016478 -8.69112e-05 0.000154421 -9.88305e-05 0.000142963 -0.000109803 0.000131718 -0.000119866 0.000120845 -0.000128976 0.000109427 -0.000137156 9.83304e-05 -0.000144446 8.76275e-05 -0.000150828 7.67447e-05 -0.000156366 6.65306e-05 -0.000161027 5.59852e-05 -0.000164835 4.56445e-05 -0.000167821 3.56435e-05 -0.000169963 2.52732e-05 -0.000171249 1.48131e-05 -0.00017166 4.39872e-06 -0.000171313 -4.53251e-06 -0.000170167 -1.35551e-05 -0.000168298 -2.3006e-05 -0.000165599 -3.35205e-05 -0.000161987 -4.40249e-05 -0.000157492 -5.46034e-05 -0.000151924 -6.69004e-05 -0.000145446 -7.81718e-05 -0.000137804 -9.16833e-05 -0.000129155 -0.000103973 -0.000119564 -0.000115293 -0.00010875 -0.000129597 -9.68369e-05 -0.000142424 -8.40262e-05 -0.000154002 -6.99629e-05 -0.000168522 -5.48443e-05 -0.000179692 -3.858e-05 -0.000193174 -2.15495e-05 -0.000204245 -3.71489e-06 -0.000211795 1.49677e-05 -0.000220209 3.42083e-05 -0.00022731 5.36697e-05 -0.000229806 7.34362e-05 -0.000232813 9.32578e-05 -0.000232879 0.000112627 -0.000227259 0.000131498 -0.000220851 0.000149488 -0.000210315 0.000166382 -0.000197368 0.00018195 -0.000181459 0.00019576 -0.000161013 0.000207692 -0.000138883 0.00021751 -0.000114144 0.000224913 -8.66719e-05 0.00022992 -5.83596e-05 0.000232423 -2.91108e-05 0.000232203 1.98518e-06 0.000229378 3.25722e-05 0.000223951 6.35034e-05 0.000216128 9.13117e-05 0.000206002 0.000118026 0.000193716 0.000144048 0.00017949 0.000165524 0.000163553 0.000185902 0.000146405 0.000200487 0.000128119 0.000214335 0.000108851 0.000225685 8.921e-05 0.000230608 6.918e-05 0.000235301 0.000236112 -0.000157559 4.72504e-05 -0.000160458 3.82046e-05 -0.000162749 3.01525e-05 -0.00016443 2.21957e-05 -0.000165532 1.42961e-05 -0.000166038 6.46672e-06 -0.000165909 -2.05967e-06 -0.000165161 -1.03344e-05 -0.000163827 -1.76902e-05 -0.000161768 -2.74002e-05 -0.000159067 -3.61467e-05 -0.000155706 -4.45731e-05 -0.000151507 -5.57114e-05 -0.000146595 -6.54892e-05 -0.000140744 -7.67985e-05 -0.000133975 -8.76139e-05 -0.00012654 -9.71977e-05 -0.000118125 -0.000110003 -0.000108744 -0.000122377 -9.8539e-05 -0.000133273 -8.72007e-05 -0.000147726 -7.47997e-05 -0.000161264 -6.15593e-05 -0.000172724 -4.71663e-05 -0.00018676 -3.17154e-05 -0.000197992 -1.54028e-05 -0.000209968 1.80734e-06 -0.000220924 1.95936e-05 -0.000227763 3.8071e-05 -0.000236162 5.70689e-05 -0.000242246 7.62223e-05 -0.000243364 9.54477e-05 -0.000243693 0.000114441 -0.000240457 0.000133005 -0.000234623 0.000150862 -0.000225458 0.000167555 -0.000211226 0.000183004 -0.00019505 0.000196947 -0.000175812 0.000209092 -0.000152976 0.000219306 -0.000128599 0.000227337 -0.000101157 0.00023307 -7.22894e-05 0.00023642 -4.20883e-05 0.000237311 -1.06016e-05 0.000235618 2.06411e-05 0.000231488 5.0781e-05 0.000225003 8.15017e-05 0.000216346 0.000108903 0.00020569 0.000133837 0.000193232 0.000157815 0.000179096 0.00017802 0.00016359 0.000195193 0.000147004 0.000209234 0.000129488 0.0002202 0.000111455 0.000228424 9.31143e-05 0.000233282 7.46769e-05 0.000235316 5.63764e-05 0.00023458 3.83239e-05 0.000231205 2.06175e-05 0.000226179 3.41441e-06 0.000219084 -1.30726e-05 0.000211727 -2.87846e-05 0.000201702 -4.35728e-05 0.00019108 -5.75856e-05 0.000180398 -7.05239e-05 0.000168159 -8.25542e-05 0.000156025 -9.3642e-05 0.000144325 -0.000103709 0.000131635 -0.000113032 0.000120738 -0.000121399 0.000109222 -0.000128851 9.78132e-05 -0.000135562 8.812e-05 -0.000141454 7.76992e-05 -0.000146529 6.72269e-05 -0.000150926 5.86361e-05 -0.000154647 4.83706e-05 -0.000157747 4.03151e-05 -0.000160217 3.17541e-05 -0.000161985 2.23742e-05 -0.000163201 1.40205e-05 -0.000163727 5.54256e-06 -0.000163487 -4.00314e-06 -0.0001625 -1.31771e-05 -0.000160856 -2.22371e-05 -0.00015833 -3.23325e-05 -0.000155285 -4.13549e-05 -0.000151399 -5.2048e-05 -0.000146697 -6.22551e-05 -0.000141195 -7.30219e-05 -0.000134847 -8.37325e-05 -0.000127703 -9.45626e-05 -0.000119763 -0.000105072 -0.000111111 -0.000115133 -0.000101722 -0.000124488 -9.16508e-05 -0.000133673 -8.08792e-05 -0.000142535 -6.94332e-05 -0.00015127 -5.72589e-05 -0.000160179 -4.43749e-05 -0.000168926 -3.07425e-05 -0.000177781 -1.64001e-05 -0.000186223 -1.35969e-06 -0.000194447 1.43387e-05 -0.000201999 3.05465e-05 -0.000208423 4.72205e-05 -0.00021366 6.42048e-05 -0.00021711 8.13361e-05 -0.000218653 9.84785e-05 -0.000218084 0.000115381 -0.000215097 0.00013191 -0.000209683 0.000147845 -0.000201752 0.000162947 -0.000191127 0.000177058 -0.000177917 0.000189932 -0.0001622 0.000201386 -0.000143859 0.000211213 -0.000123114 0.000219222 -9.9959e-05 0.00022525 -7.49359e-05 0.00022916 -4.79463e-05 0.000230808 -1.98437e-05 0.000230132 9.37531e-06 0.000227095 3.86989e-05 0.000221725 6.80082e-05 0.000214117 9.61355e-05 0.000204324 0.000123022 0.000192576 0.000147737 0.000179044 0.000170022 0.000163992 0.00018952 0.00014764 0.000205928 0.000130274 0.00021916 0.000112107 0.000229285 9.34121e-05 0.000236196 7.44473e-05 0.000240094 5.54519e-05 0.00024092 3.66472e-05 0.000238982 1.82022e-05 0.000234804 3.22582e-07 0.000228104 -1.68587e-05 0.000219743 -3.32273e-05 0.000209582 -4.8651e-05 0.000198372 -6.31617e-05 0.000185809 -7.65442e-05 0.000172599 -8.87713e-05 0.000158987 -0.000100008 0.000144962 -0.000110106 0.000131265 -0.000119105 0.00011759 -0.000127064 0.000104167 -0.000134082 9.16992e-05 -0.000140109 7.93916e-05 -0.00014523 6.80086e-05 -0.000149535 5.74821e-05 -0.000153092 4.73493e-05 -0.000155969 3.8286e-05 -0.000158207 2.96904e-05 -0.00015981 2.16322e-05 -0.00016085 1.41954e-05 -0.000161341 6.97501e-06 -0.000161306 2.53175e-07 -0.000160798 -6.14024e-06 -0.000159867 -1.24903e-05 -0.000158427 -1.89962e-05 -0.000156546 -2.52482e-05 -0.000154096 -3.22732e-05 -0.000151119 -3.90522e-05 -0.000147554 -4.69175e-05 -0.000143385 -5.45282e-05 -0.000138579 -6.26489e-05 -0.000133185 -7.11485e-05 -0.000127091 -7.9979e-05 -0.000120301 -8.88614e-05 -0.000112755 -9.86311e-05 -0.000104472 -0.000108247 -9.53594e-05 -0.000118602 -8.54155e-05 -0.000129218 -7.45894e-05 -0.00013989 -6.29457e-05 -0.000151133 -5.044e-05 -0.000162061 -3.70715e-05 -0.000172827 -2.28352e-05 -0.000183325 -7.71739e-06 -0.00019364 8.03689e-06 -0.000202718 2.45091e-05 -0.000210804 4.15401e-05 -0.000217289 5.89492e-05 -0.000221862 7.66553e-05 -0.000224372 9.43672e-05 -0.000224289 0.00011191 -0.000221477 0.000129023 -0.000215244 0.000145364 -0.000205428 0.000160722 -0.000192367 0.000174771 -0.000175651 0.00018729 -0.00015573 0.000197975 -0.00013233 0.000206532 -0.000105645 0.000212751 -7.62387e-05 0.000216337 -4.43057e-05 0.000217263 -1.12182e-05 0.000215446 2.25135e-05 0.000210949 5.58253e-05 0.000203982 8.77829e-05 0.000194537 0.000117967 0.000182849 0.000146035 0.000169184 0.000170888 0.000153802 0.000193144 0.000136858 0.000211383 0.000118851 0.000226029 0.000100056 0.000236566 8.06736e-05 0.000242894 6.12294e-05 0.000245758 4.19431e-05 0.000244551 2.30054e-05 0.000240506 4.70258e-06 0.000233979 -1.29314e-05 0.000225702 -2.97527e-05 0.000216063 -4.56986e-05 0.000205585 -6.08223e-05 0.000194498 -7.4921e-05 0.000182376 -8.81023e-05 0.000169485 -0.000100188 0.000155943 -0.000111105 0.000142088 -0.000120992 0.000128561 -0.000129763 0.00011503 -0.000137545 0.000102713 -0.000144432 9.0969e-05 -0.000150475 8.02198e-05 -0.000155787 7.01098e-05 -0.000160306 6.07098e-05 -0.000164287 5.21369e-05 -0.000167625 4.35931e-05 -0.000170326 3.51627e-05 -0.000172367 2.67981e-05 -0.000173838 1.91613e-05 -0.000174659 1.08902e-05 -0.000174796 2.9709e-06 -0.000174396 -4.24674e-06 -0.000173389 -1.14142e-05 -0.000172024 -1.71839e-05 -0.000170283 -2.27112e-05 -0.000168146 -2.88268e-05 -0.000165567 -3.54197e-05 -0.00016237 -4.33353e-05 -0.000158453 -5.24328e-05 -0.000153693 -6.28293e-05 -0.000148008 -7.38811e-05 -0.000141394 -8.56173e-05 -0.000133903 -9.73752e-05 -0.000125427 -0.000109367 -0.000116032 -0.000120976 -0.000105749 -0.000132095 -9.4647e-05 -0.000142879 -8.26805e-05 -0.00015352 -6.98588e-05 -0.000164117 -5.62312e-05 -0.00017427 -4.18065e-05 -0.000184001 -2.66656e-05 -0.000192604 -1.09139e-05 -0.000200252 5.32886e-06 -0.000206239 2.199e-05 -0.00021125 3.88994e-05 -0.000214568 5.60132e-05 -0.000216523 7.32588e-05 -0.000216578 9.03361e-05 -0.000213714 0.000107048 -0.000208019 0.000123021 -0.000197845 0.000137901 -0.000183697 0.000151273 -0.00016547 0.000162835 -0.000143142 0.00017215 -0.000117889 0.000179281 -8.97331e-05 0.000184053 -6.00804e-05 0.000186355 -2.96175e-05 0.000186248 1.88013e-07 0.000183884 2.90309e-05 0.000179355 5.77771e-05 0.000172529 8.43261e-05 0.000163556 0.000108413 0.000153006 0.000129674 0.000141339 0.000147429 0.000128202 0.00016191 0.000114756 0.000173091 0.000100577 0.000181923 8.58741e-05 0.000191658 7.03077e-05 0.000200522 5.41219e-05 0.000208726 3.71422e-05 0.000215835 1.99707e-05 0.000218302 2.72253e-06 0.000218275 -1.40645e-05 0.000215161 -3.03117e-05 0.000208347 -4.58976e-05 0.00020056 -6.06083e-05 0.000189868 -7.44071e-05 0.000178578 -8.73055e-05 0.00016732 -9.92262e-05 0.000154884 -0.000110198 0.00014269 -0.000120261 0.000130907 -0.000129369 0.000118535 -0.000137544 0.000106505 -0.000144833 9.49169e-05 -0.000151212 8.3124e-05 -0.00015675 7.20687e-05 -0.000161415 6.06493e-05 -0.000165226 4.94557e-05 -0.000168213 3.86308e-05 -0.000170356 2.74163e-05 -0.000171653 1.61102e-05 -0.000172074 4.81939e-06 -0.00017174 -4.86695e-06 -0.000170643 -1.46521e-05 -0.000168737 -2.49117e-05 -0.000166044 -3.6213e-05 -0.000162454 -4.76156e-05 -0.000157971 -5.90861e-05 -0.000152412 -7.24591e-05 -0.000145944 -8.464e-05 -0.000138312 -9.93152e-05 -0.000129676 -0.000112609 -0.00012008 -0.000124888 -0.000109266 -0.000140411 -9.73497e-05 -0.000154341 -8.45115e-05 -0.00016684 -7.05249e-05 -0.000182508 -5.53112e-05 -0.000194905 -3.90024e-05 -0.000209483 -2.19452e-05 -0.000221303 -4.139e-06 -0.000229601 1.47029e-05 -0.000239051 3.40441e-05 -0.000246651 5.3588e-05 -0.00024935 7.34567e-05 -0.000252682 9.33935e-05 -0.000252816 0.00011288 -0.000246746 0.000131864 -0.000239835 0.00014999 -0.000228441 0.000167025 -0.000214403 0.000182717 -0.00019715 0.000196635 -0.000174931 0.000208662 -0.00015091 0.000218579 -0.000124061 0.00022609 -9.41829e-05 0.00023114 -6.34097e-05 0.000233616 -3.15873e-05 0.000233372 2.22939e-06 0.000230548 3.53961e-05 0.00022509 6.89616e-05 0.000217215 9.91865e-05 0.000206995 0.000128247 0.000194582 0.000156461 0.000180247 0.000179859 0.000164188 0.000201961 0.00014691 0.000217765 0.000128505 0.00023274 0.000109107 0.000245083 8.93438e-05 0.000250371 6.91924e-05 0.000255452 0.000256289 -0.00015789 5.08131e-05 -0.000160778 4.10924e-05 -0.000163055 3.24293e-05 -0.000164743 2.38836e-05 -0.000165855 1.54085e-05 -0.000166379 6.99051e-06 -0.000166273 -2.16533e-06 -0.000165564 -1.10444e-05 -0.000164172 -1.90819e-05 -0.000162125 -2.94468e-05 -0.000159454 -3.88181e-05 -0.000156101 -4.79263e-05 -0.000151901 -5.99107e-05 -0.000146985 -7.04059e-05 -0.000141188 -8.25956e-05 -0.000134486 -9.43156e-05 -0.00012702 -0.000104664 -0.000118619 -0.000118404 -0.00010925 -0.000131747 -9.90442e-05 -0.000143479 -8.77229e-05 -0.000159048 -7.52944e-05 -0.000173693 -6.19867e-05 -0.000186032 -4.76547e-05 -0.000201092 -3.22551e-05 -0.000213392 -1.58355e-05 -0.000226388 1.42451e-06 -0.000238184 1.9295e-05 -0.000245634 3.78831e-05 -0.00025475 5.69536e-05 -0.000261316 7.62032e-05 -0.000262614 9.55638e-05 -0.000263053 0.000114683 -0.000259575 0.000133374 -0.000253314 0.000151367 -0.000243451 0.000168235 -0.000228094 0.000183819 -0.000210634 0.000197863 -0.000189856 0.000210103 -0.000165216 0.000220395 -0.00013889 0.000228489 -0.000109251 0.000234264 -7.80644e-05 0.000237637 -4.54619e-05 0.000238509 -1.14736e-05 0.000236792 2.23585e-05 0.000232632 5.49406e-05 0.000226106 8.80277e-05 0.0002174 0.000117609 0.00020663 0.000144607 0.00019405 0.000170396 0.000179769 0.0001923 0.000164143 0.000210819 0.000147376 0.000226002 0.000129779 0.000237796 0.000111653 0.00024655 9.32175e-05 0.000251717 7.47173e-05 0.000253817 5.63233e-05 0.000252974 3.8117e-05 0.000249411 2.02939e-05 0.000244002 3.02342e-06 0.000236355 -1.34667e-05 0.000228217 -2.92124e-05 0.000217448 -4.40275e-05 0.000205895 -5.80294e-05 0.0001944 -7.10045e-05 0.000181134 -8.30459e-05 0.000168066 -9.41315e-05 0.00015541 -0.000104151 0.000141655 -0.000113521 0.000130107 -0.000121859 0.00011756 -0.000129302 0.000105256 -0.000135981 9.47994e-05 -0.000141811 8.35286e-05 -0.000146835 7.22506e-05 -0.000151319 6.31204e-05 -0.000155038 5.20897e-05 -0.000158138 4.34148e-05 -0.000160666 3.42826e-05 -0.000162509 2.42172e-05 -0.000163675 1.51859e-05 -0.000164169 6.03668e-06 -0.000163929 -4.24303e-06 -0.000162982 -1.41238e-05 -0.000161369 -2.38502e-05 -0.000158941 -3.47606e-05 -0.000155759 -4.45365e-05 -0.000151935 -5.58724e-05 -0.000147271 -6.69188e-05 -0.000141773 -7.85201e-05 -0.000135486 -9.00196e-05 -0.000128324 -0.000101724 -0.000120505 -0.000112891 -0.000111905 -0.000123733 -0.000102584 -0.00013381 -9.25911e-05 -0.000143667 -8.18645e-05 -0.000153261 -7.04664e-05 -0.000162668 -5.83205e-05 -0.000172325 -4.54545e-05 -0.000181793 -3.18332e-05 -0.000191402 -1.74624e-05 -0.000200594 -2.40665e-06 -0.000209503 1.33335e-05 -0.000217739 2.9638e-05 -0.000224728 4.63725e-05 -0.000230394 6.34282e-05 -0.000234166 8.06294e-05 -0.000235854 9.78566e-05 -0.000235312 0.00011487 -0.00023211 0.000131547 -0.000226361 0.000147545 -0.00021775 0.000162772 -0.000206354 0.000176985 -0.00019213 0.00018996 -0.000175175 0.000201514 -0.000155413 0.000211439 -0.000133039 0.000219536 -0.000108056 0.000225634 -8.10333e-05 0.000229577 -5.189e-05 0.000231292 -2.15588e-05 0.000230617 1.00502e-05 0.000227599 4.17175e-05 0.000222203 7.34037e-05 0.00021449 0.000103849 0.000204633 0.000132879 0.000192771 0.000159598 0.000179125 0.000183669 0.000163984 0.00020466 0.000147451 0.000222461 0.000129918 0.000236693 0.000111645 0.000247557 9.28182e-05 0.000255023 7.37066e-05 0.000259206 5.45964e-05 0.00026003 3.56778e-05 0.000257901 1.71677e-05 0.000253315 -8.26502e-07 0.000246098 -1.80056e-05 0.000236922 -3.45185e-05 0.000226095 -5.00328e-05 0.000213887 -6.45476e-05 0.000200324 -7.78907e-05 0.000185942 -9.02929e-05 0.000171389 -0.000101482 0.000156151 -0.00011153 0.000141314 -0.000120561 0.000126621 -0.000128502 0.000112108 -0.000135484 9.86812e-05 -0.000141466 8.53732e-05 -0.000146547 7.309e-05 -0.000150893 6.18274e-05 -0.000154454 5.0911e-05 -0.000157284 4.11161e-05 -0.000159493 3.1899e-05 -0.000161087 2.32264e-05 -0.000162089 1.51972e-05 -0.00016249 7.37622e-06 -0.000162542 3.0458e-07 -0.000162054 -6.62816e-06 -0.000161111 -1.3433e-05 -0.000159659 -2.04484e-05 -0.00015775 -2.71567e-05 -0.00015532 -3.47041e-05 -0.000152342 -4.20301e-05 -0.000148739 -5.05204e-05 -0.000144634 -5.8633e-05 -0.000139917 -6.73663e-05 -0.000134489 -7.65765e-05 -0.000128419 -8.60489e-05 -0.000121629 -9.56513e-05 -0.000114109 -0.000106151 -0.000105731 -0.000116625 -9.67139e-05 -0.000127619 -8.67882e-05 -0.000139143 -7.60453e-05 -0.000150633 -6.43772e-05 -0.000162801 -5.18357e-05 -0.000174602 -3.83962e-05 -0.000186266 -2.41613e-05 -0.00019756 -9.06794e-06 -0.000208733 6.83972e-06 -0.000218626 2.33736e-05 -0.000227338 4.04982e-05 -0.000234414 5.80155e-05 -0.000239379 7.58142e-05 -0.000242171 9.36856e-05 -0.00024216 0.000111364 -0.000239156 0.000128611 -0.00023249 0.000145128 -0.000221945 0.000160629 -0.000207869 0.00017482 -0.000189842 0.000187472 -0.000168381 0.000198273 -0.000143131 0.000206939 -0.000114311 0.000213242 -8.25421e-05 0.000216951 -4.80152e-05 0.000217836 -1.21029e-05 0.00021602 2.43298e-05 0.000211456 6.03888e-05 0.00020431 9.49292e-05 0.000194785 0.000127492 0.000182991 0.000157828 0.000169232 0.000184647 0.000153662 0.000208715 0.000136643 0.000228402 0.000118453 0.000244219 9.94183e-05 0.000255601 7.99597e-05 0.000262353 6.03633e-05 0.000265355 4.09688e-05 0.000263945 2.18634e-05 0.000259611 3.45073e-06 0.000252392 -1.42241e-05 0.000243377 -3.10727e-05 0.000232911 -4.70359e-05 0.000221548 -6.22064e-05 0.000209668 -7.63954e-05 0.000196565 -8.95742e-05 0.000182663 -0.000101642 0.000168011 -0.00011261 0.000153056 -0.000122504 0.000138456 -0.000131239 0.000123766 -0.000138993 0.000110467 -0.000145816 9.77913e-05 -0.000151792 8.61965e-05 -0.000157143 7.54602e-05 -0.000161701 6.52678e-05 -0.000165654 5.60898e-05 -0.000168941 4.68807e-05 -0.000171639 3.78603e-05 -0.000173665 2.88245e-05 -0.000175123 2.06186e-05 -0.00017594 1.17074e-05 -0.00017604 3.07114e-06 -0.000175573 -4.71387e-06 -0.000174621 -1.23657e-05 -0.000173219 -1.85867e-05 -0.00017145 -2.44794e-05 -0.000169342 -3.09352e-05 -0.000166797 -3.79647e-05 -0.000163645 -4.64879e-05 -0.000159738 -5.63397e-05 -0.000154959 -6.76079e-05 -0.000149379 -7.94611e-05 -0.00014282 -9.21761e-05 -0.000135281 -0.000104915 -0.000126767 -0.000117881 -0.000117348 -0.000130395 -0.000107017 -0.000142426 -9.5835e-05 -0.000154061 -8.38368e-05 -0.000165518 -7.09518e-05 -0.000177002 -5.72015e-05 -0.000188021 -4.26425e-05 -0.00019856 -2.74522e-05 -0.000207794 -1.16635e-05 -0.000216041 4.62864e-06 -0.000222531 2.13534e-05 -0.000227975 3.84103e-05 -0.000231625 5.5658e-05 -0.000233771 7.30421e-05 -0.000233962 9.0327e-05 -0.000230999 0.000107235 -0.000224927 0.000123373 -0.000213984 0.000138355 -0.000198679 0.00015187 -0.000178984 0.000163608 -0.00015488 0.000173049 -0.00012733 0.000180274 -9.69575e-05 0.000185116 -6.49225e-05 0.000187428 -3.19302e-05 0.000187269 3.4692e-07 0.000184814 3.14857e-05 0.000180177 6.24145e-05 0.000173328 9.11746e-05 0.000164393 0.000117348 0.000153533 0.000140534 0.00014159 0.000159373 0.000128469 0.000175031 0.000114785 0.000186775 0.000100693 0.000196015 8.60106e-05 0.000206341 7.0454e-05 0.000216079 5.42077e-05 0.000224973 3.71731e-05 0.000232869 1.98748e-05 0.000235601 2.48253e-06 0.000235668 -1.43435e-05 0.000231987 -3.06513e-05 0.000224655 -4.62785e-05 0.000216187 -6.10157e-05 0.000204605 -7.48298e-05 0.000192393 -8.77349e-05 0.000180225 -9.96573e-05 0.000166806 -0.000110628 0.00015366 -0.000120686 0.000140965 -0.000129789 0.000127638 -0.000137965 0.000114681 -0.000145251 0.000102203 -0.000151633 8.95061e-05 -0.000157167 7.76027e-05 -0.000161834 6.53161e-05 -0.000165649 5.32707e-05 -0.000168642 4.16241e-05 -0.000170787 2.95613e-05 -0.000172085 1.74081e-05 -0.000172517 5.25083e-06 -0.000172199 -5.18453e-06 -0.000171128 -1.57232e-05 -0.000169206 -2.68342e-05 -0.000166496 -3.89224e-05 -0.000162957 -5.11552e-05 -0.000158487 -6.35555e-05 -0.00015294 -7.80064e-05 -0.000146482 -9.10982e-05 -0.000138859 -0.000106938 -0.000130265 -0.000121203 -0.000120644 -0.000134509 -0.000109828 -0.000151227 -9.79074e-05 -0.000166261 -8.5056e-05 -0.000179691 -7.10599e-05 -0.000196505 -5.58265e-05 -0.000210139 -3.94614e-05 -0.000225848 -2.2241e-05 -0.000238523 -4.48281e-06 -0.00024736 1.44206e-05 -0.000257954 3.38625e-05 -0.000266093 5.35026e-05 -0.00026899 7.3481e-05 -0.00027266 9.35436e-05 -0.000272879 0.00011316 -0.000266362 0.000132274 -0.00025895 0.000150524 -0.000246691 0.000167703 -0.000231582 0.000183548 -0.000212995 0.000197584 -0.000188967 0.000209716 -0.000163042 0.000219728 -0.000134073 0.000227318 -0.000101773 0.000232407 -6.84989e-05 0.000234914 -3.40942e-05 0.000234656 2.487e-06 0.000231826 3.82264e-05 0.000226343 7.44446e-05 0.000218407 0.000107122 0.0002081 0.000138554 0.000195524 0.000169037 0.000181069 0.000194314 0.000164876 0.000218154 0.000147459 0.000235182 0.000128913 0.000251285 0.000109383 0.000264614 8.94876e-05 0.000270266 6.92046e-05 0.000275735 0.000276589 -0.000158247 5.43584e-05 -0.000161123 4.39692e-05 -0.000163392 3.46983e-05 -0.000165093 2.55841e-05 -0.000166224 1.65393e-05 -0.000166761 7.52768e-06 -0.000166642 -2.28395e-06 -0.000165916 -1.1771e-05 -0.000164548 -2.04496e-05 -0.000162509 -3.14861e-05 -0.000159869 -4.14575e-05 -0.000156522 -5.1274e-05 -0.000152343 -6.4089e-05 -0.000147369 -7.53798e-05 -0.00014157 -8.83956e-05 -0.000135023 -0.000100862 -0.000127578 -0.000112109 -0.000119163 -0.000126819 -0.000109804 -0.000141105 -9.96046e-05 -0.000153678 -8.82901e-05 -0.000170362 -7.58362e-05 -0.000186147 -6.25161e-05 -0.000199352 -4.80869e-05 -0.000215521 -3.27893e-05 -0.00022869 -1.6347e-05 -0.00024283 1.01236e-06 -0.000255544 1.89717e-05 -0.000263593 3.76621e-05 -0.000273441 5.6834e-05 -0.000280488 7.61903e-05 -0.00028197 9.56625e-05 -0.000282526 0.000114941 -0.000278854 0.000133772 -0.000272144 0.000151908 -0.000261588 0.000168915 -0.000245101 0.000184648 -0.000226367 0.000198851 -0.00020406 0.000211223 -0.000177588 0.000221619 -0.000149286 0.000229768 -0.0001174 0.000235578 -8.3874e-05 0.000238986 -4.88697e-05 0.000239809 -1.2297e-05 0.000238029 2.41384e-05 0.000233876 5.9094e-05 0.00022732 9.45836e-05 0.000218528 0.0001264 0.000207692 0.000155442 0.000194905 0.000183184 0.000180496 0.000206709 0.000164699 0.000226615 0.000147798 0.000242903 0.000130111 0.000255483 0.000111876 0.000264784 9.3354e-05 0.00027024 7.47953e-05 0.000272375 5.61896e-05 0.00027158 3.78966e-05 0.000267704 1.98852e-05 0.000262014 2.63793e-06 0.000253602 -1.38917e-05 0.000244746 -2.96772e-05 0.000233233 -4.45202e-05 0.000220738 -5.85193e-05 0.000208399 -7.15293e-05 0.000194144 -8.35625e-05 0.000180099 -9.4662e-05 0.00016651 -0.000104713 0.000151706 -0.000114038 0.000139432 -0.00012236 0.000125882 -0.00012978 0.000112676 -0.000136403 0.000101422 -0.000142175 8.93008e-05 -0.000147264 7.73403e-05 -0.000151734 6.75903e-05 -0.000155509 5.58639e-05 -0.000158671 4.65777e-05 -0.000161185 3.67959e-05 -0.000162994 2.60261e-05 -0.000164145 1.63373e-05 -0.000164641 6.53277e-06 -0.000164436 -4.44798e-06 -0.000163498 -1.50619e-05 -0.000161908 -2.5441e-05 -0.000159485 -3.71828e-05 -0.000156421 -4.76007e-05 -0.000152478 -5.98156e-05 -0.000147835 -7.15623e-05 -0.000142477 -8.38781e-05 -0.000136237 -9.6259e-05 -0.00012916 -0.000108801 -0.000121325 -0.000120727 -0.000112778 -0.00013228 -0.000103491 -0.000143096 -9.35413e-05 -0.000153617 -8.2924e-05 -0.000163879 -7.15755e-05 -0.000174017 -5.94617e-05 -0.000184439 -4.66066e-05 -0.000194648 -3.2986e-05 -0.000205023 -1.86136e-05 -0.000214966 -3.51788e-06 -0.000224599 1.22566e-05 -0.000233514 2.8575e-05 -0.000241046 4.53999e-05 -0.000247219 6.25458e-05 -0.000251312 7.987e-05 -0.000253178 9.71904e-05 -0.000252632 0.000114314 -0.000249234 0.000131061 -0.000243108 0.000147209 -0.000233898 0.000162555 -0.0002217 0.000176887 -0.000206462 0.000189988 -0.000188276 0.000201662 -0.000167087 0.000211689 -0.000143067 0.000219883 -0.00011625 0.000226092 -8.72419e-05 0.000230084 -5.58825e-05 0.000231807 -2.32814e-05 0.000231158 1.06986e-05 0.000228102 4.47736e-05 0.000222689 7.88167e-05 0.000214947 0.000111591 0.000204972 0.000142854 0.000192985 0.000171585 0.000179199 0.000197455 0.00016387 0.00021999 0.000147288 0.000239043 0.000129555 0.000254426 0.000111098 0.000266014 9.21398e-05 0.000273981 7.29488e-05 0.000278397 5.3709e-05 0.00027927 3.46463e-05 0.000276963 1.5974e-05 0.000271987 -2.08384e-06 0.000264156 -1.94248e-05 0.000254263 -3.59146e-05 0.000242585 -5.14879e-05 0.00022946 -6.60127e-05 0.000214849 -7.95149e-05 0.000199444 -9.18669e-05 0.000183741 -0.000103005 0.000167289 -0.00011312 0.000151429 -0.000122141 0.000135641 -0.000130054 0.000120021 -0.000136925 0.000105553 -0.000142965 9.14131e-05 -0.000148052 7.81764e-05 -0.000152362 6.61384e-05 -0.000155894 5.44426e-05 -0.000158694 4.39164e-05 -0.000160855 3.406e-05 -0.000162399 2.47698e-05 -0.000163452 1.62508e-05 -0.00016392 7.84415e-06 -0.000163909 2.92993e-07 -0.000163391 -7.14579e-06 -0.000162413 -1.44114e-05 -0.000161004 -2.18575e-05 -0.000159133 -2.90272e-05 -0.000156709 -3.71281e-05 -0.000153741 -4.49981e-05 -0.000150194 -5.40671e-05 -0.000146074 -6.27531e-05 -0.000141329 -7.21114e-05 -0.000135911 -8.19945e-05 -0.000129836 -9.21245e-05 -0.000123005 -0.000102482 -0.000115585 -0.000113571 -0.000107268 -0.000124942 -9.82007e-05 -0.000136686 -8.82757e-05 -0.000149069 -7.75031e-05 -0.000161406 -6.58366e-05 -0.000174468 -5.32733e-05 -0.000187165 -3.98256e-05 -0.000199714 -2.55301e-05 -0.000211855 -1.04074e-05 -0.000223856 5.55914e-06 -0.000234592 2.21594e-05 -0.000243938 3.93717e-05 -0.000251626 5.70148e-05 -0.000257022 7.49145e-05 -0.00026007 9.29135e-05 -0.00026016 0.000110776 -0.000257019 0.000128141 -0.000249855 0.000144783 -0.000238587 0.000160456 -0.000223542 0.000174815 -0.000204201 0.000187672 -0.000181238 0.000198596 -0.000154055 0.000207392 -0.000123108 0.000213777 -8.89274e-05 0.000217507 -5.17459e-05 0.000218512 -1.31077e-05 0.00021661 2.6232e-05 0.000211988 6.50103e-05 0.000204776 0.000102142 0.000195131 0.000137136 0.000183203 0.000169757 0.000169317 0.000198533 0.000153581 0.000224451 0.000136378 0.000245604 0.000118017 0.00026258 9.88473e-05 0.000274771 7.91674e-05 0.000282033 5.93736e-05 0.000285148 3.9757e-05 0.000283562 2.06289e-05 0.000278739 2.09089e-06 0.00027093 -1.56266e-05 0.000261095 -3.24795e-05 0.000249764 -4.85424e-05 0.000237611 -6.36395e-05 0.000224765 -7.79538e-05 0.00021088 -9.11543e-05 0.000195864 -0.000103273 0.00018013 -0.000114246 0.000164029 -0.000124122 0.000148332 -0.000132819 0.000132462 -0.000140518 0.000118166 -0.000147374 0.000104647 -0.000153365 9.21883e-05 -0.000158632 8.07268e-05 -0.000163144 6.97799e-05 -0.000167061 6.00066e-05 -0.000170346 5.0166e-05 -0.000173052 4.05668e-05 -0.000175061 3.08333e-05 -0.000176461 2.2018e-05 -0.000177297 1.25434e-05 -0.000177443 3.21689e-06 -0.000177006 -5.15049e-06 -0.000175952 -1.34193e-05 -0.00017449 -2.00495e-05 -0.000172727 -2.62415e-05 -0.000170625 -3.30381e-05 -0.000168047 -4.05422e-05 -0.000164993 -4.95418e-05 -0.000161165 -6.01676e-05 -0.000156468 -7.23048e-05 -0.000150852 -8.50777e-05 -0.000144288 -9.874e-05 -0.000136718 -0.000112485 -0.000128174 -0.000126425 -0.000118735 -0.000139835 -0.000108352 -0.000152809 -9.71353e-05 -0.000165278 -8.50863e-05 -0.000177567 -7.21328e-05 -0.000189956 -5.83491e-05 -0.000201805 -4.37405e-05 -0.000213169 -2.84142e-05 -0.00022312 -1.24875e-05 -0.000231967 3.89748e-06 -0.000238916 2.07182e-05 -0.000244796 3.78772e-05 -0.000248784 5.5267e-05 -0.000251161 7.27775e-05 -0.000251472 9.0219e-05 -0.00024844 0.000107362 -0.000242071 0.000123663 -0.000230285 0.000138845 -0.000213861 0.000152524 -0.000192663 0.000164371 -0.000166727 0.000174027 -0.000136987 0.00018137 -0.0001043 0.000186357 -6.99097e-05 0.000188704 -3.42772e-05 0.00018843 6.20644e-07 0.000185844 3.40721e-05 0.000181044 6.72139e-05 0.000174165 9.80533e-05 0.000165138 0.000126376 0.000154139 0.000151532 0.000141911 0.000171601 0.00012891 0.000188032 0.000114879 0.000200806 0.000100804 0.000210089 8.61317e-05 0.000221014 7.06131e-05 0.000231598 5.42922e-05 0.000241293 3.72159e-05 0.000249946 1.97741e-05 0.000253042 2.21061e-06 0.000253231 -1.46428e-05 0.000248841 -3.10194e-05 0.000241031 -4.6691e-05 0.000231858 -6.14563e-05 0.000219371 -7.5286e-05 0.000206222 -8.8197e-05 0.000193136 -0.00010012 0.000178729 -0.00011109 0.00016463 -0.000121145 0.00015102 -0.000130245 0.000136738 -0.000138418 0.000122854 -0.000145703 0.000109487 -0.000152085 9.5889e-05 -0.000157616 8.31333e-05 -0.000162285 6.99854e-05 -0.000166105 5.70904e-05 -0.000169105 4.4624e-05 -0.000171256 3.1712e-05 -0.000172544 1.86961e-05 -0.000172978 5.68488e-06 -0.000172684 -5.47844e-06 -0.000171642 -1.67656e-05 -0.000169703 -2.87723e-05 -0.000166977 -4.16489e-05 -0.000163494 -5.4638e-05 -0.000159041 -6.80083e-05 -0.000153507 -8.35405e-05 -0.00014706 -9.75457e-05 -0.000139446 -0.000114552 -0.000130811 -0.000129839 -0.000121289 -0.000144031 -0.000110436 -0.00016208 -9.85105e-05 -0.000178186 -8.56475e-05 -0.000192554 -7.15588e-05 -0.000210593 -5.64134e-05 -0.000225284 -3.99608e-05 -0.000242301 -2.26408e-05 -0.000255843 -4.86936e-06 -0.000265131 1.41184e-05 -0.000276942 3.36491e-05 -0.000285624 5.34197e-05 -0.000288761 7.35108e-05 -0.000292752 9.37083e-05 -0.000293076 0.000113465 -0.000286119 0.000132723 -0.000278208 0.000151115 -0.000265083 0.000168425 -0.000248893 0.000184412 -0.000228982 0.000198607 -0.000203162 0.000210855 -0.000175291 0.000220968 -0.000144186 0.000228624 -0.000109429 0.000233764 -7.36398e-05 0.000236271 -3.66013e-05 0.000236049 2.70958e-06 0.000233217 4.10583e-05 0.0002277 7.99613e-05 0.000219635 0.000115187 0.000209234 0.000148955 0.000196542 0.000181728 0.000181956 0.000208901 0.000165611 0.000234499 0.000148058 0.000252734 0.000129353 0.00026999 0.00010968 0.000284287 8.96413e-05 0.000290305 6.92162e-05 0.00029616 0.000297021 -0.000158628 5.78848e-05 -0.000161489 4.68304e-05 -0.000163756 3.69656e-05 -0.000165456 2.72837e-05 -0.000166582 1.76662e-05 -0.000167121 8.06642e-06 -0.000167009 -2.39658e-06 -0.000166301 -1.24788e-05 -0.000164986 -2.17645e-05 -0.000162917 -3.3555e-05 -0.000160311 -4.40633e-05 -0.00015697 -5.46158e-05 -0.000152804 -6.82542e-05 -0.000147848 -8.03366e-05 -0.000142045 -9.41977e-05 -0.000135551 -0.000107357 -0.000128186 -0.000119474 -0.000119818 -0.000135187 -0.000110413 -0.00015051 -0.000100207 -0.000163885 -8.88998e-05 -0.000181669 -7.64347e-05 -0.000198612 -6.30934e-05 -0.000212693 -4.85993e-05 -0.000230015 -3.32372e-05 -0.000244052 -1.69173e-05 -0.00025915 5.75356e-07 -0.000273036 1.86221e-05 -0.00028164 3.74034e-05 -0.000292222 5.67212e-05 -0.000299806 7.61805e-05 -0.000301429 9.5768e-05 -0.000302113 0.000115201 -0.000298287 0.000134198 -0.000291142 0.00015249 -0.00027988 0.000169644 -0.000262255 0.000185519 -0.000242242 0.000199858 -0.000218398 0.00021235 -0.00019008 0.000222852 -0.000159789 0.000231114 -0.000125662 0.000237004 -8.97648e-05 0.00024041 -5.22753e-05 0.000241212 -1.30995e-05 0.000239394 2.59568e-05 0.000235226 6.32613e-05 0.000228631 0.000101179 0.000219688 0.000135343 0.000208735 0.000166395 0.000195822 0.000196096 0.000181273 0.000221259 0.000165288 0.0002426 0.000148282 0.000259909 0.00013048 0.000273285 0.000112137 0.000283128 9.35709e-05 0.000288806 7.47559e-05 0.00029119 5.60473e-05 0.000290288 3.75272e-05 0.000286224 1.95225e-05 0.000280019 2.24333e-06 0.000270881 -1.43455e-05 0.000261335 -3.01409e-05 0.000249029 -4.505e-05 0.000235647 -5.90606e-05 0.000222409 -7.20938e-05 0.000207177 -8.41167e-05 0.000192122 -9.52289e-05 0.000177622 -0.000105337 0.000161814 -0.000114592 0.000148687 -0.000122895 0.000134185 -0.000130276 0.000120057 -0.00013679 0.000107936 -0.000142642 9.51527e-05 -0.000147719 8.24172e-05 -0.00015229 7.21608e-05 -0.00015605 5.96243e-05 -0.000159179 4.97071e-05 -0.000161681 3.92973e-05 -0.000163488 2.78332e-05 -0.000164642 1.74915e-05 -0.000165165 7.05592e-06 -0.000164969 -4.64405e-06 -0.000164046 -1.5985e-05 -0.000162475 -2.70118e-05 -0.000160113 -3.95449e-05 -0.000157086 -5.06277e-05 -0.000153245 -6.36565e-05 -0.000148606 -7.62013e-05 -0.000143234 -8.92497e-05 -0.000137011 -0.000102482 -0.000129977 -0.000115835 -0.00012224 -0.000128465 -0.000113792 -0.000140727 -0.000104606 -0.000152282 -9.47463e-05 -0.000163477 -8.41377e-05 -0.000174487 -7.28326e-05 -0.000185322 -6.07675e-05 -0.000196504 -4.79114e-05 -0.000207504 -3.43219e-05 -0.000218612 -1.99351e-05 -0.000229353 -4.79436e-06 -0.00023974 1.10411e-05 -0.000249349 2.74455e-05 -0.000257451 4.43736e-05 -0.000264148 6.16567e-05 -0.000268595 7.9043e-05 -0.000270564 9.64905e-05 -0.00027008 0.000113721 -0.000266464 0.000130606 -0.000259994 0.000146897 -0.00025019 0.00016237 -0.000237173 0.00017682 -0.000220912 0.000190037 -0.000201493 0.000201811 -0.000178861 0.000211943 -0.000153198 0.000220235 -0.000124543 0.000226515 -9.35216e-05 0.000230577 -5.99446e-05 0.000232346 -2.50512e-05 0.000231716 1.13291e-05 0.000228657 4.78324e-05 0.000223151 8.43224e-05 0.000215326 0.000119417 0.00020531 0.00015287 0.000193165 0.00018373 0.000179289 0.000211331 0.000163777 0.000235501 0.000146982 0.000255838 0.000129164 0.000272243 0.000110547 0.000284631 9.14567e-05 0.000293071 7.20323e-05 0.000297821 5.26174e-05 0.000298685 3.34581e-05 0.000296123 1.46934e-05 0.000290752 -3.42583e-06 0.000282275 -2.0878e-05 0.000271715 -3.74274e-05 0.000259134 -5.30827e-05 0.000245115 -6.77058e-05 0.000229472 -8.11806e-05 0.000212919 -9.35293e-05 0.00019609 -0.000104739 0.000178499 -0.000114832 0.000161521 -0.000123824 0.000144634 -0.000131682 0.000127878 -0.000138657 0.000112528 -0.000144618 9.73746e-05 -0.000149674 8.32319e-05 -0.00015392 7.03851e-05 -0.000157352 5.78748e-05 -0.000160186 4.67499e-05 -0.000162389 3.62626e-05 -0.000163963 2.63442e-05 -0.00016494 1.72279e-05 -0.000165387 8.2913e-06 -0.000165353 2.5838e-07 -0.000164781 -7.71768e-06 -0.000163877 -1.53152e-05 -0.000162472 -2.32624e-05 -0.000160601 -3.08978e-05 -0.000158163 -3.9567e-05 -0.000155218 -4.79423e-05 -0.000151704 -5.75813e-05 -0.000147584 -6.68731e-05 -0.000142828 -7.68676e-05 -0.000137463 -8.73598e-05 -0.000131431 -9.81562e-05 -0.000124636 -0.000109277 -0.000117157 -0.00012105 -0.000108866 -0.000133233 -9.97804e-05 -0.000145772 -8.98479e-05 -0.000159001 -7.89927e-05 -0.000172261 -6.73221e-05 -0.000186138 -5.47907e-05 -0.000199697 -4.13192e-05 -0.000213186 -2.69796e-05 -0.000226195 -1.17256e-05 -0.00023911 4.19742e-06 -0.000250515 2.08701e-05 -0.000260611 3.81634e-05 -0.00026892 5.58858e-05 -0.000274745 7.39609e-05 -0.000278146 9.20858e-05 -0.000278285 0.000110078 -0.000275011 0.000127635 -0.000267412 0.000144456 -0.000255408 0.000160295 -0.000239381 0.000174813 -0.000218718 0.000187816 -0.000194242 0.00019895 -0.000165189 0.000207901 -0.000132058 0.000214366 -9.53927e-05 0.000218144 -5.55244e-05 0.000219124 -1.40876e-05 0.000217294 2.80622e-05 0.000212617 6.96869e-05 0.000205249 0.00010951 0.000195493 0.000146892 0.000183441 0.000181809 0.000169391 0.000212582 0.000153497 0.000240345 0.000136095 0.000263006 0.00011756 0.000281115 9.81154e-05 0.000294215 7.82939e-05 0.000301854 5.83381e-05 0.000305104 3.8532e-05 0.000303368 1.92546e-05 0.000298017 6.41966e-07 0.000289542 -1.71058e-05 0.000278842 -3.40562e-05 0.000266715 -5.01446e-05 0.000253699 -6.53679e-05 0.000239989 -7.96257e-05 0.000225137 -9.28435e-05 0.000209082 -0.000105058 0.000192344 -0.000116009 0.00017498 -0.00012579 0.000158113 -0.000134567 0.00014124 -0.000142251 0.000125849 -0.000149034 0.00011143 -0.000154973 9.81275e-05 -0.000160205 8.59588e-05 -0.000164682 7.42572e-05 -0.000168596 6.39205e-05 -0.000171811 5.33809e-05 -0.000174549 4.33048e-05 -0.000176589 3.28732e-05 -0.000178037 2.34665e-05 -0.000178875 1.33814e-05 -0.000178949 3.29026e-06 -0.000178448 -5.65105e-06 -0.000177381 -1.44861e-05 -0.000175827 -2.16042e-05 -0.00017412 -2.79482e-05 -0.000172072 -3.50858e-05 -0.000169608 -4.30066e-05 -0.000166542 -5.26076e-05 -0.000162746 -6.3964e-05 -0.000158032 -7.70183e-05 -0.000152418 -9.06926e-05 -0.000145849 -0.000105309 -0.000138287 -0.000120047 -0.000129721 -0.000134991 -0.000120212 -0.000149343 -0.000109767 -0.000163255 -9.8503e-05 -0.000176541 -8.64139e-05 -0.000189656 -7.33998e-05 -0.00020297 -5.95481e-05 -0.000215656 -4.48316e-05 -0.000227885 -2.94012e-05 -0.000238551 -1.34129e-05 -0.000247956 3.10867e-06 -0.000255438 2.00406e-05 -0.000261727 3.73074e-05 -0.000266051 5.48543e-05 -0.000268708 7.25268e-05 -0.000269145 9.01709e-05 -0.000266085 0.000107481 -0.000259381 0.000124015 -0.000246818 0.000139416 -0.000229262 0.000153287 -0.000206534 0.00016529 -0.00017873 0.000175103 -0.0001468 0.000182623 -0.00011182 0.000187646 -7.49328e-05 0.000189988 -3.66187e-05 0.000189763 8.453e-07 0.000186973 3.68621e-05 0.000182057 7.21298e-05 0.000174944 0.000105166 0.000165932 0.000135388 0.000154953 0.000162511 0.000142326 0.000184228 0.000129174 0.000201184 0.000115002 0.000214978 0.000100914 0.000224178 8.61884e-05 0.000235739 7.07862e-05 0.000247 5.43658e-05 0.000257714 3.72507e-05 0.000267061 1.9684e-05 0.000270609 2.09663e-06 0.000270818 -1.49605e-05 0.000265898 -3.14161e-05 0.000257487 -4.71351e-05 0.000247577 -6.19306e-05 0.000234166 -7.57766e-05 0.000220068 -8.86937e-05 0.000206053 -0.000100618 0.000190653 -0.000111585 0.000175597 -0.000121635 0.000161071 -0.000130731 0.000145834 -0.000138904 0.000131027 -0.000146186 0.000116769 -0.000152568 0.000102271 -0.000158104 8.86693e-05 -0.000162769 7.46504e-05 -0.000166594 6.09159e-05 -0.000169601 4.76306e-05 -0.000171759 3.38697e-05 -0.000173055 1.99926e-05 -0.000173494 6.12333e-06 -0.000173183 -5.78911e-06 -0.000172189 -1.77591e-05 -0.000170312 -3.06501e-05 -0.000167542 -4.44181e-05 -0.000164059 -5.81217e-05 -0.000159632 -7.24351e-05 -0.000154112 -8.90602e-05 -0.000147678 -0.00010398 -0.000140075 -0.000122156 -0.000131444 -0.00013847 -0.000121906 -0.000153569 -0.000111099 -0.000172887 -9.91599e-05 -0.000190126 -8.62842e-05 -0.00020543 -7.21365e-05 -0.000224741 -5.70854e-05 -0.000240335 -4.05058e-05 -0.000258881 -2.30959e-05 -0.000273253 -5.22294e-06 -0.000283004 1.37965e-05 -0.000295961 3.34192e-05 -0.000305247 5.333e-05 -0.000308672 7.35527e-05 -0.000312974 9.38899e-05 -0.000313414 0.000113797 -0.000306026 0.000133211 -0.000297622 0.000151759 -0.000283631 0.00016922 -0.000266353 0.000185345 -0.000245107 0.000199671 -0.000217488 0.000212079 -0.000187698 0.000222301 -0.000154408 0.000230031 -0.000117159 0.000235232 -7.88409e-05 0.000237752 -3.91213e-05 0.000237553 2.90817e-06 0.000234735 4.38762e-05 0.000229105 8.55913e-05 0.000220955 0.000123337 0.000210447 0.000159463 0.000197637 0.000194538 0.000182908 0.00022363 0.000166406 0.000251 0.00014871 0.00027043 0.000129825 0.000288875 0.000109998 0.000304114 8.98044e-05 0.000310499 6.92268e-05 0.000316738 0.000317596 -0.000159033 6.1391e-05 -0.00016188 4.96769e-05 -0.000164141 3.92273e-05 -0.000165837 2.89793e-05 -0.000166963 1.87921e-05 -0.000167509 8.61296e-06 -0.0001674 -2.50634e-06 -0.000166685 -1.31935e-05 -0.000165337 -2.31122e-05 -0.00016335 -3.55421e-05 -0.000160778 -4.66357e-05 -0.000157454 -5.79394e-05 -0.000153315 -7.23935e-05 -0.000148367 -8.52847e-05 -0.000142568 -9.9997e-05 -0.000136 -0.000113924 -0.000128724 -0.00012675 -0.000120451 -0.000143461 -0.000111143 -0.000159818 -0.000100853 -0.000174175 -8.9554e-05 -0.000192968 -7.70783e-05 -0.000211087 -6.37135e-05 -0.000226058 -4.91831e-05 -0.000244546 -3.37361e-05 -0.000259499 -1.73645e-05 -0.000275522 1.11636e-07 -0.000290512 1.82144e-05 -0.000299743 3.71268e-05 -0.000311135 5.66043e-05 -0.000319284 7.61766e-05 -0.000321002 9.58948e-05 -0.000321831 0.000115461 -0.000317854 0.00013463 -0.000310311 0.000153112 -0.000298362 0.000170424 -0.000279568 0.000186452 -0.00025827 0.000200936 -0.000232881 0.000213556 -0.0002027 0.000224166 -0.000170399 0.00023251 -0.000134007 0.000238455 -9.57099e-05 0.000241891 -5.57112e-05 0.000242677 -1.3885e-05 0.000240868 2.77657e-05 0.000236711 6.74185e-05 0.00022997 0.00010792 0.000220927 0.000144385 0.000209853 0.000177469 0.000196804 0.000209145 0.00018203 0.000236032 0.000165957 0.000258673 0.000148817 0.000277048 0.000130893 0.00029121 0.000112491 0.000301529 9.36546e-05 0.000307642 7.47153e-05 0.000310129 5.57945e-05 0.000309209 3.72176e-05 0.000304801 1.91616e-05 0.000298075 1.82565e-06 0.000288217 -1.48309e-05 0.000277992 -3.06623e-05 0.00026486 -4.56287e-05 0.000250614 -5.96426e-05 0.000236423 -7.26892e-05 0.000220224 -8.47386e-05 0.000204171 -9.57923e-05 0.000188676 -0.000105946 0.000171968 -0.000115177 0.000157918 -0.000123456 0.000142464 -0.000130768 0.000127369 -0.000137322 0.00011449 -0.000143177 0.000101007 -0.000148351 8.75919e-05 -0.000152845 7.66545e-05 -0.000156568 6.33474e-05 -0.000159687 5.2826e-05 -0.000162187 4.17972e-05 -0.000164001 2.96471e-05 -0.000165185 1.86758e-05 -0.000165717 7.58756e-06 -0.000165539 -4.82205e-06 -0.000164627 -1.68971e-05 -0.000163085 -2.85535e-05 -0.000160765 -4.18654e-05 -0.00015775 -5.3642e-05 -0.000153947 -6.74599e-05 -0.000149358 -8.07905e-05 -0.000144042 -9.45654e-05 -0.000137839 -0.000108685 -0.0001309 -0.000122775 -0.000123236 -0.000136128 -0.000114872 -0.000149091 -0.000105771 -0.000161383 -9.6e-05 -0.000173248 -8.54571e-05 -0.00018503 -7.4206e-05 -0.000196573 -6.21697e-05 -0.000208541 -4.93425e-05 -0.000220331 -3.57432e-05 -0.000232212 -2.13156e-05 -0.000243781 -6.14784e-06 -0.000254908 9.76633e-06 -0.000265263 2.62469e-05 -0.000273931 4.32684e-05 -0.000281169 6.0608e-05 -0.000285935 7.8117e-05 -0.000288074 9.56761e-05 -0.000287639 0.000113033 -0.000283821 0.000130056 -0.000277016 0.000146459 -0.000266594 0.000162095 -0.000252809 0.000176686 -0.000235503 0.000190026 -0.000214834 0.000201927 -0.000190762 0.000212192 -0.000163463 0.000220592 -0.000132943 0.000226973 -9.99031e-05 0.000231121 -6.40925e-05 0.00023297 -2.69003e-05 0.000232334 1.19648e-05 0.000229258 5.09092e-05 0.000223722 8.98575e-05 0.000215807 0.000127332 0.00020564 0.000163036 0.000193419 0.000195951 0.000179355 0.000225396 0.000163716 0.00025114 0.000146755 0.000272799 0.000128731 0.000290267 0.000109954 0.000303408 9.06449e-05 0.000312381 7.10895e-05 0.000317377 5.15824e-05 0.000318192 3.22274e-05 0.000315478 1.34072e-05 0.000309572 -4.92011e-06 0.000300602 -2.24219e-05 0.000289217 -3.90983e-05 0.000275811 -5.47654e-05 0.000260782 -6.94692e-05 0.000244176 -8.2901e-05 0.000226351 -9.5379e-05 0.000208568 -0.000106572 0.000189692 -0.000116639 0.000171588 -0.000125644 0.000153639 -0.000133533 0.000135767 -0.000140451 0.000119446 -0.000146353 0.000103277 -0.000151346 8.82247e-05 -0.000155612 7.46509e-05 -0.000159129 6.13916e-05 -0.000161876 4.94966e-05 -0.000164045 3.84319e-05 -0.000165566 2.7865e-05 -0.000166523 1.81853e-05 -0.00016689 8.65791e-06 -0.000166915 2.84053e-07 -0.000166392 -8.24109e-06 -0.00016548 -1.62273e-05 -0.000164041 -2.47017e-05 -0.000162087 -3.28515e-05 -0.000159673 -4.1981e-05 -0.000156735 -5.08802e-05 -0.000153269 -6.10478e-05 -0.000149205 -7.09367e-05 -0.000144513 -8.15601e-05 -0.000139149 -9.27239e-05 -0.000133124 -0.000104181 -0.000126333 -0.000116069 -0.000118844 -0.000128538 -0.000110505 -0.000141572 -0.000101499 -0.000154778 -9.15885e-05 -0.000168911 -8.08058e-05 -0.000183044 -6.91179e-05 -0.000197826 -5.6526e-05 -0.000212289 -4.30155e-05 -0.000226696 -2.86627e-05 -0.000240548 -1.34219e-05 -0.000254351 2.66904e-06 -0.000266607 1.94272e-05 -0.000277369 3.68618e-05 -0.000286354 5.47549e-05 -0.000292638 7.29239e-05 -0.000296315 9.12069e-05 -0.000296568 0.000109346 -0.000293151 0.000127109 -0.000285175 0.000144092 -0.000272391 0.000160127 -0.000255416 0.000174821 -0.000233413 0.000187984 -0.000207405 0.000199284 -0.000176488 0.000208368 -0.000141143 0.000214962 -0.000101987 0.000218861 -5.94229e-05 0.000219828 -1.50549e-05 0.000217921 2.99691e-05 0.000213161 7.44468e-05 0.000205744 0.000116926 0.000195872 0.000156764 0.000183706 0.000193975 0.000169461 0.000226827 0.000153446 0.00025636 0.00013577 0.000280682 0.000117001 0.000299884 9.73999e-05 0.000313816 7.7347e-05 0.000321907 5.72114e-05 0.00032524 3.7322e-05 0.000323257 1.78142e-05 0.000317524 -9.04406e-07 0.000308261 -1.87781e-05 0.000296716 -3.57686e-05 0.000283705 -5.1818e-05 0.000269749 -6.71212e-05 0.000255292 -8.14302e-05 0.000239446 -9.475e-05 0.000222402 -0.000106941 0.000204535 -0.000117891 0.00018593 -0.000127785 0.000168007 -0.00013646 0.000149915 -0.000144084 0.000133473 -0.000150817 0.000118162 -0.000156684 0.000103994 -0.000161892 9.11664e-05 -0.000166359 7.87251e-05 -0.000170257 6.78177e-05 -0.000173546 5.66701e-05 -0.000176269 4.60278e-05 -0.000178259 3.48631e-05 -0.000179679 2.48863e-05 -0.000180528 1.42305e-05 -0.000180562 3.32514e-06 -0.000180051 -6.16277e-06 -0.000178896 -1.56411e-05 -0.000177364 -2.31358e-05 -0.000175626 -2.96865e-05 -0.000173614 -3.70973e-05 -0.000171173 -4.54477e-05 -0.000168145 -5.56357e-05 -0.000164394 -6.77152e-05 -0.000159695 -8.17173e-05 -0.000154056 -9.63319e-05 -0.000147525 -0.000111839 -0.000139934 -0.000127638 -0.00013129 -0.000143635 -0.000121709 -0.000158924 -0.000111212 -0.000173752 -9.99495e-05 -0.000187804 -8.78086e-05 -0.000201797 -7.47163e-05 -0.000216062 -6.08009e-05 -0.000229572 -4.59905e-05 -0.000242696 -3.04491e-05 -0.000254092 -1.43463e-05 -0.000264059 2.2681e-06 -0.000272052 1.93044e-05 -0.000278764 3.67e-05 -0.000283446 5.43916e-05 -0.000286399 7.2252e-05 -0.000287005 9.01052e-05 -0.000283938 0.000107626 -0.000276902 0.000124419 -0.000263612 0.000140055 -0.000244899 0.000154121 -0.0002206 0.000166301 -0.000190911 0.000176281 -0.000156779 0.000183964 -0.000119504 0.000188939 -7.99076e-05 0.000191294 -3.89736e-05 0.000191035 1.10375e-06 0.000188209 3.96884e-05 0.000183176 7.71626e-05 0.000175904 0.000112439 0.000166619 0.000144673 0.000155609 0.000173521 0.000142803 0.000197034 0.000129247 0.00021474 0.000115139 0.000229086 0.000101027 0.00023829 8.63849e-05 0.00025038 7.0977e-05 0.000262408 5.44477e-05 0.000274243 3.72785e-05 0.00028423 1.96105e-05 0.000288277 1.92656e-06 0.000288502 -1.53012e-05 0.000283126 -3.18426e-05 0.000274028 -4.76123e-05 0.000263347 -6.24393e-05 0.000248993 -7.63017e-05 0.000233931 -8.92242e-05 0.000218976 -0.000101148 0.000202577 -0.000112113 0.000186563 -0.00012216 0.000171117 -0.000131251 0.000154926 -0.000139422 0.000139198 -0.000146702 0.000124049 -0.000153083 0.000108652 -0.000158624 9.42099e-05 -0.000163288 7.9315e-05 -0.000167115 6.47427e-05 -0.000170131 5.06459e-05 -0.000172296 3.60349e-05 -0.000173602 2.12986e-05 -0.00017405 6.57183e-06 -0.000173752 -6.08747e-06 -0.000172769 -1.87416e-05 -0.00017094 -3.24795e-05 -0.000168136 -4.72219e-05 -0.000164613 -6.16452e-05 -0.000160254 -7.67937e-05 -0.000154753 -9.45609e-05 -0.000148336 -0.000110397 -0.000140745 -0.000129747 -0.000132124 -0.000147092 -0.000122584 -0.000163108 -0.000111868 -0.000183603 -9.98575e-05 -0.000202136 -8.69665e-05 -0.000218321 -7.27878e-05 -0.00023892 -5.77033e-05 -0.00025542 -4.11113e-05 -0.000275473 -2.35962e-05 -0.000290768 -5.50621e-06 -0.000301094 1.345e-05 -0.000314918 3.31707e-05 -0.000324968 5.32047e-05 -0.000328706 7.36093e-05 -0.000333379 9.40971e-05 -0.000333902 0.000114161 -0.000326089 0.00013374 -0.000317202 0.000152455 -0.000302346 0.00017008 -0.000283978 0.00018636 -0.000261387 0.000200821 -0.000231949 0.000213344 -0.000200222 0.000223727 -0.000164791 0.000231539 -0.00012497 0.000236799 -8.41007e-05 0.000239353 -4.16756e-05 0.000239172 3.08888e-06 0.000236345 4.6703e-05 0.000230611 9.13259e-05 0.000222368 0.00013158 0.000211746 0.000170084 0.000198809 0.000207475 0.000183901 0.000238539 0.000167267 0.000267634 0.00014941 0.000288287 0.000130329 0.000307956 0.000110338 0.000324105 8.99762e-05 0.00033086 6.92358e-05 0.000337478 0.000338324 -0.000159463 6.48757e-05 -0.000162294 5.25076e-05 -0.000164549 4.14825e-05 -0.00016624 3.067e-05 -0.000167367 1.99195e-05 -0.000167893 9.13887e-06 -0.000167797 -2.60241e-06 -0.000167019 -1.39715e-05 -0.000165759 -2.43721e-05 -0.00016381 -3.74908e-05 -0.000161273 -4.91726e-05 -0.000157961 -6.1252e-05 -0.000153862 -7.64923e-05 -0.000148921 -9.02254e-05 -0.000143126 -0.000105792 -0.000136565 -0.000120485 -0.000129251 -0.000134063 -0.000120993 -0.000151719 -0.000111744 -0.000169066 -0.000101602 -0.000184317 -9.02519e-05 -0.000204318 -7.7767e-05 -0.000223572 -6.43665e-05 -0.000239458 -4.98163e-05 -0.000259096 -3.43163e-05 -0.000274999 -1.78433e-05 -0.000291995 -3.79651e-07 -0.000307976 1.77913e-05 -0.000317914 3.68316e-05 -0.000330175 5.64427e-05 -0.000338895 7.61932e-05 -0.000340752 9.60392e-05 -0.000341677 0.000115763 -0.000337577 0.000135078 -0.000329626 0.000153726 -0.00031701 0.000171243 -0.000297084 0.000187447 -0.000274475 0.000202086 -0.00024752 0.000214843 -0.000215457 0.000225567 -0.000181123 0.000234001 -0.00014244 0.000240006 -0.000101715 0.000243476 -5.9182e-05 0.000244243 -1.46521e-05 0.000242451 2.9558e-05 0.000238257 7.16121e-05 0.000231399 0.000114778 0.00022225 0.000153534 0.000211045 0.000188674 0.000197785 0.000222406 0.000182899 0.000250918 0.000166691 0.000274882 0.000149406 0.000294333 0.000131379 0.000309236 0.000112749 0.000320159 9.37443e-05 0.000326647 7.45991e-05 0.000329275 5.55605e-05 0.000328248 3.69243e-05 0.000323437 1.87917e-05 0.000316207 1.3803e-06 0.000305628 -1.53563e-05 0.000294728 -3.1228e-05 0.000280732 -4.62735e-05 0.000265659 -6.02741e-05 0.000250424 -7.33421e-05 0.000233292 -8.53943e-05 0.000216223 -9.64952e-05 0.000199777 -0.000106595 0.000182067 -0.000115803 0.000167126 -0.000124039 0.0001507 -0.00013127 0.0001346 -0.000137944 0.000121164 -0.000143837 0.000106901 -0.000148933 9.26874e-05 -0.000153389 8.11108e-05 -0.000157097 6.70556e-05 -0.000160212 5.59402e-05 -0.000162715 4.43009e-05 -0.000164544 3.14754e-05 -0.000165754 1.9886e-05 -0.000166297 8.1307e-06 -0.00016613 -4.98898e-06 -0.000165208 -1.78188e-05 -0.000163706 -3.0056e-05 -0.000161442 -4.41292e-05 -0.000158431 -5.66527e-05 -0.000154712 -7.1179e-05 -0.000150145 -8.53576e-05 -0.000144892 -9.98183e-05 -0.000138742 -0.000114835 -0.000131881 -0.000129636 -0.000124284 -0.000143725 -0.000116041 -0.000157334 -0.000107033 -0.000170391 -9.73433e-05 -0.000182938 -8.68609e-05 -0.000195513 -7.56781e-05 -0.000207756 -6.36708e-05 -0.000220548 -5.08518e-05 -0.00023315 -3.7229e-05 -0.000245835 -2.27728e-05 -0.000258237 -7.55551e-06 -0.000270125 8.39796e-06 -0.000281217 2.49447e-05 -0.000290478 4.20488e-05 -0.000298273 5.95082e-05 -0.000303394 7.71745e-05 -0.00030574 9.48788e-05 -0.000305343 0.000112381 -0.000301323 0.000129539 -0.000294174 0.0001461 -0.000283154 0.000161887 -0.000268596 0.000176635 -0.000250252 0.000190133 -0.000228332 0.000202169 -0.000202798 0.000212535 -0.000173829 0.000221027 -0.000141435 0.000227486 -0.000106363 0.000231729 -6.83354e-05 0.000233544 -2.87154e-05 0.000232935 1.25742e-05 0.000229836 5.40078e-05 0.000224251 9.54422e-05 0.000216253 0.00013533 0.000205972 0.000173317 0.000193614 0.000208309 0.000179372 0.000239637 0.000163558 0.000266954 0.000146417 0.00028994 0.000128207 0.000308476 0.000109235 0.000322381 8.97738e-05 0.000331842 7.01164e-05 0.000337034 5.03834e-05 0.000337925 3.08857e-05 0.000334975 1.18593e-05 0.000328598 -6.50197e-06 0.000318963 -2.41153e-05 0.00030683 -4.08705e-05 0.000292566 -5.66387e-05 0.000276551 -7.1297e-05 0.000258834 -8.49251e-05 0.000239979 -9.73321e-05 0.000220975 -0.000108497 0.000200857 -0.000118623 0.000181714 -0.000127625 0.000162641 -0.000135474 0.000143616 -0.000142276 0.000126248 -0.000148237 0.000109237 -0.000153247 9.32352e-05 -0.000157468 7.88721e-05 -0.000160939 6.48621e-05 -0.00016363 5.21881e-05 -0.000165713 4.05147e-05 -0.000167291 2.94425e-05 -0.000168253 1.91474e-05 -0.00016867 9.07524e-06 -0.000168626 2.3973e-07 -0.000168089 -8.7779e-06 -0.00016709 -1.72261e-05 -0.000165735 -2.60569e-05 -0.000163854 -3.47325e-05 -0.000161473 -4.4362e-05 -0.000158555 -5.37986e-05 -0.000155061 -6.45414e-05 -0.000150983 -7.50149e-05 -0.000146312 -8.62309e-05 -0.000140927 -9.81089e-05 -0.000134878 -0.00011023 -0.00012814 -0.000122807 -0.000120704 -0.000135974 -0.000112403 -0.000149873 -0.000103364 -0.000163817 -9.34412e-05 -0.000178834 -8.26254e-05 -0.00019386 -7.09322e-05 -0.00020952 -5.83046e-05 -0.000224917 -4.47555e-05 -0.000240245 -3.03769e-05 -0.000254927 -1.5106e-05 -0.000269622 1.05612e-06 -0.000282769 1.79098e-05 -0.000294223 3.54422e-05 -0.000303887 5.34289e-05 -0.000310625 7.175e-05 -0.000314636 9.02406e-05 -0.000315058 0.000108553 -0.000311463 0.00012648 -0.000303103 0.00014368 -0.000289592 0.000159915 -0.000271651 0.000174856 -0.000248353 0.000188178 -0.000220728 0.000199637 -0.000187947 0.000208874 -0.000150379 0.00021562 -0.000108733 0.000219531 -6.33339e-05 0.000220562 -1.60858e-05 0.000218646 3.18855e-05 0.000213787 7.93048e-05 0.000206255 0.000124459 0.000196224 0.000166795 0.000183854 0.000206346 0.000169466 0.000241215 0.00015322 0.000272606 0.000135478 0.000298424 0.000116429 0.000318933 9.66035e-05 0.000333642 7.63541e-05 0.000342156 5.59375e-05 0.000345656 3.57575e-05 0.000343437 1.61934e-05 0.000337088 -2.62494e-06 0.000327079 -2.05448e-05 0.000314636 -3.7553e-05 0.000300713 -5.37029e-05 0.000285899 -6.90013e-05 0.00027059 -8.33923e-05 0.000253837 -9.6644e-05 0.000235653 -0.00010899 0.00021688 -0.000119991 0.000196932 -0.000129842 0.000177858 -0.000138467 0.00015854 -0.000145975 0.00014098 -0.000152748 0.000124936 -0.00015861 0.000109857 -0.000163785 9.63418e-05 -0.000168165 8.31044e-05 -0.000172039 7.16922e-05 -0.000175336 5.99666e-05 -0.000178058 4.875e-05 -0.000180014 3.68192e-05 -0.000181407 2.62793e-05 -0.000182213 1.5037e-05 -0.000182288 3.39923e-06 -0.000181784 -6.66675e-06 -0.000180593 -1.6832e-05 -0.000178961 -2.47679e-05 -0.000177224 -3.14227e-05 -0.000175208 -3.91132e-05 -0.000172728 -4.7928e-05 -0.000169878 -5.84858e-05 -0.000166178 -7.14155e-05 -0.000161527 -8.6368e-05 -0.000155938 -0.000101921 -0.000149357 -0.00011842 -0.000141768 -0.000135227 -0.000133142 -0.000152262 -0.000123518 -0.000168548 -0.000112931 -0.000184339 -0.000101523 -0.000199212 -8.93082e-05 -0.000214012 -7.61372e-05 -0.000229233 -6.20567e-05 -0.000243652 -4.71972e-05 -0.000257555 -3.15693e-05 -0.00026972 -1.53501e-05 -0.000280278 1.41502e-06 -0.000288817 1.85395e-05 -0.000295888 3.60574e-05 -0.000300964 5.38967e-05 -0.000304239 7.1989e-05 -0.000305098 8.99906e-05 -0.00030194 0.000107799 -0.00029471 0.000124847 -0.000280661 0.000140746 -0.000260797 0.000155025 -0.00023488 0.000167388 -0.000203274 0.000177617 -0.000167008 0.000185248 -0.000127135 0.000190117 -8.47764e-05 0.000192473 -4.13295e-05 0.000192291 1.28546e-06 0.000189657 4.23226e-05 0.000184408 8.24112e-05 0.000176977 0.000119869 0.000167474 0.000154177 0.000156226 0.000184769 0.000143505 0.000209754 0.000129495 0.000228751 0.000115402 0.000243179 0.000101179 0.000252513 8.65887e-05 0.00026497 7.12236e-05 0.000277773 5.46058e-05 0.000290861 3.72969e-05 0.000301539 1.95062e-05 0.000306068 1.70939e-06 0.000306299 -1.56689e-05 0.000300504 -3.23003e-05 0.00029066 -4.81229e-05 0.00027917 -6.29824e-05 0.000263853 -7.68616e-05 0.00024781 -8.97892e-05 0.000231903 -0.000101713 0.0002145 -0.000112675 0.000197525 -0.000122717 0.000181159 -0.000131803 0.000164012 -0.000139972 0.000147367 -0.00014725 0.000131326 -0.000153631 0.000115034 -0.000159173 9.97515e-05 -0.000163849 8.39909e-05 -0.000167669 6.85633e-05 -0.000170693 5.36692e-05 -0.000172868 3.82098e-05 -0.000174183 2.26141e-05 -0.000174643 7.03146e-06 -0.000174353 -6.37729e-06 -0.000173367 -1.97279e-05 -0.000171587 -3.42594e-05 -0.000168787 -5.00214e-05 -0.000165203 -6.5229e-05 -0.000160889 -8.11079e-05 -0.000155428 -0.000100022 -0.000149032 -0.000116793 -0.000141457 -0.000137322 -0.000132848 -0.000155701 -0.000123317 -0.00017264 -0.000112544 -0.000194376 -0.000100613 -0.000214067 -8.76936e-05 -0.000231241 -7.34935e-05 -0.00025312 -5.82793e-05 -0.000270634 -4.18646e-05 -0.000291887 -2.41451e-05 -0.000308488 -5.91934e-06 -0.00031932 1.30609e-05 -0.000333898 3.29021e-05 -0.000344809 5.30682e-05 -0.000348872 7.3626e-05 -0.000353937 9.43203e-05 -0.000354596 0.000114574 -0.000346343 0.000134316 -0.000336944 0.000153207 -0.000321238 0.000171005 -0.000301777 0.000187453 -0.000277835 0.000202066 -0.000246562 0.000214715 -0.00021287 0.000225189 -0.000175266 0.000233145 -0.000132927 0.000238423 -8.93778e-05 0.000241066 -4.43194e-05 0.000240919 3.23607e-06 0.000238017 4.96053e-05 0.000232216 9.71261e-05 0.000223876 0.00013992 0.000213132 0.000180828 0.000200034 0.000220573 0.000184984 0.000253589 0.000168198 0.000284419 0.000150124 0.000306362 0.000130864 0.000327216 0.000110698 0.000344271 9.01574e-05 0.0003514 6.92423e-05 0.000358393 0.000359217 -0.000159917 6.83376e-05 -0.000162731 5.53209e-05 -0.000164979 4.37311e-05 -0.000166664 3.23548e-05 -0.00016779 2.10455e-05 -0.000168252 9.60024e-06 -0.000168158 -2.69617e-06 -0.000167443 -1.46864e-05 -0.000166212 -2.56026e-05 -0.000164304 -3.93995e-05 -0.000161689 -5.17873e-05 -0.000158489 -6.4452e-05 -0.000154436 -8.05452e-05 -0.000149501 -9.51609e-05 -0.000143717 -0.000111576 -0.000137184 -0.000127019 -0.000129875 -0.000141372 -0.000121624 -0.00015997 -0.000112389 -0.000178302 -0.000102271 -0.000194435 -9.1037e-05 -0.000215552 -7.85054e-05 -0.000236104 -6.50678e-05 -0.000252896 -5.04956e-05 -0.000273668 -3.49547e-05 -0.00029054 -1.84267e-05 -0.000308523 -8.87412e-07 -0.000325515 1.73489e-05 -0.00033615 3.64874e-05 -0.000349313 5.62712e-05 -0.000358679 7.61959e-05 -0.000360677 9.62048e-05 -0.000361686 0.000116096 -0.000357468 0.000135583 -0.000349113 0.000154402 -0.000335829 0.000172071 -0.000314753 0.000188447 -0.000290852 0.00020326 -0.000262333 0.000216185 -0.000228382 0.000227058 -0.000191996 0.000235588 -0.00015097 0.000241659 -0.000107785 0.000245171 -6.26944e-05 0.00024594 -1.54213e-05 0.000244174 3.13242e-05 0.000239865 7.59208e-05 0.000232918 0.000121725 0.000223596 0.000162856 0.000212284 0.000199986 0.000198866 0.000235824 0.000183848 0.000265936 0.00016749 0.000291239 0.000150071 0.000311752 0.00013187 0.000327437 0.000113 0.000339029 9.38169e-05 0.000345831 7.44664e-05 0.000348625 5.53637e-05 0.00034735 3.66337e-05 0.000342167 1.84185e-05 0.000334422 9.07872e-07 0.000323139 -1.59175e-05 0.000311554 -3.18333e-05 0.000296648 -4.69192e-05 0.000280745 -6.09632e-05 0.000264468 -7.40343e-05 0.000246363 -8.60932e-05 0.000228282 -9.71991e-05 0.000210883 -0.000107279 0.000192147 -0.000116455 0.000176302 -0.000124609 0.000158854 -0.000131899 0.00014189 -0.000138636 0.000127902 -0.000144456 0.000112721 -0.000149517 9.77489e-05 -0.000153947 8.55404e-05 -0.000157644 7.07525e-05 -0.000160759 5.90556e-05 -0.000163266 4.68076e-05 -0.000165115 3.3325e-05 -0.000166342 2.1113e-05 -0.000166884 8.6723e-06 -0.000166673 -5.19973e-06 -0.000165757 -1.87353e-05 -0.000164283 -3.15293e-05 -0.000162146 -4.62664e-05 -0.000159199 -5.96001e-05 -0.000155518 -7.48602e-05 -0.000151015 -8.98604e-05 -0.000145791 -0.000105042 -0.000139663 -0.000120963 -0.000132889 -0.00013641 -0.000125399 -0.000151215 -0.000117207 -0.000165527 -0.000108364 -0.000179234 -9.8805e-05 -0.000192497 -8.83964e-05 -0.000205921 -7.72711e-05 -0.000218881 -6.5302e-05 -0.000232517 -5.24918e-05 -0.00024596 -3.88888e-05 -0.000259438 -2.44291e-05 -0.000272697 -9.14987e-06 -0.000285404 6.88759e-06 -0.000297254 2.35394e-05 -0.00030713 4.07579e-05 -0.000315492 5.83033e-05 -0.00032094 7.60692e-05 -0.000323506 9.38901e-05 -0.000323164 0.000111539 -0.000318972 0.000128846 -0.00031148 0.000145575 -0.000299884 0.000161548 -0.000284569 0.000176406 -0.00026511 0.000190047 -0.000241973 0.000202236 -0.000214987 0.000212783 -0.000184375 0.000221425 -0.000150077 0.000228012 -0.000112949 0.000232345 -7.26685e-05 0.000234258 -3.06281e-05 0.000233696 1.31357e-05 0.000230577 5.71263e-05 0.00022492 0.0001011 0.000216831 0.000143418 0.000206484 0.000183665 0.00019391 0.000220883 0.000179522 0.000254025 0.000163498 0.000282979 0.000146157 0.000307281 0.000127759 0.000326874 0.000108591 0.000341548 8.8922e-05 0.000351511 6.89799e-05 0.000356976 4.90733e-05 0.000357832 2.94585e-05 0.00035459 1.0307e-05 0.00034775 -8.18523e-06 0.000337455 -2.59204e-05 0.000324565 -4.27381e-05 0.000309384 -5.86087e-05 0.000292421 -7.34297e-05 0.000273655 -8.6955e-05 0.000253504 -9.93521e-05 0.000233372 -0.000110646 0.00021215 -0.000120725 0.000191794 -0.000129697 0.000171613 -0.00013754 0.00015146 -0.000144412 0.00013312 -0.000150291 0.000115116 -0.000155234 9.81776e-05 -0.000159334 8.29725e-05 -0.000162851 6.83791e-05 -0.00016554 5.48769e-05 -0.000167695 4.26704e-05 -0.000169169 3.0916e-05 -0.000170117 2.00955e-05 -0.000170505 9.46322e-06 -0.000170345 7.9805e-08 -0.000169893 -9.23023e-06 -0.000168987 -1.81314e-05 -0.000167549 -2.7495e-05 -0.000165671 -3.66103e-05 -0.000163298 -4.67359e-05 -0.000160388 -5.67083e-05 -0.00015693 -6.7999e-05 -0.000152811 -7.91338e-05 -0.000148182 -9.08609e-05 -0.000142894 -0.000103396 -0.00013689 -0.000116234 -0.000130109 -0.000129588 -0.00012267 -0.000143413 -0.000114346 -0.000158198 -0.000105237 -0.000172926 -9.54018e-05 -0.000188669 -8.46118e-05 -0.00020465 -7.29093e-05 -0.000221222 -6.0276e-05 -0.00023755 -4.67046e-05 -0.000253817 -3.22753e-05 -0.000269356 -1.69336e-05 -0.000284964 -6.82302e-07 -0.00029902 1.62756e-05 -0.000311181 3.39144e-05 -0.000321526 5.20427e-05 -0.000328753 7.05353e-05 -0.000333128 8.91682e-05 -0.000333691 0.000107669 -0.000329964 0.000125817 -0.000321251 0.000143243 -0.000307018 0.000159675 -0.000288084 0.000174792 -0.000263469 0.00018836 -0.000234296 0.000200035 -0.000199623 0.000209438 -0.000159782 0.000216292 -0.000115588 0.000220337 -6.7379e-05 0.000221355 -1.71032e-05 0.000219405 3.38348e-05 0.000214561 8.41492e-05 0.000206876 0.000132143 0.000196699 0.000176972 0.00018418 0.000218865 0.000169623 0.000255772 0.000153114 0.000289114 0.000135073 0.000316465 0.000115885 0.000338121 9.5748e-05 0.000353779 7.52301e-05 0.000362674 5.46152e-05 0.000366271 3.4261e-05 0.000363791 1.45231e-05 0.000356826 -4.44278e-06 0.000346045 -2.2415e-05 0.000332608 -3.95262e-05 0.000317825 -5.56862e-05 0.000302058 -7.10149e-05 0.000285919 -8.54741e-05 0.000268297 -9.88748e-05 0.000249054 -0.000111187 0.000229192 -0.000122191 0.000207936 -0.000131954 0.000187622 -0.00014064 0.000167226 -0.000148175 0.000148515 -0.000154821 0.000131581 -0.000160612 0.000115648 -0.000165737 0.000101467 -0.000170072 8.7439e-05 -0.000173934 7.55548e-05 -0.000177166 6.31978e-05 -0.000179945 5.15292e-05 -0.000181898 3.87728e-05 -0.000183312 2.76931e-05 -0.000184227 1.59516e-05 -0.000184181 3.35328e-06 -0.000183625 -7.22292e-06 -0.000182372 -1.80843e-05 -0.000180645 -2.64954e-05 -0.000178934 -3.31334e-05 -0.000176983 -4.10639e-05 -0.000174623 -5.0288e-05 -0.000171782 -6.13271e-05 -0.000168106 -7.5092e-05 -0.00016348 -9.09935e-05 -0.00015788 -0.000107521 -0.000151282 -0.000125019 -0.000143714 -0.000142795 -0.000135024 -0.000160952 -0.000125329 -0.000178243 -0.000114677 -0.000194991 -0.000103199 -0.00021069 -9.08886e-05 -0.000226323 -7.76594e-05 -0.000242463 -6.35616e-05 -0.00025775 -4.851e-05 -0.000272607 -3.2709e-05 -0.000285521 -1.63162e-05 -0.000296671 4.40045e-07 -0.000305574 1.77494e-05 -0.000313198 3.5379e-05 -0.000318594 5.33833e-05 -0.000322243 7.16376e-05 -0.000323352 8.9902e-05 -0.000320204 0.000107977 -0.000312785 0.000125318 -0.000298002 0.000141458 -0.000276937 0.000155993 -0.000249414 0.000168565 -0.000215846 0.00017901 -0.000177453 0.000186555 -0.000134681 0.000191544 -8.97648e-05 0.0001939 -4.36864e-05 0.000193591 1.59515e-06 0.000191053 4.48605e-05 0.000185802 8.7662e-05 0.000178168 0.000127503 0.000168449 0.000163895 0.000156868 0.000196351 0.000144025 0.000222597 0.000129816 0.000242959 0.000115644 0.00025735 0.000101258 0.0002669 8.68213e-05 0.000279407 7.14987e-05 0.000293095 5.4775e-05 0.000307584 3.73016e-05 0.000319012 1.93677e-05 0.000324002 1.45213e-06 0.000324214 -1.60656e-05 0.000318022 -3.27902e-05 0.000307384 -4.86675e-05 0.000295047 -6.35603e-05 0.000278745 -7.74571e-05 0.000261707 -9.03887e-05 0.000244835 -0.000102311 0.000226422 -0.000113269 0.000208484 -0.000123306 0.000191196 -0.000132389 0.000173095 -0.000140555 0.000155533 -0.00014783 0.000138601 -0.000154212 0.000121415 -0.000159754 0.000105294 -0.000164437 8.86736e-05 -0.000168275 7.24008e-05 -0.000171289 5.66837e-05 -0.000173473 4.03942e-05 -0.000174798 2.39391e-05 -0.00017527 7.5035e-06 -0.000174985 -6.66296e-06 -0.000173977 -2.07353e-05 -0.000172262 -3.59743e-05 -0.000169562 -5.27219e-05 -0.00016589 -6.89013e-05 -0.000161478 -8.55191e-05 -0.00015611 -0.00010539 -0.000149757 -0.000123146 -0.000142212 -0.000144867 -0.000133617 -0.000164295 -0.000124095 -0.000182162 -0.000113304 -0.000205167 -0.00010149 -0.000225882 -8.84668e-05 -0.000244264 -7.42465e-05 -0.00026734 -5.89802e-05 -0.000285901 -4.25301e-05 -0.000308337 -2.47533e-05 -0.000326265 -6.3982e-06 -0.000337675 1.26503e-05 -0.000352946 3.25953e-05 -0.000364754 5.29195e-05 -0.000369196 7.36394e-05 -0.000374657 9.4515e-05 -0.000375472 0.00011497 -0.000366798 0.000134955 -0.00035693 0.000154032 -0.000340315 0.000172003 -0.000319747 0.000188627 -0.000294459 0.000203404 -0.000261339 0.000216195 -0.000225661 0.000226778 -0.000185849 0.000234797 -0.000140945 0.000240195 -9.47764e-05 0.0002429 -4.70239e-05 0.000242799 3.33691e-06 0.000239797 5.26064e-05 0.000233925 0.000102999 0.000225479 0.000148366 0.000214606 0.000191702 0.000201347 0.000233832 0.00018615 0.000268785 0.000169197 0.000301373 0.000150882 0.000324676 0.00013143 0.000346669 0.000111079 0.000364622 9.03433e-05 0.000372136 6.92455e-05 0.000379491 0.000380283 -0.000160395 7.17744e-05 -0.00016319 5.81165e-05 -0.000165433 4.59739e-05 -0.000167113 3.4035e-05 -0.000168169 2.21008e-05 -0.000168676 1.01077e-05 -0.00016859 -2.78246e-06 -0.00016791 -1.53664e-05 -0.000166691 -2.68217e-05 -0.000164821 -4.12695e-05 -0.000162271 -5.4337e-05 -0.000159033 -6.76901e-05 -0.000155037 -8.45407e-05 -0.000150108 -0.000100091 -0.00014435 -0.000117333 -0.000137845 -0.000133524 -0.000130554 -0.000148663 -0.000122331 -0.000168193 -0.000113118 -0.000187515 -0.000103023 -0.00020453 -9.17632e-05 -0.000226812 -7.93565e-05 -0.000248511 -6.58422e-05 -0.00026641 -5.12198e-05 -0.000288291 -3.56305e-05 -0.000306129 -1.90634e-05 -0.00032509 -1.45873e-06 -0.00034312 1.6886e-05 -0.000354495 3.61245e-05 -0.000368552 5.60859e-05 -0.00037864 7.61686e-05 -0.00038076 9.64188e-05 -0.000381937 0.000116467 -0.000377517 0.000136134 -0.000368779 0.000155141 -0.000354837 0.000172992 -0.000332604 0.000189542 -0.000307402 0.000204517 -0.000277308 0.00021758 -0.000241445 0.000228562 -0.000202978 0.000237202 -0.00015961 0.000243356 -0.00011394 0.000246895 -6.62331e-05 0.000247748 -1.62745e-05 0.00024598 3.30923e-05 0.00024157 8.03305e-05 0.000234464 0.000128832 0.000225047 0.000172273 0.00021357 0.000211463 0.000200043 0.000249351 0.000184876 0.000281103 0.000168394 0.000307722 0.00015079 0.000329356 0.00013231 0.000345918 0.000113266 0.000358072 9.38001e-05 0.000365297 7.43941e-05 0.000368031 5.5178e-05 0.000366566 3.63496e-05 0.000360995 1.80675e-05 0.000352705 4.06733e-07 0.0003408 -1.65003e-05 0.000328461 -3.24749e-05 0.000312622 -4.75717e-05 0.000295842 -6.17097e-05 0.000278606 -7.47622e-05 0.000259416 -8.68296e-05 0.00024035 -9.7929e-05 0.000221982 -0.000107996 0.000202213 -0.000117136 0.000185443 -0.000125235 0.000166952 -0.000132667 0.000149322 -0.000139296 0.00013453 -0.000145081 0.000118506 -0.000150116 0.000102783 -0.000154522 8.99468e-05 -0.000158207 7.44376e-05 -0.000161329 6.2177e-05 -0.00016384 4.9319e-05 -0.000165706 3.5191e-05 -0.00016691 2.23173e-05 -0.000167376 9.13818e-06 -0.000167286 -5.29004e-06 -0.000166482 -1.95386e-05 -0.000165009 -3.30028e-05 -0.000162816 -4.84598e-05 -0.00016 -6.24154e-05 -0.000156372 -7.84885e-05 -0.000151907 -9.43256e-05 -0.000146719 -0.00011023 -0.000140713 -0.000126969 -0.000134052 -0.000143071 -0.000126693 -0.000158574 -0.000118666 -0.000173554 -0.000109875 -0.000188024 -0.00010039 -0.000201983 -9.00708e-05 -0.00021624 -7.90119e-05 -0.00022994 -6.70791e-05 -0.00024445 -5.42832e-05 -0.000258756 -4.06697e-05 -0.000273051 -2.61561e-05 -0.000287211 -1.0809e-05 -0.000300751 5.30299e-06 -0.000313367 2.2099e-05 -0.000323926 3.94047e-05 -0.000332798 5.71139e-05 -0.000338649 7.50725e-05 -0.000341465 9.30318e-05 -0.000341124 0.000110868 -0.000336808 0.000128336 -0.000328948 0.000145208 -0.000316756 0.00016129 -0.000300651 0.000176343 -0.000280163 0.000190157 -0.000255788 0.000202504 -0.000227334 0.000213146 -0.000195018 0.0002219 -0.000158831 0.000228578 -0.000119627 0.000232926 -7.70166e-05 0.000234918 -3.26209e-05 0.00023431 1.37439e-05 0.000231165 6.02716e-05 0.000225477 0.000106788 0.000217238 0.000151657 0.000206718 0.000194184 0.000194022 0.000233579 0.000179448 0.0002686 0.000163253 0.000299173 0.000145703 0.000324832 0.000127073 0.000345504 0.000107714 0.000360907 8.78326e-05 0.000371392 6.77249e-05 0.000377084 4.77295e-05 0.000377827 2.78775e-05 0.000374442 8.59739e-06 0.00036703 -1.00458e-05 0.000356099 -2.77907e-05 0.00034231 -4.48204e-05 0.000326413 -6.07443e-05 0.000308345 -7.56268e-05 0.000288538 -8.92218e-05 0.000267099 -0.000101706 0.000245856 -0.000112909 0.000223354 -0.000122891 0.000201775 -0.000131969 0.000180691 -0.000139782 0.000159273 -0.000146602 0.000139939 -0.000152348 0.000120863 -0.000157339 0.000103168 -0.000161521 8.71543e-05 -0.00016493 7.17882e-05 -0.000167591 5.75385e-05 -0.00016971 4.47894e-05 -0.00017111 3.23153e-05 -0.000172061 2.10466e-05 -0.00017245 9.85222e-06 -0.000172353 -1.72606e-08 -0.000171842 -9.74053e-06 -0.000170929 -1.90445e-05 -0.000169447 -2.89776e-05 -0.000167612 -3.84457e-05 -0.000165265 -4.90822e-05 -0.00016239 -5.95837e-05 -0.000158938 -7.1451e-05 -0.000154898 -8.31737e-05 -0.000150313 -9.54453e-05 -0.00014494 -0.000108769 -0.00013889 -0.000122285 -0.000132101 -0.000136377 -0.000124737 -0.000150776 -0.00011645 -0.000166485 -0.000107435 -0.000181942 -9.75191e-05 -0.000198585 -8.6695e-05 -0.000215474 -7.49976e-05 -0.000232919 -6.23202e-05 -0.000250228 -4.87264e-05 -0.000267411 -3.42599e-05 -0.000283823 -1.88546e-05 -0.000300369 -2.52514e-06 -0.00031535 1.45031e-05 -0.000328209 3.22948e-05 -0.000339317 5.05964e-05 -0.000347055 6.92689e-05 -0.000351801 8.81073e-05 -0.00035253 0.000106804 -0.000348661 0.000125143 -0.00033959 0.000142772 -0.000324647 0.00015944 -0.000304752 0.000174787 -0.000278816 0.000188547 -0.000248056 0.000200419 -0.000211495 0.000209991 -0.000169354 0.000217005 -0.000122602 0.000221117 -7.1491e-05 0.000222245 -1.82308e-05 0.0002202 3.58798e-05 0.000215161 8.91875e-05 0.000207327 0.000139978 0.000197009 0.00018729 0.000184302 0.000231573 0.000169528 0.000270545 0.000152915 0.000305727 0.000134573 0.000334807 0.000115089 0.000357605 9.47454e-05 0.000374122 7.39975e-05 0.000383422 5.31313e-05 0.000387137 3.25259e-05 0.000384397 1.26376e-05 0.000376715 -6.4257e-06 0.000365108 -2.45394e-05 0.000350722 -4.16573e-05 0.000334942 -5.77792e-05 0.00031818 -7.31797e-05 0.000301319 -8.77108e-05 0.000282828 -0.000101158 0.000262502 -0.000113428 0.000241462 -0.000124572 0.00021908 -0.000134398 0.000197447 -0.000142996 0.000175825 -0.000150417 0.000155936 -0.000156974 0.000138138 -0.000162683 0.000121357 -0.000167825 0.000106609 -0.000172138 9.17519e-05 -0.000175999 7.94161e-05 -0.000179284 6.64825e-05 -0.000182013 5.42585e-05 -0.000183946 4.07054e-05 -0.000185341 2.90879e-05 -0.000186249 1.68595e-05 -0.000186156 3.26079e-06 -0.000185552 -7.8275e-06 -0.00018425 -1.93859e-05 -0.000182468 -2.82778e-05 -0.000180752 -3.48493e-05 -0.000178831 -4.29853e-05 -0.000176529 -5.25891e-05 -0.000173743 -6.41135e-05 -0.000170027 -7.88081e-05 -0.000165442 -9.55782e-05 -0.000159922 -0.000113041 -0.000153358 -0.000131583 -0.000145774 -0.000150379 -0.00013698 -0.000169746 -0.000127159 -0.000188064 -0.000116505 -0.000205645 -0.000104969 -0.000222226 -9.25996e-05 -0.000238692 -7.92503e-05 -0.000255812 -6.50666e-05 -0.000271934 -4.98766e-05 -0.000287797 -3.40184e-05 -0.00030138 -1.75455e-05 -0.000313144 -5.64876e-07 -0.000322554 1.6829e-05 -0.000330592 3.46717e-05 -0.000336437 5.28101e-05 -0.000340382 7.12454e-05 -0.000341788 8.97854e-05 -0.000338744 0.000108194 -0.000331194 0.000125759 -0.000315566 0.000142198 -0.000293376 0.00015701 -0.000264226 0.000169854 -0.00022869 0.000180283 -0.000187882 0.000188046 -0.000142444 0.000193108 -9.48269e-05 0.000195467 -4.60455e-05 0.000195073 1.9888e-06 0.000192525 4.74086e-05 0.000187285 9.29021e-05 0.00017962 0.000135168 0.000169564 0.000173951 0.000157673 0.000208242 0.000144428 0.000235842 0.000130365 0.000257022 0.00011558 0.000272135 0.000101367 0.000281113 8.71616e-05 0.000293612 7.17744e-05 0.000308482 5.49599e-05 0.000324399 3.7285e-05 0.000336687 1.91853e-05 0.000342101 1.15867e-06 0.000342241 -1.64935e-05 0.000335674 -3.33136e-05 0.000324204 -4.92474e-05 0.000310981 -6.41742e-05 0.000293672 -7.8088e-05 0.00027562 -9.10229e-05 0.00025777 -0.000102943 0.000238342 -0.000113897 0.000219438 -0.000123928 0.000201227 -0.000133006 0.000182173 -0.000141172 0.000163699 -0.000148443 0.000145872 -0.000154825 0.000127798 -0.00016037 0.000110839 -0.000165054 9.33579e-05 -0.000168909 7.62551e-05 -0.000171944 5.97188e-05 -0.000174125 4.25751e-05 -0.000175448 2.52619e-05 -0.000175932 7.98787e-06 -0.000175649 -6.94607e-06 -0.00017467 -2.17143e-05 -0.000172963 -3.7681e-05 -0.000170316 -5.53691e-05 -0.0001667 -7.25177e-05 -0.000162229 -8.99895e-05 -0.000156793 -0.000110826 -0.000150431 -0.000129508 -0.000143007 -0.000152291 -0.00013443 -0.000172873 -0.000124918 -0.000191674 -0.000114135 -0.000215949 -0.000102262 -0.000237754 -8.92975e-05 -0.000257228 -7.50479e-05 -0.00028159 -5.97416e-05 -0.000301207 -4.32462e-05 -0.000324833 -2.54689e-05 -0.000344042 -6.92597e-06 -0.000356218 1.22105e-05 -0.000372083 3.2268e-05 -0.000384811 5.27586e-05 -0.000389687 7.36492e-05 -0.000395547 9.47173e-05 -0.00039654 0.000115372 -0.000387452 0.000135565 -0.000377123 0.000154891 -0.00035964 0.000173102 -0.000337959 0.000189893 -0.00031125 0.000204837 -0.000276284 0.00021778 -0.000238604 0.000228488 -0.000196557 0.000236603 -0.00014906 0.000242094 -0.000100268 0.000244861 -4.97914e-05 0.000244722 3.4766e-06 0.000241684 5.56443e-05 0.000235692 0.00010899 0.000227138 0.00015692 0.000216118 0.000202721 0.000202762 0.000247187 0.00018741 0.000284137 0.000170204 0.000318579 0.000151683 0.000343196 0.000132026 0.000366326 0.00011149 0.000385158 9.05376e-05 0.000393088 6.92444e-05 0.000400784 0.000401532 -0.000160894 7.51822e-05 -0.000163673 6.08952e-05 -0.000165905 4.82062e-05 -0.000167568 3.56983e-05 -0.000168616 2.31481e-05 -0.000169138 1.06304e-05 -0.000169064 -2.85676e-06 -0.000168415 -1.60155e-05 -0.000167193 -2.80432e-05 -0.000165362 -4.31008e-05 -0.000162918 -5.67809e-05 -0.000159549 -7.10597e-05 -0.000155603 -8.84864e-05 -0.000150766 -0.000104927 -0.00014505 -0.000123049 -0.000138553 -0.000140021 -0.000131271 -0.000155945 -0.000123087 -0.000176377 -0.000113903 -0.000196699 -0.000103825 -0.000214609 -9.26086e-05 -0.000238028 -8.01368e-05 -0.000260983 -6.67244e-05 -0.000279823 -5.20027e-05 -0.000303013 -3.63476e-05 -0.000321784 -1.97609e-05 -0.000341677 -2.07576e-06 -0.000360805 1.64281e-05 -0.000372999 3.57597e-05 -0.000387884 5.5841e-05 -0.000398721 7.61342e-05 -0.000401053 9.65731e-05 -0.000402376 0.000116891 -0.000397835 0.000136743 -0.000388631 0.00015594 -0.000374033 0.000173986 -0.000350651 0.000190727 -0.000324143 0.000205881 -0.000292463 0.000219105 -0.000254668 0.000230218 -0.000214092 0.000238955 -0.000168347 0.000245173 -0.000120158 0.000248784 -6.98446e-05 0.000249702 -1.71928e-05 0.000247844 3.4951e-05 0.000243322 8.48522e-05 0.000236148 0.000136005 0.000226617 0.000181803 0.000214984 0.000223097 0.000201313 0.000263021 0.000186032 0.000296384 0.000169305 0.000324448 0.000151446 0.000347215 0.000132771 0.000364593 0.000113417 0.000377426 9.38784e-05 0.000384835 7.43448e-05 0.000387565 5.50085e-05 0.000385903 3.61094e-05 0.000379894 1.779e-05 0.000371024 -1.2584e-07 0.000358716 -1.71129e-05 0.000345448 -3.31579e-05 0.000328667 -4.82716e-05 0.000310956 -6.24379e-05 0.000292772 -7.5529e-05 0.000272507 -8.76014e-05 0.000252422 -9.86883e-05 0.000233069 -0.000108743 0.000212268 -0.000117811 0.000194511 -0.000125979 0.00017512 -0.000133408 0.000156752 -0.000139979 0.000141101 -0.000145729 0.000124256 -0.000150736 0.00010779 -0.000155115 9.43263e-05 -0.000158787 7.81088e-05 -0.000161906 6.52962e-05 -0.000164393 5.18066e-05 -0.000166186 3.69836e-05 -0.000167447 2.35782e-05 -0.000168044 9.73549e-06 -0.000168067 -5.2678e-06 -0.000167324 -2.02812e-05 -0.000165915 -3.44114e-05 -0.000163608 -5.07669e-05 -0.000160731 -6.52925e-05 -0.000157178 -8.20418e-05 -0.000152753 -9.87508e-05 -0.000147719 -0.000115264 -0.000141823 -0.000132865 -0.000135271 -0.000149622 -0.000128038 -0.000165807 -0.000120146 -0.000181446 -0.000111486 -0.000196684 -0.000102094 -0.000211375 -9.18388e-05 -0.000226496 -8.08103e-05 -0.000240969 -6.88383e-05 -0.000256422 -5.60851e-05 -0.00027151 -4.24979e-05 -0.000286638 -2.79563e-05 -0.000301752 -1.25841e-05 -0.000316124 3.59883e-06 -0.00032955 2.04435e-05 -0.000340771 3.78533e-05 -0.000350208 5.56606e-05 -0.000356457 7.36961e-05 -0.0003595 9.18205e-05 -0.000359248 0.000109791 -0.000354779 0.000127432 -0.000346589 0.000144519 -0.000333844 0.000160806 -0.000316938 0.00017602 -0.000295376 0.000190005 -0.000269773 0.000202518 -0.000239848 0.000213367 -0.000205866 0.000222274 -0.000167738 0.000229086 -0.000126439 0.000233599 -8.15292e-05 0.000235632 -3.46546e-05 0.000235116 1.42598e-05 0.000231981 6.34068e-05 0.000226272 0.000112497 0.000217939 0.00015999 0.000207305 0.000204818 0.000194462 0.000246421 0.000179648 0.000283414 0.00016324 0.000315581 0.000145484 0.000342588 0.000126602 0.000364385 0.000106996 0.000380513 8.69849e-05 0.000391404 6.66197e-05 0.000397449 4.62726e-05 0.000398174 2.63685e-05 0.000394346 6.83812e-06 0.00038656 -1.1857e-05 0.000374794 -2.99089e-05 0.000360362 -4.69171e-05 0.000343422 -6.29631e-05 0.000324391 -7.79138e-05 0.000303488 -9.14729e-05 0.000280658 -0.000104061 0.000258445 -0.000115296 0.000234588 -0.000125378 0.000211857 -0.000134354 0.000189667 -0.00014205 0.000166969 -0.000148928 0.000146817 -0.000154754 0.000126689 -0.000159643 0.000108058 -0.000163758 9.12686e-05 -0.000167058 7.5088e-05 -0.000169736 6.02173e-05 -0.000171858 4.6911e-05 -0.000173269 3.37266e-05 -0.00017421 2.19878e-05 -0.000174562 1.02042e-05 -0.000174446 -1.34096e-07 -0.000173908 -1.02776e-05 -0.000172979 -1.99743e-05 -0.000171546 -3.04106e-05 -0.0001697 -4.02913e-05 -0.000167377 -5.14048e-05 -0.00016452 -6.2441e-05 -0.000161089 -7.4882e-05 -0.000157064 -8.71987e-05 -0.000152433 -0.000100077 -0.000147173 -0.000114029 -0.000141211 -0.000128247 -0.000134419 -0.000143169 -0.00012701 -0.000158185 -0.000118705 -0.00017479 -0.000109675 -0.000190972 -9.9764e-05 -0.000208497 -8.89738e-05 -0.000226264 -7.72766e-05 -0.000244617 -6.45701e-05 -0.000262934 -5.09657e-05 -0.000281015 -3.64413e-05 -0.000298347 -2.0979e-05 -0.000315832 -4.52028e-06 -0.000331808 1.25669e-05 -0.000345297 3.04703e-05 -0.000357221 4.89147e-05 -0.0003655 6.77741e-05 -0.000370661 8.67907e-05 -0.000371547 0.000105698 -0.000367569 0.000124293 -0.000358185 0.000142174 -0.000342528 0.000159069 -0.000321647 0.00017468 -0.000294428 0.000188705 -0.000262082 0.000200791 -0.000223582 0.000210535 -0.000179097 0.000217679 -0.000129747 0.000221904 -7.57165e-05 0.000222973 -1.92994e-05 0.000220971 3.78818e-05 0.000215878 9.42802e-05 0.000207933 0.000147923 0.000197463 0.000197759 0.000184555 0.000244481 0.000169586 0.000285514 0.000152716 0.000322597 0.00013423 0.000353293 0.000114491 0.000377343 9.3845e-05 0.000394768 7.27891e-05 0.000404478 5.16291e-05 0.000408297 3.08079e-05 0.000405218 1.07525e-05 0.00039677 -8.48401e-06 0.000384345 -2.66507e-05 0.000368888 -4.37361e-05 0.000352028 -5.99957e-05 0.00033444 -7.53816e-05 0.000316705 -9.00596e-05 0.000297506 -0.000103509 0.000275951 -0.000115974 0.000253926 -0.000127069 0.000230175 -0.00013684 0.000207218 -0.000145309 0.000184294 -0.000152745 0.000163372 -0.000159298 0.000144691 -0.000164941 0.000127 -0.000170009 0.000111677 -0.000174268 9.60111e-05 -0.000178107 8.32544e-05 -0.000181389 6.97646e-05 -0.00018411 5.69797e-05 -0.000185947 4.25421e-05 -0.000187394 3.05353e-05 -0.000188358 1.78233e-05 -0.000188237 3.13984e-06 -0.000187644 -8.42093e-06 -0.000186246 -2.07837e-05 -0.000184347 -3.01763e-05 -0.000182615 -3.65814e-05 -0.000180712 -4.48885e-05 -0.000178517 -5.47841e-05 -0.000175871 -6.6759e-05 -0.000172285 -8.23945e-05 -0.000167736 -0.000100127 -0.000162125 -0.000118652 -0.000155553 -0.000138155 -0.000147958 -0.000157973 -0.000139141 -0.000178563 -0.000129323 -0.000197882 -0.000118493 -0.000216474 -0.000106823 -0.000233897 -9.43531e-05 -0.000251162 -8.0939e-05 -0.000269226 -6.6641e-05 -0.000286232 -5.1381e-05 -0.000303057 -3.53271e-05 -0.000317434 -1.87774e-05 -0.000329694 -1.64765e-06 -0.000339684 1.58638e-05 -0.000348103 3.3837e-05 -0.00035441 5.22082e-05 -0.000358753 7.08832e-05 -0.000360463 8.97349e-05 -0.000357596 0.000108368 -0.000349827 0.000126263 -0.000333462 0.000143049 -0.000310162 0.000158224 -0.000279401 0.000171261 -0.000241728 0.000181743 -0.000198365 0.000189684 -0.000150384 0.000194869 -0.000100012 0.000197199 -4.83751e-05 0.000196682 2.50548e-06 0.000193907 5.01833e-05 0.00018874 9.80698e-05 0.000180959 0.000142949 0.000170917 0.000183992 0.000158619 0.00022054 0.000144987 0.000249474 0.000130732 0.000271277 0.000115698 0.000287169 0.000101498 0.000295313 8.74408e-05 0.000307669 7.20622e-05 0.000323861 5.51621e-05 0.000341299 3.72435e-05 0.000354606 1.8931e-05 0.000360414 8.31701e-07 0.00036034 -1.69542e-05 0.00035346 -3.38717e-05 0.000341122 -4.98627e-05 0.000326972 -6.48237e-05 0.000308633 -7.87548e-05 0.000289552 -9.16924e-05 0.000270707 -0.000103609 0.000250258 -0.000114558 0.000230387 -0.000124582 0.000211251 -0.000133655 0.000191247 -0.000141822 0.000171865 -0.000149088 0.000153138 -0.000155471 0.000134181 -0.000161019 0.000116387 -0.000165708 9.80474e-05 -0.000169568 8.0115e-05 -0.000172629 6.2779e-05 -0.000174836 4.47821e-05 -0.000176181 2.66077e-05 -0.000176685 8.49103e-06 -0.00017642 -7.21098e-06 -0.000175394 -2.274e-05 -0.000173644 -3.94313e-05 -0.00017109 -5.79225e-05 -0.000167556 -7.6052e-05 -0.000163083 -9.44629e-05 -0.000157698 -0.000116211 -0.000151297 -0.000135909 -0.000143846 -0.000159742 -0.000135283 -0.000181436 -0.000125785 -0.000201172 -0.000115014 -0.00022672 -0.000103087 -0.000249682 -9.0234e-05 -0.000270081 -7.59003e-05 -0.000295924 -6.05498e-05 -0.000316558 -4.38505e-05 -0.000341532 -2.6243e-05 -0.00036165 -7.5066e-06 -0.000374955 1.17412e-05 -0.000391331 3.19273e-05 -0.000404998 5.25508e-05 -0.000410311 7.36537e-05 -0.00041665 9.49275e-05 -0.000417814 0.000115793 -0.000408318 0.000136206 -0.000397536 0.000155754 -0.000379188 0.000174197 -0.000356402 0.000191254 -0.000328308 0.000206395 -0.000291424 0.000219478 -0.000251688 0.000230316 -0.000207395 0.000238539 -0.000157283 0.000244117 -0.000105845 0.000246979 -5.26535e-05 0.00024676 3.69516e-06 0.000243635 5.87695e-05 0.000237589 0.000115036 0.000228915 0.000165594 0.000217764 0.000213872 0.00020428 0.000260672 0.000188746 0.000299671 0.000171269 0.000336056 0.000152527 0.000361938 0.000132653 0.000386201 0.000111919 0.000405891 9.07402e-05 0.000414268 6.92368e-05 0.000422288 0.000422974 -0.000161416 7.8559e-05 -0.000164178 6.36578e-05 -0.000166372 5.03993e-05 -0.000168027 3.73533e-05 -0.000169101 2.4222e-05 -0.000169638 1.11676e-05 -0.000169579 -2.91601e-06 -0.000168969 -1.66252e-05 -0.000167722 -2.92897e-05 -0.000165929 -4.48944e-05 -0.000163541 -5.91683e-05 -0.000160207 -7.43945e-05 -0.000156244 -9.24488e-05 -0.000151468 -0.000109704 -0.000145865 -0.000128652 -0.000139326 -0.000146561 -0.00013203 -0.000163241 -0.000123902 -0.000184505 -0.000114748 -0.000205852 -0.000104658 -0.000224699 -9.35144e-05 -0.000249172 -8.10019e-05 -0.000273495 -6.75016e-05 -0.000293323 -5.29625e-05 -0.000317552 -3.71208e-05 -0.000337626 -2.05048e-05 -0.000358293 -2.7331e-06 -0.000378577 1.5913e-05 -0.000391645 3.53851e-05 -0.000407356 5.56027e-05 -0.000418939 7.609e-05 -0.000421541 9.67315e-05 -0.000423017 0.000117262 -0.000418366 0.000137399 -0.000408768 0.000156837 -0.000393472 0.000175072 -0.000368886 0.000192005 -0.000341076 0.000207346 -0.000307804 0.00022074 -0.000268063 0.000231995 -0.000225347 0.000240839 -0.000177191 0.000247132 -0.000126452 0.000250804 -7.35158e-05 0.000251753 -1.81418e-05 0.000249817 3.68871e-05 0.000245191 8.94779e-05 0.000237956 0.00014324 0.000228299 0.00019146 0.000216504 0.000234892 0.000202725 0.000276801 0.000187173 0.000311936 0.000170201 0.00034142 0.000152134 0.000365282 0.000133143 0.000383584 0.000113678 0.00039689 9.39924e-05 0.000404521 7.43216e-05 0.000407235 5.49178e-05 0.000405306 3.58914e-05 0.000398921 1.73168e-05 0.000389599 -7.029e-07 0.000376735 -1.77476e-05 0.000362492 -3.38854e-05 0.000344805 -4.90248e-05 0.000326095 -6.32097e-05 0.000306957 -7.63533e-05 0.00028565 -8.84139e-05 0.000264483 -9.95091e-05 0.000244164 -0.00010952 0.000222279 -0.00011855 0.000203541 -0.000126839 0.00018341 -0.000134156 0.000164069 -0.000140686 0.000147631 -0.000146391 0.000129962 -0.000151368 0.000112767 -0.000155701 9.86594e-05 -0.000159298 8.17056e-05 -0.000162388 6.8387e-05 -0.000164915 5.43336e-05 -0.000166839 3.89071e-05 -0.000168138 2.48774e-05 -0.000168872 1.04698e-05 -0.000168916 -5.22444e-06 -0.000168146 -2.10505e-05 -0.000166758 -3.57997e-05 -0.000164572 -5.29527e-05 -0.000161732 -6.81332e-05 -0.000158204 -8.55698e-05 -0.00015386 -0.000103095 -0.000148862 -0.000120262 -0.000142994 -0.000138733 -0.000136585 -0.000156031 -0.000129465 -0.000172927 -0.000121702 -0.00018921 -0.000113136 -0.000205249 -0.000103908 -0.000220603 -9.37654e-05 -0.000236639 -8.28389e-05 -0.000251895 -7.09614e-05 -0.0002683 -5.8183e-05 -0.000284288 -4.45573e-05 -0.000300264 -2.99376e-05 -0.000316372 -1.44803e-05 -0.000331581 1.82326e-06 -0.000345853 1.88224e-05 -0.00035777 3.63926e-05 -0.000367778 5.44183e-05 -0.000374482 7.26208e-05 -0.000377703 9.09224e-05 -0.00037755 0.000109116 -0.000372973 0.000126948 -0.000364421 0.00014417 -0.000351065 0.000160626 -0.000333395 0.000176033 -0.000310783 0.000190193 -0.000283933 0.000202877 -0.000252532 0.000213857 -0.000216846 0.000222899 -0.000176781 0.000229838 -0.000133378 0.000234388 -8.60796e-05 0.000236503 -3.67698e-05 0.000235951 1.48119e-05 0.000232729 6.66288e-05 0.00022688 0.000118347 0.000218473 0.000168397 0.000207625 0.000215667 0.00019454 0.000259505 0.000179587 0.000298367 0.000162872 0.000332296 0.000144866 0.000360594 0.000125824 0.000383428 0.000105891 0.000400445 8.55872e-05 0.000411708 6.50271e-05 0.000418009 4.46071e-05 0.000418594 2.44222e-05 0.000414531 4.90092e-06 0.000406081 -1.40739e-05 0.000393769 -3.21527e-05 0.000378441 -4.93229e-05 0.000360592 -6.53759e-05 0.000340444 -8.04243e-05 0.000318537 -9.40693e-05 0.000294303 -0.000106585 0.000270961 -0.000117855 0.000245858 -0.000127872 0.000221874 -0.000136856 0.000198651 -0.000144628 0.000174741 -0.000151378 0.000153566 -0.000157133 0.000132445 -0.000161972 0.000112897 -0.000166043 9.53391e-05 -0.000169436 7.84812e-05 -0.000171999 6.27807e-05 -0.000174093 4.90045e-05 -0.000175472 3.51057e-05 -0.000176304 2.28202e-05 -0.000176706 1.06056e-05 -0.000176569 -2.70903e-07 -0.000176078 -1.07689e-05 -0.000175115 -2.09373e-05 -0.000173559 -3.19665e-05 -0.000171842 -4.20077e-05 -0.00016953 -5.3717e-05 -0.000166719 -6.52519e-05 -0.000163319 -7.82826e-05 -0.000159324 -9.11937e-05 -0.00015481 -0.000104591 -0.00014944 -0.000119399 -0.000143445 -0.000134241 -0.000136601 -0.000150013 -0.000129291 -0.000165495 -0.000121008 -0.000183073 -0.00011204 -0.00019994 -0.000102141 -0.000218395 -9.12869e-05 -0.000237119 -7.95768e-05 -0.000256327 -6.68423e-05 -0.000275669 -5.3182e-05 -0.000294676 -3.86065e-05 -0.000312923 -2.30977e-05 -0.000331341 -6.60273e-06 -0.000348303 1.06521e-05 -0.000362551 2.87172e-05 -0.000375286 4.73707e-05 -0.000384153 6.63839e-05 -0.000389674 8.5634e-05 -0.000390797 0.000104732 -0.000386667 0.000123556 -0.000377009 0.000141678 -0.000360649 0.000158879 -0.000338848 0.000174725 -0.000310273 0.000188928 -0.000276285 0.000201274 -0.000235928 0.000211243 -0.000189066 0.000218623 -0.000137126 0.000222881 -7.99751e-05 0.000224072 -2.04902e-05 0.000221963 3.99904e-05 0.000216731 9.95127e-05 0.000208588 0.000156065 0.000197913 0.000208435 0.000184796 0.000257598 0.000169613 0.000300697 0.000152495 0.000339715 0.000133676 0.000372112 0.000113677 0.000397342 9.27384e-05 0.000415707 7.12982e-05 0.000425918 4.99493e-05 0.000429646 2.88068e-05 0.000426361 8.55605e-06 0.000417021 -1.08336e-05 0.000403734 -2.90865e-05 0.000387141 -4.62801e-05 0.000369221 -6.24828e-05 0.000350643 -7.78774e-05 0.0003321 -9.24986e-05 0.000312127 -0.000106136 0.000289589 -0.000118591 0.000266381 -0.00012967 0.000241254 -0.000139485 0.000217033 -0.000148016 0.000192825 -0.000155259 0.000170614 -0.000161702 0.000151135 -0.000167259 0.000132557 -0.000172191 0.000116609 -0.000176487 0.000100307 -0.000180327 8.70945e-05 -0.000183607 7.30444e-05 -0.000186356 5.97283e-05 -0.000188276 4.44626e-05 -0.00018961 3.18686e-05 -0.000190599 1.88128e-05 -0.000190437 2.97745e-06 -0.000189753 -9.10519e-06 -0.000188323 -2.22134e-05 -0.000186307 -3.21917e-05 -0.00018457 -3.83193e-05 -0.000182756 -4.6702e-05 -0.000180648 -5.68921e-05 -0.000178093 -6.93145e-05 -0.000174559 -8.59285e-05 -0.000170049 -0.000104637 -0.00016441 -0.000124291 -0.000157774 -0.000144792 -0.000150242 -0.000165505 -0.000141377 -0.000187428 -0.000131478 -0.000207781 -0.000120558 -0.000227394 -0.000108772 -0.000245683 -9.62211e-05 -0.000263713 -8.27096e-05 -0.000282738 -6.82727e-05 -0.000300669 -5.27845e-05 -0.000318545 -3.67375e-05 -0.000333481 -1.99223e-05 -0.000346509 -2.76369e-06 -0.000356843 1.48671e-05 -0.000365734 3.3002e-05 -0.000372545 5.15477e-05 -0.000377299 7.04694e-05 -0.000379384 8.95805e-05 -0.000376707 0.000108604 -0.00036885 0.000126883 -0.000351741 0.000143977 -0.000327257 0.000159292 -0.000294716 0.000172516 -0.000254952 0.000183303 -0.000209152 0.000191467 -0.000158549 0.000196842 -0.000105387 0.000199177 -5.071e-05 0.000198458 3.22415e-06 0.000195498 5.31435e-05 0.000190176 0.000103391 0.0001824 0.000150725 0.000172163 0.00019423 0.000159825 0.000232878 0.000145682 0.000263617 0.000130939 0.00028602 0.000115903 0.000302205 0.000101674 0.000309541 8.77399e-05 0.000321604 7.23748e-05 0.000339226 5.53899e-05 0.000358284 3.73037e-05 0.000372692 1.87683e-05 0.000378949 4.72852e-07 0.000378636 -1.74479e-05 0.00037138 -3.44653e-05 0.000358139 -5.05154e-05 0.000343022 -6.55106e-05 0.000323628 -7.94577e-05 0.000303499 -9.23964e-05 0.000283646 -0.000104309 0.000262171 -0.000115252 0.00024133 -0.000125268 0.000221267 -0.000134337 0.000200316 -0.000142503 0.000180031 -0.000149769 0.000160404 -0.000156149 0.000140561 -0.000161701 0.000121939 -0.000166396 0.000102742 -0.000170261 8.398e-05 -0.000173336 6.58535e-05 -0.000175566 4.70128e-05 -0.000176935 2.79765e-05 -0.000177465 9.02122e-06 -0.000177209 -7.46709e-06 -0.000176147 -2.38021e-05 -0.000174409 -4.11691e-05 -0.000171886 -6.04455e-05 -0.0001684 -7.95381e-05 -0.000164027 -9.88363e-05 -0.000158598 -0.00012164 -0.000152241 -0.000142266 -0.000144682 -0.000167301 -0.000136189 -0.000189928 -0.000126694 -0.000210668 -0.000115941 -0.000237473 -0.000104006 -0.000261618 -9.1079e-05 -0.000283007 -7.68189e-05 -0.000310184 -6.14041e-05 -0.000331972 -4.45946e-05 -0.000358342 -2.69729e-05 -0.000379272 -8.19663e-06 -0.000393731 1.12484e-05 -0.000410776 3.15686e-05 -0.000425318 5.23469e-05 -0.000431089 7.36047e-05 -0.000437908 9.51107e-05 -0.00043932 0.000116234 -0.000429441 0.00013688 -0.000418182 0.000156662 -0.000398969 0.000175334 -0.000375074 0.000192616 -0.000345591 0.000207998 -0.000306806 0.000221334 -0.000265023 0.000232278 -0.000218339 0.000240606 -0.000165611 0.000246268 -0.000111508 0.000249127 -5.5513e-05 0.000248911 3.91127e-06 0.000245717 6.1964e-05 0.000239621 0.000121132 0.000230824 0.00017439 0.000219524 0.000225172 0.00020593 0.000274266 0.000190093 0.000315508 0.000172392 0.000353757 0.000153415 0.000380916 0.000133319 0.000406297 0.000112353 0.000426856 9.0951e-05 0.00043567 6.92229e-05 0.000444016 0.000444616 -0.00016196 8.19021e-05 -0.000164701 6.63987e-05 -0.00016688 5.25786e-05 -0.000168537 3.90101e-05 -0.000169636 2.53207e-05 -0.000170204 1.17361e-05 -0.000170169 -2.9517e-06 -0.00016966 -1.71337e-05 -0.000168298 -3.06522e-05 -0.000166533 -4.6659e-05 -0.000164171 -6.15298e-05 -0.000160837 -7.77294e-05 -0.000157027 -9.62581e-05 -0.000152197 -0.000114534 -0.000146609 -0.000134239 -0.000140232 -0.000152938 -0.000132858 -0.000170615 -0.000124764 -0.000192599 -0.000115644 -0.000214973 -0.000105489 -0.000234854 -9.44646e-05 -0.000260197 -8.19002e-05 -0.00028606 -6.83372e-05 -0.000306886 -5.37803e-05 -0.000332109 -3.80573e-05 -0.000353349 -2.13102e-05 -0.00037504 -3.45917e-06 -0.000396428 1.53507e-05 -0.000410455 3.50446e-05 -0.00042705 5.53633e-05 -0.000439258 7.59982e-05 -0.000442176 9.68952e-05 -0.000443914 0.000117648 -0.000439119 0.000138015 -0.000429136 0.000157711 -0.000413167 0.000176225 -0.000387399 0.000193412 -0.000358263 0.000208962 -0.000323355 0.000222524 -0.000281624 0.000233915 -0.000236738 0.000242863 -0.00018614 0.000249229 -0.000132817 0.000252983 -7.72704e-05 0.000253859 -1.90178e-05 0.000251825 3.89209e-05 0.000247197 9.41065e-05 0.000239899 0.000150537 0.000230138 0.000201221 0.000218168 0.000246862 0.00020413 0.000290839 0.00018833 0.000327735 0.000171141 0.000358609 0.000152767 0.000383656 0.000133614 0.000402737 0.00011399 0.000416515 9.41497e-05 0.000424361 7.44088e-05 0.000426976 5.47697e-05 0.000424945 3.55101e-05 0.00041818 1.66945e-05 0.000408414 -1.30635e-06 0.000394736 -1.84339e-05 0.00037962 -3.46685e-05 0.000361039 -4.98269e-05 0.000341253 -6.40398e-05 0.00032117 -7.71836e-05 0.000298794 -8.92462e-05 0.000276545 -0.000100351 0.000255269 -0.000110271 0.000232199 -0.000119456 0.000212726 -0.000127651 0.000191605 -0.00013493 0.000171347 -0.000141415 0.000154116 -0.000147055 0.000135602 -0.000151933 0.000117645 -0.000156222 0.000102948 -0.000159901 8.53843e-05 -0.000163041 7.15272e-05 -0.000165588 5.68803e-05 -0.000167604 4.09234e-05 -0.000169021 2.62945e-05 -0.000169708 1.11569e-05 -0.000169738 -5.19513e-06 -0.000168974 -2.18145e-05 -0.000167628 -3.71451e-05 -0.000165525 -5.50561e-05 -0.000162714 -7.09439e-05 -0.000159259 -8.90247e-05 -0.000154915 -0.000107439 -0.000150006 -0.000125171 -0.000144259 -0.000144479 -0.000137896 -0.000162394 -0.000130982 -0.000179841 -0.000123447 -0.000196745 -0.000115054 -0.000213642 -0.000105904 -0.000229753 -9.58118e-05 -0.000246731 -8.49149e-05 -0.000262792 -7.30374e-05 -0.000280177 -6.02166e-05 -0.000297109 -4.65159e-05 -0.000313965 -3.19015e-05 -0.000330987 -1.64356e-05 -0.000347047 -1.21332e-07 -0.000362167 1.69559e-05 -0.000374847 3.4604e-05 -0.000385426 5.2715e-05 -0.000392593 7.10636e-05 -0.000396051 8.95335e-05 -0.00039602 0.000107863 -0.000391303 0.000125886 -0.000382445 0.000143338 -0.000368517 0.000160009 -0.000350065 0.000175578 -0.000326352 0.000189919 -0.000298273 0.000202768 -0.000265381 0.000213935 -0.000228013 0.000223124 -0.00018597 0.000230202 -0.000140457 0.000234932 -9.08093e-05 0.000237057 -3.88949e-05 0.000236579 1.52904e-05 0.000233374 6.98338e-05 0.000227482 0.000124238 0.000218934 0.000176945 0.000207997 0.000226604 0.000194802 0.0002727 0.000179592 0.000313577 0.000162789 0.000349099 0.000144513 0.00037887 0.000125192 0.000402749 0.000105124 0.000420514 8.45866e-05 0.000432245 6.37801e-05 0.000438816 4.3095e-05 0.000439279 2.2745e-05 0.000434881 2.9017e-06 0.000425925 -1.61576e-05 0.000412828 -3.43909e-05 0.000396674 -5.16849e-05 0.000377886 -6.78733e-05 0.000356633 -8.29209e-05 0.000333584 -9.67102e-05 0.000308092 -0.00010924 0.000283491 -0.000120452 0.000257069 -0.000130562 0.000231984 -0.000139526 0.000207615 -0.000147243 0.000182458 -0.000153978 0.000160302 -0.000159732 0.000138199 -0.000164547 0.000117712 -0.00016858 9.93713e-05 -0.000171816 8.17172e-05 -0.000174402 6.53669e-05 -0.000176487 5.10896e-05 -0.000177861 3.64795e-05 -0.000178752 2.37115e-05 -0.00017907 1.09235e-05 -0.000178935 -4.06209e-07 -0.000178318 -1.13852e-05 -0.000177414 -2.18416e-05 -0.000175973 -3.34079e-05 -0.000174173 -4.38074e-05 -0.000171919 -5.59704e-05 -0.000169108 -6.80631e-05 -0.000165737 -8.1654e-05 -0.000161775 -9.51554e-05 -0.000157223 -0.000109142 -0.000151948 -0.000124674 -0.000146028 -0.000140162 -0.000139235 -0.000156807 -0.000131894 -0.000172836 -0.000123603 -0.000191364 -0.000114567 -0.000208976 -0.000104746 -0.000228217 -9.39059e-05 -0.000247959 -8.21943e-05 -0.000268038 -6.94485e-05 -0.000288415 -5.57765e-05 -0.000308348 -4.11512e-05 -0.000327548 -2.56016e-05 -0.00034689 -8.98141e-06 -0.000364924 8.35373e-06 -0.000379887 2.65467e-05 -0.000393479 4.53788e-05 -0.000402985 6.462e-05 -0.000408915 8.40334e-05 -0.00041021 0.000103404 -0.000406038 0.000122521 -0.000396125 0.000140904 -0.000379033 0.000158425 -0.000356369 0.000174555 -0.000326404 0.000188992 -0.000290721 0.000201579 -0.000248515 0.000211712 -0.000199199 0.000219249 -0.000144663 0.000223751 -8.44772e-05 0.000224904 -2.16433e-05 0.000222794 4.20998e-05 0.000217451 0.000104855 0.000209102 0.000164414 0.000198221 0.000219316 0.000184873 0.000270946 0.000169451 0.000316119 0.000152138 0.000357028 0.000133119 0.000391131 0.000112781 0.00041768 9.15354e-05 0.000436953 6.98983e-05 0.000447555 4.81492e-05 0.000451395 2.68643e-05 0.000447645 6.45363e-06 0.000437431 -1.30296e-05 0.000423218 -3.13768e-05 0.000405489 -4.85526e-05 0.000386397 -6.47459e-05 0.000366836 -8.01742e-05 0.000347528 -9.49905e-05 0.000326943 -0.000108531 0.000303129 -0.00012113 0.00027898 -0.000132302 0.000252427 -0.000141983 0.000226714 -0.000150435 0.000201277 -0.000157496 0.000177674 -0.000163942 0.00015758 -0.000169449 0.000138065 -0.000174438 0.000121598 -0.000178604 0.000104474 -0.000182406 9.08959e-05 -0.000185664 7.63024e-05 -0.000188439 6.25039e-05 -0.000190351 4.63738e-05 -0.000191639 3.3157e-05 -0.000192582 1.9756e-05 -0.000192469 2.86455e-06 -0.000191804 -9.77013e-06 -0.000190296 -2.37222e-05 -0.000188181 -3.43061e-05 -0.000186377 -4.01235e-05 -0.000184579 -4.84997e-05 -0.000182637 -5.88343e-05 -0.00018023 -7.17215e-05 -0.000176814 -8.93446e-05 -0.00017236 -0.000109091 -0.000166712 -0.000129938 -0.000160197 -0.000151307 -0.000152643 -0.000173059 -0.000143664 -0.000196408 -0.000133695 -0.000217751 -0.000122613 -0.000238476 -0.000110838 -0.000257458 -9.82578e-05 -0.000276293 -8.46497e-05 -0.000296346 -7.01021e-05 -0.000315217 -5.45762e-05 -0.000334071 -3.82663e-05 -0.000349791 -2.12496e-05 -0.000363526 -3.90817e-06 -0.000374184 1.37932e-05 -0.000383436 3.2081e-05 -0.000390833 5.08267e-05 -0.000396044 7.00039e-05 -0.000398562 8.94017e-05 -0.000396105 0.000108742 -0.000388191 0.000127357 -0.000370355 0.000144783 -0.000344683 0.000160423 -0.000310356 0.000173963 -0.000268492 0.000184986 -0.000220175 0.000193468 -0.00016703 0.000198771 -0.00011069 0.000201083 -5.30222e-05 0.000200475 3.83154e-06 0.000197233 5.63861e-05 0.000191765 0.000108858 0.000183765 0.000158725 0.000173519 0.000204475 0.000160915 0.000245481 0.000146558 0.000277973 0.000131405 0.000301173 0.000116351 0.000317259 0.000101931 0.00032396 8.80891e-05 0.000335446 7.27235e-05 0.000354592 5.56478e-05 0.00037536 3.73682e-05 0.000390971 1.86129e-05 0.000397705 8.24514e-08 0.000397166 -1.79758e-05 0.000389439 -3.50955e-05 0.000375259 -5.12051e-05 0.000359131 -6.62349e-05 0.000338658 -8.0198e-05 0.000317462 -9.3136e-05 0.000296584 -0.000105043 0.000274078 -0.000115978 0.000252265 -0.000125985 0.000231275 -0.00013505 0.00020938 -0.000143217 0.000188198 -0.000150482 0.000167668 -0.000156861 0.000146941 -0.000162416 0.000127494 -0.000167118 0.000107445 -0.000170992 8.78537e-05 -0.000174069 6.89303e-05 -0.000176318 4.92619e-05 -0.000177709 2.93679e-05 -0.000178261 9.57323e-06 -0.00017802 -7.70868e-06 -0.000177044 -2.47781e-05 -0.000175227 -4.29855e-05 -0.000172676 -6.29973e-05 -0.000169266 -8.29482e-05 -0.00016493 -0.000103172 -0.000159511 -0.000127059 -0.000153163 -0.000148614 -0.000145668 -0.000174796 -0.000137147 -0.00019845 -0.000127648 -0.000220166 -0.000116916 -0.000248205 -0.00010498 -0.000273554 -9.20358e-05 -0.000295951 -7.78398e-05 -0.00032438 -6.23097e-05 -0.000347502 -4.54076e-05 -0.000375244 -2.76306e-05 -0.000397049 -8.99549e-06 -0.000412366 1.0723e-05 -0.000430495 3.11955e-05 -0.00044579 5.21436e-05 -0.000452037 7.35844e-05 -0.000459349 9.53028e-05 -0.000461038 0.000116646 -0.000450785 0.000137558 -0.000439095 0.000157614 -0.000419026 0.000176528 -0.000393988 0.000194046 -0.000363108 0.000209644 -0.000322404 0.000223179 -0.000278558 0.000234392 -0.000229553 0.000242837 -0.000174056 0.000248593 -0.000117264 0.000251399 -5.83183e-05 0.000251107 4.20254e-06 0.000247943 6.51283e-05 0.000241788 0.000127287 0.000232868 0.00018331 0.000221404 0.000236636 0.000207588 0.000288081 0.000191512 0.000331585 0.000173573 0.000371695 0.000154339 0.00040015 0.000134049 0.000426587 0.000112809 0.000448096 9.11698e-05 0.000457309 6.92022e-05 0.000465983 0.00046647 -0.000162528 8.52099e-05 -0.000165245 6.91157e-05 -0.00016743 5.47639e-05 -0.000169094 4.06744e-05 -0.000170225 2.6451e-05 -0.000170799 1.23104e-05 -0.000170743 -3.00709e-06 -0.000170254 -1.76233e-05 -0.000168952 -3.19543e-05 -0.000167138 -4.84726e-05 -0.000164786 -6.38822e-05 -0.000161479 -8.10367e-05 -0.000157764 -9.99725e-05 -0.00015294 -0.000119359 -0.000147243 -0.000139936 -0.000140984 -0.000159197 -0.000133778 -0.000177821 -0.000125774 -0.000200603 -0.000116619 -0.000224127 -0.000106414 -0.000245059 -9.54947e-05 -0.000271116 -8.28076e-05 -0.000298747 -6.92247e-05 -0.000320469 -5.45852e-05 -0.000346748 -3.88609e-05 -0.000369074 -2.22277e-05 -0.000391673 -4.22889e-06 -0.000414427 1.47572e-05 -0.000429441 3.45944e-05 -0.000446887 5.51362e-05 -0.0004598 7.59394e-05 -0.000462979 9.70028e-05 -0.000464978 0.000118036 -0.000460152 0.000138661 -0.000449762 0.000158603 -0.000433109 0.000177356 -0.000406152 0.000194776 -0.000375683 0.00021057 -0.000339149 0.000224355 -0.000295409 0.000235946 -0.000248329 0.000245046 -0.00019524 0.000251522 -0.000139293 0.000255247 -8.09958e-05 0.000256084 -1.98549e-05 0.000253988 4.10172e-05 0.00024934 9.87539e-05 0.00024198 0.000157897 0.000232016 0.000211185 0.000219872 0.000259006 0.000205569 0.000305142 0.000189541 0.000343764 0.000172021 0.000376128 0.000153475 0.000402202 0.000134154 0.000422058 0.000114361 0.000436308 9.44369e-05 0.000444285 7.43673e-05 0.000447046 5.45158e-05 0.000444797 3.4968e-05 0.000437728 1.60635e-05 0.000427319 -1.94527e-06 0.000412745 -1.91606e-05 0.000396835 -3.54639e-05 0.000377343 -5.0671e-05 0.000356461 -6.49119e-05 0.000335411 -7.80616e-05 0.000311944 -9.01663e-05 0.00028865 -0.000101236 0.000266338 -0.000111162 0.000242125 -0.000120342 0.000221906 -0.000128484 0.000199747 -0.000135726 0.000178589 -0.000142151 0.000160541 -0.000147656 0.000141106 -0.000152578 0.000122567 -0.000156899 0.000107269 -0.000160575 8.90604e-05 -0.000163836 7.47887e-05 -0.000166447 5.94908e-05 -0.000168459 4.29357e-05 -0.00016984 2.76747e-05 -0.00017052 1.1837e-05 -0.000170578 -5.13653e-06 -0.000169846 -2.25471e-05 -0.000168539 -3.84522e-05 -0.00016649 -5.71048e-05 -0.000163673 -7.37609e-05 -0.000160328 -9.23696e-05 -0.000156073 -0.000111694 -0.000151233 -0.000130011 -0.000145493 -0.00015022 -0.000139473 -0.000168413 -0.000132712 -0.000186603 -0.000125338 -0.000204119 -0.00011708 -0.0002219 -0.000107961 -0.000238872 -9.80475e-05 -0.000256645 -8.7232e-05 -0.000273608 -7.53993e-05 -0.00029201 -6.25888e-05 -0.00030992 -4.89364e-05 -0.000327617 -3.42039e-05 -0.000345719 -1.86106e-05 -0.000362641 -2.11658e-06 -0.000378661 1.51376e-05 -0.000392102 3.29352e-05 -0.000403224 5.12254e-05 -0.000410884 6.97632e-05 -0.000414589 8.84085e-05 -0.000414665 0.000107001 -0.000409896 0.000125207 -0.00040065 0.000142854 -0.000386164 0.000159736 -0.000366947 0.000175574 -0.000342191 0.000190127 -0.000312826 0.000203171 -0.000278425 0.000214503 -0.000239345 0.00022387 -0.000195337 0.000231068 -0.000147655 0.000235886 -9.56267e-05 0.000238129 -4.11383e-05 0.000237697 1.57224e-05 0.000234421 7.31092e-05 0.00022845 0.00013021 0.000219784 0.00018561 0.000208662 0.000237726 0.00019518 0.000286181 0.000179729 0.000329029 0.000162574 0.000366254 0.000144046 0.000397397 0.000124414 0.000422381 0.000103974 0.000440955 8.31498e-05 0.000453069 6.20753e-05 0.00045989 4.11511e-05 0.000460203 2.05432e-05 0.000455489 5.71386e-07 0.000445896 -1.86686e-05 0.000432068 -3.70104e-05 0.000415016 -5.43926e-05 0.000395268 -7.06322e-05 0.000372872 -8.58021e-05 0.000348754 -9.94227e-05 0.000321713 -0.000112011 0.000296079 -0.000123341 0.000268399 -0.000133271 0.000241915 -0.000142227 0.000216571 -0.000149927 0.000190158 -0.000156585 0.00016696 -0.000162254 0.000143867 -0.00016698 0.000122439 -0.000170953 0.000103344 -0.000174264 8.50283e-05 -0.00017671 6.78125e-05 -0.000178746 5.31257e-05 -0.000180086 3.78198e-05 -0.000180882 2.45072e-05 -0.000181244 1.12849e-05 -0.000181089 -5.60955e-07 -0.000180515 -1.19593e-05 -0.00017953 -2.28264e-05 -0.000178039 -3.48989e-05 -0.000176331 -4.55155e-05 -0.000174119 -5.81823e-05 -0.000171351 -7.08316e-05 -0.00016801 -8.49943e-05 -0.000164066 -9.90995e-05 -0.00015963 -0.000113579 -0.000154256 -0.000130048 -0.000148265 -0.000146153 -0.000141517 -0.000163555 -0.000134265 -0.000180088 -0.000125992 -0.000199637 -0.000117062 -0.000217906 -0.00010723 -0.000238049 -9.63433e-05 -0.000258845 -8.46103e-05 -0.000279772 -7.18706e-05 -0.000301154 -5.81385e-05 -0.00032208 -4.34718e-05 -0.000342215 -2.78748e-05 -0.000362487 -1.12129e-05 -0.000381586 6.28058e-06 -0.00039738 2.46044e-05 -0.000411803 4.3634e-05 -0.000422015 6.30481e-05 -0.000428329 8.26603e-05 -0.000429823 0.000102238 -0.000425616 0.000121553 -0.00041544 0.000140202 -0.000397682 0.000157996 -0.000374163 0.000174402 -0.00034281 0.000189117 -0.000305437 0.000201974 -0.000261372 0.000212369 -0.000209594 0.000220051 -0.000152346 0.00022462 -8.90459e-05 0.00022587 -2.28932e-05 0.000223695 4.4275e-05 0.000218285 0.000110265 0.000209796 0.000172904 0.000198717 0.000230395 0.000185235 0.000284427 0.000169573 0.000331781 0.000151954 0.000374647 0.000132656 0.000410429 0.000112116 0.00043822 9.04765e-05 0.000458592 6.84157e-05 0.000469616 4.64419e-05 0.000473369 2.49149e-05 0.000469172 4.20165e-06 0.000458145 -1.54968e-05 0.000442916 -3.39172e-05 0.000423909 -5.11403e-05 0.00040362 -6.73432e-05 0.000383039 -8.27326e-05 0.000362918 -9.76347e-05 0.000341845 -0.000111308 0.000316802 -0.000123904 0.000291576 -0.000135052 0.000263575 -0.00014468 0.000236342 -0.000153093 0.00020969 -0.000160074 0.000184655 -0.000166316 0.000163821 -0.000171706 0.000143455 -0.000176607 0.000126498 -0.000180727 0.000108594 -0.000184417 9.45866e-05 -0.000187677 7.9562e-05 -0.000190542 6.53692e-05 -0.000192475 4.83066e-05 -0.000193701 3.43835e-05 -0.000194801 2.08558e-05 -0.000194585 2.64789e-06 -0.000193864 -1.04907e-05 -0.00019226 -2.5326e-05 -0.00019006 -3.65061e-05 -0.000188204 -4.19794e-05 -0.00018661 -5.00945e-05 -0.00018477 -6.06738e-05 -0.000182453 -7.4039e-05 -0.000179113 -9.26841e-05 -0.000174684 -0.00011352 -0.000169033 -0.000135589 -0.000162507 -0.000157833 -0.00015499 -0.000180576 -0.000145957 -0.000205441 -0.000135989 -0.000227718 -0.000124851 -0.000249615 -0.000112832 -0.000269476 -0.000100151 -0.000288974 -8.64468e-05 -0.00031005 -7.17988e-05 -0.000329865 -5.61627e-05 -0.000349707 -3.97603e-05 -0.000366193 -2.27118e-05 -0.000380574 -5.23584e-06 -0.00039166 1.27906e-05 -0.000401462 3.12011e-05 -0.000409243 5.01191e-05 -0.000414963 6.95378e-05 -0.000417981 8.92695e-05 -0.000415837 0.000108974 -0.000407896 0.000127972 -0.000389354 0.000145741 -0.000362452 0.000161721 -0.000326336 0.000175519 -0.000282291 0.000186772 -0.000231428 0.000195303 -0.000175561 0.000200535 -0.000115922 0.00020285 -5.53373e-05 0.0002024 4.28112e-06 0.000199101 5.96852e-05 0.000193541 0.000114418 0.000185378 0.000166889 0.000174821 0.000215032 0.000162138 0.000258165 0.000147608 0.000292504 0.000132044 0.000316737 0.000116802 0.000332501 0.000102323 0.000338439 8.85084e-05 0.00034926 7.31154e-05 0.000369985 5.59402e-05 0.000392535 3.74371e-05 0.000409475 1.84358e-05 0.000416706 -3.39985e-07 0.000415942 -1.85398e-05 0.000407639 -3.5764e-05 0.000392483 -5.19339e-05 0.000375301 -6.69975e-05 0.000353722 -8.0975e-05 0.000331439 -9.39102e-05 0.000309519 -0.00010581 0.000285977 -0.000116737 0.000263192 -0.000126735 0.000241273 -0.000135797 0.000218442 -0.000143964 0.000196366 -0.000151226 0.000174931 -0.000157613 0.000153328 -0.000163165 0.000133046 -0.000167874 0.000112154 -0.000171758 9.17374e-05 -0.000174848 7.20206e-05 -0.000177101 5.1515e-05 -0.000178499 3.07654e-05 -0.000179072 1.01469e-05 -0.000178853 -7.92833e-06 -0.000177922 -2.57093e-05 -0.00017607 -4.48368e-05 -0.000173458 -6.56092e-05 -0.00017015 -8.62564e-05 -0.000165849 -0.000107474 -0.000160455 -0.000132452 -0.000154115 -0.000154954 -0.000146647 -0.000182265 -0.00013814 -0.000206956 -0.000128663 -0.000229644 -0.000117941 -0.000258927 -0.000106015 -0.000285479 -9.30404e-05 -0.000308926 -7.87263e-05 -0.000338694 -6.33032e-05 -0.000362926 -4.62755e-05 -0.000392272 -2.83318e-05 -0.000414992 -9.67288e-06 -0.000431025 1.01462e-05 -0.000450314 3.08209e-05 -0.000466465 5.19425e-05 -0.000473159 7.35742e-05 -0.000480981 9.55223e-05 -0.000482986 0.000117111 -0.000472374 0.000138252 -0.000460236 0.000158557 -0.000439331 0.000177761 -0.000413191 0.000195545 -0.000380893 0.000211373 -0.000338232 0.000225114 -0.000292298 0.000236507 -0.000240946 0.000245145 -0.000182694 0.000250926 -0.000123044 0.000253739 -6.11315e-05 0.000253481 4.46027e-06 0.000250315 6.82947e-05 0.000244134 0.000133467 0.000235073 0.000192371 0.000223387 0.000248322 0.000209313 0.000302155 0.000193002 0.000347895 0.000174803 0.000389895 0.00015531 0.000419642 0.000134747 0.00044715 0.000113285 0.000469558 9.13963e-05 0.000479198 6.91738e-05 0.000488206 0.000488545 -0.000163119 8.84823e-05 -0.000165816 7.18123e-05 -0.000167992 5.69406e-05 -0.000169653 4.23346e-05 -0.000170789 2.75876e-05 -0.000171369 1.28899e-05 -0.000171324 -3.05181e-06 -0.000170764 -1.81837e-05 -0.000169468 -3.32495e-05 -0.000167692 -5.02495e-05 -0.000165332 -6.6242e-05 -0.000162145 -8.42237e-05 -0.000158515 -0.000103603 -0.000153707 -0.000124167 -0.000148009 -0.000145634 -0.000141777 -0.000165429 -0.000134555 -0.000185043 -0.000126588 -0.00020857 -0.000117612 -0.000233104 -0.000107373 -0.000255298 -9.64701e-05 -0.000282019 -8.38373e-05 -0.00031138 -7.01826e-05 -0.000334124 -5.5532e-05 -0.000361399 -3.95849e-05 -0.000385021 -2.29341e-05 -0.000408324 -5.02888e-06 -0.000432332 1.408e-05 -0.00044855 3.4119e-05 -0.000466926 5.49157e-05 -0.000480596 7.5897e-05 -0.00048396 9.71619e-05 -0.000486243 0.000118393 -0.000481383 0.000139286 -0.000470655 0.00015953 -0.000453353 0.000178541 -0.000425163 0.000196206 -0.000393348 0.000212233 -0.000355176 0.000226221 -0.000309397 0.000237985 -0.000260094 0.000247215 -0.00020447 0.000253781 -0.000145858 0.00025756 -8.47751e-05 0.000258337 -2.06314e-05 0.000256289 4.30648e-05 0.000251655 0.000103388 0.000244064 0.000165489 0.000233934 0.000221315 0.000221598 0.000271342 0.000207052 0.000319688 0.000190703 0.000360113 0.000173031 0.0003938 0.00015427 0.000420963 0.000134769 0.000441559 0.000114842 0.000456236 9.4534e-05 0.000464593 7.42732e-05 0.000467307 5.40932e-05 0.000464977 3.44654e-05 0.000457356 1.54878e-05 0.000446296 -2.60313e-06 0.000430836 -1.99243e-05 0.000414156 -3.62677e-05 0.000393686 -5.15656e-05 0.000371758 -6.58676e-05 0.000349713 -7.90039e-05 0.00032508 -9.11079e-05 0.000300754 -0.000102117 0.000277348 -0.00011218 0.000252188 -0.000121249 0.000230975 -0.000129353 0.000207851 -0.00013653 0.000185766 -0.000142817 0.000166828 -0.000148406 0.000146695 -0.000153348 0.00012751 -0.000157752 0.000111673 -0.000161468 9.27765e-05 -0.000164645 7.79657e-05 -0.000167246 6.20916e-05 -0.000169266 4.49557e-05 -0.000170659 2.90682e-05 -0.000171364 1.25416e-05 -0.000171446 -5.05447e-06 -0.000170716 -2.32767e-05 -0.000169413 -3.97551e-05 -0.000167479 -5.90388e-05 -0.000164756 -7.6484e-05 -0.000161461 -9.56645e-05 -0.000157253 -0.000115902 -0.000152386 -0.000134877 -0.00014706 -0.000155547 -0.000141118 -0.000174355 -0.000134534 -0.000193186 -0.000127223 -0.00021143 -0.000119218 -0.000229905 -0.000110318 -0.000247772 -0.000100367 -0.000266596 -8.95628e-05 -0.000284412 -7.77152e-05 -0.000303857 -6.48484e-05 -0.000322786 -5.10929e-05 -0.000341373 -3.63322e-05 -0.00036048 -2.06731e-05 -0.0003783 -4.04909e-06 -0.000395286 1.31543e-05 -0.000409305 3.10842e-05 -0.000421154 4.95544e-05 -0.000429354 6.82513e-05 -0.000433286 8.71123e-05 -0.000433526 0.000105845 -0.000428628 0.000124309 -0.000419115 0.000142158 -0.000404013 0.000159244 -0.000384034 0.000175268 -0.000358214 0.000190015 -0.000327573 0.000203259 -0.000291669 0.000214808 -0.000250895 0.000224325 -0.000204854 0.000231693 -0.000155024 0.000236631 -0.000100564 0.000238928 -4.34357e-05 0.000238496 1.61542e-05 0.000235198 7.64071e-05 0.000229119 0.000136289 0.000220266 0.000194462 0.000208958 0.000249034 0.000195255 0.000299884 0.000179599 0.000344686 0.000162145 0.000383708 0.000143299 0.000416243 0.000123423 0.000442257 0.000102817 0.00046156 8.17458e-05 0.00047414 6.04799e-05 0.000481156 3.93762e-05 0.000481307 1.86381e-05 0.000476227 -1.53333e-06 0.000466068 -2.08783e-05 0.000451413 -3.93367e-05 0.000433474 -5.68363e-05 0.000412768 -7.31462e-05 0.000389182 -8.84131e-05 0.000364021 -0.000102224 0.000335524 -0.000114725 0.00030858 -0.000125997 0.000279672 -0.000136014 0.000251932 -0.000144972 0.000225529 -0.0001526 0.000197786 -0.000159231 0.000173591 -0.000164883 0.000149518 -0.000169576 0.000127133 -0.000173481 0.000107249 -0.00017664 8.81872e-05 -0.000179096 7.02686e-05 -0.000181122 5.51517e-05 -0.000182486 3.91837e-05 -0.000183322 2.53432e-05 -0.000183561 1.15238e-05 -0.000183397 -7.25165e-07 -0.000182722 -1.26347e-05 -0.000181812 -2.37361e-05 -0.000180452 -3.62588e-05 -0.000178628 -4.734e-05 -0.000176444 -6.03664e-05 -0.000173723 -7.35525e-05 -0.00017042 -8.8297e-05 -0.000166467 -0.000103052 -0.000162103 -0.000117943 -0.000156801 -0.00013535 -0.000150988 -0.000151966 -0.000144146 -0.000170397 -0.000136935 -0.000187299 -0.000128667 -0.000207905 -0.000119641 -0.000226932 -0.000109934 -0.000247756 -9.90313e-05 -0.000269748 -8.73557e-05 -0.000291447 -7.45869e-05 -0.000313923 -6.08195e-05 -0.000335847 -4.60844e-05 -0.00035695 -3.04863e-05 -0.000378085 -1.36811e-05 -0.000398391 3.93851e-06 -0.000415 2.2456e-05 -0.000430321 4.17239e-05 -0.000441283 6.13611e-05 -0.000447967 8.11848e-05 -0.000449647 0.000101041 -0.000445473 0.000120658 -0.000435057 0.00013963 -0.000416655 0.00015772 -0.000392253 0.000174408 -0.000359498 0.000189354 -0.000320383 0.00020247 -0.000274488 0.000213086 -0.00022021 0.000220976 -0.000160236 0.000225809 -9.38784e-05 0.000227026 -2.41106e-05 0.000224832 4.64694e-05 0.000219233 0.000115864 0.000210497 0.00018164 0.000199226 0.000241666 0.000185476 0.000298177 0.000169624 0.000347633 0.000151889 0.000392382 0.000132206 0.000430112 0.000111241 0.000459184 8.92133e-05 0.00048062 6.68008e-05 0.000492028 4.44569e-05 0.000495713 2.25802e-05 0.000491049 1.72462e-06 0.000479 -1.80496e-05 0.00046269 -3.65401e-05 0.0004424 -5.37292e-05 0.000420809 -6.98028e-05 0.000399112 -8.52204e-05 0.000378335 -0.000100075 0.000356699 -0.000113698 0.000330426 -0.000126169 0.000304047 -0.00013734 0.000274746 -0.000146779 0.000245781 -0.000155036 0.000217948 -0.00016179 0.000191409 -0.000167836 0.000169867 -0.000173157 0.000148777 -0.000177932 0.000131272 -0.000182039 0.000112701 -0.000185743 9.82906e-05 -0.000188983 8.2802e-05 -0.000191786 6.81721e-05 -0.000193702 5.02223e-05 -0.000194949 3.56307e-05 -0.000196047 2.19537e-05 -0.000195854 2.4551e-06 -0.000195057 -1.12871e-05 -0.000193435 -2.69489e-05 -0.000191264 -3.86763e-05 -0.000189317 -4.39268e-05 -0.000187816 -5.15954e-05 -0.000186154 -6.2336e-05 -0.000184094 -7.60982e-05 -0.000180966 -9.58122e-05 -0.000176654 -0.000117832 -0.000171036 -0.000141208 -0.000164646 -0.000164223 -0.000157236 -0.000187987 -0.000148177 -0.0002145 -0.000138239 -0.000237656 -0.000127078 -0.000260775 -0.000115011 -0.000281544 -0.000102311 -0.000301675 -8.84735e-05 -0.000323888 -7.36997e-05 -0.000344638 -5.78931e-05 -0.000365514 -4.12652e-05 -0.000382821 -2.40658e-05 -0.000397774 -6.5069e-06 -0.000409219 1.15994e-05 -0.000419568 3.02067e-05 -0.000427851 4.93988e-05 -0.000434155 6.90689e-05 -0.000437651 8.91558e-05 -0.000435924 0.000109206 -0.000427946 0.000128571 -0.000408719 0.000146744 -0.000380625 0.000163065 -0.000342657 0.000177223 -0.000296448 0.000188868 -0.000243073 0.000197369 -0.000184062 0.000202707 -0.00012126 0.000204943 -5.75738e-05 0.000204387 4.83756e-06 0.000201109 6.2963e-05 0.000195457 0.00012007 0.000187165 0.000175181 0.000176393 0.000225804 0.000163379 0.000271179 0.000148662 0.00030722 0.00013286 0.000332539 0.00011741 0.000347952 0.000102922 0.000352927 8.90918e-05 0.000363091 7.35895e-05 0.000385487 5.62744e-05 0.00040985 3.75136e-05 0.000428235 1.82382e-05 0.000435981 -7.94945e-07 0.000434975 -1.91421e-05 0.000425986 -3.64724e-05 0.000409813 -5.27013e-05 0.00039153 -6.7799e-05 0.000368819 -8.17909e-05 0.000345431 -9.47212e-05 0.000322449 -0.000106611 0.000297868 -0.000117528 0.000274109 -0.000127518 0.000251263 -0.000136573 0.000227497 -0.000144745 0.000204537 -0.000152005 0.00018219 -0.000158395 0.000159718 -0.000163956 0.000138607 -0.000168665 0.000116863 -0.000172558 9.56309e-05 -0.000175665 7.51273e-05 -0.000177931 5.37812e-05 -0.000179328 3.2162e-05 -0.000179889 1.07081e-05 -0.000179676 -8.14174e-06 -0.000178811 -2.65734e-05 -0.000177081 -4.65672e-05 -0.000174364 -6.83267e-05 -0.00017101 -8.96096e-05 -0.000166787 -0.000111697 -0.000161435 -0.000137804 -0.000155102 -0.000161288 -0.000147665 -0.000189701 -0.000139186 -0.000215436 -0.000129701 -0.000239129 -0.000119072 -0.000269556 -0.000107105 -0.000297447 -9.40819e-05 -0.000321949 -7.97606e-05 -0.000353015 -6.43083e-05 -0.000378378 -4.72121e-05 -0.000409368 -2.91475e-05 -0.000433057 -1.0325e-05 -0.000449847 9.53637e-06 -0.000470175 3.03722e-05 -0.000487301 5.17798e-05 -0.000494567 7.35822e-05 -0.000502783 9.57624e-05 -0.000505167 0.000117618 -0.000494229 0.000139014 -0.000481632 0.000159581 -0.000459897 0.000179013 -0.000432623 0.000197048 -0.000398929 0.00021316 -0.000354344 0.000227145 -0.000306283 0.000238723 -0.000252525 0.000247491 -0.000191461 0.000253379 -0.000128933 0.000256203 -6.39554e-05 0.000256003 4.66065e-06 0.000252883 7.14146e-05 0.000246478 0.000139871 0.000237258 0.000201592 0.000225387 0.000260193 0.000211123 0.000316419 0.00019454 0.000364478 0.000176076 0.000408359 0.000156363 0.000439355 0.000135476 0.000468037 0.000113785 0.00049125 9.16304e-05 0.000501352 6.91365e-05 0.0005107 0.000510851 -0.000163735 9.17193e-05 -0.000166409 7.44862e-05 -0.000168581 5.9112e-05 -0.000170228 4.39821e-05 -0.000171274 2.86331e-05 -0.000171869 1.3485e-05 -0.000171899 -3.02161e-06 -0.000171357 -1.87257e-05 -0.000170052 -3.45541e-05 -0.000168475 -5.18272e-05 -0.000166013 -6.87036e-05 -0.000162816 -8.74207e-05 -0.000159262 -0.000107157 -0.000154494 -0.000128935 -0.000148819 -0.000151309 -0.000142676 -0.000171572 -0.000135379 -0.00019234 -0.000127506 -0.000216443 -0.000118652 -0.000241958 -0.000108341 -0.000265608 -9.74987e-05 -0.000292861 -8.49132e-05 -0.000323965 -7.11764e-05 -0.000347861 -5.65379e-05 -0.000376037 -4.04573e-05 -0.000401101 -2.38299e-05 -0.000424952 -5.85906e-06 -0.000450303 1.33998e-05 -0.000467809 3.36207e-05 -0.000487147 5.46232e-05 -0.000501599 7.59136e-05 -0.000505251 9.73589e-05 -0.000507688 0.000118822 -0.000502846 0.000139952 -0.000491785 0.000160425 -0.000473826 0.000179708 -0.000444446 0.000197652 -0.000411291 0.000213943 -0.000371467 0.000228177 -0.00032363 0.000240126 -0.000272043 0.000249492 -0.000213836 0.000256153 -0.00015252 0.00025996 -8.85821e-05 0.000260773 -2.14443e-05 0.00025878 4.50582e-05 0.000253967 0.000108201 0.000246249 0.000173206 0.000235942 0.000231622 0.000223378 0.000283907 0.00020854 0.000334526 0.00019202 0.000376632 0.000174132 0.000411689 0.000155154 0.00043994 0.000135488 0.000461225 0.000115163 0.000476561 9.46323e-05 0.000485123 7.40017e-05 0.000487937 5.37523e-05 0.000485226 3.40099e-05 0.000477098 1.49262e-05 0.00046538 -3.30238e-06 0.000449064 -2.07323e-05 0.000431586 -3.71349e-05 0.000410089 -5.25233e-05 0.000387147 -6.68301e-05 0.000364019 -7.99996e-05 0.00033825 -9.2091e-05 0.000312845 -0.000103128 0.000288384 -0.000113162 0.000262222 -0.000122186 0.000239998 -0.000130234 0.0002159 -0.000137271 0.000192803 -0.000143648 0.000173205 -0.000149333 0.00015238 -0.000154274 0.000132452 -0.000158568 0.000115966 -0.000162261 9.64696e-05 -0.000165428 8.11324e-05 -0.000168035 6.46984e-05 -0.000170073 4.69937e-05 -0.0001715 3.04951e-05 -0.000172218 1.32597e-05 -0.000172291 -4.98107e-06 -0.000171547 -2.40216e-05 -0.000170332 -4.09693e-05 -0.000168404 -6.09675e-05 -0.000165744 -7.91434e-05 -0.000162489 -9.89199e-05 -0.000158372 -0.000120019 -0.000153918 -0.000139332 -0.000148609 -0.000160856 -0.00014278 -0.000180184 -0.000136459 -0.000199507 -0.000129546 -0.000218343 -0.000121621 -0.00023783 -0.000112771 -0.000256622 -0.00010302 -0.000276348 -9.2296e-05 -0.000295136 -8.04931e-05 -0.00031566 -6.76146e-05 -0.000335665 -5.39364e-05 -0.000355051 -3.90751e-05 -0.000375341 -2.33205e-05 -0.000394054 -6.60792e-06 -0.000411998 1.08532e-05 -0.000426766 2.89632e-05 -0.000439264 4.76142e-05 -0.000448005 6.65123e-05 -0.000452184 8.55668e-05 -0.000452581 0.00010455 -0.000447612 0.000123237 -0.000437802 0.000141321 -0.000422097 0.000158681 -0.000401394 0.000174887 -0.000374421 0.000189853 -0.000342538 0.000203317 -0.000305133 0.000215053 -0.000262631 0.000224756 -0.000214557 0.000232336 -0.000162604 0.000237339 -0.000105567 0.00023972 -4.58164e-05 0.000239309 1.65649e-05 0.000236017 7.9699e-05 0.000229833 0.000142473 0.000220877 0.000203418 0.000209416 0.000260495 0.000195464 0.000313837 0.00017951 0.00036064 0.00016188 0.000401337 0.000142906 0.000435216 0.000122718 0.000462445 0.000101833 0.000482445 8.05297e-05 0.000495444 5.89665e-05 0.000502719 3.75915e-05 0.000502682 1.65482e-05 0.00049727 -3.86071e-06 0.000486477 -2.34768e-05 0.000471029 -4.20976e-05 0.000452095 -5.97097e-05 0.00043038 -7.61578e-05 0.00040563 -9.15329e-05 0.000379396 -0.000105289 0.00034928 -0.000117816 0.000321107 -0.000129178 0.000291034 -0.00013897 0.000261724 -0.00014785 0.000234409 -0.000155418 0.000205353 -0.000161903 0.000180076 -0.000167399 0.000155014 -0.000171933 0.000131667 -0.000175744 0.00011106 -0.000178917 9.13603e-05 -0.000181185 7.25373e-05 -0.000183099 5.70651e-05 -0.000184393 4.04778e-05 -0.000185082 2.60322e-05 -0.000185385 1.18267e-05 -0.000185176 -9.33971e-07 -0.00018452 -1.32902e-05 -0.000183528 -2.47289e-05 -0.000182152 -3.76343e-05 -0.000180349 -4.91427e-05 -0.000178331 -6.23852e-05 -0.000175633 -7.625e-05 -0.00017233 -9.16001e-05 -0.000168539 -0.000106844 -0.000164177 -0.000122305 -0.00015891 -0.000140617 -0.000153062 -0.000157814 -0.000146359 -0.0001771 -0.000139262 -0.000194396 -0.000131089 -0.000216078 -0.000122191 -0.000235829 -0.00011253 -0.000257417 -0.000101645 -0.000280633 -9.00079e-05 -0.000303084 -7.72246e-05 -0.000326707 -6.34393e-05 -0.000349633 -4.87222e-05 -0.000371667 -3.31017e-05 -0.000393706 -1.62739e-05 -0.000415219 1.46278e-06 -0.000432737 2.01347e-05 -0.000448993 3.96429e-05 -0.000460791 5.94472e-05 -0.000467771 7.94934e-05 -0.000469693 9.95764e-05 -0.000465556 0.000119493 -0.000454973 0.000138861 -0.000436022 0.000157375 -0.000410768 0.000174378 -0.000376501 0.000189718 -0.000335723 0.000202939 -0.000287709 0.000213796 -0.000231068 0.000221991 -0.000168431 0.000226938 -9.88256e-05 0.000228262 -2.54344e-05 0.000226025 4.87065e-05 0.000220288 0.0001216 0.000211382 0.000190546 0.000199784 0.000253264 0.000185663 0.000312297 0.000169524 0.000363773 0.000151402 0.000410504 0.000131413 0.0004501 0.000110166 0.000480432 8.7794e-05 0.000502992 6.49965e-05 0.000514826 4.24432e-05 0.000518266 2.0522e-05 0.00051297 -5.63677e-07 0.000500086 -2.03483e-05 0.000482475 -3.87649e-05 0.000460816 -5.58124e-05 0.000437857 -7.18556e-05 0.000415155 -8.70359e-05 0.000393515 -0.000101846 0.000371509 -0.000115374 0.000343954 -0.000127842 0.000316515 -0.000138808 0.000285713 -0.000147964 0.000254937 -0.000156108 0.000226092 -0.000162683 0.000197984 -0.000168507 0.000175691 -0.000173687 0.000153957 -0.000178337 0.000135922 -0.000182395 0.000116759 -0.000186028 0.000101924 -0.000189242 8.60159e-05 -0.000191993 7.09227e-05 -0.000193982 5.22116e-05 -0.000195209 3.68579e-05 -0.000196396 2.31409e-05 -0.000196207 2.26557e-06 -0.000195431 -1.20627e-05 -0.000193674 -2.87059e-05 -0.000191449 -4.09018e-05 -0.000189442 -4.59331e-05 -0.000188011 -5.30271e-05 -0.000186635 -6.37122e-05 -0.000184721 -7.80121e-05 -0.000181812 -9.87209e-05 -0.000177631 -0.000122013 -0.00017209 -0.000146749 -0.000165864 -0.000170448 -0.00015867 -0.00019518 -0.000149774 -0.000223396 -0.000139927 -0.000247503 -0.000128786 -0.000271916 -0.00011678 -0.00029355 -0.000104191 -0.000314263 -9.04082e-05 -0.000337671 -7.55826e-05 -0.000359464 -5.96729e-05 -0.000381424 -4.28444e-05 -0.000399649 -2.55019e-05 -0.000415116 -7.86967e-06 -0.000426852 1.03703e-05 -0.000437809 2.91483e-05 -0.000446629 4.85475e-05 -0.000453554 6.85326e-05 -0.000457636 8.89541e-05 -0.000456345 0.000109424 -0.000448416 0.000129242 -0.000428537 0.000147839 -0.000399221 0.000164567 -0.000359386 0.000178989 -0.00031087 0.000190851 -0.000254935 0.000199511 -0.000192722 0.000204929 -0.000126678 0.000207146 -5.97908e-05 0.000206412 5.57153e-06 0.000203276 6.60986e-05 0.000197497 0.000125849 0.000189111 0.000183567 0.000178147 0.000236767 0.000164862 0.000284465 0.00014994 0.000322141 0.000133879 0.0003486 0.00011826 0.00036357 0.000103764 0.000367423 8.99042e-05 0.00037695 7.42458e-05 0.000401145 5.66749e-05 0.000427421 3.75971e-05 0.000447313 1.80163e-05 0.000455562 -1.28408e-06 0.000454275 -1.97825e-05 0.000444484 -3.72205e-05 0.000427251 -5.35097e-05 0.000407819 -6.86401e-05 0.00038395 -8.26438e-05 0.000359435 -9.55659e-05 0.000335371 -0.000107444 0.000309746 -0.000118353 0.000285017 -0.000128339 0.00026125 -0.000137388 0.000236546 -0.000145556 0.000212705 -0.000152817 0.000189451 -0.00015921 0.000166111 -0.000164779 0.000144176 -0.000169503 0.000121586 -0.000173394 9.95223e-05 -0.000176516 7.82491e-05 -0.0001788 5.60646e-05 -0.000180212 3.35744e-05 -0.000180783 1.12792e-05 -0.000180559 -8.36613e-06 -0.00017969 -2.74417e-05 -0.000178058 -4.81993e-05 -0.000175327 -7.10585e-05 -0.000171874 -9.30625e-05 -0.000167716 -0.000115854 -0.00016244 -0.000143081 -0.000156121 -0.000167607 -0.000148726 -0.000197096 -0.00014028 -0.000223881 -0.000130791 -0.000248618 -0.000120126 -0.000280221 -0.000108248 -0.000309325 -9.51807e-05 -0.000335017 -8.08574e-05 -0.000367338 -6.52912e-05 -0.000393944 -4.83281e-05 -0.000426331 -3.00349e-05 -0.00045135 -1.08675e-05 -0.000469015 8.89014e-06 -0.000489933 2.98926e-05 -0.000508303 5.15292e-05 -0.000516203 7.36218e-05 -0.000524876 9.60478e-05 -0.000527593 0.000118176 -0.000516358 0.000139833 -0.000503289 0.000160682 -0.000480746 0.000180376 -0.000452317 0.000198669 -0.000417222 0.000214995 -0.00037067 0.000229205 -0.000320493 0.00024103 -0.00026435 0.000249953 -0.000200385 0.000255862 -0.000134842 0.000258827 -6.69204e-05 0.000258695 4.79276e-06 0.00025544 7.46692e-05 0.000248933 0.000146378 0.000239552 0.000210973 0.000227481 0.000272264 0.000212982 0.000330918 0.000196135 0.000381324 0.000177451 0.000427043 0.000157446 0.00045936 0.000136232 0.00048925 0.000114307 0.000513175 9.18745e-05 0.000523784 6.90884e-05 0.000533486 0.000533397 -0.000164373 9.49189e-05 -0.000167025 7.71382e-05 -0.000169162 6.12494e-05 -0.000170834 4.56538e-05 -0.000171852 2.96507e-05 -0.000172428 1.40609e-05 -0.00017245 -2.99989e-06 -0.000172032 -1.91431e-05 -0.000170691 -3.58951e-05 -0.000169198 -5.33205e-05 -0.000166847 -7.10543e-05 -0.0001635 -9.0768e-05 -0.000159987 -0.00011067 -0.000155324 -0.000133597 -0.000149682 -0.000156951 -0.00014363 -0.000177625 -0.00013629 -0.00019968 -0.000128516 -0.000224216 -0.000119707 -0.000250767 -0.000109352 -0.000275963 -9.87239e-05 -0.00030349 -8.60302e-05 -0.000336659 -7.22238e-05 -0.000361667 -5.75903e-05 -0.000390671 -4.13859e-05 -0.000417306 -2.47967e-05 -0.000441541 -6.74364e-06 -0.000468356 1.27178e-05 -0.00048727 3.30266e-05 -0.000507456 5.43085e-05 -0.000522881 7.58329e-05 -0.000526775 9.76219e-05 -0.000529477 0.000119315 -0.000524539 0.000140695 -0.000513165 0.000161433 -0.000494564 0.000180975 -0.000463988 0.000199163 -0.00042948 0.000215693 -0.000387998 0.000230127 -0.000338065 0.000242268 -0.000284184 0.000251792 -0.00022336 0.000258585 -0.000159313 0.000262444 -9.24411e-05 0.000263357 -2.23574e-05 0.000261309 4.71068e-05 0.000256385 0.000113124 0.000248444 0.000181148 0.000237944 0.000242121 0.000225183 0.000296667 0.000210181 0.000349528 0.000193449 0.000393364 0.000175389 0.000429749 0.000156141 0.000459188 0.00013607 0.000481295 0.000115485 0.000497146 9.457e-05 0.000506038 7.38566e-05 0.00050865 5.34574e-05 0.000505625 3.35838e-05 0.000496972 1.44398e-05 0.000484524 -4.03828e-06 0.000467542 -2.15937e-05 0.000449142 -3.80582e-05 0.000426553 -5.3519e-05 0.000402608 -6.77943e-05 0.000378295 -8.10242e-05 0.000351479 -9.31228e-05 0.000324944 -0.000104175 0.000299436 -0.000114164 0.000272212 -0.000123144 0.000248977 -0.000131048 0.000223804 -0.000138185 0.00019994 -0.000144659 0.000179679 -0.000150231 0.000157952 -0.000155113 0.000137334 -0.00015937 0.000120224 -0.000163055 0.000100154 -0.000166213 8.42905e-05 -0.000168828 6.73124e-05 -0.000170888 4.90542e-05 -0.00017234 3.19474e-05 -0.000173033 1.39522e-05 -0.000173156 -4.85816e-06 -0.000172627 -2.45508e-05 -0.000171498 -4.20976e-05 -0.000169574 -6.2892e-05 -0.000166944 -8.17736e-05 -0.000163875 -0.000101989 -0.000159853 -0.00012404 -0.000155402 -0.000143782 -0.000150109 -0.00016615 -0.000144481 -0.000185812 -0.000138366 -0.000205622 -0.000131577 -0.000225132 -0.000123841 -0.000245566 -0.000115248 -0.000265215 -0.000105474 -0.000286122 -9.4775e-05 -0.000305835 -8.29495e-05 -0.000327486 -6.99987e-05 -0.000348616 -5.62474e-05 -0.000368802 -4.14042e-05 -0.000390184 -2.5596e-05 -0.000409863 -8.74945e-06 -0.000428845 8.78065e-06 -0.000444296 2.70015e-05 -0.000457485 4.58319e-05 -0.000466836 6.49114e-05 -0.000471264 8.41504e-05 -0.00047182 0.000103347 -0.000466808 0.00012228 -0.000456735 0.000140559 -0.000440375 0.000158114 -0.00041895 0.000174579 -0.000390886 0.000189751 -0.00035771 0.000203433 -0.000318815 0.00021539 -0.000274588 0.000225271 -0.000224438 0.000232979 -0.000170311 0.000238196 -0.000110784 0.000240653 -4.82732e-05 0.000240305 1.69124e-05 0.000236966 8.30379e-05 0.000230774 0.000148665 0.000221673 0.000212519 0.000210029 0.00027214 0.000195884 0.000327981 0.000179687 0.000376837 0.000161807 0.000419217 0.000142378 0.000454646 0.000121924 0.0004829 0.000100623 0.000503746 7.90062e-05 0.000517061 5.71376e-05 0.000524588 3.54388e-05 0.00052438 1.41465e-05 0.000518563 -6.47759e-06 0.000507101 -2.61813e-05 0.000490733 -4.49179e-05 0.000470832 -6.25708e-05 0.000448032 -7.89494e-05 0.000422009 -9.42851e-05 0.000394732 -0.000108023 0.000363018 -0.000120267 0.000333351 -0.000131456 0.000302222 -0.000141193 0.000271461 -0.000149886 0.000243102 -0.000157234 0.000212701 -0.000163562 0.000186405 -0.000168878 0.00016033 -0.000173268 0.000136057 -0.000176889 0.000114681 -0.000179831 9.43016e-05 -0.000182101 7.48074e-05 -0.00018387 5.88341e-05 -0.000185176 4.17842e-05 -0.000185806 2.66627e-05 -0.000186003 1.20229e-05 -0.000185773 -1.16395e-06 -0.000185086 -1.39768e-05 -0.000184118 -2.56974e-05 -0.000182887 -3.88653e-05 -0.000180967 -5.10619e-05 -0.000178962 -6.43906e-05 -0.000176387 -7.88254e-05 -0.00017315 -9.48362e-05 -0.000169473 -0.000110521 -0.000165239 -0.000126539 -0.000160071 -0.000145785 -0.00015446 -0.000163425 -0.000147752 -0.000183808 -0.000140746 -0.000201402 -0.000132702 -0.000224122 -0.000123912 -0.000244619 -0.000114448 -0.000266882 -0.00010363 -0.00029145 -9.21523e-05 -0.000314562 -7.94377e-05 -0.000339421 -6.58028e-05 -0.000363267 -5.10893e-05 -0.000386381 -3.55045e-05 -0.000409291 -1.86686e-05 -0.000432055 -8.61618e-07 -0.000450544 1.79065e-05 -0.000467761 3.75803e-05 -0.000480465 5.75452e-05 -0.000487736 7.77901e-05 -0.000489938 9.81512e-05 -0.000485917 0.000118319 -0.000475142 0.000137982 -0.000455685 0.000156761 -0.000429547 0.0001741 -0.000393841 0.00018959 -0.000351212 0.000203236 -0.000301355 0.000214426 -0.000242258 0.000222825 -0.00017683 0.000227852 -0.000103852 0.00022929 -2.68731e-05 0.000226957 5.10394e-05 0.000221004 0.000127554 0.000211765 0.000199784 0.000199965 0.000265064 0.00018578 0.000326482 0.00016943 0.000380123 0.000151145 0.00042879 0.000130901 0.000470344 0.000109324 0.000502008 8.67483e-05 0.000525568 6.37601e-05 0.000537814 4.09408e-05 0.000541086 1.87788e-05 0.000535132 -2.24129e-06 0.000521106 -2.19433e-05 0.000502177 -4.02202e-05 0.000479093 -5.71514e-05 0.000454788 -7.30456e-05 0.00043105 -8.80243e-05 0.000408494 -0.000102666 0.000386151 -0.000116167 0.000357455 -0.00012839 0.000328738 -0.000139274 0.000296597 -0.000148243 0.000263905 -0.000156091 0.00023394 -0.000162461 0.000204354 -0.00016803 0.000181259 -0.00017308 0.000159007 -0.0001775 0.000140343 -0.000181539 0.000120797 -0.000185186 0.000105571 -0.000188366 8.91961e-05 -0.000191194 7.37514e-05 -0.000193099 5.41163e-05 -0.00019427 3.80285e-05 -0.000195521 2.43925e-05 -0.000195358 2.10199e-06 -0.000194514 -1.29062e-05 -0.000192731 -3.0489e-05 -0.000190487 -4.3146e-05 -0.000188402 -4.80178e-05 -0.000187032 -5.43976e-05 -0.000185825 -6.49195e-05 -0.000184097 -7.97399e-05 -0.000181356 -0.000101462 -0.000177325 -0.000126044 -0.000171993 -0.000152081 -0.000165889 -0.000176553 -0.000158944 -0.000202125 -0.000150344 -0.000231996 -0.000140723 -0.000257123 -0.000129694 -0.000282945 -0.000117858 -0.000305386 -0.00010539 -0.000326732 -9.16836e-05 -0.000351377 -7.70146e-05 -0.000374133 -6.10858e-05 -0.000397353 -4.43074e-05 -0.000416428 -2.68364e-05 -0.000432587 -8.94665e-06 -0.000444741 9.28125e-06 -0.000456036 2.81826e-05 -0.00046553 4.78154e-05 -0.000473187 6.81052e-05 -0.000477926 8.89121e-05 -0.000477152 0.000109815 -0.000469319 0.000130082 -0.000448804 0.000149092 -0.000418231 0.000166176 -0.00037647 0.000180981 -0.000325676 0.000193032 -0.000266986 0.000202014 -0.000201705 0.000207541 -0.000132206 0.000209653 -6.19026e-05 0.000208809 6.4155e-06 0.000205754 6.91541e-05 0.000199851 0.000131751 0.00019136 0.000192058 0.0001802 0.000247928 0.00016666 0.000298005 0.000151502 0.000337299 0.000135222 0.00036488 0.000119394 0.000379398 0.000105098 0.000381719 9.10297e-05 0.000391019 7.50929e-05 0.000417082 5.71559e-05 0.000445358 3.76979e-05 0.000466771 1.77721e-05 0.000475488 -1.80774e-06 0.000473855 -2.04652e-05 0.000463141 -3.80112e-05 0.000444797 -5.4359e-05 0.000424167 -6.9521e-05 0.000399112 -8.3537e-05 0.000373451 -9.64496e-05 0.000348284 -0.000108315 0.000321612 -0.000119216 0.000295917 -0.000129197 0.000271231 -0.000138234 0.000245583 -0.000146399 0.00022087 -0.000153663 0.000196716 -0.00016006 0.000172508 -0.000165635 0.000149752 -0.000170377 0.000126327 -0.000174285 0.00010343 -0.000177405 8.1369e-05 -0.000179704 5.83636e-05 -0.000181133 3.50038e-05 -0.000181717 1.18636e-05 -0.000181499 -8.58408e-06 -0.000180621 -2.83199e-05 -0.00017904 -4.97802e-05 -0.000176463 -7.36363e-05 -0.000172869 -9.66563e-05 -0.000168585 -0.000120138 -0.000163395 -0.00014827 -0.000157156 -0.000173847 -0.000149828 -0.000204423 -0.000141423 -0.000232287 -0.000131919 -0.000258122 -0.000121295 -0.000290845 -0.000109438 -0.000321182 -9.63389e-05 -0.000348116 -8.20302e-05 -0.000381647 -6.63828e-05 -0.000409592 -4.9344e-05 -0.00044337 -3.10254e-05 -0.000469669 -1.1579e-05 -0.000488461 8.16475e-06 -0.000509677 2.93789e-05 -0.000529518 5.1266e-05 -0.00053809 7.35723e-05 -0.000547182 9.63122e-05 -0.000550333 0.000118786 -0.000538832 0.000140756 -0.000525259 0.000161879 -0.000501869 0.000181833 -0.000472271 0.000200395 -0.000435784 0.000216974 -0.000387249 0.000231393 -0.000334912 0.000243372 -0.00027633 0.000252467 -0.000209479 0.000258533 -0.000140908 0.000261604 -6.99922e-05 0.00026149 4.90746e-06 0.000258121 7.8038e-05 0.000251505 0.000152994 0.000241955 0.000220523 0.00022964 0.000284578 0.000214918 0.00034564 0.000197864 0.000398378 0.000178953 0.000445954 0.000158529 0.000479785 0.000137014 0.000510765 0.000114853 0.000535336 9.21247e-05 0.000546512 6.90273e-05 0.000556583 0.00055619 -0.000165037 9.80835e-05 -0.000167669 7.97703e-05 -0.000169754 6.33339e-05 -0.000171471 4.7371e-05 -0.000172492 3.06721e-05 -0.000173048 1.46166e-05 -0.000173083 -2.96506e-06 -0.000172754 -1.94718e-05 -0.000171378 -3.72715e-05 -0.000169929 -5.47691e-05 -0.000167652 -7.33316e-05 -0.000164308 -9.4112e-05 -0.000160805 -0.000114173 -0.00015611 -0.000138292 -0.000150677 -0.000162384 -0.000144655 -0.000183646 -0.000137253 -0.000207082 -0.000129583 -0.000231886 -0.00012081 -0.00025954 -0.00011037 -0.000286403 -9.99338e-05 -0.000313926 -8.72437e-05 -0.000349349 -7.34135e-05 -0.000375497 -5.87653e-05 -0.000405319 -4.23697e-05 -0.000433701 -2.58648e-05 -0.000458046 -7.72296e-06 -0.000486498 1.20901e-05 -0.000507084 3.24738e-05 -0.00052784 5.38989e-05 -0.000544306 7.5743e-05 -0.000548619 9.77857e-05 -0.00055152 0.000119854 -0.000546607 0.000141554 -0.000534866 0.000162533 -0.000515543 0.000182346 -0.000483802 0.000200804 -0.000447938 0.000217597 -0.000404791 0.000232261 -0.000352728 0.000244588 -0.000296512 0.000254249 -0.000233021 0.000261131 -0.000166195 0.000265116 -9.64257e-05 0.000266118 -2.336e-05 0.000263927 4.92984e-05 0.00025882 0.000118231 0.000250818 0.00018915 0.000240137 0.000252802 0.00022716 0.000309644 0.00021196 0.000364728 0.000195038 0.000410286 0.000176592 0.000448195 0.000157016 0.000478764 0.000136618 0.000501694 0.000115674 0.00051809 9.46458e-05 0.000527066 7.37588e-05 0.000529537 5.32161e-05 0.000526168 3.33344e-05 0.000516853 1.39422e-05 0.000503916 -4.81452e-06 0.000486299 -2.2478e-05 0.000466805 -3.90249e-05 0.0004431 -5.45049e-05 0.000418088 -6.88426e-05 0.000392632 -8.20869e-05 0.000364724 -9.41828e-05 0.00033704 -0.000105241 0.000310495 -0.000115211 0.000282181 -0.00012412 0.000257886 -0.000132034 0.000231719 -0.000139273 0.000207179 -0.00014561 0.000186016 -0.000151115 0.000163456 -0.000155959 0.000142178 -0.000160168 0.000124433 -0.000163843 0.00010383 -0.000166999 8.74463e-05 -0.000169606 6.99191e-05 -0.000171656 5.11047e-05 -0.00017313 3.34208e-05 -0.000173901 1.4723e-05 -0.000174282 -4.47635e-06 -0.000173747 -2.50865e-05 -0.000172613 -4.32314e-05 -0.000170791 -6.47134e-05 -0.000168156 -8.44091e-05 -0.000165149 -0.000104996 -0.000161177 -0.000128013 -0.000156783 -0.000148176 -0.000151654 -0.000171279 -0.000146226 -0.00019124 -0.000140276 -0.000211572 -0.000133875 -0.000231533 -0.000126391 -0.00025305 -0.00011789 -0.000273716 -0.00010837 -0.000295642 -9.77835e-05 -0.000316421 -8.60116e-05 -0.000339258 -7.30401e-05 -0.000361587 -5.93359e-05 -0.000382507 -4.42881e-05 -0.000405232 -2.83744e-05 -0.000425776 -1.14241e-05 -0.000445795 6.36871e-06 -0.000462089 2.47992e-05 -0.000475915 4.39048e-05 -0.000485941 6.31968e-05 -0.000490556 8.26788e-05 -0.000491302 0.000102153 -0.000486283 0.000121352 -0.000475934 0.000139926 -0.00045895 0.000157739 -0.000436762 0.000174469 -0.000407616 0.000189863 -0.000373104 0.00020381 -0.000332762 0.000215968 -0.000286747 0.000226071 -0.000234541 0.000233969 -0.000178209 0.0002393 -0.000116116 0.000241884 -5.08568e-05 0.000241543 1.72526e-05 0.000238173 8.64078e-05 0.000231845 0.000154994 0.000222613 0.00022175 0.000210709 0.000284044 0.000196259 0.000342431 0.000179697 0.000393399 0.000161436 0.000437478 0.000141719 0.000474362 0.000120861 0.000503758 9.92727e-05 0.000525334 7.73221e-05 0.000539011 5.51704e-05 0.00054674 3.335e-05 0.000546201 1.18443e-05 0.000540068 -8.82439e-06 0.000527769 -2.85525e-05 0.000510461 -4.7213e-05 0.000489492 -6.47705e-05 0.00046559 -8.10445e-05 0.000438283 -9.6224e-05 0.000409911 -0.000109826 0.000376621 -0.000121877 0.000345401 -0.000132926 0.000313272 -0.000142371 0.000280906 -0.00015083 0.00025156 -0.000158028 0.0002199 -0.000164141 0.000192517 -0.000169199 0.000165388 -0.000173435 0.000140293 -0.000176942 0.000118188 -0.000179865 9.72244e-05 -0.000181958 7.69009e-05 -0.00018362 6.0496e-05 -0.000184849 4.30131e-05 -0.000185297 2.71104e-05 -0.000185534 1.22598e-05 -0.000185282 -1.41621e-06 -0.000184561 -1.46974e-05 -0.000183559 -2.66998e-05 -0.000182299 -4.01245e-05 -0.000180425 -5.29361e-05 -0.000178611 -6.62044e-05 -0.000176051 -8.13858e-05 -0.000172857 -9.80299e-05 -0.000169254 -0.000114124 -0.00016514 -0.000130653 -0.000160076 -0.000150849 -0.000154458 -0.000169043 -0.00014799 -0.000190275 -0.000141176 -0.000208216 -0.00013335 -0.000231947 -0.000124679 -0.00025329 -0.000115438 -0.000276124 -0.000104762 -0.000302126 -9.34407e-05 -0.000325884 -8.08644e-05 -0.000351998 -6.73384e-05 -0.000376793 -5.27575e-05 -0.000400962 -3.7237e-05 -0.000424811 -2.04957e-05 -0.000448796 -2.71196e-06 -0.000468328 1.60669e-05 -0.00048654 3.58852e-05 -0.000500284 5.59091e-05 -0.00050776 7.62845e-05 -0.000510314 9.67623e-05 -0.000506395 0.000117258 -0.000495637 0.000137338 -0.000475765 0.000156473 -0.000448682 0.000174173 -0.000411541 0.000189896 -0.000366936 0.000203776 -0.000315235 0.000215194 -0.000253677 0.000223859 -0.000185495 0.000229253 -0.000109246 0.000230783 -2.84028e-05 0.000228362 5.34605e-05 0.000222213 0.000133702 0.000212687 0.000209311 0.000200594 0.000277156 0.000186197 0.000340879 0.000169578 0.000396742 0.000151124 0.000447244 0.000130567 0.000490901 0.000108754 0.000523821 8.59038e-05 0.000548418 6.2758e-05 0.00056096 3.99386e-05 0.000563905 1.7772e-05 0.000557299 -3.25856e-06 0.000542136 -2.28353e-05 0.000521754 -4.10673e-05 0.000497325 -5.77758e-05 0.000471496 -7.34022e-05 0.000446676 -8.81082e-05 0.0004232 -0.000102518 0.000400562 -0.00011586 0.000370796 -0.000127875 0.000340754 -0.000138489 0.000307211 -0.000147098 0.000272513 -0.00015463 0.000241472 -0.000160719 0.000210443 -0.000165811 0.000186351 -0.000170681 0.000163878 -0.000175003 0.000144664 -0.000178944 0.000124739 -0.000182409 0.000109036 -0.000185485 9.22715e-05 -0.000188286 7.65527e-05 -0.000190141 5.5971e-05 -0.00019133 3.92177e-05 -0.000192602 2.56644e-05 -0.000192548 2.04854e-06 -0.000191648 -1.3807e-05 -0.000189843 -3.2294e-05 -0.000187759 -4.523e-05 -0.000185651 -5.0125e-05 -0.000184201 -5.5848e-05 -0.000183064 -6.60561e-05 -0.000181868 -8.09368e-05 -0.000179355 -0.000103975 -0.00017554 -0.000129858 -0.000170335 -0.000157287 -0.000164494 -0.000182393 -0.000157977 -0.000208643 -0.000149491 -0.000240482 -0.000140246 -0.000266369 -0.000129535 -0.000293656 -0.000117998 -0.000316922 -0.000105796 -0.000338934 -9.2324e-05 -0.000364849 -7.77786e-05 -0.000388679 -6.19655e-05 -0.000413166 -4.5228e-05 -0.000433165 -2.77359e-05 -0.000450079 -1.00069e-05 -0.00046247 8.43319e-06 -0.000474477 2.73658e-05 -0.000484463 4.7092e-05 -0.000492913 6.76193e-05 -0.000498453 8.8734e-05 -0.000498267 0.000110085 -0.00049067 0.000130895 -0.000469613 0.000150363 -0.000437699 0.000167939 -0.000394047 0.000183058 -0.000340795 0.000195355 -0.000279282 0.000204596 -0.000210946 0.000210223 -0.000137833 0.000212303 -6.39828e-05 0.000211292 7.42643e-06 0.000207986 7.24602e-05 0.000202133 0.000137604 0.000193623 0.000200569 0.000182304 0.000259247 0.00016875 0.000311559 0.000153127 0.000352923 0.000137145 0.000380861 0.000121523 0.00039502 0.000106903 0.00039634 9.25106e-05 0.000405411 7.62821e-05 0.000433311 5.77279e-05 0.000463912 3.78118e-05 0.000486687 1.75022e-05 0.000495798 -2.37156e-06 0.000493729 -2.11875e-05 0.000481957 -3.88449e-05 0.000462455 -5.52514e-05 0.000440574 -7.04427e-05 0.000414303 -8.44672e-05 0.000387475 -9.73674e-05 0.000361184 -0.000109221 0.000333465 -0.000120123 0.000306819 -0.000130085 0.000281193 -0.000139117 0.000254615 -0.000147264 0.000229017 -0.000154546 0.000203997 -0.000160944 0.000178906 -0.000166526 0.000155334 -0.000171279 0.00013108 -0.000175215 0.000107366 -0.000178361 8.45148e-05 -0.000180659 6.06621e-05 -0.00018209 3.64352e-05 -0.000182686 1.24591e-05 -0.000182472 -8.798e-06 -0.000181615 -2.91764e-05 -0.000180007 -5.13891e-05 -0.000177525 -7.61175e-05 -0.000174072 -0.00010011 -0.000169633 -0.000124577 -0.000164402 -0.000153501 -0.000158155 -0.000180094 -0.000150971 -0.000211607 -0.000142604 -0.000240655 -0.000133087 -0.000267638 -0.00012252 -0.000301412 -0.000110673 -0.000333029 -9.75306e-05 -0.000361258 -8.32556e-05 -0.000395922 -6.7534e-05 -0.000425313 -5.02981e-05 -0.000460606 -3.21824e-05 -0.000487785 -1.23772e-05 -0.000508266 7.40791e-06 -0.000529462 2.8783e-05 -0.000550893 5.09923e-05 -0.0005603 7.35088e-05 -0.000569699 9.65335e-05 -0.000573357 0.000119337 -0.000561636 0.000141622 -0.000547544 0.000163132 -0.000523379 0.000183448 -0.000492587 0.000202252 -0.000454588 0.000219081 -0.000404079 0.000233731 -0.000349562 0.000245904 -0.000288504 0.000255121 -0.000218695 0.000261364 -0.000147151 0.000264601 -7.32298e-05 0.000264353 5.15551e-06 0.000260901 8.14905e-05 0.00025412 0.000159775 0.000244408 0.000230235 0.000231905 0.000297081 0.000217008 0.000360537 0.00019974 0.000415647 0.000180448 0.000465246 0.000159655 0.000500578 0.000137818 0.000532602 0.000115453 0.000557701 9.23728e-05 0.000569593 6.89509e-05 0.000580005 0.000579237 -0.000165729 0.000101217 -0.000168313 8.23545e-05 -0.000170394 6.5415e-05 -0.000172101 4.90775e-05 -0.000173221 3.17927e-05 -0.000173728 1.51228e-05 -0.000173781 -2.91182e-06 -0.000173507 -1.97458e-05 -0.000172152 -3.86261e-05 -0.00017063 -5.62911e-05 -0.000168346 -7.56162e-05 -0.000165062 -9.73953e-05 -0.000161752 -0.000117484 -0.000157062 -0.000142982 -0.000151615 -0.000167831 -0.000145799 -0.000189463 -0.000138296 -0.000214585 -0.000130751 -0.000239431 -0.000121787 -0.000268504 -0.000111404 -0.000296787 -0.000101155 -0.000324174 -8.8453e-05 -0.000362052 -7.44099e-05 -0.00038954 -5.99245e-05 -0.000419805 -4.35647e-05 -0.000450061 -2.69944e-05 -0.000474616 -8.67616e-06 -0.000504816 1.13391e-05 -0.000527099 3.19376e-05 -0.000548438 5.35116e-05 -0.00056588 7.55979e-05 -0.000570706 9.79479e-05 -0.00057387 0.000120324 -0.000568984 0.000142367 -0.000556908 0.000163718 -0.000536894 0.000183871 -0.000503955 0.000202625 -0.000466691 0.000219662 -0.000421828 0.000234558 -0.000367625 0.000247075 -0.000309028 0.000256881 -0.000242827 0.000263868 -0.000173182 0.000267988 -0.000100545 0.000268894 -2.42665e-05 0.000266581 5.16119e-05 0.00026145 0.000123362 0.000253356 0.000197243 0.000242486 0.000263672 0.000229294 0.000322835 0.000213857 0.000380166 0.000196531 0.000427612 0.000177795 0.000466931 0.000157892 0.000498667 0.000137123 0.000522464 0.000116017 0.000539196 9.47839e-05 0.000548299 7.37462e-05 0.000550575 5.30713e-05 0.000546843 3.28052e-05 0.00053712 1.32195e-05 0.000523502 -5.64594e-06 0.000505165 -2.33846e-05 0.000484544 -4.00375e-05 0.000459753 -5.55486e-05 0.000433599 -6.99459e-05 0.00040703 -8.32167e-05 0.000377995 -9.53151e-05 0.000349138 -0.000106348 0.000321528 -0.000116289 0.000292122 -0.000125101 0.000266699 -0.000133161 0.000239779 -0.000140303 0.00021432 -0.000146565 0.000192279 -0.000152012 0.000168902 -0.000156803 0.00014697 -0.000160935 0.000128565 -0.000164564 0.000107459 -0.000167659 9.05417e-05 -0.000170293 7.25527e-05 -0.000172465 5.32767e-05 -0.000174046 3.50019e-05 -0.000175011 1.56875e-05 -0.000175322 -4.16504e-06 -0.000174772 -2.56365e-05 -0.000173675 -4.43286e-05 -0.000171941 -6.64476e-05 -0.000169353 -8.69965e-05 -0.000166441 -0.000107908 -0.000162527 -0.000131926 -0.00015805 -0.000152653 -0.000153121 -0.000176208 -0.000147509 -0.000196853 -0.000141875 -0.000217206 -0.000135531 -0.000237877 -0.000128267 -0.000260314 -0.000120132 -0.000281851 -0.00011077 -0.000305004 -0.000100281 -0.00032691 -8.87586e-05 -0.000350781 -7.59109e-05 -0.000374435 -6.23057e-05 -0.000396112 -4.72567e-05 -0.000420281 -3.13511e-05 -0.000441682 -1.43065e-05 -0.00046284 3.61501e-06 -0.000480011 2.21934e-05 -0.000494494 4.1537e-05 -0.000505285 6.10563e-05 -0.000510075 8.07817e-05 -0.000511028 0.00010057 -0.000506071 0.000120035 -0.000495399 0.000138869 -0.000477784 0.000157 -0.000454893 0.00017401 -0.000424626 0.000189649 -0.000388743 0.000203861 -0.000346974 0.000216271 -0.000299157 0.000226632 -0.000244902 0.000234696 -0.000186273 0.000240271 -0.000121691 0.000242953 -5.35389e-05 0.000242666 1.75396e-05 0.000239229 8.9845e-05 0.000232829 0.000161393 0.000223374 0.000231206 0.000211213 0.000296204 0.000196442 0.000357202 0.000179522 0.00041032 0.000160909 0.000456091 0.000140781 0.000494489 0.000119699 0.00052484 9.77238e-05 0.000547309 7.56839e-05 0.000561051 5.34271e-05 0.000568997 3.14965e-05 0.000568131 1.009e-05 0.000561475 -1.05409e-05 0.0005484 -3.01416e-05 0.000530061 -4.86873e-05 0.000508038 -6.61256e-05 0.000483028 -8.21703e-05 0.000454328 -9.71824e-05 0.000424923 -0.000110651 0.000390089 -0.000122354 0.000357105 -0.000133142 0.000324059 -0.000142417 0.000290181 -0.000150589 0.000259732 -0.000157535 0.000226846 -0.000163351 0.000198334 -0.000168209 0.000170246 -0.000172251 0.000144334 -0.000175464 0.000121401 -0.000178151 9.99116e-05 -0.000180012 7.87619e-05 -0.000181493 6.19765e-05 -0.000182676 4.41962e-05 -0.000183038 2.74731e-05 -0.000183097 1.23188e-05 -0.000182789 -1.72462e-06 -0.000182056 -1.54308e-05 -0.000180917 -2.78383e-05 -0.000179952 -4.10896e-05 -0.000177962 -5.49265e-05 -0.000176236 -6.79302e-05 -0.000173837 -8.3785e-05 -0.000170724 -0.000101142 -0.000167223 -0.000117626 -0.000163231 -0.000134645 -0.000158368 -0.000155712 -0.000153083 -0.000174327 -0.000146731 -0.000196627 -0.000140128 -0.00021482 -0.00013256 -0.000239516 -0.000124102 -0.000261748 -0.000115019 -0.000285206 -0.000104621 -0.000312524 -9.36098e-05 -0.000336895 -8.12303e-05 -0.000364377 -6.79026e-05 -0.000390121 -5.35094e-05 -0.000415355 -3.79593e-05 -0.000440362 -2.13463e-05 -0.000465409 -3.79242e-06 -0.000485882 1.48776e-05 -0.00050521 3.46888e-05 -0.000520095 5.48362e-05 -0.000527907 7.53617e-05 -0.000530839 9.59957e-05 -0.000527029 0.000116571 -0.000516213 0.000136628 -0.000495822 0.000155969 -0.000468023 0.000173892 -0.000429464 0.000189917 -0.00038296 0.00020414 -0.000329459 0.000215815 -0.000265352 0.000224722 -0.000194402 0.000230288 -0.000114813 0.000231914 -3.0028e-05 0.000229399 5.59746e-05 0.000223149 0.000139953 0.000213528 0.000218932 0.0002013 0.000289384 0.000186853 0.000355325 0.000170155 0.000413439 0.000151723 0.000465676 0.000131114 0.00051151 0.000109149 0.000545786 8.61514e-05 0.000571416 6.28685e-05 0.000584243 3.99395e-05 0.000586834 1.77592e-05 0.000579479 -3.28139e-06 0.000563177 -2.27162e-05 0.000541188 -4.08069e-05 0.000515416 -5.7263e-05 0.000487953 -7.25724e-05 0.000461986 -8.68771e-05 0.000437505 -0.000100892 0.000414576 -0.000113895 0.000383799 -0.000125416 0.000352274 -0.000135607 0.000317403 -0.00014364 0.000280547 -0.000150525 0.000248357 -0.000156182 0.0002161 -0.000160635 0.000190804 -0.00016519 0.000168432 -0.00016921 0.000148684 -0.000172997 0.000128526 -0.000176346 0.000112384 -0.000179278 9.52036e-05 -0.000182062 7.93369e-05 -0.000183892 5.78011e-05 -0.000185124 4.04492e-05 -0.000186496 2.70367e-05 -0.00018659 2.14275e-06 -0.000185626 -1.47709e-05 -0.000183852 -3.40683e-05 -0.000182162 -4.69204e-05 -0.000180179 -5.21071e-05 -0.00017857 -5.74579e-05 -0.000177511 -6.7115e-05 -0.000176597 -8.18506e-05 -0.000174365 -0.000106206 -0.000170804 -0.00013342 -0.000165918 -0.000162173 -0.00016048 -0.000187831 -0.000154521 -0.000214602 -0.000146519 -0.000248483 -0.000137786 -0.000275102 -0.000127591 -0.000303852 -0.000116563 -0.000327951 -0.000104758 -0.000350739 -9.16884e-05 -0.000377918 -7.74896e-05 -0.000402877 -6.18514e-05 -0.000428804 -4.52673e-05 -0.00044975 -2.78179e-05 -0.000467529 -1.02204e-05 -0.000480068 8.1727e-06 -0.00049287 2.70803e-05 -0.000503371 4.69138e-05 -0.000512747 6.76696e-05 -0.000519209 8.91636e-05 -0.000519761 0.000110931 -0.000512437 0.000132218 -0.000490901 0.000152173 -0.000457654 0.000170233 -0.000412107 0.000185806 -0.000356368 0.000198445 -0.000291921 0.000207963 -0.000220464 0.000213376 -0.000143245 0.000215343 -6.595e-05 0.000214582 8.18691e-06 0.000210943 7.60993e-05 0.000205408 0.000143139 0.000196991 0.000208986 0.000185409 0.000270829 0.000171392 0.000325575 0.000155788 0.000368527 0.000139877 0.000396773 0.000123765 0.000411131 0.000109135 0.00041097 9.44953e-05 0.000420051 7.77793e-05 0.000450026 5.84683e-05 0.000483223 3.79569e-05 0.000507198 1.72103e-05 0.000516544 -2.97545e-06 0.000513915 -2.1955e-05 0.000500937 -3.97234e-05 0.000480223 -5.61872e-05 0.000457037 -7.14081e-05 0.000429524 -8.54387e-05 0.000401506 -9.83199e-05 0.000374065 -0.000110146 0.000345291 -0.000121026 0.0003177 -0.000130978 0.000291145 -0.000140038 0.000263674 -0.000148184 0.000237163 -0.000155456 0.000211269 -0.000161866 0.000185316 -0.000167452 0.00016092 -0.000172223 0.000135851 -0.000176166 0.000111309 -0.000179341 8.76902e-05 -0.000181687 6.30073e-05 -0.000183155 3.79039e-05 -0.000183771 1.30753e-05 -0.00018359 -8.97955e-06 -0.000182638 -3.01281e-05 -0.000180994 -5.30335e-05 -0.000178587 -7.8524e-05 -0.0001752 -0.000103497 -0.000170927 -0.000128849 -0.000165725 -0.000158704 -0.000159418 -0.000186401 -0.000152112 -0.000218912 -0.000143839 -0.000248928 -0.000134293 -0.000277185 -0.000123817 -0.000311888 -0.000111964 -0.000344882 -9.87557e-05 -0.000374466 -8.45092e-05 -0.000410169 -6.87469e-05 -0.000441076 -5.13085e-05 -0.000478044 -3.32457e-05 -0.000505847 -1.33186e-05 -0.000528194 6.60606e-06 -0.000549387 2.81814e-05 -0.000572468 5.06471e-05 -0.000582765 7.33948e-05 -0.000592447 9.67527e-05 -0.000596715 0.00011991 -0.000584793 0.000142498 -0.000570132 0.000164355 -0.000545236 0.000184986 -0.000513218 0.000204166 -0.000473768 0.000221364 -0.000421277 0.000236235 -0.000364432 0.000248602 -0.000300871 0.000257965 -0.000228059 0.000264376 -0.000153561 0.000267593 -7.64473e-05 0.000267333 5.41565e-06 0.000263765 8.50584e-05 0.000256937 0.000166602 0.000247016 0.000240157 0.000234326 0.000309771 0.00021924 0.000375622 0.000201672 0.000433215 0.000181975 0.000484943 0.000160821 0.000521732 0.000138641 0.000554782 0.0001161 0.000580242 9.26294e-05 0.000593063 6.88503e-05 0.000603784 0.000602537 -0.000166454 0.000104331 -0.000169005 8.49054e-05 -0.000171137 6.75472e-05 -0.000172793 5.07333e-05 -0.000173931 3.29301e-05 -0.000174516 1.57086e-05 -0.000174536 -2.89217e-06 -0.000174269 -2.0013e-05 -0.00017296 -3.99349e-05 -0.000171355 -5.78965e-05 -0.000169138 -7.78328e-05 -0.000165859 -0.000100674 -0.000162641 -0.000120702 -0.000158012 -0.000147611 -0.000152561 -0.000173281 -0.000146921 -0.000195103 -0.000139421 -0.000222085 -0.000131933 -0.000246919 -0.00012295 -0.000277487 -0.000112485 -0.000307252 -0.000102281 -0.000334378 -8.96822e-05 -0.00037465 -7.55098e-05 -0.000403713 -6.12201e-05 -0.000434094 -4.46183e-05 -0.000466663 -2.8152e-05 -0.000491082 -9.52244e-06 -0.000523446 1.05771e-05 -0.000547198 3.13663e-05 -0.000569228 5.31407e-05 -0.000587655 7.54599e-05 -0.000593025 9.80298e-05 -0.00059644 0.00012081 -0.000591764 0.000143178 -0.000579276 0.000164839 -0.000558555 0.000185317 -0.000524433 0.000204414 -0.000485789 0.000221809 -0.000439223 0.000236986 -0.000382802 0.000249762 -0.000321804 0.000259758 -0.000252824 0.000266845 -0.000180269 0.000270932 -0.000104632 0.00027176 -2.50949e-05 0.000269403 5.39689e-05 0.000264255 0.000128509 0.000256077 0.000205421 0.000245004 0.000274746 0.000231545 0.000336295 0.000215706 0.000396005 0.000198082 0.000445235 0.000178926 0.000486087 0.000158721 0.000518873 0.000137769 0.000543415 0.000116456 0.000560508 9.51136e-05 0.000569642 7.37457e-05 0.000571943 5.2711e-05 0.000567878 3.21157e-05 0.000557715 1.23001e-05 0.000543317 -6.50377e-06 0.000523968 -2.43436e-05 0.000502384 -4.11147e-05 0.000476524 -5.66536e-05 0.000449138 -7.11174e-05 0.000421493 -8.43472e-05 0.000391224 -9.64897e-05 0.000361281 -0.000107477 0.000332515 -0.00011735 0.000301995 -0.000126286 0.000275635 -0.000134248 0.000247741 -0.000141342 0.000221415 -0.00014752 0.000198456 -0.000152857 0.000174239 -0.00015751 0.000151623 -0.000161598 0.000132653 -0.000165279 0.00011114 -0.000168444 9.37071e-05 -0.000171106 7.52147e-05 -0.000173454 5.56246e-05 -0.00017513 3.66776e-05 -0.000175971 1.6529e-05 -0.000176308 -3.82769e-06 -0.000175761 -2.61843e-05 -0.000174611 -4.54783e-05 -0.000172932 -6.81264e-05 -0.000170347 -8.95814e-05 -0.00016731 -0.000110945 -0.000163319 -0.000135918 -0.000159066 -0.000156906 -0.000153948 -0.000181326 -0.000148441 -0.00020236 -0.000142717 -0.00022293 -0.000136516 -0.000244078 -0.000129447 -0.000267383 -0.000121363 -0.000289934 -0.000112401 -0.000313967 -0.000102283 -0.000337028 -9.09007e-05 -0.000362163 -7.8184e-05 -0.000387152 -6.47296e-05 -0.000409566 -4.98125e-05 -0.000435198 -3.39361e-05 -0.000457558 -1.69014e-05 -0.000479875 1.03241e-06 -0.000497945 1.97046e-05 -0.000513166 3.92076e-05 -0.000524788 5.8876e-05 -0.000529744 7.87748e-05 -0.000530927 9.87839e-05 -0.00052608 0.00011854 -0.000515155 0.000137641 -0.000496885 0.000156064 -0.000473317 0.000173343 -0.000441905 0.000189259 -0.000404659 0.000203762 -0.000361477 0.000216392 -0.000311787 0.000226959 -0.000255469 0.000235249 -0.000194563 0.0002409 -0.000127341 0.000243618 -5.62569e-05 0.000243335 1.7822e-05 0.000239775 9.3405e-05 0.000233266 0.000167903 0.000223654 0.000240818 0.000211302 0.000308556 0.000196279 0.000372225 0.000179084 0.000427515 0.000160341 0.000474834 0.000139999 0.000514832 0.000118836 0.000546003 9.68263e-05 0.000569319 7.47617e-05 0.000583116 5.25017e-05 0.000591257 3.06139e-05 0.000590019 9.35824e-06 0.000582731 -1.12675e-05 0.000569026 -3.06958e-05 0.00054949 -4.91021e-05 0.000526444 -6.63187e-05 0.000500245 -8.21287e-05 0.000470138 -9.67778e-05 0.000439572 -0.000110072 0.000403383 -0.000121352 0.000368384 -0.000131799 0.000334506 -0.000140779 0.000299161 -0.000148476 0.000267429 -0.000154975 0.000233345 -0.000160513 0.000203872 -0.000164744 0.000174477 -0.000168335 0.000147925 -0.000171184 0.00012425 -0.000173409 0.000102137 -0.000175266 8.06182e-05 -0.000176431 6.31422e-05 -0.000177445 4.52097e-05 -0.000177643 2.76718e-05 -0.000177557 1.22325e-05 -0.0001772 -2.08216e-06 -0.000176453 -1.61773e-05 -0.000175372 -2.89198e-05 -0.000174432 -4.20292e-05 -0.000172531 -5.68278e-05 -0.000170799 -6.96613e-05 -0.000168638 -8.59459e-05 -0.000165683 -0.000104097 -0.000162363 -0.000120946 -0.000158556 -0.000138452 -0.000154051 -0.000160218 -0.000149056 -0.000179322 -0.000143073 -0.00020261 -0.000136769 -0.000221124 -0.00012962 -0.000246665 -0.000121529 -0.000269839 -0.000112866 -0.000293869 -0.000102957 -0.000322434 -9.22947e-05 -0.000347557 -8.02213e-05 -0.000376451 -6.72381e-05 -0.000403104 -5.31207e-05 -0.000429472 -3.78857e-05 -0.000455597 -2.1388e-05 -0.000481907 -3.98813e-06 -0.000503281 1.46894e-05 -0.000523887 3.45998e-05 -0.000540005 5.47009e-05 -0.000548008 7.5337e-05 -0.000551475 9.61171e-05 -0.000547809 0.000116967 -0.000537063 0.000137329 -0.000516184 0.000156919 -0.000487614 0.000175124 -0.000447669 0.000191317 -0.000399152 0.000205709 -0.000343851 0.000217607 -0.00027725 0.000226527 -0.000203321 0.000232215 -0.000120502 0.000233928 -3.17406e-05 0.00023143 5.8472e-05 0.000225231 0.000146152 0.000215527 0.000228636 0.000203197 0.000301715 0.000188717 0.000369805 0.000171798 0.000430358 0.000153069 0.000484405 0.00013216 0.00053242 0.000109966 0.000567979 8.70689e-05 0.000594313 6.36121e-05 0.000607699 4.05845e-05 0.000609861 1.84516e-05 0.000601612 -2.47177e-06 0.0005841 -2.1614e-05 0.000560331 -3.9281e-05 0.000533083 -5.52255e-05 0.000503897 -6.99426e-05 0.000476703 -8.35331e-05 0.000451095 -9.66158e-05 0.000427659 -0.000108986 0.000396169 -0.000119517 0.000362806 -0.000128772 0.000326657 -0.000135824 0.000287599 -0.000141758 0.000254291 -0.000147042 0.000221384 -0.000151053 0.000194816 -0.000155043 0.000172422 -0.000158639 0.00015228 -0.000162069 0.000131957 -0.000165227 0.000115542 -0.000168057 9.80329e-05 -0.000170774 8.20546e-05 -0.000172719 5.97457e-05 -0.000174029 4.17594e-05 -0.00017536 2.8368e-05 -0.000175654 2.43676e-06 -0.000174754 -1.56713e-05 -0.000173147 -3.56756e-05 -0.000172063 -4.80037e-05 -0.000170399 -5.37714e-05 -0.000168599 -5.92584e-05 -0.00016762 -6.80933e-05 -0.000166729 -8.27418e-05 -0.000164728 -0.000108207 -0.000161458 -0.00013669 -0.000157146 -0.000166485 -0.000152283 -0.000192693 -0.000147083 -0.000219803 -0.000140133 -0.000255433 -0.000132199 -0.000283037 -0.000122791 -0.000313259 -0.000112642 -0.0003381 -0.000101563 -0.000361818 -8.91682e-05 -0.000390313 -7.55984e-05 -0.000416447 -6.03211e-05 -0.000444081 -4.41088e-05 -0.000465962 -2.68278e-05 -0.00048481 -9.43839e-06 -0.000497457 8.6319e-06 -0.00051094 2.73643e-05 -0.000522103 4.71561e-05 -0.000532538 6.78838e-05 -0.000539937 8.95357e-05 -0.000541413 0.000111653 -0.000534555 0.000133382 -0.000512629 0.000153672 -0.000477944 0.000172137 -0.000430572 0.00018792 -0.000372151 0.000200747 -0.000304748 0.000211062 -0.000230779 0.000216759 -0.000148943 0.000218881 -6.80713e-05 0.000217465 9.60296e-06 0.00021391 7.96542e-05 0.000208461 0.000148587 0.000199912 0.000217535 0.000188152 0.000282589 0.000173856 0.000339871 0.000158354 0.000384029 0.000142429 0.000412698 0.000127088 0.000426472 0.000112578 0.000425479 9.73843e-05 0.000435245 7.95141e-05 0.000467897 5.93856e-05 0.000503351 3.81458e-05 0.000528438 1.69026e-05 0.000537787 -3.61967e-06 0.000534437 -2.27686e-05 0.000520086 -4.06462e-05 0.000498101 -5.71669e-05 0.000473558 -7.24084e-05 0.000444766 -8.64471e-05 0.000415545 -9.93118e-05 0.00038693 -0.000111115 0.000357094 -0.000121992 0.000328577 -0.000131914 0.000301067 -0.000140976 0.000272736 -0.000149117 0.000245304 -0.000156409 0.000218562 -0.000162822 0.000191728 -0.000168413 0.000166511 -0.000173206 0.000140644 -0.000177163 0.000115266 -0.000180338 9.08658e-05 -0.000182722 6.53905e-05 -0.000184224 3.94058e-05 -0.00018487 1.37215e-05 -0.000184704 -9.14483e-06 -0.000183815 -3.10173e-05 -0.000182073 -5.47759e-05 -0.000179581 -8.10158e-05 -0.000176316 -0.000106763 -0.000172101 -0.000133064 -0.000166956 -0.000163849 -0.000160608 -0.00019275 -0.000153426 -0.000226094 -0.000145102 -0.000257253 -0.00013554 -0.000286747 -0.000125161 -0.000322266 -0.000113345 -0.000356698 -0.000100009 -0.000387803 -8.58568e-05 -0.000424321 -7.00063e-05 -0.000456926 -5.24303e-05 -0.00049562 -3.413e-05 -0.000524148 -1.43608e-05 -0.000547963 5.7876e-06 -0.000569535 2.75604e-05 -0.000594241 5.03415e-05 -0.000605547 7.32265e-05 -0.000615332 9.6885e-05 -0.000620374 0.000120451 -0.000608359 0.000143403 -0.000593084 0.000165628 -0.000567461 0.000186584 -0.000534173 0.000206081 -0.000493265 0.000223605 -0.000438802 0.000238865 -0.000379692 0.000251514 -0.000313521 0.000260978 -0.000237522 0.000267541 -0.000160124 0.000270724 -7.9631e-05 0.000270365 5.77527e-06 0.000266842 8.8581e-05 0.000259964 0.00017348 0.000249811 0.00025031 0.000236934 0.000322647 0.000221661 0.000390895 0.00020361 0.000451266 0.000183571 0.000504982 0.000162009 0.000543294 0.000139557 0.000577234 0.00011672 0.000603079 9.28942e-05 0.000616889 6.87246e-05 0.000627953 0.00062609 -0.000167215 0.000107437 -0.000169724 8.74145e-05 -0.000171867 6.96899e-05 -0.000173497 5.23635e-05 -0.000174701 3.41337e-05 -0.000175237 1.62451e-05 -0.000175267 -2.86231e-06 -0.000175037 -2.02436e-05 -0.000173747 -4.12249e-05 -0.000172255 -5.93885e-05 -0.000169959 -8.01287e-05 -0.000166711 -0.000103922 -0.00016349 -0.000123923 -0.000158959 -0.000152143 -0.000153456 -0.000178784 -0.000148143 -0.000200416 -0.000140492 -0.000229737 -0.000133137 -0.000254274 -0.000124342 -0.000286282 -0.000113737 -0.000317857 -0.000103609 -0.000344506 -9.09496e-05 -0.00038731 -7.66733e-05 -0.000417989 -6.2621e-05 -0.000448147 -4.5668e-05 -0.000483616 -2.93547e-05 -0.000507396 -1.08643e-05 -0.000541936 9.72721e-06 -0.00056779 3.06995e-05 -0.0005902 5.27951e-05 -0.00060975 7.53797e-05 -0.000615609 9.81624e-05 -0.000619222 0.000121218 -0.00061482 0.000143941 -0.000601999 0.000165956 -0.00058057 0.000186817 -0.000545294 0.000206242 -0.000505213 0.000223957 -0.000456938 0.000239399 -0.000398244 0.000252403 -0.000334808 0.000262584 -0.000263004 0.000269825 -0.000187511 0.000273949 -0.000108755 0.000274718 -2.58646e-05 0.000272418 5.62698e-05 0.000267237 0.00013369 0.00025879 0.000213868 0.000247497 0.000286039 0.000233775 0.000350016 0.000217559 0.000412221 0.000199561 0.000463234 0.00018019 0.000505458 0.000159705 0.000539357 0.000138526 0.000564595 0.000117001 0.000582033 9.51844e-05 0.000591459 7.35649e-05 0.000593562 5.21137e-05 0.000589329 3.14127e-05 0.000578416 1.15182e-05 0.000563212 -7.41463e-06 0.000542901 -2.53702e-05 0.000520339 -4.22185e-05 0.000493372 -5.78194e-05 0.000464739 -7.22611e-05 0.000435935 -8.55664e-05 0.00040453 -9.77137e-05 0.000373428 -0.000108635 0.000343436 -0.000118579 0.000311939 -0.000127432 0.000284488 -0.00013532 0.000255629 -0.00014237 0.000228464 -0.000148394 0.000204481 -0.000153644 0.000179489 -0.000158356 0.000156336 -0.000162375 0.000136672 -0.000166125 0.00011489 -0.000169324 9.69058e-05 -0.000171965 7.78564e-05 -0.000174236 5.78955e-05 -0.000175833 3.8274e-05 -0.000176594 1.72907e-05 -0.000176851 -3.57119e-06 -0.000176229 -2.68065e-05 -0.000174937 -4.67704e-05 -0.000173245 -6.98178e-05 -0.000170603 -9.22234e-05 -0.000167757 -0.000113792 -0.000163855 -0.00013982 -0.000159323 -0.000161438 -0.000154005 -0.000186643 -0.000148518 -0.000207847 -0.000142702 -0.000228745 -0.00013659 -0.00025019 -0.000129494 -0.00027448 -0.000121833 -0.000297595 -0.000113009 -0.000322791 -0.000102974 -0.000347063 -9.19421e-05 -0.000373195 -7.94979e-05 -0.000399596 -6.63113e-05 -0.000422753 -5.15377e-05 -0.000449972 -3.58049e-05 -0.000473291 -1.88691e-05 -0.00049681 -9.58661e-07 -0.000515855 1.7733e-05 -0.000531857 3.73097e-05 -0.000544365 5.70877e-05 -0.000549522 7.70863e-05 -0.000550925 9.72853e-05 -0.000546279 0.000117239 -0.000535109 0.000136538 -0.000516184 0.000155157 -0.000491935 0.000172702 -0.000459451 0.00018884 -0.000420797 0.000203628 -0.000376265 0.000216525 -0.000324685 0.000227387 -0.00026633 0.000235938 -0.000203114 0.00024186 -0.000133264 0.000244762 -5.91592e-05 0.00024464 1.79435e-05 0.000241177 9.68683e-05 0.000234546 0.000174533 0.000224842 0.000250522 0.000212286 0.000321112 0.000197036 0.000387476 0.000179595 0.000444956 0.000160665 0.000493764 0.000140143 0.000535355 0.000118836 0.000567309 9.66639e-05 0.000591491 7.44996e-05 0.00060528 5.22708e-05 0.000613485 3.04283e-05 0.000611862 9.22281e-06 0.000603936 -1.11918e-05 0.000589441 -3.04072e-05 0.000568705 -4.83952e-05 0.000544432 -6.5132e-05 0.000516982 -8.05298e-05 0.000485535 -9.45106e-05 0.000453553 -0.000107454 0.000416326 -0.000118114 0.000379045 -0.000127816 0.000344208 -0.000136234 0.00030758 -0.000143009 0.000274204 -0.000148845 0.000239181 -0.000153587 0.000208613 -0.000157147 0.000178038 -0.000160142 0.00015092 -0.000162543 0.000126651 -0.00016433 0.000103924 -0.000165963 8.22505e-05 -0.000166788 6.39676e-05 -0.000167526 4.59473e-05 -0.000167599 2.77453e-05 -0.000167357 1.19899e-05 -0.000166948 -2.4911e-06 -0.000166179 -1.69456e-05 -0.000165034 -3.00647e-05 -0.000164193 -4.28706e-05 -0.000162411 -5.86096e-05 -0.000160752 -7.13206e-05 -0.000158798 -8.78997e-05 -0.00015616 -0.000106735 -0.00015306 -0.000124046 -0.000149696 -0.000141815 -0.000145588 -0.000164326 -0.000140751 -0.000184159 -0.00013548 -0.000207881 -0.000129626 -0.000226978 -0.000123083 -0.000253208 -0.000115597 -0.000277326 -0.00010764 -0.000301826 -9.82833e-05 -0.00033179 -8.81591e-05 -0.000357682 -7.66155e-05 -0.000387994 -6.41886e-05 -0.000415531 -5.08611e-05 -0.0004428 -3.59782e-05 -0.00047048 -2.02355e-05 -0.00049765 -3.26867e-06 -0.000520248 1.51711e-05 -0.000542327 3.48564e-05 -0.000559691 5.48757e-05 -0.000568028 7.55492e-05 -0.000572149 9.63718e-05 -0.000568632 0.000117308 -0.000558 0.000137926 -0.000536802 0.000157813 -0.000507501 0.00017645 -0.000466306 0.000193021 -0.000415723 0.000207797 -0.000358628 0.000220194 -0.000289647 0.000229623 -0.00021275 0.000235515 -0.000126393 0.00023747 -3.36963e-05 0.000234933 6.10092e-05 0.000228429 0.000152656 0.000218379 0.000238686 0.000205762 0.000314332 0.000191031 0.000384535 0.000173968 0.000447421 0.000155094 0.00050328 0.000134198 0.000553316 0.000111989 0.000590188 8.91411e-05 0.000617161 6.55305e-05 0.00063131 4.26128e-05 0.000632779 2.08785e-05 0.000623346 4.77144e-07 0.000604502 -1.80276e-05 0.000578835 -3.48884e-05 0.000549943 -4.98284e-05 0.000518837 -6.35289e-05 0.000490403 -7.62884e-05 0.000463855 -8.82034e-05 0.000439574 -9.92463e-05 0.000407212 -0.000108348 0.000371908 -0.000116199 0.000334508 -0.000122248 0.000293647 -0.000126861 0.000258905 -0.000131591 0.000226114 -0.000135158 0.000198383 -0.000138363 0.000175627 -0.000141556 0.000155473 -0.000144703 0.000135104 -0.000147577 0.000118416 -0.000150184 0.000100639 -0.000152646 8.45167e-05 -0.000154871 6.19707e-05 -0.000156289 4.31776e-05 -0.000157033 2.91126e-05 -0.000157492 2.89572e-06 -0.000157025 -1.61388e-05 -0.000155904 -3.67967e-05 -0.000155565 -4.83425e-05 -0.000154442 -5.48939e-05 -0.000152548 -6.11525e-05 -0.000151167 -6.94752e-05 -0.000150675 -8.32332e-05 -0.000148902 -0.00010998 -0.000145902 -0.00013969 -0.00014208 -0.000170307 -0.000138148 -0.000196626 -0.000133913 -0.000224038 -0.000128029 -0.000261317 -0.000121219 -0.000289847 -0.000113083 -0.000321396 -0.000104431 -0.000346751 -9.45079e-05 -0.000371742 -8.3274e-05 -0.000401547 -7.08534e-05 -0.000428868 -5.6385e-05 -0.00045855 -4.06616e-05 -0.000481685 -2.38933e-05 -0.000501578 -7.2849e-06 -0.000514066 1.04623e-05 -0.000528687 2.88725e-05 -0.000540513 4.84027e-05 -0.000552069 6.91207e-05 -0.000560655 9.11035e-05 -0.000563396 0.00011368 -0.000557131 0.000135941 -0.000534891 0.000156604 -0.000498607 0.000175603 -0.000449571 0.000191996 -0.000388544 0.000205106 -0.000317859 0.000215416 -0.000241088 0.000221064 -0.000154591 0.000222862 -6.98695e-05 0.000221858 1.06073e-05 0.000218204 8.33073e-05 0.000212451 0.000154341 0.000203914 0.000226071 0.000192389 0.000294114 0.000178327 0.000353933 0.000163036 0.00039932 0.000147319 0.000428414 0.000132166 0.000441625 0.00011749 0.000440155 0.000101286 0.000451449 8.21193e-05 0.000487063 6.07131e-05 0.000524758 3.84469e-05 0.000550704 1.65391e-05 0.000559695 -4.29974e-06 0.000555276 -2.36285e-05 0.000539415 -4.16148e-05 0.000516087 -5.82005e-05 0.000490144 -7.34769e-05 0.000460042 -8.75073e-05 0.000429575 -0.000100343 0.000399766 -0.000112108 0.000368859 -0.000122962 0.000339431 -0.000132875 0.00031098 -0.000141963 0.000281825 -0.000150105 0.000253446 -0.000157388 0.000225845 -0.00016383 0.00019817 -0.000169409 0.00017209 -0.000174226 0.00014546 -0.000178203 0.000119243 -0.000181379 9.40418e-05 -0.000183768 6.77794e-05 -0.000185293 4.09307e-05 -0.000185968 1.4397e-05 -0.000185824 -9.28936e-06 -0.000184937 -3.1904e-05 -0.000183255 -5.64581e-05 -0.000180668 -8.36023e-05 -0.000177402 -0.00011003 -0.000173267 -0.000137198 -0.000168194 -0.000168922 -0.000161816 -0.000199128 -0.000154725 -0.000233184 -0.000146477 -0.000265501 -0.000136942 -0.000296282 -0.000126551 -0.000332657 -0.000114776 -0.000368473 -0.000101298 -0.00040128 -8.72485e-05 -0.000438371 -7.13206e-05 -0.000472854 -5.36328e-05 -0.000513308 -3.52765e-05 -0.000542504 -1.53072e-05 -0.000567932 4.85047e-06 -0.000589693 2.69598e-05 -0.00061635 5.00749e-05 -0.000628662 7.30986e-05 -0.000638356 9.70702e-05 -0.000644346 0.000121029 -0.000632319 0.000144233 -0.000616287 0.000166879 -0.000590108 0.000188229 -0.000555523 0.000208068 -0.000513105 0.000225935 -0.000456669 0.000241486 -0.000395242 0.0002544 -0.000326435 0.000264204 -0.000247326 0.000270741 -0.000166661 0.000273881 -8.27711e-05 0.000273628 6.0288e-06 0.00027015 9.20589e-05 0.000263154 0.000180475 0.000252825 0.00026064 0.00023951 0.000335962 0.000224027 0.000406378 0.00020563 0.000469663 0.000185159 0.000525453 0.000163278 0.000565175 0.000140394 0.000600118 0.000117384 0.000626088 9.31684e-05 0.000641104 6.85745e-05 0.000652547 0.000649897 -0.000168003 0.000110541 -0.000170482 8.98939e-05 -0.000172532 7.17395e-05 -0.0001742 5.40314e-05 -0.000175398 3.53321e-05 -0.000175874 1.67212e-05 -0.000176014 -2.72261e-06 -0.00017577 -2.04878e-05 -0.000174516 -4.24787e-05 -0.000173141 -6.07642e-05 -0.00017088 -8.23896e-05 -0.000167599 -0.000107202 -0.000164426 -0.000127096 -0.000159926 -0.000156642 -0.000154339 -0.000184372 -0.000149345 -0.00020541 -0.000141483 -0.000237598 -0.000134392 -0.000261365 -0.000125628 -0.000295045 -0.000114926 -0.000328559 -0.000105166 -0.000354267 -9.21811e-05 -0.000400294 -7.78988e-05 -0.000432271 -6.40165e-05 -0.000462029 -4.65615e-05 -0.000501071 -3.07094e-05 -0.000523248 -1.20628e-05 -0.000560583 8.90346e-06 -0.000588756 2.99709e-05 -0.000611267 5.23209e-05 -0.0006321 7.538e-05 -0.000638668 9.83678e-05 -0.00064221 0.000121743 -0.000638196 0.000144767 -0.000625022 0.000167072 -0.000602876 0.000188265 -0.000566487 0.000208032 -0.000524981 0.000226092 -0.000474998 0.000241839 -0.000413991 0.000255139 -0.000348108 0.000265526 -0.000273392 0.000272886 -0.000194871 0.00027698 -0.000112849 0.000277874 -2.67591e-05 0.000275615 5.85292e-05 0.000270213 0.000139092 0.000261542 0.000222538 0.000250038 0.000297543 0.000235962 0.000364092 0.000219464 0.000428719 0.00020122 0.000481477 0.000181569 0.000525109 0.000160859 0.000560067 0.00013934 0.000586114 0.000117379 0.000603994 9.52071e-05 0.00061363 7.31985e-05 0.000615571 5.16923e-05 0.000610835 3.08517e-05 0.000599257 1.08452e-05 0.000583218 -8.30817e-06 0.000562055 -2.63938e-05 0.000538425 -4.33047e-05 0.000510283 -5.90114e-05 0.000480445 -7.34618e-05 0.000450386 -8.67924e-05 0.00041786 -9.89388e-05 0.000385574 -0.000109798 0.000354294 -0.000119802 0.000321943 -0.000128537 0.000293223 -0.000136344 0.000263435 -0.000143309 0.000235429 -0.000149187 0.00021036 -0.000154426 0.000184727 -0.000159128 0.000161038 -0.00016303 0.000140573 -0.000166614 0.000118474 -0.00016964 9.99317e-05 -0.000172161 8.03772e-05 -0.000174363 6.0097e-05 -0.000175866 3.97778e-05 -0.000176489 1.79137e-05 -0.000176466 -3.59485e-06 -0.000175813 -2.74589e-05 -0.000174535 -4.80484e-05 -0.000172666 -7.16871e-05 -0.000169917 -9.49722e-05 -0.000166855 -0.000116853 -0.000162837 -0.000143838 -0.00015806 -0.000166216 -0.000152801 -0.000191902 -0.000147046 -0.000213602 -0.000141307 -0.000234485 -0.000135119 -0.000256378 -0.000128271 -0.000281328 -0.000120608 -0.000305258 -0.00011193 -0.000331469 -0.00010244 -0.000356553 -9.16671e-05 -0.000383968 -7.94979e-05 -0.000411765 -6.66424e-05 -0.000435608 -5.21553e-05 -0.000464459 -3.66344e-05 -0.000488812 -1.99308e-05 -0.000513514 -2.13911e-06 -0.000533647 1.64681e-05 -0.000550465 3.59993e-05 -0.000563896 5.57887e-05 -0.000569311 7.57865e-05 -0.000570923 9.61012e-05 -0.000566594 0.000116183 -0.000555191 0.000135631 -0.000535631 0.000154399 -0.000510703 0.000172095 -0.000477147 0.000188356 -0.000437059 0.000203346 -0.000391255 0.000216357 -0.000337696 0.000227395 -0.000277368 0.000236083 -0.000211802 0.000242093 -0.000139274 0.000245096 -6.21621e-05 0.000245 1.80389e-05 0.000241519 0.00010035 0.000234842 0.00018121 0.000225051 0.000260313 0.000212499 0.000333663 0.000197204 0.00040277 0.000179672 0.000462488 0.000160748 0.000512688 0.000140258 0.000555844 0.000119071 0.000588497 9.70868e-05 0.000613475 7.50192e-05 0.000627348 5.30966e-05 0.000635408 3.14919e-05 0.000633466 1.07539e-05 0.000624674 -9.23125e-06 0.000609426 -2.78301e-05 0.000587304 -4.52257e-05 0.000561828 -6.13668e-05 0.000533123 -7.58813e-05 0.00050005 -8.88398e-05 0.000466512 -0.00010089 0.000428377 -0.000110466 0.00038862 -0.000118687 0.000352429 -0.000126341 0.000315234 -0.00013211 0.000279973 -0.000137005 0.000244076 -0.000140672 0.00021228 -0.000143562 0.000180928 -0.000145795 0.000153154 -0.00014764 0.000128495 -0.000148887 0.000105171 -0.000150064 8.34278e-05 -0.000150486 6.43897e-05 -0.000150809 4.62706e-05 -0.000150742 2.7678e-05 -0.000150337 1.15844e-05 -0.000149724 -3.10387e-06 -0.000149093 -1.75764e-05 -0.000148132 -3.10261e-05 -0.000147226 -4.37762e-05 -0.000145729 -6.01066e-05 -0.000143848 -7.32017e-05 -0.000142262 -8.94856e-05 -0.000140165 -0.000108832 -0.00013744 -0.000126771 -0.000134354 -0.000144901 -0.000130941 -0.000167739 -0.00012685 -0.000188251 -0.000122207 -0.000212523 -0.00011703 -0.000232156 -0.000111278 -0.00025896 -0.000104636 -0.000283968 -9.72794e-05 -0.000309183 -8.90088e-05 -0.000340061 -7.99112e-05 -0.000366779 -6.91589e-05 -0.000398747 -5.75817e-05 -0.000427109 -4.50743e-05 -0.000455308 -3.0889e-05 -0.000484665 -1.56311e-05 -0.000512908 3.95431e-07 -0.000536275 1.83182e-05 -0.00056025 3.75666e-05 -0.000578939 5.70452e-05 -0.000587507 7.7414e-05 -0.000592518 9.79833e-05 -0.000589201 0.000118714 -0.00057873 0.000139226 -0.000557314 0.00015912 -0.000527395 0.000177844 -0.00048503 0.000194581 -0.00043246 0.000209522 -0.000373569 0.000222044 -0.000302169 0.000231644 -0.000222351 0.000237653 -0.000132402 0.000239699 -3.57429e-05 0.000237064 6.36446e-05 0.000230498 0.000159222 0.000220452 0.000248732 0.000207957 0.000326827 0.000193088 0.000399404 0.000176018 0.000464491 0.000157219 0.00052208 0.000136401 0.000574134 0.000114214 0.000612375 9.16872e-05 0.000639687 6.88887e-05 0.000654108 4.67761e-05 0.000654892 2.61163e-05 0.000644006 6.8319e-06 0.000623786 -1.03518e-05 0.000596019 -2.59528e-05 0.000565544 -3.96435e-05 0.000532528 -5.21778e-05 0.000502937 -6.38273e-05 0.000475504 -7.40078e-05 0.000449755 -8.33022e-05 0.000416506 -9.03967e-05 0.000379002 -9.63389e-05 0.000340451 -0.000101148 0.000298456 -0.000104629 0.000262386 -0.000108385 0.000229871 -0.000111218 0.000201216 -0.000113543 0.000177952 -0.000116109 0.000158039 -0.000118753 0.000137747 -0.000121356 0.000121019 -0.000123677 0.000102961 -0.000125597 8.6436e-05 -0.000128297 6.4671e-05 -0.000129898 4.47787e-05 -0.000130216 2.94302e-05 -0.00013101 3.68972e-06 -0.000131173 -1.59756e-05 -0.000130985 -3.69848e-05 -0.000131291 -4.8036e-05 -0.000130735 -5.54509e-05 -0.000129122 -6.27653e-05 -0.000127589 -7.10074e-05 -0.000127022 -8.38008e-05 -0.000125283 -0.000111719 -0.000122317 -0.000142656 -0.000119083 -0.00017354 -0.000116119 -0.000199591 -0.000112963 -0.000227193 -0.000108739 -0.000265542 -0.000103588 -0.000294997 -9.71392e-05 -0.000327845 -9.01872e-05 -0.000353703 -8.16371e-05 -0.000380292 -7.18979e-05 -0.000411286 -6.10072e-05 -0.000439759 -4.79383e-05 -0.000471619 -3.36196e-05 -0.000496004 -1.78058e-05 -0.000517392 -2.15632e-06 -0.000529716 1.48383e-05 -0.000545682 3.23647e-05 -0.00055804 5.09938e-05 -0.000570698 7.12604e-05 -0.000580921 9.29997e-05 -0.000585135 0.000115681 -0.000579812 0.000138189 -0.000557399 0.000159047 -0.000519465 0.000178651 -0.000469174 0.000195411 -0.000405305 0.000208818 -0.000331266 0.0002196 -0.000251871 0.000225322 -0.000160313 0.000227302 -7.18498e-05 0.000226156 1.17534e-05 0.000222404 8.70592e-05 0.000217051 0.000159694 0.000208618 0.000234504 0.000196898 0.000305834 0.000182257 0.000368575 0.000166657 0.00041492 0.000151502 0.000443569 0.000137546 0.000455581 0.000123254 0.000454447 0.000105674 0.000469029 8.47506e-05 0.000507987 6.19398e-05 0.000547568 3.87624e-05 0.000573882 1.60985e-05 0.000582359 -5.00897e-06 0.000576383 -2.45234e-05 0.000558929 -4.26087e-05 0.000534172 -5.9229e-05 0.000506764 -7.45271e-05 0.00047534 -8.8578e-05 0.000443626 -0.000101403 0.000412591 -0.00011313 0.000380585 -0.000123979 0.000350281 -0.00013388 0.000320881 -0.000142959 0.000290904 -0.000151118 0.000261605 -0.00015841 0.000233136 -0.000164871 0.000204632 -0.000170452 0.000177671 -0.000175289 0.000150298 -0.000179286 0.000123241 -0.000182452 9.72079e-05 -0.00018487 7.01972e-05 -0.000186397 4.24575e-05 -0.000187042 1.50417e-05 -0.000186929 -9.40238e-06 -0.000186025 -3.28082e-05 -0.000184489 -5.79934e-05 -0.000181833 -8.62591e-05 -0.000178461 -0.000113402 -0.000174427 -0.000141232 -0.00016945 -0.000173899 -0.000163044 -0.000205534 -0.000156072 -0.000240157 -0.000147856 -0.000273716 -0.000138199 -0.000305939 -0.000128001 -0.000342856 -0.000116204 -0.000380269 -0.000102642 -0.000414842 -8.87049e-05 -0.000452308 -7.26509e-05 -0.000488908 -5.50277e-05 -0.000530932 -3.65292e-05 -0.000561003 -1.63163e-05 -0.000588145 3.82245e-06 -0.000609832 2.62211e-05 -0.000638749 4.99082e-05 -0.000652349 7.30119e-05 -0.000661459 9.72838e-05 -0.000668617 0.000121692 -0.000656727 0.000145178 -0.000639774 0.000168225 -0.000613155 0.000189844 -0.000577142 0.000210028 -0.000533288 0.000228282 -0.000474923 0.000244219 -0.000411179 0.000257398 -0.000339614 0.000267379 -0.000257308 0.000273953 -0.000173235 0.000277262 -8.60798e-05 0.00027716 6.13049e-06 0.000273523 9.56963e-05 0.000266339 0.000187659 0.00025577 0.000271209 0.000242182 0.00034955 0.000226504 0.000422056 0.000207611 0.000488557 0.000186854 0.00054621 0.000164683 0.000587345 0.000141225 0.000623577 0.000118104 0.00064921 9.34523e-05 0.000665755 6.83975e-05 0.000677602 0.000673959 -0.000168818 0.000113646 -0.000171267 9.23431e-05 -0.00017341 7.38831e-05 -0.000174899 5.55205e-05 -0.000176046 3.64783e-05 -0.000176606 1.7282e-05 -0.000176701 -2.62827e-06 -0.000176408 -2.07803e-05 -0.000175275 -4.3612e-05 -0.000173978 -6.20609e-05 -0.000171845 -8.45231e-05 -0.000168553 -0.000110493 -0.000165398 -0.000130251 -0.000160827 -0.000161214 -0.000155337 -0.000189862 -0.000150461 -0.000210286 -0.000142537 -0.000245522 -0.000135692 -0.000268211 -0.000126835 -0.000303902 -0.000116151 -0.000339243 -0.000106657 -0.000363762 -9.37422e-05 -0.000413209 -7.92849e-05 -0.000446729 -6.52822e-05 -0.000476032 -4.76206e-05 -0.000518733 -3.21021e-05 -0.000538766 -1.32135e-05 -0.000579472 8.14474e-06 -0.000610114 2.91895e-05 -0.000632312 5.17585e-05 -0.000654669 7.52758e-05 -0.000662186 9.85911e-05 -0.000665526 0.000122428 -0.000662032 0.000145714 -0.000648309 0.00016832 -0.000625481 0.000189869 -0.000588036 0.000209964 -0.000545075 0.00022837 -0.000493404 0.000244369 -0.00042999 0.000257874 -0.000361614 0.000268462 -0.000283979 0.000275965 -0.000202374 0.000280248 -0.000117132 0.000281287 -2.77978e-05 0.000278839 6.0977e-05 0.00027323 0.000144701 0.000264414 0.000231354 0.000252652 0.000309305 0.000238341 0.000378404 0.000221578 0.000445482 0.000203136 0.000499919 0.000183173 0.000545072 0.000161999 0.000581241 0.000140048 0.000608064 0.000117604 0.000626439 9.51385e-05 0.000636095 7.29628e-05 0.000637747 5.12574e-05 0.00063254 3.03239e-05 0.00062019 1.02542e-05 0.000603288 -9.37931e-06 0.000581688 -2.75837e-05 0.000556629 -4.45376e-05 0.000527237 -6.03011e-05 0.000496209 -7.46968e-05 0.000464781 -8.80122e-05 0.000431176 -0.00010011 0.000397672 -0.000110932 0.000365116 -0.00012085 0.000331861 -0.000129417 0.000301789 -0.000136972 0.000270991 -0.000143853 0.000242309 -0.000149669 0.000216176 -0.000154725 0.000189784 -0.000159184 0.000165496 -0.000162781 0.000144171 -0.000166178 0.00012187 -0.00016896 0.000102714 -0.000171249 8.26666e-05 -0.000173184 6.2032e-05 -0.000174365 4.09587e-05 -0.000174565 1.81136e-05 -0.000174344 -3.81556e-06 -0.000173649 -2.81546e-05 -0.000171904 -4.97936e-05 -0.000169776 -7.38146e-05 -0.00016683 -9.79179e-05 -0.000163475 -0.000120209 -0.000159328 -0.000147984 -0.000154239 -0.000171305 -0.000148906 -0.000197235 -0.000143013 -0.000219495 -0.000137348 -0.00024015 -0.000131191 -0.000262535 -0.000124475 -0.000288044 -0.000116954 -0.000312779 -0.000108639 -0.000339784 -9.9455e-05 -0.000365736 -8.9091e-05 -0.000394332 -7.73791e-05 -0.000423477 -6.49789e-05 -0.000448009 -5.0875e-05 -0.000478563 -3.57196e-05 -0.000503968 -1.93428e-05 -0.000529891 -1.81031e-06 -0.000551179 1.66523e-05 -0.000568927 3.61707e-05 -0.000583414 5.59548e-05 -0.000589095 7.59279e-05 -0.000590896 9.63696e-05 -0.000587036 0.000116603 -0.000575424 0.000136212 -0.000555241 0.000155146 -0.000529637 0.00017308 -0.000495081 0.000189544 -0.000453522 0.000204847 -0.000406558 0.00021807 -0.000350919 0.000229423 -0.000288721 0.00023829 -0.000220669 0.000244567 -0.000145551 0.000247739 -6.53337e-05 0.000247802 1.79761e-05 0.000244319 0.000103832 0.000237942 0.000187587 0.000228221 0.000270034 0.000215491 0.000346393 0.000200153 0.000418108 0.000182381 0.00048026 0.000163357 0.000531713 0.000142765 0.000576436 0.000121414 0.000609847 9.93923e-05 0.000635497 7.74983e-05 0.000649242 5.58271e-05 0.000657079 3.45447e-05 0.000654749 1.42909e-05 0.000644928 -5.06439e-06 0.000628781 -2.28901e-05 0.00060513 -3.92017e-05 0.000578139 -5.39224e-05 0.000547843 -6.71224e-05 0.00051325 -7.81328e-05 0.000477522 -8.86437e-05 0.000438888 -9.69214e-05 0.000396898 -0.000103644 0.000359152 -0.000109755 0.000321345 -0.000114113 0.000284331 -0.000117579 0.000247541 -0.000120119 0.000214821 -0.000121925 0.000182733 -0.000123083 0.000154312 -0.000124071 0.000129483 -0.000124752 0.000105853 -0.000125404 8.40792e-05 -0.000125348 6.43337e-05 -0.000125256 4.61791e-05 -0.000125018 2.74398e-05 -0.000124566 1.11324e-05 -0.00012397 -3.69956e-06 -0.00012342 -1.81271e-05 -0.000122504 -3.19424e-05 -0.000121477 -4.4803e-05 -0.000120435 -6.11481e-05 -0.000118797 -7.48399e-05 -0.000117335 -9.09481e-05 -0.000115933 -0.000110234 -0.000113734 -0.00012897 -0.000111312 -0.000147323 -0.000108774 -0.000170277 -0.00010545 -0.000191574 -0.000101873 -0.000216101 -9.76098e-05 -0.000236419 -9.29718e-05 -0.000263597 -8.75478e-05 -0.000289392 -8.12793e-05 -0.000315451 -7.4224e-05 -0.000347116 -6.63559e-05 -0.000374647 -5.67491e-05 -0.000408353 -4.62956e-05 -0.000437562 -3.50119e-05 -0.000466591 -2.18602e-05 -0.000497817 -7.59282e-06 -0.000527175 7.49881e-06 -0.000551367 2.46886e-05 -0.00057744 4.32329e-05 -0.000597483 6.19955e-05 -0.000606269 8.19531e-05 -0.000612475 0.000102207 -0.000609455 0.000122754 -0.000599277 0.000143162 -0.000577722 0.000163053 -0.000547286 0.000181878 -0.000503856 0.000198791 -0.000449373 0.000213822 -0.0003886 0.000226458 -0.000314805 0.000236139 -0.000232031 0.000242495 -0.000138759 0.000244696 -3.79438e-05 0.000242328 6.6013e-05 0.000235937 0.000165613 0.000226037 0.000258632 0.000213432 0.000339431 0.000198908 0.000413928 0.000181951 0.000481448 0.000163175 0.000540856 0.000142689 0.000594619 0.000120911 0.000634153 9.91716e-05 0.000661426 7.70839e-05 0.000676196 5.57225e-05 0.000676253 3.61609e-05 0.000663568 1.82115e-05 0.000641735 2.44083e-06 0.00061179 -1.15972e-05 0.000579582 -2.38157e-05 0.000544746 -3.46865e-05 0.000513808 -4.41291e-05 0.000484947 -5.17898e-05 0.000457415 -5.88103e-05 0.000423526 -6.37796e-05 0.000383971 -6.71154e-05 0.000343786 -7.03251e-05 0.000301666 -7.23784e-05 0.000264439 -7.48596e-05 0.000232352 -7.71522e-05 0.000203508 -7.88047e-05 0.000179604 -8.06601e-05 0.000159895 -8.27851e-05 0.000139872 -8.50592e-05 0.000123293 -8.70043e-05 0.000104906 -8.84688e-05 8.79006e-05 -9.11764e-05 6.73786e-05 -9.309e-05 4.66922e-05 -9.30518e-05 2.93921e-05 -9.41923e-05 4.83023e-06 -9.53864e-05 -1.47815e-05 -9.64522e-05 -3.5919e-05 -9.73975e-05 -4.70907e-05 -9.75643e-05 -5.52841e-05 -9.62621e-05 -6.40675e-05 -9.45801e-05 -7.26895e-05 -9.37636e-05 -8.46173e-05 -9.20547e-05 -0.000113428 -8.87141e-05 -0.000145997 -8.61292e-05 -0.000176125 -8.4413e-05 -0.000201307 -8.25533e-05 -0.000229053 -8.04937e-05 -0.000267601 -7.74147e-05 -0.000298076 -7.32481e-05 -0.000332012 -6.86131e-05 -0.000358338 -6.18564e-05 -0.000387049 -5.39031e-05 -0.000419239 -4.49804e-05 -0.000448681 -3.36009e-05 -0.000482998 -2.08857e-05 -0.000508719 -6.564e-06 -0.000531714 7.78517e-06 -0.000544065 2.33311e-05 -0.000561228 3.9873e-05 -0.000574582 5.76869e-05 -0.000588512 7.678e-05 -0.000600015 9.79063e-05 -0.000606262 0.0001203 -0.000602206 0.000142778 -0.000579877 0.000164036 -0.000540723 0.000183376 -0.000488515 0.000199845 -0.000421774 0.000213411 -0.000344832 0.000225425 -0.000263885 0.000232413 -0.0001673 0.000234596 -7.40329e-05 0.000233192 1.31574e-05 0.000229079 9.11727e-05 0.000223498 0.000165275 0.000214939 0.000243062 0.000202498 0.000318275 0.000187869 0.000383203 0.000173144 0.000429645 0.000159612 0.000457102 0.000146953 0.00046824 0.000132385 0.000469015 0.000112936 0.000488479 8.95102e-05 0.000531412 6.43866e-05 0.000572692 3.93161e-05 0.000598952 1.55643e-05 0.000606111 -5.83058e-06 0.000597778 -2.55212e-05 0.00057862 -4.3749e-05 0.0005524 -6.0424e-05 0.000523439 -7.57197e-05 0.000490636 -8.97338e-05 0.00045764 -0.000102524 0.000425381 -0.000114206 0.000392267 -0.000125063 0.000361138 -0.000134945 0.000330762 -0.000144012 0.000299971 -0.000152161 0.000269755 -0.000159475 0.00024045 -0.000165951 0.000211107 -0.000171512 0.000183232 -0.000176405 0.00015519 -0.000180406 0.000127241 -0.000183537 0.000100339 -0.000185991 7.26515e-05 -0.000187541 4.40076e-05 -0.000188172 1.56722e-05 -0.000188065 -9.50975e-06 -0.000187137 -3.37356e-05 -0.000185668 -5.94622e-05 -0.000183221 -8.87064e-05 -0.000179631 -0.000116992 -0.000175429 -0.000145434 -0.000170592 -0.000178735 -0.00016428 -0.000211846 -0.000157455 -0.000246981 -0.00014925 -0.000281921 -0.000139566 -0.000315624 -0.000129499 -0.000352923 -0.000117789 -0.000391979 -0.000104022 -0.000428609 -9.01937e-05 -0.000466137 -7.40736e-05 -0.000505028 -5.63374e-05 -0.000548668 -3.79033e-05 -0.000579437 -1.71225e-05 -0.000608926 2.7016e-06 -0.000629656 2.54241e-05 -0.000661472 4.96442e-05 -0.000676569 7.29155e-05 -0.000684731 9.75867e-05 -0.000693289 0.000122511 -0.000681651 0.000146228 -0.00066349 0.000169705 -0.000636632 0.000191625 -0.000599062 0.000212153 -0.000553816 0.00023072 -0.00049349 0.000246923 -0.000427382 0.00026041 -0.0003531 0.000270666 -0.000267564 0.000277367 -0.000179937 0.00028084 -8.95527e-05 0.000280699 6.27066e-06 0.000276966 9.94294e-05 0.00026967 0.000194955 0.000258838 0.000282041 0.000244911 0.000363477 0.000228947 0.000438019 0.000209784 0.00050772 0.00018869 0.000567304 0.000165983 0.000610052 0.000142051 0.000647509 0.000118897 0.000672363 9.37826e-05 0.00069087 6.81917e-05 0.000703193 0.000698276 -0.000169637 0.000116736 -0.000172219 9.4925e-05 -0.000174363 7.60273e-05 -0.000175593 5.67499e-05 -0.000176827 3.77131e-05 -0.000177431 1.78854e-05 -0.000177463 -2.59573e-06 -0.000177181 -2.10627e-05 -0.000176101 -4.46921e-05 -0.000174889 -6.3273e-05 -0.00017281 -8.66024e-05 -0.000169465 -0.000113838 -0.000166483 -0.000133233 -0.000161957 -0.00016574 -0.000156408 -0.000195411 -0.0001518 -0.000214893 -0.000143676 -0.000253647 -0.000136924 -0.000274963 -0.000128195 -0.00031263 -0.000117312 -0.000350127 -0.000108115 -0.000372958 -9.52389e-05 -0.000426085 -8.05908e-05 -0.000461377 -6.69847e-05 -0.000489638 -4.88543e-05 -0.000536863 -3.33493e-05 -0.000554272 -1.42015e-05 -0.000598619 7.41942e-06 -0.000631735 2.84374e-05 -0.00065333 5.11245e-05 -0.000677356 7.51566e-05 -0.000686218 9.86986e-05 -0.000689068 0.000122986 -0.00068632 0.00014677 -0.000672093 0.000169763 -0.000648474 0.000191702 -0.000609975 0.000212097 -0.00056547 0.000230834 -0.000512141 0.000247111 -0.000446267 0.000260869 -0.000375372 0.00027164 -0.000294751 0.000279256 -0.000209989 0.000283772 -0.000121648 0.000284661 -2.86869e-05 0.000282059 6.35784e-05 0.0002764 0.000150361 0.000267472 0.000240281 0.000255454 0.000321324 0.000240859 0.000392998 0.000223861 0.00046248 0.000204949 0.000518831 0.000184544 0.000565478 0.00016301 0.000602774 0.00014049 0.000630585 0.000117857 0.000649072 9.51785e-05 0.000658774 7.28157e-05 0.000660109 5.111e-05 0.000654246 2.98657e-05 0.000641434 9.53721e-06 0.000623617 -1.0202e-05 0.000601427 -2.84647e-05 0.000574892 -4.54815e-05 0.000544254 -6.13266e-05 0.000512054 -7.56769e-05 0.000479131 -8.89704e-05 0.000444469 -0.000101031 0.000409733 -0.000111583 0.000375668 -0.000121388 0.000341667 -0.000129627 0.000310028 -0.000136933 0.000278297 -0.000143633 0.000249009 -0.000149017 0.00022156 -0.00015368 0.000194447 -0.000157782 0.000169598 -0.000160809 0.000147198 -0.000163709 0.00012477 -0.000165896 0.000104901 -0.000167644 8.44146e-05 -0.000169001 6.33887e-05 -0.000169554 4.15122e-05 -0.00016937 1.79298e-05 -0.000168661 -4.52505e-06 -0.000167424 -2.93911e-05 -0.000165064 -5.21535e-05 -0.00016248 -7.63995e-05 -0.000159341 -0.000101056 -0.000155579 -0.000123971 -0.000151342 -0.000152222 -0.000146028 -0.000176619 -0.00014053 -0.000202733 -0.000134697 -0.000225328 -0.000128864 -0.000245983 -0.000122914 -0.000268484 -0.000116411 -0.000294548 -0.00010928 -0.000319909 -0.00010163 -0.000347434 -9.28359e-05 -0.000374531 -8.30075e-05 -0.000404161 -7.22198e-05 -0.000434265 -6.05016e-05 -0.000459727 -4.71309e-05 -0.000491934 -3.26936e-05 -0.000518405 -1.68988e-05 -0.000545686 -1.2664e-07 -0.000567952 1.79072e-05 -0.000586961 3.7044e-05 -0.000602551 5.65198e-05 -0.000608571 7.62369e-05 -0.000610613 9.65505e-05 -0.00060735 0.000116752 -0.000595626 0.000136373 -0.000574862 0.000155366 -0.00054863 0.000173429 -0.000513144 0.000190022 -0.000470116 0.000205631 -0.000422167 0.000219076 -0.000364364 0.000230803 -0.000300448 0.000239939 -0.000229805 0.000246471 -0.000152084 0.000249858 -6.87202e-05 0.000250138 1.76962e-05 0.000246534 0.000107436 0.000239994 0.000194127 0.000230126 0.000279903 0.000217115 0.000359403 0.000201555 0.000433668 0.000183624 0.000498191 0.000164628 0.000550708 0.000144228 0.000596836 0.000123246 0.00063083 0.000101947 0.000656795 8.07919e-05 0.000670397 6.03085e-05 0.000677563 4.04504e-05 0.000674607 2.21533e-05 0.000663225 4.95294e-06 0.000645981 -1.07997e-05 0.000620882 -2.4853e-05 0.000592193 -3.76184e-05 0.000560609 -4.89557e-05 0.000524587 -5.80945e-05 0.000486661 -6.67478e-05 0.000447541 -7.39239e-05 0.000404074 -7.90824e-05 0.00036431 -8.32055e-05 0.000325468 -8.58767e-05 0.000287003 -8.7929e-05 0.000249594 -8.85994e-05 0.000215491 -8.91093e-05 0.000183243 -8.91668e-05 0.00015437 -8.90721e-05 0.000129388 -8.89339e-05 0.000105714 -8.88002e-05 8.39455e-05 -8.81624e-05 6.36959e-05 -8.73334e-05 4.53501e-05 -8.69329e-05 2.70393e-05 -8.65081e-05 1.07075e-05 -8.58951e-05 -4.3125e-06 -8.55402e-05 -1.84821e-05 -8.48113e-05 -3.26713e-05 -8.38147e-05 -4.57997e-05 -8.31112e-05 -6.18515e-05 -8.17486e-05 -7.62025e-05 -8.05034e-05 -9.21933e-05 -8.00046e-05 -0.000110733 -7.88445e-05 -0.00013013 -7.71346e-05 -0.000149033 -7.55483e-05 -0.000171864 -7.34585e-05 -0.000193664 -7.12986e-05 -0.000218261 -6.83816e-05 -0.000239336 -6.53263e-05 -0.000266653 -6.16136e-05 -0.000293105 -5.67724e-05 -0.000320292 -5.148e-05 -0.000352408 -4.50602e-05 -0.000381067 -3.7343e-05 -0.000416071 -2.86552e-05 -0.00044625 -1.90331e-05 -0.000476214 -7.50669e-06 -0.000509343 5.02211e-06 -0.000539704 1.89173e-05 -0.000565262 3.49531e-05 -0.000593476 5.22853e-05 -0.000614816 6.97601e-05 -0.000623744 8.87123e-05 -0.000631428 0.000108201 -0.000628944 0.000127991 -0.000619067 0.000147904 -0.000597635 0.00016747 -0.000566852 0.00018612 -0.000522505 0.000203028 -0.000466282 0.000218348 -0.00040392 0.000231305 -0.000327762 0.000241461 -0.000242187 0.000247988 -0.000145286 0.000250377 -4.03321e-05 0.000247859 6.85306e-05 0.00024112 0.000172352 0.000230952 0.0002688 0.000217978 0.000352406 0.000203393 0.000428513 0.000186537 0.000498305 0.000168008 0.000559385 0.000148056 0.000614571 0.000127157 0.000655052 0.000106689 0.000681895 8.67173e-05 0.000696167 6.76311e-05 0.000695339 5.06941e-05 0.000680505 3.52836e-05 0.000657146 2.14915e-05 0.000625582 9.69842e-06 0.000591376 -7.40336e-07 0.000555185 -9.83125e-06 0.000522899 -1.74143e-05 0.00049253 -2.20107e-05 0.000462012 -2.53005e-05 0.000426816 -2.7498e-05 0.000386169 -2.80082e-05 0.000344296 -2.91806e-05 0.000302839 -2.97941e-05 0.000265052 -3.05616e-05 0.000233119 -3.2163e-05 0.00020511 -3.33045e-05 0.000180746 -3.43542e-05 0.000160945 -3.57821e-05 0.0001413 -3.75247e-05 0.000125036 -3.94491e-05 0.00010683 -4.05049e-05 8.89564e-05 -4.26118e-05 6.94855e-05 -4.50261e-05 4.91065e-05 -4.46172e-05 2.89832e-05 -4.56464e-05 5.85951e-06 -4.77158e-05 -1.27121e-05 -4.99144e-05 -3.37204e-05 -5.14453e-05 -4.55598e-05 -5.1889e-05 -5.48404e-05 -5.09536e-05 -6.50028e-05 -4.93537e-05 -7.42894e-05 -4.78068e-05 -8.61642e-05 -4.55124e-05 -0.000115722 -4.21133e-05 -0.000149396 -4.01028e-05 -0.000178136 -3.98161e-05 -0.000201593 -3.93155e-05 -0.000229554 -3.99496e-05 -0.000266967 -3.97404e-05 -0.000298285 -3.85914e-05 -0.000333161 -3.70635e-05 -0.000359866 -3.28063e-05 -0.000391306 -2.71828e-05 -0.000424863 -2.03428e-05 -0.000455521 -1.15775e-05 -0.000491764 -9.69229e-07 -0.000519328 1.13583e-05 -0.000544041 2.37171e-05 -0.000556424 3.76537e-05 -0.000575165 5.22477e-05 -0.000589176 6.87517e-05 -0.000605016 8.61981e-05 -0.000617461 0.000105865 -0.000625928 0.000127013 -0.000623355 0.000149028 -0.000601893 0.000170182 -0.000561877 0.000190038 -0.000508371 0.0002077 -0.000439435 0.000221874 -0.000359006 0.000233421 -0.000275432 0.000238547 -0.000172426 0.00024001 -7.54959e-05 0.000238358 1.48086e-05 0.000234349 9.51822e-05 0.00022899 0.000170633 0.000220837 0.000251215 0.000209533 0.000329579 0.000196738 0.000395999 0.000183945 0.000442438 0.000171361 0.000469686 0.000158632 0.000480969 0.000142814 0.000484832 0.000120699 0.000510594 9.45479e-05 0.000557563 6.73207e-05 0.000599919 4.06606e-05 0.000625612 1.58546e-05 0.000630917 -6.14914e-06 0.000619782 -2.61363e-05 0.000598607 -4.4562e-05 0.000570826 -6.13771e-05 0.000540254 -7.67833e-05 0.000506042 -9.08401e-05 0.000471697 -0.000103641 0.000438182 -0.000115266 0.000403892 -0.000126116 0.000371988 -0.000135953 0.000340599 -0.000145025 0.000309043 -0.000153173 0.000277902 -0.000160457 0.000247735 -0.000166936 0.000217586 -0.000172458 0.000188754 -0.00017737 0.000160102 -0.000181429 0.000131301 -0.000184516 0.000103427 -0.000186985 7.51199e-05 -0.000188581 4.56037e-05 -0.000189221 1.63123e-05 -0.000189173 -9.5581e-06 -0.000188195 -3.47129e-05 -0.000186723 -6.0935e-05 -0.000184422 -9.10065e-05 -0.0001809 -0.000120515 -0.000176595 -0.000149738 -0.000171822 -0.000183508 -0.000165519 -0.000218149 -0.00015889 -0.00025361 -0.000150619 -0.000290192 -0.000140986 -0.000325256 -0.000131061 -0.000362849 -0.000119419 -0.000403621 -0.000105527 -0.0004425 -9.15195e-05 -0.000480144 -7.55501e-05 -0.000520998 -5.76018e-05 -0.000566616 -3.92966e-05 -0.000597742 -1.8059e-05 -0.000630164 1.42671e-06 -0.000649141 2.44986e-05 -0.000684543 4.94177e-05 -0.000701488 7.26732e-05 -0.000707986 9.77193e-05 -0.000718335 0.000123253 -0.000707184 0.000147332 -0.000687569 0.000171361 -0.000660661 0.000193581 -0.000621283 0.000214463 -0.000574698 0.000233345 -0.000512372 0.000249851 -0.000443889 0.000263609 -0.000366858 0.000273991 -0.000277946 0.000280981 -0.000186927 0.000284664 -9.32356e-05 0.000284345 6.59016e-06 0.000280472 0.000103302 0.000272954 0.000202473 0.000261946 0.000293049 0.000247777 0.000377646 0.000231767 0.000454029 0.000212163 0.000527324 0.000190824 0.000588643 0.000167339 0.000633536 0.000142859 0.000671989 0.000119704 0.000695518 9.40634e-05 0.000716511 6.79548e-05 0.000729301 0.000722848 -0.000170234 0.000119567 -0.000173094 9.7785e-05 -0.000175074 7.80068e-05 -0.000176073 5.77491e-05 -0.00017752 3.91606e-05 -0.000178289 1.86541e-05 -0.000178125 -2.75969e-06 -0.000177863 -2.13247e-05 -0.000176827 -4.57283e-05 -0.00017569 -6.44102e-05 -0.00017369 -8.86023e-05 -0.00017035 -0.000117178 -0.000167452 -0.000136131 -0.000163103 -0.000170089 -0.000157519 -0.000200995 -0.000153179 -0.000219233 -0.000144896 -0.00026193 -0.000138359 -0.0002815 -0.000129657 -0.000321332 -0.00011851 -0.000361274 -0.000109758 -0.00038171 -9.67205e-05 -0.000439122 -8.19428e-05 -0.000476155 -6.86176e-05 -0.000502963 -5.00454e-05 -0.000555435 -3.51738e-05 -0.000569143 -1.54595e-05 -0.000618334 6.61324e-06 -0.000653808 2.77114e-05 -0.000674428 5.05085e-05 -0.000700154 7.49862e-05 -0.000710696 9.86716e-05 -0.000712753 0.000123555 -0.000711204 0.000147712 -0.00069625 0.000171059 -0.000671821 0.00019345 -0.000632367 0.000214327 -0.000586348 0.000233479 -0.000531293 0.000250096 -0.000462884 0.000264196 -0.000389471 0.000275107 -0.000305661 0.000282779 -0.000217662 0.000287336 -0.000126205 0.000288111 -2.94616e-05 0.000285492 6.61971e-05 0.000279807 0.000156046 0.000270827 0.000249261 0.000258567 0.000333583 0.000243645 0.000407921 0.000226088 0.000480038 0.000206843 0.000538075 0.000185952 0.000586368 0.000163986 0.00062474 0.000141231 0.00065334 0.00011838 0.000671923 9.55364e-05 0.000681617 7.29544e-05 0.000682691 5.07278e-05 0.000676473 2.91068e-05 0.000663055 8.38234e-06 0.000644341 -1.12894e-05 0.000621099 -2.94676e-05 0.00059307 -4.65215e-05 0.000561308 -6.22662e-05 0.000527798 -7.63415e-05 0.000493207 -8.93711e-05 0.000457499 -0.000101202 0.000421564 -0.000111415 0.000385881 -0.000120749 0.000351001 -0.00012854 0.00031782 -0.000135545 0.000285303 -0.000141584 0.000255048 -0.000146227 0.000226203 -0.0001501 0.00019832 -0.000153224 0.000172722 -0.000155194 0.000149168 -0.000157041 0.000126618 -0.000158123 0.000105982 -0.000158849 8.51413e-05 -0.000159215 6.37545e-05 -0.000158873 4.11698e-05 -0.000157866 1.69228e-05 -0.000155989 -6.40181e-06 -0.000154099 -3.12815e-05 -0.000150917 -5.53352e-05 -0.000147729 -7.95873e-05 -0.000144444 -0.000104341 -0.000140198 -0.000128218 -0.00013599 -0.00015643 -0.000130759 -0.000181849 -0.000125284 -0.000208208 -0.000119682 -0.00023093 -0.000114096 -0.00025157 -0.000108409 -0.000274171 -0.000102343 -0.000300614 -9.56884e-05 -0.000326564 -8.87129e-05 -0.000354409 -8.06109e-05 -0.000382633 -7.16896e-05 -0.000413082 -6.19428e-05 -0.000444012 -5.08988e-05 -0.000470771 -3.86885e-05 -0.000504144 -2.52748e-05 -0.000531819 -1.04658e-05 -0.000560495 5.37449e-06 -0.000583792 2.27365e-05 -0.000604323 4.12824e-05 -0.000621097 6.0247e-05 -0.000627536 7.9524e-05 -0.00062989 9.9469e-05 -0.000627295 0.000119446 -0.000615603 0.000138917 -0.000594332 0.000157733 -0.000567447 0.000175514 -0.000530925 0.000191982 -0.000486584 0.000207529 -0.000437714 0.000220844 -0.000377679 0.000232679 -0.000312282 0.000241884 -0.000239011 0.000248536 -0.000158735 0.000252056 -7.22407e-05 0.000252537 1.72148e-05 0.000249035 0.000110938 0.000242561 0.000200601 0.000232933 0.000289532 0.000220107 0.000372229 0.000205063 0.000448711 0.000187596 0.000515658 0.000169446 0.000568858 0.000149923 0.000616359 0.000129838 0.000650915 0.000109704 0.000676929 8.96142e-05 0.000690487 7.06106e-05 0.000696566 5.19674e-05 0.00069325 3.45364e-05 0.000680656 1.82383e-05 0.00066228 3.5495e-06 0.000635571 -9.21269e-06 0.000604955 -2.0046e-05 0.000571442 -2.9291e-05 0.000533832 -3.57751e-05 0.000493145 -4.08889e-05 0.000452655 -4.49268e-05 0.000408112 -4.66415e-05 0.000366025 -4.70375e-05 0.000325864 -4.64828e-05 0.000286448 -4.57574e-05 0.000248868 -4.3956e-05 0.00021369 -4.24357e-05 0.000181723 -4.11464e-05 0.000153081 -3.98816e-05 0.000128123 -3.87796e-05 0.000104612 -3.77061e-05 8.28721e-05 -3.6535e-05 6.25248e-05 -3.48593e-05 4.36744e-05 -3.41418e-05 2.63219e-05 -3.3637e-05 1.02027e-05 -3.32184e-05 -4.7311e-06 -3.30451e-05 -1.86554e-05 -3.2792e-05 -3.29243e-05 -3.17992e-05 -4.67925e-05 -3.14452e-05 -6.22055e-05 -3.03772e-05 -7.72705e-05 -2.95195e-05 -9.3051e-05 -2.9915e-05 -0.000110337 -2.99829e-05 -0.000130062 -2.9259e-05 -0.000149757 -2.88975e-05 -0.000172225 -2.8305e-05 -0.000194257 -2.79952e-05 -0.000218571 -2.68242e-05 -0.000240507 -2.5542e-05 -0.000267935 -2.40881e-05 -0.000294559 -2.08946e-05 -0.000323486 -1.80319e-05 -0.000355271 -1.37074e-05 -0.000385392 -8.34336e-06 -0.000421435 -2.2199e-06 -0.000452373 5.42188e-06 -0.000483855 1.45992e-05 -0.00051852 2.51474e-05 -0.000550252 3.72537e-05 -0.000577368 5.17892e-05 -0.000608011 6.76021e-05 -0.000630628 8.36798e-05 -0.000639822 0.000101426 -0.000649174 0.000119786 -0.000647304 0.000138453 -0.000637735 0.000157397 -0.000616578 0.000176079 -0.000585535 0.000193748 -0.000540174 0.000210083 -0.000482617 0.000224739 -0.000418576 0.000236994 -0.000340016 0.000247009 -0.000252202 0.000253506 -0.000151783 0.000255949 -4.27752e-05 0.000253726 7.07532e-05 0.000247198 0.00017888 0.000237681 0.000278317 0.000225475 0.000364612 0.000211943 0.000442045 0.000196653 0.000513595 0.000179677 0.00057636 0.000161203 0.000633045 0.000142349 0.000673906 0.00012466 0.000699584 0.000107452 0.000713376 8.97691e-05 0.000713022 7.35655e-05 0.000696708 5.93972e-05 0.000671314 4.74488e-05 0.00063753 3.77583e-05 0.000601066 2.93903e-05 0.000563553 2.31859e-05 0.000529103 1.83022e-05 0.000497413 1.7221e-05 0.000463093 1.90538e-05 0.000424983 2.07621e-05 0.000384461 2.3257e-05 0.000341802 2.42926e-05 0.000301803 2.43091e-05 0.000265036 2.4522e-05 0.000232906 2.39878e-05 0.000205644 2.33363e-05 0.000181397 2.32217e-05 0.000161059 2.19957e-05 0.000142526 2.09877e-05 0.000126044 1.9461e-05 0.000108357 1.83671e-05 9.00503e-05 1.73908e-05 7.04618e-05 1.51709e-05 5.13264e-05 1.52773e-05 2.88768e-05 1.47112e-05 6.4256e-06 1.34394e-05 -1.14404e-05 1.08644e-05 -3.11454e-05 8.93819e-06 -4.36336e-05 8.84508e-06 -5.47473e-05 9.85255e-06 -6.60103e-05 1.20858e-05 -7.65226e-05 1.52367e-05 -8.93151e-05 1.82251e-05 -0.00011871 2.08844e-05 -0.000152055 2.15782e-05 -0.00017883 2.02946e-05 -0.00020031 1.90776e-05 -0.000228337 1.56591e-05 -0.000263549 1.23317e-05 -0.000294958 9.52277e-06 -0.000330352 7.48152e-06 -0.000357824 8.49032e-06 -0.000392315 1.08119e-05 -0.000427184 1.44225e-05 -0.000459132 2.01798e-05 -0.000497521 2.80669e-05 -0.000527215 3.76308e-05 -0.000553605 4.78461e-05 -0.000566639 5.97149e-05 -0.000587033 7.24592e-05 -0.00060192 8.75348e-05 -0.000620092 0.000103021 -0.000632948 0.000120553 -0.00064346 0.000139288 -0.00064209 0.000159383 -0.000621987 0.000178402 -0.000580897 0.000197297 -0.000527266 0.000214494 -0.000456632 0.000228347 -0.000372859 0.000241802 -0.000288887 0.000248498 -0.000179122 0.000250554 -7.75518e-05 0.000249188 1.61742e-05 0.000245828 9.85427e-05 0.000241049 0.000175412 0.000234027 0.000258237 0.000223291 0.000340315 0.000209473 0.000409817 0.000195036 0.000456875 0.000181574 0.000483148 0.000168682 0.000493861 0.000151463 0.000502051 0.000126676 0.000535381 9.8271e-05 0.000585969 6.91751e-05 0.000629015 4.07519e-05 0.000654036 1.4727e-05 0.000656942 -7.70519e-06 0.000642214 -2.78107e-05 0.000618712 -4.6237e-05 0.000589252 -6.29967e-05 0.000557014 -7.83639e-05 0.000521409 -9.23732e-05 0.000485706 -0.000105177 0.000450986 -0.000116784 0.000415499 -0.000127728 0.000382932 -0.000137638 0.000350509 -0.00014674 0.000318145 -0.000154712 0.000285875 -0.000161722 0.000254744 -0.000167923 0.000223788 -0.000173165 0.000193996 -0.00017779 0.000164727 -0.000181716 0.000135227 -0.000184645 0.000106355 -0.000186938 7.7413e-05 -0.000188523 4.71892e-05 -0.000189053 1.68427e-05 -0.000189181 -9.43017e-06 -0.000188281 -3.56131e-05 -0.000186747 -6.24695e-05 -0.000184805 -9.29486e-05 -0.000181504 -0.000123816 -0.000177466 -0.000153777 -0.000172887 -0.000188086 -0.000166505 -0.000224531 -0.000160178 -0.000259938 -0.000151771 -0.000298599 -0.000142387 -0.00033464 -0.000132602 -0.000372633 -0.000121065 -0.000415159 -0.000106884 -0.000456681 -9.32314e-05 -0.000493797 -7.71087e-05 -0.00053712 -5.88838e-05 -0.000584841 -4.06968e-05 -0.000615929 -1.92734e-05 -0.000651587 1.51715e-07 -0.000668566 2.35207e-05 -0.000707912 4.91671e-05 -0.000727135 7.2388e-05 -0.000731207 9.78215e-05 -0.000743768 0.000124024 -0.000733387 0.000148315 -0.00071186 0.00017292 -0.000685267 0.000195581 -0.000643943 0.000216837 -0.000595954 0.000236263 -0.000531797 0.000252992 -0.000460617 0.000267057 -0.000380923 0.000277624 -0.000288513 0.000284899 -0.000194202 0.000288465 -9.68018e-05 0.000288002 7.05289e-06 0.000284138 0.000107166 0.000276542 0.000210068 0.00026518 0.000304412 0.000250861 0.000391964 0.000234862 0.000470029 0.000214711 0.000547474 0.000192799 0.000610555 0.000168728 0.000657608 0.000143632 0.000697084 0.000120754 0.000718397 9.43505e-05 0.000742914 6.76868e-05 0.000755965 0.000747675 -0.000166327 0.000117614 -0.000168822 0.00010028 -0.00017028 7.9465e-05 -0.000171326 5.87946e-05 -0.000171456 3.9291e-05 -0.000171004 1.82015e-05 -0.000170357 -3.40661e-06 -0.00016944 -2.22418e-05 -0.000168847 -4.63211e-05 -0.000168474 -6.47832e-05 -0.000167862 -8.92139e-05 -0.000166815 -0.000118225 -0.00016571 -0.000137236 -0.000161938 -0.000173861 -0.0001567 -0.000206232 -0.000152831 -0.000223102 -0.000144962 -0.000269799 -0.000139095 -0.000287367 -0.000130808 -0.000329619 -0.000119885 -0.000372197 -0.000111398 -0.000390197 -9.81454e-05 -0.000452375 -8.32162e-05 -0.000491084 -7.01096e-05 -0.00051607 -5.11833e-05 -0.000574362 -3.70208e-05 -0.000583306 -1.71215e-05 -0.000638233 5.74025e-06 -0.00067667 2.68322e-05 -0.00069552 4.98241e-05 -0.000723146 7.4962e-05 -0.000735834 9.868e-05 -0.000736471 0.000124029 -0.000736553 0.000148594 -0.000720814 0.000172333 -0.00069556 0.00019524 -0.000655274 0.000216529 -0.000607637 0.000236076 -0.000550839 0.000253025 -0.000479833 0.000267463 -0.00040391 0.000278639 -0.000316838 0.000286501 -0.000225523 0.000290992 -0.000130697 0.000291729 -3.01978e-05 0.000289135 6.8791e-05 0.000283337 0.000161843 0.000274137 0.000258462 0.000261664 0.000346056 0.000246336 0.000423249 0.000228274 0.000498099 0.000208616 0.000557734 0.000187435 0.000607549 0.000165185 0.00064699 0.000142145 0.00067638 0.00011897 0.000695098 9.5611e-05 0.000704976 7.26415e-05 0.000705661 5.02011e-05 0.000698913 2.85459e-05 0.000684711 7.8853e-06 0.000665001 -1.12875e-05 0.000640272 -2.94687e-05 0.000611251 -4.63767e-05 0.000578216 -6.18024e-05 0.000543224 -7.57334e-05 0.000507138 -8.83854e-05 0.000470151 -9.95504e-05 0.000432729 -0.000109295 0.000395625 -0.000117787 0.000359493 -0.000124782 0.000324814 -0.000130674 0.000291194 -0.000135148 0.000259522 -0.000138286 0.00022934 -0.000140851 0.000200886 -0.000142519 0.000174389 -0.000143299 0.000149949 -0.000143916 0.000127235 -0.000143962 0.000106028 -0.000143771 8.49503e-05 -0.000143117 6.30999e-05 -0.000141673 3.97256e-05 -0.000139493 1.47428e-05 -0.000136436 -9.4581e-06 -0.000133211 -3.45066e-05 -0.000128545 -6.0001e-05 -0.00012379 -8.43427e-05 -0.000119583 -0.000108548 -0.00011389 -0.00013391 -0.00010901 -0.00016131 -0.000103495 -0.000187364 -9.84679e-05 -0.000213235 -9.33223e-05 -0.000236075 -8.85796e-05 -0.000256313 -8.38884e-05 -0.000278862 -7.91891e-05 -0.000305313 -7.33855e-05 -0.000332367 -6.75791e-05 -0.000360216 -6.07114e-05 -0.0003895 -5.31983e-05 -0.000420595 -4.52141e-05 -0.000451996 -3.55767e-05 -0.000480409 -2.47913e-05 -0.000514929 -1.3082e-05 -0.000543528 3.91314e-08 -0.000573616 1.42564e-05 -0.000598009 3.03864e-05 -0.000620453 4.78283e-05 -0.000638539 6.59223e-05 -0.00064563 8.45571e-05 -0.000648525 0.000103952 -0.00064669 0.000123762 -0.000635413 0.000143245 -0.000613815 0.000161959 -0.00058616 0.00017991 -0.000548876 0.000196355 -0.000503029 0.000212121 -0.00045348 0.000225378 -0.000390936 0.000237329 -0.000324233 0.000246697 -0.000248378 0.00025347 -0.000165509 0.000257086 -7.58564e-05 0.00025786 1.64402e-05 0.000254548 0.00011425 0.000248608 0.000206541 0.000239583 0.000298557 0.000227226 0.000384586 0.000212605 0.000463332 0.000195532 0.000532732 0.000177541 0.000586849 0.000158142 0.000635759 0.00013833 0.000670727 0.00011865 0.000696609 9.91647e-05 0.000709972 8.10469e-05 0.000714684 6.42553e-05 0.000710042 4.92945e-05 0.000695617 3.64128e-05 0.000675161 2.63519e-05 0.000645632 1.95742e-05 0.000611733 1.63535e-05 0.000574663 1.52087e-05 0.000534977 1.53819e-05 0.000492972 1.73077e-05 0.000450729 1.79521e-05 0.000407468 1.86834e-05 0.000365294 1.97804e-05 0.000324767 2.12166e-05 0.000285012 2.27998e-05 0.000247285 2.45455e-05 0.000211944 2.61788e-05 0.000180089 2.71423e-05 0.000152117 2.81091e-05 0.000127157 2.90152e-05 0.000103706 3.0134e-05 8.17533e-05 3.14027e-05 6.12561e-05 3.28527e-05 4.22245e-05 3.4019e-05 2.51555e-05 3.50649e-05 9.15688e-06 3.54121e-05 -5.07839e-06 3.58454e-05 -1.90887e-05 3.626e-05 -3.33389e-05 3.73632e-05 -4.78957e-05 3.79782e-05 -6.28206e-05 3.83884e-05 -7.76806e-05 3.85538e-05 -9.32165e-05 3.78647e-05 -0.000109648 3.64804e-05 -0.000128678 3.56612e-05 -0.000148938 3.41946e-05 -0.000170758 3.22579e-05 -0.00019232 3.01613e-05 -0.000216474 2.91741e-05 -0.00023952 2.82564e-05 -0.000267017 2.75611e-05 -0.000293863 2.79513e-05 -0.000323876 2.85921e-05 -0.000355912 3.02058e-05 -0.000387005 3.25002e-05 -0.000423729 3.50965e-05 -0.00045497 3.99683e-05 -0.000488727 4.55471e-05 -0.000524099 5.28896e-05 -0.000557595 6.23419e-05 -0.00058682 7.4182e-05 -0.000619852 8.72063e-05 -0.000643653 0.000101157 -0.000653772 0.000117839 -0.000665856 0.000134937 -0.000664402 0.000153409 -0.000656207 0.000171994 -0.000635163 0.000190333 -0.000603874 0.000207561 -0.000557401 0.000223495 -0.000498551 0.00023777 -0.000432852 0.000249564 -0.000351809 0.000259365 -0.000262003 0.000265462 -0.00015788 0.00026811 -4.5423e-05 0.000266289 7.25736e-05 0.000260801 0.000184368 0.000252677 0.00028644 0.000241499 0.00037579 0.000229078 0.000454466 0.000214683 0.00052799 0.000197818 0.000593225 0.000180412 0.000650451 0.000162291 0.000692026 0.000143972 0.000717903 0.00012698 0.000730368 0.000112504 0.000727497 0.000100883 0.000708329 9.14693e-05 0.000680728 8.41165e-05 0.000644883 7.80063e-05 0.000607176 7.25239e-05 0.000569035 6.97852e-05 0.000531842 6.93923e-05 0.000497806 7.22923e-05 0.000460193 7.76556e-05 0.00041962 8.24908e-05 0.000379625 8.60076e-05 0.000338285 8.80725e-05 0.000299738 8.80176e-05 0.000265091 8.81987e-05 0.000232725 8.8381e-05 0.000205461 8.83045e-05 0.000181474 8.87899e-05 0.000160574 8.83117e-05 0.000143005 8.79341e-05 0.000126422 8.72976e-05 0.000108993 8.65326e-05 9.08153e-05 8.57642e-05 7.12303e-05 8.55105e-05 5.15801e-05 8.54472e-05 2.89401e-05 8.57266e-05 6.14616e-06 8.64008e-05 -1.21146e-05 8.51467e-05 -2.98913e-05 8.44437e-05 -4.29306e-05 8.51314e-05 -5.5435e-05 8.74185e-05 -6.82974e-05 9.09487e-05 -8.00528e-05 9.70719e-05 -9.54383e-05 0.000103335 -0.000124974 0.000103675 -0.000152395 9.88737e-05 -0.000174029 9.54423e-05 -0.000196878 9.21533e-05 -0.000225047 8.66106e-05 -0.000258006 8.06267e-05 -0.000288974 7.4218e-05 -0.000323943 6.90659e-05 -0.000352672 6.63755e-05 -0.000389624 6.4352e-05 -0.000425161 6.38035e-05 -0.000458584 6.47346e-05 -0.000498452 6.79886e-05 -0.000530469 7.30241e-05 -0.000558641 7.97818e-05 -0.000573396 8.8466e-05 -0.000595718 9.84119e-05 -0.000611866 0.000111406 -0.000633085 0.000124825 -0.000646367 0.000141673 -0.000660308 0.000158894 -0.000659311 0.000177734 -0.000640826 0.000195159 -0.000598322 0.000212542 -0.000544649 0.000227875 -0.000471966 0.00023949 -0.000384474 0.000252485 -0.000301882 0.000261724 -0.000188361 0.000266686 -8.2514e-05 0.000265883 1.69772e-05 0.000262343 0.000102083 0.000257185 0.000180569 0.000249986 0.000265436 0.000237791 0.00035251 0.000221918 0.00042569 0.000207622 0.000471171 0.000196888 0.000493882 0.000186646 0.000504104 0.000168326 0.000520371 0.000139463 0.000564244 0.000107232 0.0006182 7.50221e-05 0.000661225 4.42797e-05 0.000684778 1.68826e-05 0.000684339 -6.81218e-06 0.000665909 -2.76504e-05 0.000639551 -4.6805e-05 0.000608407 -6.41848e-05 0.000574394 -8.00124e-05 0.000537237 -9.4073e-05 0.000499767 -0.000106698 0.000463611 -0.000117872 0.000426673 -0.000128452 0.000393512 -0.000137868 0.000359924 -0.000146423 0.0003267 -0.000153781 0.000293233 -0.00015998 0.000260943 -0.000165247 0.000229055 -0.000169575 0.000198324 -0.000173048 0.0001682 -0.000175919 0.000138098 -0.000178056 0.000108493 -0.000179496 7.88521e-05 -0.00018068 4.83737e-05 -0.000181219 1.73818e-05 -0.000181581 -9.06815e-06 -0.000181538 -3.56558e-05 -0.000180644 -6.33638e-05 -0.000179583 -9.40093e-05 -0.000177731 -0.000125668 -0.000174268 -0.000157239 -0.000170488 -0.000191866 -0.000164951 -0.000230067 -0.000159337 -0.000265552 -0.000151801 -0.000306136 -0.000143132 -0.000343308 -0.00013341 -0.000382355 -0.000122463 -0.000426106 -0.000108294 -0.000470851 -9.4872e-05 -0.000507218 -7.87043e-05 -0.000553288 -6.03245e-05 -0.000603221 -4.23365e-05 -0.000633917 -2.04369e-05 -0.000673487 -1.08499e-06 -0.000687918 2.25244e-05 -0.000731522 4.90199e-05 -0.00075363 7.18864e-05 -0.000754074 9.7742e-05 -0.000769624 0.000124741 -0.000760387 0.000149287 -0.000736405 0.000174549 -0.000710529 0.00019753 -0.000666924 0.000219176 -0.000617601 0.000239097 -0.000551719 0.000256284 -0.000477804 0.000270724 -0.000395364 0.000281556 -0.000299345 0.000288863 -0.000201508 0.000292305 -0.000100244 0.000291841 7.51701e-06 0.000288048 0.000110959 0.000280444 0.000217673 0.000268624 0.000316232 0.000253881 0.000406708 0.000238121 0.000485789 0.000217174 0.000568421 0.0001949 0.000632829 0.000170043 0.000682465 0.000144513 0.000722614 0.000122303 0.000740607 9.46346e-05 0.000770582 6.73908e-05 0.000783209 0.000772765 -0.00017169 0.000120367 -0.000176846 0.000105436 -0.000181478 8.40968e-05 -0.000186002 6.33186e-05 -0.00018969 4.29792e-05 -0.0001932 2.17111e-05 -0.000196585 -2.1733e-08 -0.000196896 -2.1931e-05 -0.000194813 -4.84038e-05 -0.000188989 -7.06067e-05 -0.000178381 -9.98227e-05 -0.000170353 -0.000126253 -0.000161564 -0.000146025 -0.000152841 -0.000182584 -0.00014308 -0.000215992 -0.000136844 -0.000229338 -0.000131504 -0.000275139 -0.000130252 -0.000288619 -0.000126766 -0.000333106 -0.000118366 -0.000380596 -0.000111502 -0.000397061 -9.86266e-05 -0.000465251 -8.44495e-05 -0.000505261 -7.16118e-05 -0.000528907 -5.22341e-05 -0.000593739 -3.88679e-05 -0.000596672 -1.85071e-05 -0.000658594 4.93738e-06 -0.000700114 2.59434e-05 -0.000716526 4.91685e-05 -0.000746371 7.5275e-05 -0.00076194 9.89831e-05 -0.000760179 0.000124863 -0.000762433 0.000149886 -0.000745836 0.00017389 -0.000719565 0.000197192 -0.000678576 0.000218883 -0.000629328 0.000238786 -0.000570742 0.000256045 -0.000497093 0.000270832 -0.000418696 0.000282216 -0.000328222 0.000290332 -0.000233639 0.000294994 -0.000135359 0.00029583 -3.10335e-05 0.000293184 7.14369e-05 0.000287043 0.000167984 0.000277535 0.000267969 0.000264778 0.000358814 0.000249054 0.000438972 0.000230841 0.000516313 0.000210886 0.000577688 0.000189372 0.000629064 0.0001667 0.000669662 0.000143097 0.000699983 0.000119482 0.000718713 9.55829e-05 0.000728875 7.22394e-05 0.000729004 4.96634e-05 0.000721489 2.77872e-05 0.000706587 7.10628e-06 0.000685682 -1.19193e-05 0.000659297 -3.00041e-05 0.000629336 -4.65412e-05 0.000594753 -6.16347e-05 0.000558318 -7.52781e-05 0.000520781 -8.74293e-05 0.000482302 -9.80425e-05 0.000443342 -0.000107011 0.000404594 -0.000114546 0.000367028 -0.000120664 0.000330932 -0.000125541 0.000296071 -0.000129495 0.000263477 -0.000132586 0.000232431 -0.000135143 0.000203442 -0.000137076 0.000176322 -0.000138261 0.000151134 -0.000139025 0.000127999 -0.000139326 0.000106329 -0.000139268 8.4892e-05 -0.00013864 6.24719e-05 -0.000137135 3.82208e-05 -0.000134962 1.25697e-05 -0.000131595 -1.2825e-05 -0.000127437 -3.86649e-05 -0.000121645 -6.57926e-05 -0.000115168 -9.08199e-05 -0.000109115 -0.000114601 -0.000101027 -0.000141998 -9.2918e-05 -0.000169419 -8.36862e-05 -0.000196596 -7.37516e-05 -0.00022317 -6.36439e-05 -0.000246183 -5.50169e-05 -0.000264939 -4.78586e-05 -0.000286021 -4.21513e-05 -0.000311021 -3.70071e-05 -0.000337511 -3.27644e-05 -0.000364458 -2.82903e-05 -0.000393974 -2.2816e-05 -0.000426069 -1.71561e-05 -0.000457656 -9.01603e-06 -0.000488549 -6.17333e-07 -0.000523328 8.78966e-06 -0.000552935 1.96284e-05 -0.000584455 3.14652e-05 -0.000609846 4.54638e-05 -0.000634452 6.07307e-05 -0.000653806 7.67325e-05 -0.000661632 9.34976e-05 -0.00066529 0.000111248 -0.000664441 0.000129884 -0.000654049 0.000148609 -0.00063254 0.000166913 -0.000604465 0.000184813 -0.000566776 0.000201391 -0.000519607 0.000217597 -0.000469685 0.000231106 -0.000404446 0.000243708 -0.000336835 0.000253413 -0.000258084 0.000260514 -0.00017261 0.000264522 -7.98641e-05 0.000265739 1.52231e-05 0.000262308 0.000117681 0.000256587 0.000212261 0.00024758 0.000307564 0.00023499 0.000397176 0.000220207 0.000478116 0.000202849 0.000550089 0.000185104 0.000604594 0.000166297 0.000654566 0.000147771 0.000689253 0.000130268 0.000714112 0.000113806 0.000726433 0.000100745 0.000727745 9.10548e-05 0.000719732 8.54882e-05 0.000701183 8.24534e-05 0.000678196 8.08655e-05 0.00064722 7.91002e-05 0.000613498 7.71941e-05 0.000576569 7.53349e-05 0.000536836 7.29114e-05 0.000495395 7.04024e-05 0.000453238 6.73434e-05 0.000410527 6.45188e-05 0.000368118 6.24623e-05 0.000326823 6.09936e-05 0.00028648 5.99252e-05 0.000248353 5.94342e-05 0.000212435 5.91272e-05 0.000180396 5.87623e-05 0.000152482 5.86237e-05 0.000127295 5.86328e-05 0.000103697 5.91143e-05 8.12718e-05 5.99704e-05 6.04e-05 6.07676e-05 4.14273e-05 6.17975e-05 2.41256e-05 6.28718e-05 8.08251e-06 6.40805e-05 -6.2871e-06 6.57629e-05 -2.0771e-05 6.81394e-05 -3.57154e-05 7.11889e-05 -5.09451e-05 7.44619e-05 -6.60936e-05 7.84824e-05 -8.17012e-05 8.23878e-05 -9.71219e-05 8.65404e-05 -0.000113801 9.04215e-05 -0.000132559 9.44679e-05 -0.000152984 9.75965e-05 -0.000173887 0.000100248 -0.000194972 0.000100883 -0.000217109 0.00010076 -0.000239397 9.84027e-05 -0.000264659 9.571e-05 -0.000291171 9.27652e-05 -0.000320931 9.05787e-05 -0.000353726 8.98942e-05 -0.000386321 8.95507e-05 -0.000423386 8.93297e-05 -0.000454749 9.0548e-05 -0.000489945 9.2691e-05 -0.000526242 9.59602e-05 -0.000560864 0.0001016 -0.00059246 0.000109107 -0.000627358 0.000116811 -0.000651357 0.000126428 -0.000663389 0.000139564 -0.000678991 0.000153125 -0.000677963 0.000169486 -0.000672568 0.000186758 -0.000652436 0.000204595 -0.000621711 0.000221659 -0.000574466 0.000237901 -0.000514793 0.000252856 -0.000447807 0.000265303 -0.000364256 0.000276393 -0.000273093 0.00028298 -0.000164468 0.000286209 -4.86514e-05 0.000284439 7.4343e-05 0.000278408 0.0001904 0.000269525 0.000295323 0.000257368 0.000387946 0.000244245 0.00046759 0.000229718 0.000542517 0.000212594 0.000610349 0.00019586 0.000667185 0.000179719 0.000708167 0.000166715 0.000730908 0.00015742 0.000739663 0.000149587 0.00073533 0.000144177 0.000713739 0.000139741 0.000685165 0.000136309 0.000648315 0.000133374 0.000610111 0.000130999 0.00057141 0.000130401 0.00053244 0.000132272 0.000495935 0.000136394 0.000456071 0.000142593 0.000413421 0.000148673 0.000373546 0.000152691 0.000334266 0.000155619 0.00029681 0.000156583 0.000264127 0.000156907 0.000232401 0.000158312 0.000204056 0.000159751 0.000180035 0.000161035 0.00015929 0.000162185 0.000141854 0.000163132 0.000125474 0.000163633 0.000108492 0.000164207 9.02419e-05 0.000164243 7.11943e-05 0.000164993 5.08293e-05 0.000165102 2.88319e-05 0.00016553 5.71767e-06 0.000168423 -1.50073e-05 0.000168668 -3.01365e-05 0.000168891 -4.31535e-05 0.000169574 -5.61185e-05 0.000171509 -7.02316e-05 0.000175762 -8.43059e-05 0.000185647 -0.000105324 0.000191729 -0.000131055 0.000189828 -0.000150494 0.00018191 -0.000166112 0.00017496 -0.000189928 0.000170647 -0.000220735 0.000164778 -0.000252137 0.000158933 -0.000283129 0.000151812 -0.000316823 0.000146341 -0.000347201 0.000141772 -0.000385056 0.000137254 -0.000420643 0.000133534 -0.000454863 0.000130343 -0.000495261 0.000128455 -0.000528581 0.000128806 -0.000558991 0.000131012 -0.000575602 0.000134628 -0.000599334 0.000139198 -0.000616436 0.000147149 -0.000641037 0.000156357 -0.000655574 0.000169259 -0.00067321 0.000182981 -0.000673034 0.000200191 -0.000658037 0.000217106 -0.000615236 0.000233091 -0.000560634 0.000247115 -0.000485991 0.000259745 -0.000397103 0.000272544 -0.000314681 0.000278756 -0.000194573 0.000281813 -8.55716e-05 0.000280011 1.8779e-05 0.000276161 0.000105934 0.000270603 0.000186128 0.000262952 0.000273087 0.000250817 0.000364645 0.00023801 0.000438497 0.000230568 0.000478613 0.000226348 0.000498102 0.00021757 0.000512882 0.000194854 0.000543086 0.000160254 0.000598843 0.000123176 0.000655278 8.60538e-05 0.000698348 5.079e-05 0.000720042 1.97452e-05 0.000715384 -6.32607e-06 0.00069198 -2.85645e-05 0.000661789 -4.86763e-05 0.000628518 -6.69338e-05 0.000592651 -8.38684e-05 0.000554171 -0.000100422 0.00051632 -0.000116958 0.000480147 -0.000131845 0.00044156 -0.000146561 0.000408228 -0.000159943 0.000373307 -0.00017207 0.000338828 -0.000182734 0.000303897 -0.00019245 0.000270659 -0.000201719 0.000238324 -0.000210177 0.000206782 -0.000217342 0.000175365 -0.000223535 0.000144291 -0.000227368 0.000112326 -0.000227596 7.90802e-05 -0.000224921 4.56981e-05 -0.000217921 1.03819e-05 -0.000208827 -1.8162e-05 -0.000200116 -4.43669e-05 -0.000190301 -7.31788e-05 -0.0001818 -0.000102511 -0.000174617 -0.000132851 -0.000165286 -0.000166571 -0.000159058 -0.000198094 -0.000153882 -0.000235243 -0.000149087 -0.000270348 -0.000144725 -0.000310497 -0.000138312 -0.000349721 -0.000130585 -0.000390083 -0.000121415 -0.000435275 -0.000108505 -0.000483761 -9.56014e-05 -0.000520122 -8.00505e-05 -0.000568839 -6.1976e-05 -0.000621295 -4.38958e-05 -0.000651997 -2.16838e-05 -0.000695699 -2.15508e-06 -0.000707447 2.15866e-05 -0.000755264 4.92609e-05 -0.000781304 7.17993e-05 -0.000776612 9.8031e-05 -0.000795856 0.000125943 -0.000788298 0.000150399 -0.000760861 0.000176349 -0.000736479 0.00019958 -0.000690156 0.000221615 -0.000639635 0.000242202 -0.000572306 0.000259911 -0.000495513 0.00027431 -0.000409762 0.000285799 -0.000310835 0.000292992 -0.000208701 0.000296602 -0.000103855 0.000296369 7.75036e-06 0.000292358 0.000114969 0.000284915 0.000225115 0.000272587 0.00032856 0.00025696 0.000422335 0.000241251 0.000501498 0.000219737 0.000589935 0.000197028 0.000655538 0.000171543 0.000707951 0.000145175 0.000748981 0.000123776 0.000762006 9.48811e-05 0.000799477 6.71036e-05 0.000810986 0.000798162 -0.000107562 0.00022793 -9.4374e-05 9.22481e-05 -7.08956e-05 6.06184e-05 -4.41726e-05 3.65955e-05 -1.84595e-05 1.72661e-05 2.16132e-06 1.09023e-06 1.06892e-05 -8.54958e-06 1.13255e-05 -2.25673e-05 1.02575e-05 -4.73358e-05 9.11177e-06 -6.9461e-05 6.28323e-06 -9.69941e-05 1.35269e-06 -0.000121323 -1.1681e-05 -0.000132991 -8.27175e-05 -0.000111547 -0.00017102 -0.00012769 -0.000263218 -0.00013714 -0.000207826 -0.000330531 -0.000136857 -0.000359588 -0.000129877 -0.000340085 -0.000110458 -0.000400016 -9.98335e-05 -0.000407685 -9.15223e-05 -0.000473562 -8.16768e-05 -0.000515106 -7.15409e-05 -0.000539043 -5.17522e-05 -0.000613528 -4.01335e-05 -0.00060829 -1.95256e-05 -0.000679202 3.92729e-06 -0.000723567 2.49804e-05 -0.00073758 4.81257e-05 -0.000769516 7.53853e-05 -0.0007892 9.88935e-05 -0.000783687 0.000125486 -0.000789026 0.000150978 -0.000771328 0.000175207 -0.000743793 0.000199115 -0.000702485 0.000221276 -0.000651488 0.000241512 -0.000590979 0.000259262 -0.000514842 0.000274366 -0.000433801 0.000285858 -0.000339714 0.000294099 -0.000241881 0.000298825 -0.000140085 0.000299654 -3.18622e-05 0.000296882 7.4208e-05 0.000290649 0.000174218 0.000281169 0.000277449 0.000267948 0.000372035 0.000251947 0.000454973 0.000233115 0.000535145 0.000212615 0.000598188 0.000190748 0.00065093 0.000167576 0.000692834 0.000143499 0.00072406 0.000119802 0.00074241 9.54861e-05 0.000753191 7.20046e-05 0.000752486 4.91911e-05 0.000744303 2.71397e-05 0.000728638 6.6219e-06 0.0007062 -1.26257e-05 0.000678545 -3.08626e-05 0.000647573 -4.74421e-05 0.000611333 -6.26942e-05 0.00057357 -7.66246e-05 0.000534711 -8.88049e-05 0.000494482 -9.89884e-05 0.000453526 -0.000108323 0.000413929 -0.000117313 0.000376018 -0.000125694 0.000339313 -0.00013357 0.000303947 -0.000139182 0.000269088 -0.000142479 0.000235729 -0.000145736 0.000206699 -0.000149361 0.000179947 -0.000153597 0.000155369 -0.000158551 0.000132953 -0.000164134 0.000111913 -0.000169734 9.04919e-05 -0.00017509 6.78275e-05 -0.000178111 4.12421e-05 -0.000176493 1.09514e-05 -0.000171439 -1.78786e-05 -0.000164182 -4.59217e-05 -0.000155695 -7.42801e-05 -0.0001466 -9.99144e-05 -0.000135962 -0.000125239 -0.000121042 -0.000156918 -0.000104484 -0.000185977 -8.88744e-05 -0.000212205 -7.30558e-05 -0.000238989 -5.8436e-05 -0.000260803 -4.5618e-05 -0.000277757 -3.41315e-05 -0.000297507 -2.30567e-05 -0.000322095 -1.09446e-05 -0.000349623 1.07916e-06 -0.000376482 1.11611e-05 -0.000404056 1.82817e-05 -0.00043319 2.26746e-05 -0.000462049 2.82494e-05 -0.000494123 3.35592e-05 -0.000528638 4.02905e-05 -0.000559666 4.86081e-05 -0.000592772 5.82722e-05 -0.00061951 7.01813e-05 -0.000646361 8.31896e-05 -0.000666814 9.69756e-05 -0.000675418 0.000111356 -0.00067967 0.000126361 -0.000679446 0.000142511 -0.000670199 0.000159053 -0.000649082 0.000175369 -0.000620781 0.00019166 -0.000583067 0.000207287 -0.000535234 0.000223104 -0.000485503 0.000236252 -0.000417594 0.000249312 -0.000349894 0.0002592 -0.000267972 0.000266749 -0.000180159 0.000271059 -8.4174e-05 0.000272565 1.37171e-05 0.000269076 0.00012117 0.000263719 0.000217618 0.000254712 0.000316571 0.000242444 0.000409444 0.000228583 0.000491977 0.00021248 0.000566192 0.000196991 0.000620082 0.000181391 0.000670166 0.00016811 0.000702535 0.000158743 0.000723479 0.00015206 0.000733116 0.000148096 0.000731709 0.000143701 0.000724126 0.000137982 0.000706903 0.00013162 0.000684557 0.000124725 0.000654116 0.000117842 0.00062038 0.00011174 0.000582671 0.00010636 0.000542216 0.000101053 0.000500702 9.62768e-05 0.000458014 9.18928e-05 0.000414911 8.76966e-05 0.000372314 8.35208e-05 0.000330999 7.8531e-05 0.00029147 7.43109e-05 0.000252573 6.96944e-05 0.000217052 6.62771e-05 0.000183814 6.35211e-05 0.000155238 6.02826e-05 0.000130534 5.71836e-05 0.000106796 5.51392e-05 8.33162e-05 5.29705e-05 6.25687e-05 5.21766e-05 4.22211e-05 5.22504e-05 2.40518e-05 5.3616e-05 6.7169e-06 5.57274e-05 -8.39844e-06 5.8862e-05 -2.39056e-05 6.30541e-05 -3.99075e-05 6.80098e-05 -5.59008e-05 7.32753e-05 -7.13592e-05 7.96831e-05 -8.81089e-05 8.62298e-05 -0.000103669 9.3257e-05 -0.000120828 0.00010063 -0.000139932 0.000107948 -0.000160302 0.000115075 -0.000181014 0.000122837 -0.000202734 0.000130379 -0.000224651 0.000139257 -0.000248275 0.000146929 -0.000272332 0.000154545 -0.000298786 0.000159324 -0.00032571 0.00015965 -0.000354052 0.000158671 -0.000385341 0.000155594 -0.000420309 0.00015361 -0.000452765 0.000152064 -0.000488399 0.000151919 -0.000526097 0.00015394 -0.000562885 0.000156689 -0.00059521 0.000160938 -0.000631606 0.000163967 -0.000654386 0.000169723 -0.000669146 0.000177772 -0.000687041 0.000185742 -0.000685933 0.000196615 -0.000683441 0.000208233 -0.000664054 0.000222548 -0.000636026 0.000236419 -0.000588337 0.000251272 -0.000529646 0.000265919 -0.000462454 0.0002782 -0.000376537 0.000289787 -0.00028468 0.000296582 -0.000171263 0.000299771 -5.184e-05 0.000298174 7.594e-05 0.000291828 0.000196747 0.000282689 0.000304462 0.000271211 0.000399425 0.000258547 0.000480253 0.00024634 0.000554723 0.000233828 0.000622862 0.000223264 0.000677749 0.000213719 0.000717712 0.000210562 0.000734064 0.000210715 0.00073951 0.000208608 0.000737436 0.000207378 0.00071497 0.000205276 0.000687267 0.000201129 0.000652462 0.000198477 0.000612763 0.000197745 0.000572142 0.000198148 0.000532037 0.000202272 0.000491812 0.000208552 0.000449791 0.000212847 0.000409127 0.00021712 0.000369272 0.000221043 0.000330344 0.000223202 0.00029465 0.000227338 0.000259991 0.000230211 0.000229529 0.000234324 0.000199942 0.000239716 0.000174644 0.000242502 0.000156503 0.000246846 0.000137511 0.000250041 0.000122279 0.000253441 0.000105092 0.000254853 8.88298e-05 0.000255947 7.01005e-05 0.000256698 5.00782e-05 0.000256232 2.9298e-05 0.000258594 3.35619e-06 0.000263038 -1.94513e-05 0.000267042 -3.4141e-05 0.000268265 -4.43766e-05 0.000265445 -5.32983e-05 0.000262441 -6.72275e-05 0.000264131 -8.59956e-05 0.00025163 -9.28233e-05 0.000226471 -0.000105896 0.000220378 -0.0001444 0.000233728 -0.000179462 0.000244266 -0.000200466 0.000242915 -0.000219384 0.000237935 -0.000247156 0.000233638 -0.000278832 0.000228111 -0.000311295 0.000224425 -0.000343516 0.000219577 -0.000380208 0.000215538 -0.000416603 0.000211803 -0.000451129 0.00020717 -0.000490628 0.000203827 -0.000525238 0.000202222 -0.000557386 0.000203772 -0.000577153 0.000204151 -0.000599713 0.000205823 -0.000618108 0.000207543 -0.000642756 0.000212193 -0.000660224 0.00021754 -0.000678557 0.00022113 -0.000676624 0.000232541 -0.000669447 0.000245106 -0.000627802 0.000258691 -0.000574219 0.000270261 -0.000497561 0.000280189 -0.000407031 0.000293624 -0.000328117 0.000298207 -0.000199156 0.000299759 -8.71232e-05 0.000295828 2.27099e-05 0.000292044 0.000109718 0.000287344 0.000190827 0.000281028 0.000279403 0.000273228 0.000372445 0.000269846 0.000441879 0.000270506 0.000477953 0.000266773 0.000501836 0.0002503 0.000529355 0.000217562 0.000575825 0.000176341 0.000640064 0.000134288 0.000697331 9.2286e-05 0.00074035 5.23948e-05 0.000759933 1.81472e-05 0.000749631 -1.0345e-05 0.000720472 -3.60073e-05 0.000687451 -5.99691e-05 0.00065248 -8.16966e-05 0.000614379 -0.000102103 0.000574578 -0.000119882 0.000534099 -0.000133361 0.000493626 -0.000146935 0.000455134 -0.000160401 0.000421694 -0.000170908 0.000383813 -0.000183017 0.000350937 -0.000192206 0.000313086 -0.000199692 0.000278145 -0.000206462 0.000245094 -0.000211947 0.000212267 -0.000215614 0.000179032 -0.000216858 0.000145535 -0.000214971 0.000110438 -0.000212368 7.64778e-05 -0.000214089 4.74186e-05 -0.000221816 1.81089e-05 -0.000235736 -4.24164e-06 -0.00025231 -2.77932e-05 -0.000263189 -6.22997e-05 -0.000275403 -9.0297e-05 -0.000285283 -0.00012297 -0.000267615 -0.000184239 -0.000259607 -0.000206102 -0.000262903 -0.000231948 -0.000219593 -0.000313658 -0.000170116 -0.000359975 -0.000141368 -0.000378468 -0.000123219 -0.000408233 -0.000113948 -0.000444546 -0.000103233 -0.000494476 -9.18799e-05 -0.000531475 -7.90012e-05 -0.000581718 -6.22521e-05 -0.000638045 -4.4533e-05 -0.000669716 -2.29506e-05 -0.000717281 -2.81902e-06 -0.000727579 2.0411e-05 -0.000778494 4.93512e-05 -0.000810245 7.12958e-05 -0.000798557 9.79601e-05 -0.00082252 0.000127081 -0.00081742 0.0001515 -0.00078528 0.00017828 -0.000763259 0.000201694 -0.00071357 0.000224191 -0.000662133 0.00024517 -0.000593285 0.000263215 -0.000513559 0.000278115 -0.000424662 0.000289724 -0.000322443 0.000297272 -0.000216249 0.000300989 -0.000107572 0.000300729 8.0111e-06 0.000296627 0.000119071 0.000289073 0.00023267 0.000276371 0.000341262 0.000260034 0.000438672 0.00024468 0.000516851 0.000222402 0.000612213 0.000199282 0.000678657 0.000173267 0.000733966 0.000145734 0.000776515 0.00012518 0.000782559 9.50479e-05 0.000829609 6.67906e-05 0.000839244 0.000823878 2.4538e-05 0.000203392 2.04281e-05 9.6358e-05 1.84814e-05 6.25651e-05 1.67474e-05 3.83294e-05 1.51515e-05 1.88621e-05 1.36284e-05 2.61323e-06 1.36521e-05 -8.57324e-06 1.44977e-05 -2.34129e-05 1.40962e-05 -4.69344e-05 1.36615e-05 -6.90263e-05 1.18919e-05 -9.52246e-05 8.93373e-06 -0.000118364 6.87518e-06 -0.000130933 1.06122e-05 -0.000115284 1.67306e-05 -0.000133809 3.3315e-05 -0.000153725 7.70103e-06 -0.000304917 -2.4495e-05 -0.000327392 -0.000116747 -0.000247833 -0.000223963 -0.0002928 -0.000213927 -0.000417722 -0.000139308 -0.000548181 -8.50817e-05 -0.000569332 -6.53395e-05 -0.000558786 -4.65785e-05 -0.000632289 -3.68015e-05 -0.000618067 -1.9578e-05 -0.000696425 3.19987e-06 -0.000746345 2.39951e-05 -0.000758375 4.70921e-05 -0.000792613 7.55156e-05 -0.000817623 9.8558e-05 -0.00080673 0.000126113 -0.000816582 0.000152064 -0.00079728 0.000176416 -0.000768145 0.000201141 -0.00072721 0.0002237 -0.000674048 0.00024424 -0.000611518 0.000262641 -0.000533243 0.000278015 -0.000449175 0.000289821 -0.00035152 0.000298178 -0.000250238 0.000302873 -0.00014478 0.000303826 -3.28157e-05 0.000300958 7.70762e-05 0.000294482 0.000180694 0.000285063 0.000286868 0.000271435 0.000385663 0.000254955 0.000471453 0.000235833 0.000554267 0.000214824 0.000619196 0.000192722 0.000673033 0.000169058 0.000716498 0.000144258 0.00074886 0.000120426 0.000766242 9.59023e-05 0.000777715 7.21597e-05 0.000776228 4.93913e-05 0.000767071 2.74204e-05 0.000750609 6.89594e-06 0.000726725 -1.19028e-05 0.000697344 -2.95549e-05 0.000665225 -4.42641e-05 0.000626042 -5.65012e-05 0.000585807 -6.76346e-05 0.000545845 -7.85229e-05 0.000505371 -8.22519e-05 0.000457255 -8.45204e-05 0.000416197 -8.69914e-05 0.000378489 -9.58689e-05 0.00034819 -0.000134491 0.00034257 -0.000144984 0.000279582 -0.000151698 0.000242442 -0.000156031 0.000211032 -0.000157126 0.000181043 -0.00015763 0.000155874 -0.000157332 0.000132654 -0.000155458 0.000110039 -0.000153565 8.85984e-05 -0.000151233 6.54954e-05 -0.000148663 3.86728e-05 -0.000147062 9.34968e-06 -0.000146122 -1.88187e-05 -0.000145053 -4.699e-05 -0.000144204 -7.51293e-05 -0.000143301 -0.000100817 -0.000142191 -0.00012635 -0.000140033 -0.000159076 -0.00013267 -0.000193341 -0.00012269 -0.000222185 -0.000109098 -0.00025258 -9.35228e-05 -0.000276378 -7.66488e-05 -0.000294631 -5.74115e-05 -0.000316744 -3.52082e-05 -0.000344299 -1.30541e-05 -0.000371777 6.81487e-06 -0.000396351 2.38777e-05 -0.000421119 3.91354e-05 -0.000448448 5.37381e-05 -0.000476651 6.99899e-05 -0.000510375 7.86524e-05 -0.0005373 8.35559e-05 -0.00056457 8.73129e-05 -0.000596529 9.40016e-05 -0.000626199 0.000103078 -0.000655438 0.000113666 -0.000677402 0.000125987 -0.000687738 0.000138737 -0.000692421 0.000151941 -0.00069265 0.000166035 -0.000684292 0.000180417 -0.000663464 0.000194424 -0.000634788 0.000207789 -0.000596432 0.00022124 -0.000548686 0.000235018 -0.000499281 0.000246821 -0.000429397 0.000258807 -0.00036188 0.000268313 -0.000277479 0.000275627 -0.000187472 0.000280045 -8.8592e-05 0.000282064 1.16979e-05 0.000279116 0.000124118 0.000274912 0.000221821 0.000267141 0.000324342 0.00025742 0.000419166 0.000246458 0.000502939 0.000235985 0.000576665 0.000228073 0.000627994 0.000220948 0.000677292 0.000214763 0.000708719 0.000208036 0.000730206 0.000200404 0.000740748 0.000191919 0.000740194 0.000183193 0.000732853 0.000174773 0.000715323 0.000167515 0.000691815 0.000162521 0.00065911 0.000159045 0.000623856 0.000156632 0.000585085 0.000154746 0.000544103 0.000150989 0.000504458 0.000143622 0.000465381 0.000137319 0.000421214 0.000129453 0.00038018 0.000118778 0.000341674 0.000102897 0.000307351 7.60833e-05 0.000279387 5.01324e-05 0.000243003 4.47625e-05 0.000189184 4.6136e-05 0.000153864 4.57583e-05 0.000130911 4.4808e-05 0.000107747 4.45682e-05 8.3556e-05 4.40667e-05 6.30701e-05 4.34517e-05 4.28361e-05 4.27955e-05 2.47081e-05 4.28443e-05 6.66803e-06 4.33115e-05 -8.86556e-06 4.41911e-05 -2.47853e-05 4.52525e-05 -4.09689e-05 4.69209e-05 -5.75693e-05 5.00573e-05 -7.44955e-05 5.33811e-05 -9.14328e-05 5.79693e-05 -0.000108257 6.30686e-05 -0.000125928 7.0551e-05 -0.000147414 7.99826e-05 -0.000169734 9.11278e-05 -0.000192159 0.000104216 -0.000215821 0.000119731 -0.000240166 0.000137287 -0.000265831 0.000153209 -0.000288254 0.000169061 -0.000314638 0.000182426 -0.000339075 0.000193952 -0.000365578 0.000206431 -0.000397821 0.000214668 -0.000428546 0.000218907 -0.000457004 0.000217153 -0.000486645 0.000213811 -0.000522754 0.000212596 -0.000561671 0.000213915 -0.000596529 0.000216555 -0.000634246 0.000219223 -0.000657054 0.000224515 -0.000674438 0.000230593 -0.000693119 0.000236156 -0.000691496 0.000242487 -0.000689771 0.000249339 -0.000670906 0.000257685 -0.000644372 0.00026595 -0.000596602 0.00027617 -0.000539866 0.000286083 -0.000472368 0.000294692 -0.000385146 0.000304283 -0.00029427 0.000309883 -0.000176863 0.00031409 -5.60476e-05 0.000313148 7.6882e-05 0.000308786 0.000201109 0.000302528 0.000310719 0.000295299 0.000406654 0.000287427 0.000488125 0.000281143 0.000561008 0.000282546 0.000621458 0.000281069 0.000679226 0.000271901 0.00072688 0.00027012 0.000735845 0.000268488 0.000741142 0.000264229 0.000741695 0.000261513 0.000717686 0.000258146 0.000690634 0.000255971 0.000654637 0.000255513 0.000613221 0.000256425 0.00057123 0.000259992 0.00052847 0.000266634 0.000485169 0.000272576 0.000443849 0.000278433 0.000403269 0.000285797 0.000361909 0.000293444 0.000322697 0.000301751 0.000286343 0.000318648 0.000243094 0.000335897 0.00021228 0.000370452 0.000165388 0.000413179 0.000131917 0.000443921 0.000125761 0.000462366 0.000119065 0.000474363 0.000110283 0.000481478 9.79763e-05 0.000481436 8.8872e-05 0.000478574 7.29631e-05 0.000478875 4.97771e-05 0.000480147 2.8026e-05 0.000484792 -1.28914e-06 0.000482165 -1.68242e-05 0.000468158 -2.01344e-05 0.000455255 -3.14732e-05 0.000451878 -4.99209e-05 0.00044515 -6.05002e-05 0.000404514 -4.53597e-05 0.000317275 -5.58379e-06 0.000242134 -3.07553e-05 0.000222111 -0.000124377 0.000254746 -0.000212097 0.000302206 -0.000247926 0.000321211 -0.000238388 0.00031949 -0.000245435 0.000314976 -0.000274318 0.000309271 -0.00030559 0.000304089 -0.000338334 0.000297019 -0.000373138 0.000291677 -0.000411261 0.000287444 -0.000446896 0.00028208 -0.000485264 0.000278649 -0.000521806 0.000276299 -0.000555036 0.000276553 -0.000577407 0.000277984 -0.000601145 0.000280204 -0.000620328 0.000282171 -0.000644723 0.00028539 -0.000663443 0.000285359 -0.000678527 0.000282507 -0.000673772 0.000283937 -0.000670877 0.000290312 -0.000634177 0.000298968 -0.000582874 0.00030119 -0.000499783 0.000309158 -0.000415 0.000322027 -0.000340986 0.000322761 -0.00019989 0.000327089 -9.14515e-05 0.000326122 2.36771e-05 0.000325557 0.000110283 0.000324015 0.000192369 0.000322671 0.000280747 0.000323553 0.000371563 0.000324685 0.000440747 0.000320817 0.000481821 0.000304341 0.000518311 0.000273046 0.000560649 0.000230793 0.000618078 0.000184462 0.000686394 0.000139057 0.000742736 9.43593e-05 0.000785048 5.28464e-05 0.000801446 1.65301e-05 0.000785948 -1.37079e-05 0.00075071 -4.02365e-05 0.00071398 -6.25635e-05 0.000674807 -7.94441e-05 0.000631259 -9.59645e-05 0.000591098 -0.000107997 0.000546132 -0.000111996 0.000497625 -0.000110486 0.000453624 -0.000101478 0.000412687 -0.000111201 0.000393536 -0.000115087 0.000354822 -0.000101113 0.000299113 -8.21968e-05 0.000259229 -6.28884e-05 0.000225785 -4.38052e-05 0.000193184 -2.76668e-05 0.000162894 -1.45165e-05 0.000132384 -3.11268e-06 9.90346e-05 3.1995e-06 7.01656e-05 6.83911e-06 4.3779e-05 9.91213e-06 1.50359e-05 1.15727e-05 -5.90216e-06 1.30853e-05 -2.93058e-05 1.25691e-05 -6.17836e-05 1.01155e-05 -8.78434e-05 6.76823e-06 -0.000119623 -7.59588e-06 -0.000169875 -3.47576e-05 -0.00017894 -7.22007e-05 -0.000194505 -0.000127597 -0.000258261 -0.00019146 -0.000296112 -0.000219385 -0.000350543 -0.000202937 -0.000424681 -0.000189988 -0.000457495 -0.000142285 -0.000542179 -9.31625e-05 -0.000580597 -7.50875e-05 -0.000599793 -5.85778e-05 -0.000654554 -4.24797e-05 -0.000685814 -2.29956e-05 -0.000736765 -3.66831e-06 -0.000746906 1.9405e-05 -0.000801567 4.93311e-05 -0.000840171 7.04143e-05 -0.00081964 9.75541e-05 -0.00084966 0.000128187 -0.000848053 0.000152251 -0.000809344 0.000180132 -0.000791139 0.000203791 -0.000737229 0.000226609 -0.00068495 0.00024824 -0.000614916 0.000266614 -0.000531933 0.000281781 -0.000439829 0.000293864 -0.000334526 0.000301627 -0.000224012 0.000305104 -0.000111049 0.0003049 8.21551e-06 0.000300711 0.00012326 0.000293223 0.000240157 0.000279747 0.000354739 0.000263139 0.000455279 0.000248388 0.000531602 0.00022512 0.000635481 0.000201642 0.000702135 0.000174874 0.000760735 0.000146209 0.000805179 0.000126796 0.000801972 9.51926e-05 0.000861213 6.65432e-05 0.000867893 0.000850019 2.16773e-05 0.000181714 1.95224e-05 9.85129e-05 1.77763e-05 6.43112e-05 1.60906e-05 4.0015e-05 1.45439e-05 2.04088e-05 1.31939e-05 3.96318e-06 1.3132e-05 -8.51132e-06 1.37456e-05 -2.40266e-05 1.34007e-05 -4.65895e-05 1.29273e-05 -6.85529e-05 1.1338e-05 -9.36353e-05 8.8138e-06 -0.00011584 7.10015e-06 -0.000129219 1.12693e-05 -0.000119454 1.69472e-05 -0.000139486 2.89894e-05 -0.000165767 1.3728e-05 -0.000289656 3.09701e-06 -0.000316761 1.48498e-05 -0.000259586 2.35008e-05 -0.000301451 8.86139e-06 -0.000403082 -6.67378e-05 -0.000472582 -0.000137392 -0.000498678 -0.000143361 -0.000552817 -8.28593e-05 -0.000692791 -3.05351e-05 -0.000670392 -1.75338e-05 -0.000709427 4.15881e-06 -0.000768038 2.36642e-05 -0.00077788 4.68864e-05 -0.000815835 7.5833e-05 -0.00084657 9.80416e-05 -0.000828939 0.000126832 -0.000845372 0.000153291 -0.000823739 0.000177854 -0.000792707 0.000203532 -0.000752888 0.000226452 -0.000696967 0.000247404 -0.00063247 0.000266464 -0.000552304 0.000282125 -0.000464836 0.000294222 -0.000363616 0.000302723 -0.000258739 0.00030741 -0.000149467 0.000308669 -3.40747e-05 0.000305701 8.00439e-05 0.000298943 0.000187452 0.000289621 0.000296189 0.000275547 0.000399738 0.000258442 0.000488558 0.000239008 0.0005737 0.000217681 0.000640524 0.000195207 0.000695506 0.000171083 0.000740622 0.000145804 0.00077414 0.000121746 0.0007903 9.69355e-05 0.000802525 7.31576e-05 0.000800006 5.06298e-05 0.000789599 2.99494e-05 0.000771289 1.17239e-05 0.00074495 -9.82799e-07 0.000710051 -7.43032e-06 0.000671672 -1.61334e-05 0.000634745 -1.55627e-05 0.000585236 6.82165e-07 0.0005296 -4.94248e-05 0.000555478 -6.43095e-05 0.00047214 -7.0544e-05 0.000422432 -7.73773e-05 0.000385323 -8.25227e-05 0.000353336 -7.65719e-05 0.000336619 -7.26033e-05 0.000275613 -6.41682e-05 0.000234007 -5.51801e-05 0.000202044 -4.49394e-05 0.000170802 -3.35822e-05 0.000144516 -2.26157e-05 0.000121688 -1.07541e-05 9.81774e-05 -8.52046e-07 7.86964e-05 8.47718e-06 5.61661e-05 1.66694e-05 3.04806e-05 2.29377e-05 3.08144e-06 2.95031e-05 -2.53842e-05 3.31758e-05 -5.06626e-05 3.56889e-05 -7.76424e-05 3.62481e-05 -0.000101377 3.40809e-05 -0.000124183 2.73679e-05 -0.000152363 1.38291e-05 -0.000179802 -2.43027e-06 -0.000205926 -2.05772e-05 -0.000234433 -3.80579e-05 -0.000258898 -5.23016e-05 -0.000280388 -5.90597e-05 -0.000309986 -5.65454e-05 -0.000346813 -4.46598e-05 -0.000383663 -2.73218e-05 -0.000413689 -5.15069e-06 -0.00044329 2.18321e-05 -0.00047543 5.09956e-05 -0.000505815 7.99504e-05 -0.00053933 0.000100575 -0.000557925 0.000119 -0.000582995 0.000133195 -0.000610724 0.000141902 -0.000634906 0.000145783 -0.000659318 0.000151064 -0.000682684 0.000160088 -0.000696763 0.000170318 -0.000702651 0.000182323 -0.000704655 0.000195936 -0.000697905 0.000210111 -0.000677638 0.000223543 -0.000648221 0.000235502 -0.000608391 0.000247496 -0.000560679 0.000258982 -0.000510767 0.000268617 -0.000439032 0.000278993 -0.000372256 0.000287221 -0.000285707 0.000293812 -0.000194064 0.000298338 -9.31176e-05 0.000301259 8.77658e-06 0.000299712 0.000125665 0.000299026 0.000222508 0.000295198 0.00032817 0.000291496 0.000422868 0.000286017 0.000508418 0.000279599 0.000583083 0.000273192 0.000634401 0.000263618 0.000686865 0.000253672 0.000718665 0.000243305 0.000740572 0.000234061 0.000749993 0.000226694 0.00074756 0.000223446 0.000736101 0.000223561 0.000715208 0.000225754 0.000689622 0.000228639 0.000656225 0.00023245 0.000620044 0.00023104 0.000586495 0.000231899 0.000543244 0.00022927 0.000507087 0.000193452 0.000501199 0.000167248 0.000447418 0.000143084 0.000404344 0.000138061 0.000346697 0.000141806 0.000303606 0.000152794 0.0002684 0.000168812 0.000226985 0.00018072 0.000177276 0.000191052 0.000143532 0.000199852 0.000122111 0.000209366 9.82332e-05 0.000218321 7.4601e-05 0.000226865 5.45259e-05 0.000232192 3.75091e-05 0.000235016 2.1884e-05 0.000233249 8.43576e-06 0.000229667 -5.28418e-06 0.000226216 -2.13342e-05 0.000223541 -3.82938e-05 0.000217329 -5.13572e-05 0.000209536 -6.67027e-05 0.000198405 -8.03018e-05 0.000185658 -9.55096e-05 0.000170301 -0.00011057 0.000152292 -0.000129406 0.000135385 -0.000152827 0.000122194 -0.000178968 0.000113386 -0.000207013 0.000111004 -0.000237784 0.000114835 -0.000269662 0.000125126 -0.000298545 0.000142195 -0.000331708 0.000161982 -0.000358862 0.000185075 -0.000388672 0.000210503 -0.000423248 0.000230938 -0.000448981 0.000249691 -0.000475757 0.00026671 -0.000503665 0.000279553 -0.000535597 0.000282665 -0.000564782 0.000279487 -0.000593351 0.000274135 -0.000628894 0.000272498 -0.000655417 0.000277776 -0.000679716 0.000283805 -0.000699148 0.000291556 -0.000699247 0.000299254 -0.00069747 0.00030957 -0.000681222 0.000315635 -0.000650437 0.000323026 -0.000603992 0.00032985 -0.000546691 0.000336191 -0.000478708 0.0003404 -0.000389355 0.000343116 -0.000296987 0.000343744 -0.000177491 0.000347761 -6.00648e-05 0.00034873 7.59131e-05 0.000354997 0.000194842 0.000357101 0.000308615 0.000359169 0.000404585 0.000357784 0.00048951 0.000353418 0.000565374 0.000347067 0.000627809 0.000332613 0.00069368 0.000332315 0.000727178 0.000331507 0.000736653 0.000320593 0.000752056 0.000315443 0.000746845 0.000315228 0.000717901 0.00031567 0.000690192 0.000318258 0.00065205 0.000324079 0.000607399 0.000332241 0.000563068 0.000340205 0.000520505 0.00035238 0.000472994 0.000369994 0.000426236 0.000405251 0.000368012 0.000438809 0.000328351 0.000459945 0.000301561 0.000465438 0.00028085 0.000475577 0.000232955 0.000492137 0.000195719 0.000505531 0.000151994 0.000520003 0.000117445 0.000536896 0.000108869 0.000549834 0.000106127 0.000561973 9.81436e-05 0.000570727 8.92222e-05 0.00057848 8.11192e-05 0.000585306 6.61369e-05 0.000588748 4.6335e-05 0.000590565 2.62092e-05 0.000595264 -5.98768e-06 0.000599901 -2.14613e-05 0.000597347 -1.75803e-05 0.000585086 -1.92128e-05 0.000570615 -3.54497e-05 0.000549447 -3.93321e-05 0.00048499 1.90973e-05 0.000405822 7.35839e-05 0.000368923 6.14382e-06 0.000375399 -0.000130853 0.000393848 -0.000230546 0.000428744 -0.000282822 0.000468986 -0.00027863 0.000486608 -0.000263057 0.000488161 -0.000275872 0.000468861 -0.00028629 0.000442239 -0.000311712 0.000413717 -0.000344615 0.000388446 -0.00038599 0.000377667 -0.000436117 0.000368105 -0.000475702 0.000359054 -0.000512756 0.000352358 -0.00054834 0.000348611 -0.000573659 0.000345507 -0.000598041 0.000348064 -0.000622884 0.000350923 -0.000647583 0.000353713 -0.000666233 0.000352134 -0.000676947 0.000347531 -0.00066917 0.00034757 -0.000670916 0.00034756 -0.000634168 0.000352663 -0.000587977 0.00034952 -0.00049664 0.000361707 -0.000427188 0.000367953 -0.000347232 0.000361551 -0.000193488 0.000373142 -0.000103042 0.000375878 2.09411e-05 0.000382206 0.000103954 0.000386499 0.000188076 0.000385335 0.000281912 0.00038152 0.000375378 0.000375619 0.000446648 0.000359767 0.000497673 0.000328713 0.000549365 0.000287448 0.000601915 0.000239943 0.000665582 0.000191672 0.000734665 0.000145687 0.000788721 0.000100881 0.000829854 5.98433e-05 0.000842483 2.46969e-05 0.000821094 -2.74509e-07 0.000775681 -1.81255e-05 0.000731831 -3.01032e-05 0.000686785 -2.95708e-05 0.000630727 -1.35821e-05 0.00057511 -5.52007e-05 0.000587751 -5.69676e-05 0.000499392 -4.80642e-05 0.000444721 -3.6841e-05 0.000401464 -2.32373e-05 0.000379932 -1.0321e-05 0.000341906 -1.8665e-06 0.000290658 6.05056e-06 0.000251312 1.21672e-05 0.000219668 1.70828e-05 0.000188268 2.08891e-05 0.000159087 2.35878e-05 0.000129686 2.53209e-05 9.73016e-05 2.63323e-05 6.91542e-05 2.71693e-05 4.29419e-05 2.78048e-05 1.44004e-05 2.93924e-05 -7.48977e-06 3.17014e-05 -3.16148e-05 3.32334e-05 -6.33155e-05 3.55843e-05 -9.01944e-05 3.76694e-05 -0.000121708 3.64903e-05 -0.000168696 3.78955e-05 -0.000180346 4.36514e-05 -0.000200261 4.3468e-05 -0.000258078 4.03949e-05 -0.000293039 3.11435e-05 -0.000341292 3.10643e-06 -0.000396644 -5.22162e-05 -0.000402172 -0.000116785 -0.000477611 -0.000152228 -0.000545154 -0.000147336 -0.000604685 -9.35654e-05 -0.000708325 -4.37917e-05 -0.000735588 -2.20411e-05 -0.000758516 -2.84787e-06 -0.000766099 1.97921e-05 -0.000824207 4.95189e-05 -0.000869897 6.92856e-05 -0.000839407 9.72427e-05 -0.000877617 0.000129816 -0.000880627 0.000153054 -0.000832581 0.000182442 -0.000820528 0.00020603 -0.000760816 0.000229335 -0.000708256 0.00025167 -0.000637251 0.000270545 -0.000550808 0.000286056 -0.00045534 0.000298447 -0.000346917 0.000306612 -0.000232177 0.000309796 -0.000114233 0.000309704 8.30742e-06 0.000305482 0.000127482 0.000297967 0.000247672 0.000284467 0.000368239 0.00026633 0.000473416 0.000252499 0.000545434 0.000228693 0.000659287 0.000204364 0.000726464 0.000177143 0.000787957 0.000146911 0.00083541 0.000129016 0.000819867 9.5665e-05 0.000894564 6.65391e-05 0.000897019 0.00087687 1.81273e-05 0.000163587 1.78541e-05 9.87861e-05 1.66545e-05 6.55108e-05 1.52407e-05 4.14289e-05 1.38676e-05 2.17819e-05 1.26981e-05 5.13264e-06 1.25737e-05 -8.38691e-06 1.30008e-05 -2.44538e-05 1.26873e-05 -4.6276e-05 1.21964e-05 -6.8062e-05 1.0786e-05 -9.2225e-05 8.69382e-06 -0.000113748 7.37072e-06 -0.000127896 1.10651e-05 -0.000123148 1.60959e-05 -0.000144517 2.57092e-05 -0.00017538 1.3537e-05 -0.000277484 4.87675e-06 -0.000308101 1.4643e-05 -0.000269352 2.31016e-05 -0.00030991 2.126e-05 -0.000401241 1.27965e-05 -0.000464118 7.50875e-06 -0.00049339 -1.4424e-05 -0.000530884 -9.3766e-05 -0.000613449 -0.000120438 -0.00064372 -6.6955e-05 -0.00076291 -5.40119e-06 -0.000829592 2.23736e-05 -0.000805655 4.70993e-05 -0.000840561 7.63005e-05 -0.000875771 9.72668e-05 -0.000849905 0.000127632 -0.000875737 0.00015416 -0.000850266 0.00017964 -0.000818187 0.000206451 -0.0007797 0.000229606 -0.000720121 0.000251189 -0.000654053 0.000270723 -0.000571838 0.000286702 -0.000480815 0.000299313 -0.000376227 0.000307805 -0.000267231 0.000312778 -0.00015444 0.000314264 -3.55614e-05 0.000310947 8.33606e-05 0.000304293 0.000194107 0.000294846 0.000305636 0.000280326 0.000414258 0.00026291 0.000505974 0.000243131 0.00059348 0.000221347 0.000662308 0.000198368 0.000718486 0.000173693 0.000765296 0.000148152 0.000799682 0.000124115 0.000814336 0.00010048 0.00082616 7.96488e-05 0.000820838 6.49526e-05 0.000804295 5.82967e-05 0.000777945 5.11125e-05 0.000752134 6.11904e-05 0.000699973 6.42056e-05 0.000668657 2.5127e-05 0.000673823 7.21298e-06 0.00060315 -8.09738e-06 0.00054491 -9.11277e-06 0.000556493 -1.49919e-05 0.000478019 -1.7121e-05 0.000424561 -1.63207e-05 0.000384522 -1.18546e-05 0.00034887 -1.05845e-06 0.000325823 4.29676e-06 0.000270258 8.09729e-06 0.000230207 1.20333e-05 0.000198108 1.5955e-05 0.00016688 2.04253e-05 0.000140046 2.45989e-05 0.000117514 3.07639e-05 9.20125e-05 3.67151e-05 7.27451e-05 4.2898e-05 4.99833e-05 4.91428e-05 2.42357e-05 5.43862e-05 -2.1619e-06 6.22113e-05 -3.32094e-05 6.78725e-05 -5.63238e-05 7.42902e-05 -8.40601e-05 8.04273e-05 -0.000107514 8.7142e-05 -0.000130897 9.55883e-05 -0.000160809 9.9789e-05 -0.000184003 0.000105075 -0.000211212 0.000109216 -0.000238574 0.000114383 -0.000264065 0.000115922 -0.000281927 0.000110025 -0.00030409 9.21547e-05 -0.000328942 6.59402e-05 -0.000357449 3.86109e-05 -0.00038636 1.86816e-05 -0.000423361 1.1653e-05 -0.000468402 2.23336e-05 -0.000516496 4.64586e-05 -0.000563455 7.79072e-05 -0.000589374 0.000114144 -0.000619232 0.000148015 -0.000644595 0.000174113 -0.000661004 0.000193319 -0.000678524 0.000204104 -0.000693469 0.000206858 -0.000699516 0.000209145 -0.000704938 0.000215587 -0.000711098 0.000225545 -0.000707863 0.000239327 -0.00069142 0.000253725 -0.000662619 0.000266631 -0.000621298 0.000280009 -0.000574057 0.000294047 -0.000524805 0.000304342 -0.000449327 0.000315534 -0.000383448 0.000323874 -0.000294047 0.000330198 -0.000200387 0.0003356 -9.85198e-05 0.00033992 4.45647e-06 0.000339348 0.000126238 0.000340844 0.000221012 0.000336804 0.00033221 0.000332923 0.000426749 0.000324911 0.000516431 0.000314743 0.000593251 0.000305954 0.00064319 0.000294078 0.000698742 0.000285507 0.000727236 0.00027983 0.000746249 0.000279985 0.000749839 0.00028686 0.000740685 0.000294979 0.000727982 0.000298428 0.000711758 0.000305397 0.000682653 0.000309871 0.000651751 0.00032743 0.000602486 0.000296768 0.000617156 0.000266466 0.000573546 0.000219022 0.000554531 0.000205216 0.000515006 0.000204064 0.00044857 0.000219884 0.000388524 0.000237705 0.000328876 0.000256703 0.000284608 0.000271904 0.000253199 0.000284649 0.000214241 0.000290026 0.000171898 0.000293425 0.000140133 0.00029542 0.000120116 0.00029761 9.60438e-05 0.000299354 7.28564e-05 0.00030466 4.922e-05 0.000309112 3.30577e-05 0.00031477 1.62255e-05 0.000318476 4.72982e-06 0.000320823 -7.63113e-06 0.000322028 -2.25395e-05 0.000325425 -4.16904e-05 0.000329093 -5.50251e-05 0.00033283 -7.04396e-05 0.000337319 -8.47911e-05 0.000341121 -9.93122e-05 0.000344686 -0.000114135 0.000345204 -0.000129923 0.000342721 -0.000150344 0.000338506 -0.000174753 0.000331683 -0.00020019 0.000316395 -0.000222497 0.000289141 -0.000242407 0.000255389 -0.000264794 0.000222399 -0.000298717 0.000194033 -0.000330496 0.000183263 -0.000377901 0.000189739 -0.000429724 0.000206493 -0.000465736 0.000232924 -0.000502188 0.000263706 -0.000534447 0.000297504 -0.000569395 0.00032531 -0.000592588 0.000343678 -0.000611719 0.000346277 -0.000631494 0.000339837 -0.000648976 0.000337271 -0.000677151 0.000335874 -0.00069775 0.000341781 -0.000705154 0.000351428 -0.000707117 0.000361824 -0.000691618 0.000372553 -0.000661165 0.000382179 -0.000613619 0.000392552 -0.000557064 0.000399845 -0.000486001 0.000403632 -0.000393142 0.000406822 -0.000300177 0.000408768 -0.000179437 0.00041372 -6.50169e-05 0.00041649 7.31437e-05 0.00042157 0.000189761 0.000423875 0.000306311 0.000425192 0.000403268 0.00041958 0.000495121 0.000410729 0.000574225 0.000402306 0.000636232 0.000391128 0.000704858 0.000380511 0.000737795 0.000372246 0.000744919 0.000376148 0.000748153 0.000392917 0.000730077 0.000394224 0.000716594 0.000407487 0.000676928 0.000414693 0.000644844 0.000430752 0.000591341 0.000465982 0.000527838 0.000481269 0.000505218 0.000489906 0.000464357 0.000473422 0.00044272 0.000467427 0.000374008 0.000472011 0.000323766 0.000476111 0.000297463 0.000480666 0.000276295 0.000487411 0.00022621 0.000500155 0.000182976 0.000507693 0.000144456 0.000514242 0.000110896 0.000525723 9.7388e-05 0.000537581 9.42688e-05 0.000549794 8.59304e-05 0.000559783 7.92334e-05 0.000571586 6.93164e-05 0.000582754 5.49685e-05 0.000588468 4.06212e-05 0.000591441 2.32367e-05 0.00059895 -1.34966e-05 0.000607294 -2.98058e-05 0.000608762 -1.90486e-05 0.000601003 -1.14533e-05 0.000587578 -2.20251e-05 0.000565397 -1.71507e-05 0.000531345 5.3149e-05 0.000506153 9.87761e-05 0.000493795 1.85016e-05 0.000505631 -0.00014269 0.00052156 -0.000246474 0.000536924 -0.000298187 0.000555023 -0.000296729 0.000578607 -0.000286642 0.000597226 -0.00029449 0.000604321 -0.000293386 0.000608003 -0.000315394 0.000604226 -0.000340838 0.000585998 -0.000367763 0.000525427 -0.000375545 0.000466034 -0.00041631 0.000451402 -0.000498123 0.00044213 -0.000539068 0.000433743 -0.000565272 0.00042925 -0.000593549 0.000424488 -0.000618122 0.000420018 -0.000643113 0.000415449 -0.000661664 0.000411139 -0.000672637 0.000406233 -0.000664264 0.000408023 -0.000672705 0.00040641 -0.000632555 0.000413145 -0.000594712 0.000410307 -0.000493801 0.000423469 -0.000440349 0.000425345 -0.000349108 0.000425748 -0.000193891 0.000437549 -0.000114843 0.000439351 1.91391e-05 0.000447504 9.58007e-05 0.000445301 0.000190279 0.000438258 0.000288955 0.000427381 0.000386255 0.000412427 0.000461601 0.000387563 0.000522537 0.00035 0.000586928 0.00030594 0.000645974 0.000257756 0.000713767 0.000211668 0.000780753 0.000169676 0.000830714 0.000131653 0.000867877 0.000102022 0.000872113 7.64895e-05 0.000846627 7.09535e-05 0.000781217 8.46079e-05 0.000718177 2.74482e-05 0.000743945 1.17995e-06 0.000656995 -8.90487e-06 0.000585194 -1.61775e-06 0.000580464 3.29457e-06 0.000494479 7.87966e-06 0.000440136 1.11009e-05 0.000398243 1.72468e-05 0.000373787 2.28264e-05 0.000336326 2.40535e-05 0.000289431 2.45475e-05 0.000250818 2.50005e-05 0.000219215 2.53169e-05 0.000187952 2.58982e-05 0.000158506 2.66049e-05 0.000128979 2.68137e-05 9.70928e-05 2.71774e-05 6.87906e-05 2.78809e-05 4.22384e-05 2.83379e-05 1.39434e-05 2.98618e-05 -9.01367e-06 3.19623e-05 -3.37153e-05 3.35904e-05 -6.49436e-05 3.61784e-05 -9.27825e-05 3.81804e-05 -0.00012371 3.75925e-05 -0.000168108 4.05358e-05 -0.000183289 4.63649e-05 -0.00020609 4.84816e-05 -0.000260194 5.06219e-05 -0.00029518 5.24295e-05 -0.000343099 5.02671e-05 -0.000394482 5.47175e-05 -0.000406623 5.12939e-05 -0.000474187 3.494e-05 -0.0005288 -1.0203e-05 -0.000559542 -8.3788e-05 -0.00063474 -0.000113195 -0.000706181 -8.13534e-05 -0.000790357 -9.24406e-06 -0.000838209 2.05553e-05 -0.000854006 4.95311e-05 -0.000898873 6.69259e-05 -0.000856801 9.78408e-05 -0.000908532 0.000131648 -0.000914434 0.000153614 -0.000854547 0.000185368 -0.000852282 0.0002082 -0.000783649 0.000231759 -0.000731815 0.000255023 -0.000660515 0.000274126 -0.000569911 0.000289642 -0.000470856 0.000302277 -0.000359552 0.000311151 -0.000241052 0.000314216 -0.000117298 0.000314217 8.30639e-06 0.000309757 0.000131942 0.000301946 0.000255483 0.000287769 0.000382416 0.000269085 0.000492101 0.000255684 0.000558835 0.000230059 0.000684912 0.000205733 0.00075079 0.000177331 0.000816359 0.000146303 0.000866438 0.000129225 0.000836944 9.34311e-05 0.000930359 6.33407e-05 0.000927109 0.000901184 1.51879e-05 0.000148399 1.62431e-05 9.77309e-05 1.55356e-05 6.62183e-05 1.43827e-05 4.25818e-05 1.31798e-05 2.29849e-05 1.21647e-05 6.14765e-06 1.19974e-05 -8.21959e-06 1.228e-05 -2.47364e-05 1.19884e-05 -4.59844e-05 1.14938e-05 -6.75674e-05 1.02398e-05 -9.09709e-05 8.48373e-06 -0.000111992 7.46203e-06 -0.000126875 1.08387e-05 -0.000126525 1.53326e-05 -0.000149011 2.25115e-05 -0.000182559 1.32677e-05 -0.00026824 6.31628e-06 -0.00030115 1.40422e-05 -0.000277078 2.11041e-05 -0.000316972 1.95762e-05 -0.000399713 1.37923e-05 -0.000458334 1.37559e-05 -0.000493354 1.45477e-05 -0.000531676 7.7609e-06 -0.000606662 -7.01886e-06 -0.00062894 -6.01891e-05 -0.000709739 -0.000106768 -0.000783013 -5.05878e-05 -0.000861835 3.16627e-05 -0.000922811 7.31292e-05 -0.000917238 9.11505e-05 -0.000867926 0.000126274 -0.00091086 0.000153099 -0.000877091 0.000180644 -0.000845732 0.000208936 -0.000807992 0.000232556 -0.000743741 0.000254835 -0.000676333 0.000274935 -0.000591938 0.00029136 -0.00049724 0.000304607 -0.000389474 0.000313122 -0.000275745 0.000318344 -0.000159663 0.000320003 -3.722e-05 0.000316302 8.70619e-05 0.000309834 0.000200575 0.000300329 0.000315141 0.000285575 0.000429012 0.000267982 0.000523567 0.000247733 0.000613728 0.000225156 0.000684886 0.000201734 0.000741907 0.000177497 0.000789533 0.00015345 0.000823729 0.000134516 0.000833269 0.000125098 0.000835579 0.000123857 0.000822079 0.000129646 0.000798506 0.000152923 0.000754668 9.27975e-05 0.00081226 7.12785e-05 0.000721492 4.51352e-05 0.000694801 3.35097e-05 0.000685449 2.20429e-05 0.000614617 1.23913e-05 0.000554562 1.99879e-05 0.000548897 2.00472e-05 0.00047796 1.83663e-05 0.000426242 1.75773e-05 0.000385312 1.78448e-05 0.000348602 2.24575e-05 0.00032121 2.22405e-05 0.000270475 2.20125e-05 0.000230435 2.2638e-05 0.000197482 2.36102e-05 0.000165908 2.55862e-05 0.00013807 2.75714e-05 0.000115529 3.15687e-05 8.80152e-05 3.59432e-05 6.83706e-05 4.04709e-05 4.54556e-05 4.54555e-05 1.92511e-05 4.89749e-05 -5.68131e-06 5.56875e-05 -3.9922e-05 6.10567e-05 -6.1693e-05 6.73034e-05 -9.03069e-05 7.43199e-05 -0.00011453 8.11934e-05 -0.000137771 9.18441e-05 -0.00017146 9.90989e-05 -0.000191257 0.000107271 -0.000219384 0.000115191 -0.000246495 0.000127822 -0.000276695 0.000139189 -0.000293294 0.000151288 -0.000316188 0.000159766 -0.000337421 0.000165832 -0.000363515 0.000169468 -0.000389995 0.000171368 -0.000425261 0.000162168 -0.000459202 0.000138005 -0.000492333 0.000106126 -0.000531576 8.57617e-05 -0.000569009 8.90438e-05 -0.000622514 0.000114409 -0.000669961 0.000156263 -0.000702858 0.000200522 -0.000722784 0.000234382 -0.000727329 0.00025694 -0.000722073 0.000267455 -0.000715453 0.000265801 -0.000709444 0.000263862 -0.000705924 0.000267832 -0.00069539 0.000275044 -0.000669831 0.000285743 -0.000631997 0.000298877 -0.000587191 0.00031319 -0.000539117 0.000329275 -0.000465412 0.000340241 -0.000394414 0.00035225 -0.000306055 0.00036287 -0.000211008 0.000369363 -0.000105013 0.000368989 4.83061e-06 0.000370157 0.00012507 0.00037368 0.000217489 0.000365579 0.000340311 0.0003632 0.000429129 0.000353109 0.000526521 0.000343695 0.000602665 0.000334103 0.000652782 0.000334478 0.000698367 0.000336112 0.000725601 0.000344892 0.00073747 0.000359808 0.000734922 0.000364706 0.000735788 0.000374806 0.000717883 0.000398527 0.000688037 0.00039986 0.00068132 0.000386109 0.000665502 0.000316737 0.000671858 0.000266365 0.000667529 0.000236276 0.000603635 0.00023302 0.000557787 0.000245534 0.000502493 0.000256857 0.000437247 0.000265132 0.00038025 0.000268078 0.000325929 0.000271952 0.000280734 0.000276326 0.000248825 0.000282076 0.000208491 0.000282988 0.000170987 0.000283721 0.0001394 0.000283344 0.000120493 0.000282747 9.66415e-05 0.000280801 7.48021e-05 0.0002824 4.76209e-05 0.000284759 3.06988e-05 0.000291054 9.93004e-06 0.000297294 -1.50928e-06 0.000303588 -1.39261e-05 0.000306892 -2.58432e-05 0.00031111 -4.59082e-05 0.000317067 -6.09821e-05 0.00032371 -7.7083e-05 0.000332104 -9.3185e-05 0.000340452 -0.00010766 0.000349197 -0.000122881 0.000356186 -0.000136912 0.000361728 -0.000155886 0.000366451 -0.000179476 0.000374435 -0.000208175 0.000381354 -0.000229416 0.000388758 -0.000249811 0.000394086 -0.000270122 0.000398877 -0.000303508 0.000398452 -0.000330072 0.000385965 -0.000365415 0.00035007 -0.000393828 0.000306686 -0.000422351 0.000272054 -0.000467556 0.000259223 -0.000521616 0.000276944 -0.000587117 0.000310817 -0.000626461 0.00034993 -0.000650832 0.000390698 -0.000672262 0.00041855 -0.000676828 0.000421866 -0.000680466 0.000410417 -0.000686301 0.000400324 -0.000695062 0.000398793 -0.000705587 0.000401657 -0.000694482 0.00040975 -0.000669258 0.000422122 -0.000625991 0.000432093 -0.000567034 0.000441679 -0.000495588 0.000454751 -0.000406214 0.000460017 -0.000305443 0.000464305 -0.000183726 0.000462746 -6.3458e-05 0.000467929 6.79605e-05 0.000469517 0.000188174 0.000469538 0.000306289 0.000465733 0.000407074 0.000460766 0.000500088 0.000449243 0.000585749 0.000433101 0.000652373 0.000439595 0.000698364 0.000448287 0.000729103 0.000431918 0.000761288 0.000448364 0.000731707 0.00047843 0.000700011 0.000493126 0.000701898 0.000538067 0.000631987 0.000556366 0.000626545 0.000568834 0.000578872 0.000519737 0.000576935 0.000479915 0.00054504 0.000456281 0.000487992 0.000452801 0.000446201 0.00045206 0.000374749 0.000452581 0.000323244 0.000450514 0.00029953 0.000447046 0.000279763 0.00043955 0.000233706 0.000432401 0.000190124 0.000421991 0.000154866 0.000411886 0.000121001 0.000410933 9.83405e-05 0.000419175 8.60272e-05 0.000431997 7.31087e-05 0.000444728 6.65024e-05 0.000463602 5.04426e-05 0.000479446 3.91244e-05 0.000492937 2.71299e-05 0.000502039 1.41348e-05 0.000509716 -2.11736e-05 0.000526431 -4.65203e-05 0.000542454 -3.50717e-05 0.000546975 -1.59749e-05 0.000545727 -2.07765e-05 0.000540608 -1.20317e-05 0.000531818 6.19387e-05 0.000526323 0.000104271 0.000517479 2.73454e-05 0.000514562 -0.000139773 0.000513606 -0.000245518 0.000522857 -0.000307438 0.000539927 -0.000313799 0.000572597 -0.000319312 0.000602345 -0.000324237 0.000623178 -0.000314219 0.0006432 -0.000335416 0.000655827 -0.000353465 0.00064897 -0.000360906 0.000587825 -0.0003144 0.00051722 -0.000345704 0.000518172 -0.000499076 0.000551188 -0.000572083 0.000558256 -0.00057234 0.000541904 -0.000577197 0.000529616 -0.000605833 0.000517231 -0.000630728 0.000503334 -0.000647767 0.000489244 -0.000658547 0.000473396 -0.000648416 0.000464098 -0.000663407 0.000460895 -0.000629352 0.000467262 -0.000601078 0.000476605 -0.000503145 0.000488057 -0.000451801 0.000483265 -0.000344317 0.000489804 -0.000200429 0.000502329 -0.000127367 0.00050561 1.58575e-05 0.000511971 8.94402e-05 0.00050405 0.0001982 0.000486854 0.000306151 0.000467786 0.000405323 0.000449856 0.000479531 0.000424336 0.000548058 0.000388796 0.000622468 0.00034903 0.000685741 0.000308956 0.00075384 0.000275957 0.000813752 0.000251364 0.000855307 0.000230835 0.000888405 0.000217113 0.000885836 0.000160745 0.000902995 0.000115821 0.000826141 5.34275e-05 0.00078057 3.54555e-05 0.000761917 2.79835e-05 0.000664467 2.38117e-05 0.000589366 3.49499e-05 0.000569326 3.55293e-05 0.0004939 3.31068e-05 0.000442558 2.97501e-05 0.000401599 2.97589e-05 0.000373778 3.01435e-05 0.000335942 2.83965e-05 0.000291178 2.67704e-05 0.000252444 2.59148e-05 0.000220071 2.55046e-05 0.000188362 2.56094e-05 0.000158401 2.59997e-05 0.000128589 2.60749e-05 9.70176e-05 2.63164e-05 6.85491e-05 2.68992e-05 4.16556e-05 2.72978e-05 1.35448e-05 2.86391e-05 -1.0355e-05 3.06005e-05 -3.56768e-05 3.22205e-05 -6.65636e-05 3.44546e-05 -9.50166e-05 3.64758e-05 -0.000125731 3.64989e-05 -0.000168131 3.9286e-05 -0.000186076 4.4523e-05 -0.000211327 4.68643e-05 -0.000262536 4.96784e-05 -0.000297994 5.16348e-05 -0.000345056 5.12707e-05 -0.000394118 5.73163e-05 -0.000412669 5.90686e-05 -0.000475939 5.79402e-05 -0.000527672 6.03793e-05 -0.000561981 5.50427e-05 -0.000629403 2.85978e-05 -0.000679736 -3.08298e-05 -0.00073093 -6.82313e-05 -0.000800807 -2.31996e-05 -0.000899038 3.46425e-05 -0.000956715 5.94903e-05 -0.000881649 9.65795e-05 -0.000945621 0.000132628 -0.000950483 0.000153131 -0.00087505 0.00018788 -0.000887031 0.000209937 -0.000805706 0.000234233 -0.000756111 0.000258516 -0.000684798 0.000277835 -0.00058923 0.000294191 -0.000487212 0.000307544 -0.000372905 0.000316328 -0.000249835 0.000320029 -0.000120999 0.000319354 8.98142e-06 0.000313517 0.000137778 0.000306686 0.000262314 0.000292168 0.000396934 0.000271459 0.000512809 0.000257882 0.000572412 0.000230583 0.00071221 0.000209272 0.000772101 0.000181011 0.00084462 0.000140361 0.000907088 0.000132523 0.000844783 0.00011209 0.000950791 0.000136419 0.00090278 0.0010376 1.28073e-05 0.000135592 1.47174e-05 9.58208e-05 1.44336e-05 6.65021e-05 1.35227e-05 4.34926e-05 1.24821e-05 2.40255e-05 1.16003e-05 7.02949e-06 1.14047e-05 -8.02407e-06 1.15758e-05 -2.49075e-05 1.12999e-05 -4.57085e-05 1.08136e-05 -6.70811e-05 9.70336e-06 -8.98607e-05 8.23817e-06 -0.000110527 7.47816e-06 -0.000126115 1.05115e-05 -0.000129558 1.44634e-05 -0.000152963 1.9888e-05 -0.000187984 1.2823e-05 -0.000261175 7.18611e-06 -0.000295513 1.33822e-05 -0.000283274 1.93586e-05 -0.000322948 1.79848e-05 -0.000398339 1.34358e-05 -0.000453786 1.28809e-05 -0.000492799 1.45511e-05 -0.000533346 1.04657e-05 -0.000602577 1.32279e-05 -0.000631702 7.97954e-06 -0.000704491 -9.83719e-06 -0.000765196 -5.36224e-05 -0.00081805 -4.32103e-05 -0.000933224 -2.80778e-05 -0.00093237 5.90766e-05 -0.00095508 0.000117518 -0.000969302 0.000145184 -0.000904757 0.000178563 -0.000879111 0.00020979 -0.000839219 0.000234457 -0.000768408 0.000257984 -0.000699859 0.000279054 -0.000613008 0.000296177 -0.000514363 0.000310243 -0.000403541 0.000319018 -0.000284519 0.000324238 -0.000164883 0.000326168 -3.91503e-05 0.000322506 9.07241e-05 0.000315779 0.000207302 0.000305956 0.000324964 0.000291138 0.000443829 0.000273137 0.000541569 0.000252653 0.000634211 0.000229674 0.000707865 0.000208437 0.000763144 0.000192869 0.000805101 0.0001862 0.000830398 0.000192867 0.000826602 0.000211563 0.000816883 0.000199174 0.000834468 0.000161047 0.000836632 0.00011619 0.000799526 8.82091e-05 0.000840241 5.58749e-05 0.000753826 4.1157e-05 0.000709519 4.07348e-05 0.000685871 3.66068e-05 0.000618745 2.94737e-05 0.000561695 3.37318e-05 0.000544639 3.13742e-05 0.000480317 2.77973e-05 0.000429819 2.46724e-05 0.000388437 2.2523e-05 0.000350751 2.39198e-05 0.000319813 2.22909e-05 0.000272104 2.05117e-05 0.000232214 1.92129e-05 0.000198781 1.77445e-05 0.000167377 1.70059e-05 0.000138809 1.62824e-05 0.000116253 1.62475e-05 8.80501e-05 1.72346e-05 6.73835e-05 1.85371e-05 4.4153e-05 2.05304e-05 1.72578e-05 2.19736e-05 -7.12446e-06 2.45251e-05 -4.24734e-05 2.66684e-05 -6.38363e-05 2.98185e-05 -9.3457e-05 3.38604e-05 -0.000118572 3.72503e-05 -0.000141161 4.50911e-05 -0.000179301 5.16277e-05 -0.000197794 6.05601e-05 -0.000228317 6.89119e-05 -0.000254846 8.40906e-05 -0.000291873 0.000100004 -0.000309208 0.000122127 -0.000338311 0.000141591 -0.000356884 0.000158356 -0.00038028 0.000171263 -0.000402902 0.00018662 -0.000440618 0.000197893 -0.000470475 0.000208871 -0.000503311 0.000217277 -0.000539983 0.000219324 -0.000571056 0.000205332 -0.000608522 0.000175866 -0.000640495 0.000158478 -0.00068547 0.000172885 -0.000737191 0.0002131 -0.000767544 0.000257524 -0.000766497 0.00029847 -0.000756399 0.00032297 -0.000733943 0.000336414 -0.000719367 0.00033576 -0.000694736 0.000327618 -0.000661689 0.000324764 -0.000629143 0.00033111 -0.000593537 0.000338409 -0.000546417 0.000349134 -0.000476137 0.00036602 -0.0004113 0.000370447 -0.000310482 0.000379241 -0.000219802 0.000386272 -0.000112044 0.000388793 2.30964e-06 0.000394371 0.000119491 0.000391052 0.000220808 0.00038766 0.000343703 0.000381561 0.000435227 0.000384552 0.000523531 0.000386521 0.000600696 0.000386983 0.00065232 0.000393621 0.000691729 0.000407613 0.000711609 0.000427476 0.000717607 0.000448954 0.000713444 0.00048529 0.000699452 0.000485766 0.000717407 0.000468824 0.000704979 0.000378236 0.000771908 0.00029674 0.000746998 0.000252006 0.000716592 0.000241709 0.000677826 0.000238502 0.000606843 0.000242502 0.000553787 0.000247873 0.000497122 0.000248281 0.000436838 0.000243276 0.000385256 0.000230606 0.000338599 0.000217095 0.000294245 0.000205851 0.000260069 0.000198675 0.000215667 0.000191498 0.000178164 0.000186877 0.000144021 0.000182254 0.000125116 0.000177328 0.000101568 0.000170903 8.12267e-05 0.000168311 5.02132e-05 0.000168923 3.00872e-05 0.000174001 4.85183e-06 0.000180263 -7.77115e-06 0.00018848 -2.2143e-05 0.000193239 -3.06031e-05 0.000196208 -4.88772e-05 0.000203785 -6.85583e-05 0.000212693 -8.59916e-05 0.000224249 -0.00010474 0.00023787 -0.000121281 0.000254502 -0.000139513 0.000271093 -0.000153503 0.000286728 -0.000171521 0.000299929 -0.000192676 0.000317954 -0.0002262 0.000337715 -0.000249176 0.000359805 -0.000271901 0.00037979 -0.000290107 0.000399046 -0.000322764 0.000417216 -0.000348242 0.000435416 -0.000383615 0.000447381 -0.000405793 0.000455033 -0.000430003 0.000457845 -0.000470369 0.000445077 -0.000508848 0.000407644 -0.000549683 0.000363077 -0.000581895 0.000345765 -0.000633519 0.000376112 -0.000702609 0.000424542 -0.000725259 0.000467906 -0.00072383 0.000494144 -0.000712539 0.000496189 -0.000697107 0.000481652 -0.00069105 0.000468688 -0.000681518 0.000464421 -0.00066499 0.000466482 -0.000628053 0.000472692 -0.000573244 0.000479387 -0.000502282 0.000486634 -0.00041346 0.000492004 -0.000310814 0.000497056 -0.000188777 0.000501102 -6.75043e-05 0.000504851 6.42117e-05 0.000507492 0.000185533 0.000505971 0.000307809 0.000499566 0.000413479 0.000490007 0.000509647 0.000482497 0.000593259 0.000484496 0.000650374 0.000500057 0.000682804 0.000500376 0.000728784 0.000528962 0.000732702 0.000584925 0.000675744 0.000630941 0.000653994 0.000656298 0.000676542 0.000651615 0.000636669 0.000578822 0.000699339 0.000507893 0.000649801 0.000460018 0.00062481 0.000427431 0.000577628 0.000400334 0.000515089 0.000378682 0.000467853 0.000356551 0.00039688 0.000338801 0.000340994 0.000320938 0.000317393 0.000302394 0.000298307 0.000279576 0.000256524 0.000260853 0.000208848 0.000247832 0.000167887 0.000236944 0.00013189 0.000236686 9.85978e-05 0.00024352 7.91932e-05 0.000251192 6.5437e-05 0.000262591 5.51032e-05 0.00028049 3.25434e-05 0.000294841 2.47736e-05 0.00031183 1.01407e-05 0.00032346 2.50509e-06 0.00032718 -2.48933e-05 0.000341343 -6.0684e-05 0.000373716 -6.74447e-05 0.000404545 -4.68038e-05 0.00041567 -3.19017e-05 0.000425661 -2.20228e-05 0.000447905 3.96955e-05 0.000469367 8.28094e-05 0.000459974 3.67374e-05 0.000424356 -0.000104155 0.000390624 -0.000211786 0.000390265 -0.000307079 0.000410377 -0.000333911 0.000457653 -0.000366588 0.000511952 -0.000378537 0.000566042 -0.000368308 0.00061687 -0.000386243 0.000656189 -0.000392785 0.000680064 -0.000384781 0.000692096 -0.000326433 0.000692749 -0.000346357 0.000670758 -0.000477085 0.000663276 -0.000564601 0.000639987 -0.000549051 0.000615442 -0.000552652 0.000615622 -0.000606013 0.000613732 -0.000628838 0.000616705 -0.00065074 0.000599991 -0.000641833 0.000574533 -0.000622959 0.000545328 -0.000634202 0.000532868 -0.000616892 0.000529645 -0.000597855 0.000539974 -0.000513473 0.000542199 -0.000454026 0.000538682 -0.000340799 0.000555289 -0.000217036 0.000554826 -0.000126904 0.000569735 9.48616e-07 0.000576744 8.24307e-05 0.000565806 0.000209138 0.000548419 0.000323539 0.000531979 0.000421763 0.000519165 0.000492344 0.000503132 0.000564091 0.000485196 0.000640404 0.000466283 0.000704654 0.000446395 0.000773728 0.000430819 0.000829328 0.000414316 0.000871811 0.000402138 0.000900582 0.000356654 0.000931321 0.000209696 0.00104995 9.78234e-05 0.000938014 5.77854e-05 0.000820608 5.90868e-05 0.000760616 5.88647e-05 0.000664689 5.14709e-05 0.00059676 5.31837e-05 0.000567613 4.72284e-05 0.000499856 4.03637e-05 0.000449423 3.39724e-05 0.000407991 3.14553e-05 0.000376295 3.02231e-05 0.000337174 2.81009e-05 0.000293301 2.62739e-05 0.000254271 2.52408e-05 0.000221104 2.4669e-05 0.000188934 2.45735e-05 0.000158497 2.47762e-05 0.000128386 2.47616e-05 9.70322e-05 2.49882e-05 6.83226e-05 2.55553e-05 4.10885e-05 2.59494e-05 1.31506e-05 2.72234e-05 -1.16289e-05 2.89907e-05 -3.74441e-05 3.05002e-05 -6.80731e-05 3.25691e-05 -9.70854e-05 3.4457e-05 -0.000127619 3.46292e-05 -0.000168303 3.73081e-05 -0.000188755 4.19289e-05 -0.000215948 4.41828e-05 -0.00026479 4.67882e-05 -0.000300599 4.89504e-05 -0.000347218 4.92915e-05 -0.000394459 5.47506e-05 -0.000418128 5.6782e-05 -0.000477971 5.76232e-05 -0.000528513 6.15823e-05 -0.000565941 6.20156e-05 -0.000629837 6.02869e-05 -0.000678008 5.98337e-05 -0.000730477 4.05529e-05 -0.000781526 6.2133e-07 -0.000859107 -5.59125e-05 -0.000900181 -1.3225e-05 -0.000924337 8.70183e-05 -0.00104586 0.000125692 -0.000989157 0.000142185 -0.000891542 0.000187087 -0.000931933 0.000209311 -0.00082793 0.000235518 -0.000782319 0.000261044 -0.000710325 0.000281841 -0.000610026 0.000298623 -0.000503994 0.000312289 -0.000386572 0.000320946 -0.000258492 0.00032538 -0.000125433 0.000324736 9.62569e-06 0.000317609 0.000144906 0.000311819 0.000268103 0.000297404 0.00041135 0.00027311 0.000537103 0.000255838 0.000589684 0.000231847 0.000736201 0.000211624 0.000792324 0.000188491 0.000867753 0.000137102 0.000958477 0.00016404 0.000817845 0.000179563 0.000935268 8.88335e-05 0.00099351 0.00112644 1.08631e-05 0.000124729 1.32905e-05 9.33933e-05 1.33568e-05 6.64359e-05 1.2665e-05 4.41844e-05 1.17762e-05 2.49144e-05 1.10107e-05 7.79495e-06 1.07988e-05 -7.81213e-06 1.08849e-05 -2.49936e-05 1.06215e-05 -4.54451e-05 1.01522e-05 -6.66118e-05 9.17196e-06 -8.88805e-05 7.95561e-06 -0.000109311 7.40398e-06 -0.000125563 1.01148e-05 -0.000132269 1.35797e-05 -0.000156428 1.76731e-05 -0.000192077 1.22975e-05 -0.000255799 7.75635e-06 -0.000290972 1.27578e-05 -0.000288275 1.76572e-05 -0.000327848 1.65133e-05 -0.000397195 1.29469e-05 -0.000450219 1.24203e-05 -0.000492272 1.3597e-05 -0.000534523 1.03724e-05 -0.000599352 1.25633e-05 -0.000633893 1.03918e-05 -0.00070232 5.89255e-06 -0.000760697 2.55425e-06 -0.000814712 -2.3171e-05 -0.000907498 -6.90419e-05 -0.000886499 -3.36824e-05 -0.00099044 5.07202e-05 -0.0010537 0.000144136 -0.000998173 0.00016692 -0.000901895 0.000204268 -0.000876567 0.000230578 -0.000794719 0.000258374 -0.000727655 0.000281358 -0.000635992 0.000299947 -0.000532951 0.000314735 -0.000418329 0.000324249 -0.000294034 0.000329547 -0.000170181 0.000331116 -4.0719e-05 0.000328614 9.32257e-05 0.000320617 0.000215299 0.000309215 0.000336366 0.000294834 0.000458211 0.000277217 0.000559186 0.000260894 0.000650534 0.000246376 0.000722383 0.000246825 0.000762694 0.000265235 0.000786692 0.000285867 0.000809766 0.000260534 0.000851935 0.000224425 0.000852992 0.000167224 0.000891669 0.000114072 0.000889784 6.97486e-05 0.000843849 6.21261e-05 0.000847863 5.0387e-05 0.000765565 4.3865e-05 0.000716041 4.50257e-05 0.000684711 4.09438e-05 0.000622827 3.41908e-05 0.000568448 3.5541e-05 0.000543288 3.22829e-05 0.000483576 2.81945e-05 0.000433907 2.45848e-05 0.000392046 2.17015e-05 0.000353635 2.12199e-05 0.000320295 1.83748e-05 0.000274949 1.53642e-05 0.000235225 1.30721e-05 0.000201073 1.10312e-05 0.000169418 9.7108e-06 0.000140129 9.10641e-06 0.000116857 8.7592e-06 8.83974e-05 9.24729e-06 6.68954e-05 1.02635e-05 4.31368e-05 1.14071e-05 1.61142e-05 1.27447e-05 -8.46207e-06 1.36886e-05 -4.34173e-05 1.46192e-05 -6.4767e-05 1.62342e-05 -9.5072e-05 1.79801e-05 -0.000120318 1.98064e-05 -0.000142987 2.19497e-05 -0.000181444 2.346e-05 -0.000199304 2.72063e-05 -0.000232063 2.92099e-05 -0.00025685 3.4047e-05 -0.000296711 3.87694e-05 -0.00031393 4.97808e-05 -0.000349323 6.04268e-05 -0.00036753 7.9797e-05 -0.000399651 9.8368e-05 -0.000421473 0.000125192 -0.000467442 0.000150365 -0.000495648 0.000180005 -0.000532951 0.000207735 -0.000567712 0.000228853 -0.000592174 0.000252096 -0.000631765 0.000270547 -0.000658946 0.000276974 -0.000691897 0.000262527 -0.000722744 0.000241691 -0.000746708 0.000240735 -0.000765542 0.000269474 -0.000785139 0.00031623 -0.0007807 0.000364927 -0.000768064 0.000394716 -0.000724525 0.000406844 -0.000673817 0.000404459 -0.000626758 0.000398593 -0.000587671 0.000395579 -0.000543402 0.000390912 -0.00047147 0.000396286 -0.000416674 0.000401386 -0.000315582 0.000407047 -0.000225464 0.000413987 -0.000118984 0.000422531 -6.23405e-06 0.0004269 0.000115122 0.000424247 0.00022346 0.000429958 0.000337992 0.000430255 0.00043493 0.000434688 0.000519097 0.000444956 0.000590429 0.000466408 0.000630868 0.000499819 0.000658318 0.000514259 0.000697169 0.000565252 0.000666614 0.000575897 0.000702799 0.000558784 0.000716565 0.000450599 0.000825592 0.000334286 0.000821293 0.000271577 0.000834617 0.000242423 0.000776152 0.000231251 0.000727765 0.000229846 0.000679231 0.000224381 0.000612308 0.000214214 0.000563953 0.000197292 0.000514044 0.000175108 0.000459022 0.000153387 0.000406977 0.000133794 0.000358193 0.000119573 0.000308466 0.000110406 0.000269236 0.000103974 0.000222098 9.78517e-05 0.000184287 9.37688e-05 0.000148104 9.04338e-05 0.000128451 8.92291e-05 0.000102772 8.79308e-05 8.25251e-05 8.72353e-05 5.09087e-05 8.73291e-05 2.99934e-05 8.81748e-05 4.00616e-06 8.92135e-05 -8.80983e-06 9.13485e-05 -2.42781e-05 9.34287e-05 -3.26832e-05 9.60654e-05 -5.15139e-05 0.000100955 -7.34478e-05 0.000105455 -9.04916e-05 0.000110595 -0.00010988 0.000116521 -0.000127207 0.000124019 -0.000147011 0.000131782 -0.000161267 0.000142219 -0.000181958 0.000151912 -0.000202369 0.000167943 -0.000242232 0.000187808 -0.000269041 0.000216572 -0.000300665 0.000246593 -0.000320128 0.000280197 -0.000356368 0.000319015 -0.000387059 0.000362094 -0.000426694 0.000404859 -0.000448558 0.000438932 -0.000464076 0.000465605 -0.000497042 0.000491857 -0.0005351 0.000515247 -0.000573072 0.000530533 -0.000597181 0.000523948 -0.000626934 0.000495383 -0.000674045 0.000464068 -0.000693943 0.000459839 -0.000719602 0.000498187 -0.000750886 0.000553561 -0.000752481 0.000580466 -0.000717954 0.000572767 -0.00067382 0.00055388 -0.000646102 0.000540689 -0.000614862 0.000534887 -0.000567442 0.000532916 -0.000500311 0.000533283 -0.000413827 0.000534415 -0.000311946 0.000537894 -0.000192257 0.000541399 -7.10084e-05 0.000546633 5.89768e-05 0.000550555 0.000181612 0.000552773 0.000305591 0.000553728 0.000412523 0.000555775 0.000507601 0.000559153 0.00058988 0.00058059 0.000628937 0.000620446 0.000642948 0.000624841 0.000724389 0.000692511 0.000665032 0.000744563 0.000623692 0.00074235 0.000656207 0.000651015 0.000767878 0.00053343 0.000754254 0.000457223 0.000775546 0.00039726 0.000709764 0.000355952 0.000666118 0.000317286 0.000616295 0.000278023 0.000554352 0.000248837 0.000497039 0.000226357 0.00041936 0.000207617 0.000359735 0.000193285 0.000331725 0.000183861 0.000307731 0.00017278 0.000267605 0.000162861 0.000218767 0.000153187 0.000177561 0.000143653 0.000141423 0.000137996 0.000104255 0.000134281 8.29082e-05 0.00013337 6.63481e-05 0.000135938 5.25353e-05 0.000139016 2.94648e-05 0.000143442 2.03483e-05 0.000149689 3.89383e-06 0.000153798 -1.60458e-06 0.000154581 -2.56759e-05 0.000164187 -7.02901e-05 0.000187851 -9.11085e-05 0.000204346 -6.32992e-05 0.000206069 -3.36245e-05 0.000218968 -3.49224e-05 0.000262567 -3.90346e-06 0.000298569 4.68073e-05 0.000281429 5.38773e-05 0.000260027 -8.2752e-05 0.000258592 -0.000210352 0.000264401 -0.000312888 0.000275349 -0.000344858 0.00029765 -0.00038889 0.000343224 -0.000424111 0.000408277 -0.000433361 0.000481898 -0.000459865 0.000559407 -0.000470293 0.00063533 -0.000460705 0.00069508 -0.000386182 0.000736348 -0.000387625 0.000755312 -0.00049605 0.000766343 -0.000575631 0.00075623 -0.000538939 0.000725098 -0.00052152 0.000679704 -0.000560619 0.000656197 -0.000605331 0.000664714 -0.000659257 0.000670851 -0.00064797 0.000681761 -0.000633869 0.00066757 -0.00062001 0.000649107 -0.00059843 0.000622667 -0.000571415 0.000613229 -0.000504036 0.000612897 -0.000453695 0.000621527 -0.000349429 0.00062787 -0.000223379 0.0006224 -0.000121435 0.000645565 -2.22163e-05 0.000644623 8.33724e-05 0.000650512 0.000203249 0.000642895 0.000331155 0.000643476 0.000421183 0.000654078 0.000481741 0.00066353 0.000554639 0.000663858 0.000640076 0.000660898 0.000707614 0.000650087 0.00078454 0.000679555 0.00079986 0.000686178 0.000865187 0.000534861 0.0010519 0.000278186 0.00118799 0.000138864 0.00118928 9.41442e-05 0.000982734 8.24097e-05 0.000832343 8.32101e-05 0.000759815 7.35395e-05 0.00067436 6.05653e-05 0.000609735 5.60916e-05 0.000572087 4.81101e-05 0.000507837 4.03692e-05 0.000457164 3.37754e-05 0.000414585 3.06448e-05 0.000379426 2.88619e-05 0.000338957 2.66472e-05 0.000295516 2.47787e-05 0.000256139 2.3736e-05 0.000222147 2.32005e-05 0.000189469 2.31113e-05 0.000158586 2.32864e-05 0.000128211 2.33173e-05 9.70013e-05 2.35652e-05 6.80747e-05 2.41057e-05 4.0548e-05 2.45047e-05 1.27516e-05 2.56906e-05 -1.28148e-05 2.73279e-05 -3.90814e-05 2.87929e-05 -6.95381e-05 3.06605e-05 -9.89531e-05 3.24609e-05 -0.000129419 3.2843e-05 -0.000168685 3.53817e-05 -0.000191294 3.9471e-05 -0.000220037 4.15769e-05 -0.000266895 4.41174e-05 -0.00030314 4.60408e-05 -0.000349141 4.66811e-05 -0.000395099 5.13129e-05 -0.00042276 5.35747e-05 -0.000480233 5.47005e-05 -0.000529639 5.83877e-05 -0.000569628 5.93177e-05 -0.000630767 6.00945e-05 -0.000678785 6.14693e-05 -0.000731851 6.09154e-05 -0.000780972 5.42146e-05 -0.000852406 3.70117e-05 -0.000882979 5.29245e-06 -0.000892617 4.09048e-05 -0.00108148 3.54042e-05 -0.000983657 0.000106019 -0.000962156 0.00016663 -0.000992545 0.000192332 -0.000853631 0.000234164 -0.000824151 0.000264301 -0.000740462 0.000284995 -0.00063072 0.000302172 -0.000521171 0.00031543 -0.000399829 0.000323896 -0.000266959 0.000329623 -0.00013116 0.000328967 1.02815e-05 0.000319914 0.000153959 0.000311807 0.00027621 0.000301359 0.000421798 0.000272158 0.000566303 0.000249907 0.000611935 0.000228901 0.000757207 0.000243974 0.000777251 0.000274342 0.000837385 0.000196366 0.00103645 0.000113979 0.000900232 6.62849e-05 0.000982962 8.37527e-06 0.00105142 0.00113481 9.26125e-06 0.000115467 1.19667e-05 9.06878e-05 1.23112e-05 6.60913e-05 1.18132e-05 4.46823e-05 1.10637e-05 2.56639e-05 1.04009e-05 8.45774e-06 1.01816e-05 -7.59281e-06 1.02042e-05 -2.50162e-05 9.95221e-06 -4.51932e-05 9.50603e-06 -6.61657e-05 8.64406e-06 -8.80185e-05 7.63608e-06 -0.000108303 7.2525e-06 -0.000125179 9.6616e-06 -0.000134678 1.26793e-05 -0.000159446 1.5791e-05 -0.000195189 1.17026e-05 -0.000251711 8.04899e-06 -0.000287318 1.2096e-05 -0.000292322 1.61574e-05 -0.000331909 1.52049e-05 -0.000396243 1.2463e-05 -0.000447478 1.17947e-05 -0.000491604 1.2658e-05 -0.000535386 9.86465e-06 -0.000596559 1.17148e-05 -0.000635744 9.67005e-06 -0.000700275 6.57288e-06 -0.0007576 4.74349e-06 -0.000812883 -6.8678e-06 -0.000895887 -5.81676e-06 -0.00088755 -2.52892e-05 -0.000970968 -1.91559e-05 -0.00105984 -2.72362e-05 -0.000990093 7.95362e-05 -0.00100867 0.000199527 -0.000996558 0.000207905 -0.000803097 0.00024579 -0.00076554 0.00027629 -0.000666492 0.000296851 -0.000553512 0.000313686 -0.000435164 0.000325319 -0.000305667 0.000331464 -0.000176326 0.000332154 -4.14093e-05 0.00033046 9.49191e-05 0.00032178 0.000223979 0.000309176 0.00034897 0.00029864 0.000468746 0.000294515 0.000563311 0.000309428 0.000635621 0.000328589 0.000703222 0.000364566 0.000726717 0.000338839 0.00081242 0.000288678 0.000859927 0.000213931 0.000926682 0.000138162 0.000928761 8.91301e-05 0.000940701 6.85705e-05 0.000910344 5.26554e-05 0.000859764 5.54562e-05 0.000845063 4.95434e-05 0.000771478 4.46076e-05 0.000720977 4.46225e-05 0.000684696 4.07156e-05 0.000626734 3.47815e-05 0.000574383 3.46724e-05 0.000543398 3.11743e-05 0.000487074 2.68035e-05 0.000438278 2.27966e-05 0.000396053 1.95439e-05 0.000356888 1.83501e-05 0.000321489 1.57054e-05 0.000277594 1.30443e-05 0.000237886 1.0943e-05 0.000203175 9.09332e-06 0.000171267 7.85237e-06 0.00014137 7.37537e-06 0.000117334 7.02635e-06 8.87464e-05 7.36028e-06 6.65615e-05 8.20666e-06 4.22904e-05 9.04695e-06 1.52739e-05 1.02022e-05 -9.61735e-06 1.06947e-05 -4.39098e-05 1.13492e-05 -6.54215e-05 1.24121e-05 -9.61348e-05 1.34339e-05 -0.00012134 1.49332e-05 -0.000144486 1.57832e-05 -0.000182294 1.6422e-05 -0.000199943 1.87283e-05 -0.000234369 1.92146e-05 -0.000257336 2.106e-05 -0.000298556 2.21276e-05 -0.000314998 2.62241e-05 -0.000353419 2.86309e-05 -0.000369937 3.55413e-05 -0.000406561 4.08222e-05 -0.000426754 5.13456e-05 -0.000477966 6.03244e-05 -0.000504627 7.95726e-05 -0.000552199 0.000108513 -0.000596652 0.000142355 -0.000626017 0.000191084 -0.000680494 0.000241472 -0.000709334 0.000280631 -0.000731056 0.000307532 -0.000749645 0.000327413 -0.000766589 0.000333951 -0.000772079 0.000317213 -0.000768401 0.000311048 -0.000774535 0.00033943 -0.000796446 0.000384239 -0.000769334 0.000431577 -0.000721155 0.000465179 -0.000660361 0.000483112 -0.000605604 0.000483312 -0.000543602 0.000479134 -0.000467292 0.000471008 -0.000408548 0.000467773 -0.000312347 0.00047104 -0.000228731 0.000474542 -0.000122486 0.000477497 -9.18942e-06 0.000484065 0.000108554 0.000491514 0.000216012 0.000502758 0.000326748 0.000511097 0.000426591 0.000537673 0.000492521 0.000547529 0.000580572 0.000576459 0.000601937 0.000641418 0.00059336 0.000661707 0.000676879 0.000653286 0.000675036 0.000538396 0.000817689 0.000392265 0.000862696 0.000302549 0.000915309 0.000252016 0.000871826 0.000232112 0.000854522 0.000216397 0.000791867 0.000201329 0.000742833 0.000184038 0.000696522 0.000159952 0.000636395 0.000136594 0.000587311 0.000118199 0.000532439 0.000103849 0.000473373 9.22554e-05 0.000418571 8.24915e-05 0.000367957 7.50609e-05 0.000315897 6.98207e-05 0.000274476 6.57236e-05 0.000226195 6.13775e-05 0.000188633 5.87092e-05 0.000150772 5.71186e-05 0.000130042 5.75785e-05 0.000102312 5.80189e-05 8.20847e-05 5.78503e-05 5.10773e-05 5.77409e-05 3.01028e-05 5.72169e-05 4.53018e-06 5.68027e-05 -8.39566e-06 5.7645e-05 -2.51204e-05 5.96868e-05 -3.4725e-05 6.2042e-05 -5.38691e-05 6.536e-05 -7.67658e-05 6.85038e-05 -9.36355e-05 7.09295e-05 -0.000112306 7.33671e-05 -0.000129645 7.60804e-05 -0.000149725 7.85558e-05 -0.000163742 8.40397e-05 -0.000187442 8.94383e-05 -0.000207767 9.74902e-05 -0.000250284 0.000105395 -0.000276947 0.000116382 -0.000311651 0.000128321 -0.000332068 0.000144987 -0.000373034 0.000164266 -0.000406338 0.000190468 -0.000452895 0.000237639 -0.00049573 0.000286737 -0.000513175 0.000333386 -0.000543691 0.00039565 -0.000597364 0.000461449 -0.000638871 0.000517085 -0.000652818 0.000561555 -0.000671404 0.000597799 -0.000710289 0.00062135 -0.000717494 0.000599435 -0.000697687 0.000558917 -0.000710368 0.0005604 -0.000753964 0.00060322 -0.000760774 0.000656155 -0.000726755 0.000673247 -0.000663194 0.000656659 -0.000598274 0.000635967 -0.00054675 0.000622393 -0.000486738 0.000613664 -0.000405099 0.000607981 -0.000306263 0.000605943 -0.000190218 0.000606565 -7.16312e-05 0.000612463 5.30794e-05 0.000620713 0.000173362 0.000631845 0.000294459 0.000642557 0.000401812 0.000658935 0.000491222 0.000679506 0.000569309 0.00073291 0.000575533 0.000804389 0.000571469 0.000858362 0.000670416 0.000880841 0.000642552 0.000770697 0.000733837 0.000601531 0.000825373 0.000471787 0.000897621 0.000380964 0.000845077 0.000330111 0.000826399 0.000283552 0.000756323 0.000247475 0.000702195 0.00021614 0.00064763 0.000189178 0.000581313 0.000171939 0.000514279 0.000156729 0.00043457 0.00014217 0.000374294 0.000133165 0.00034073 0.00012811 0.000312786 0.000123013 0.000272703 0.000117101 0.000224679 0.000109033 0.000185628 0.000100956 0.000149501 9.3015e-05 0.000112196 8.68072e-05 8.9116e-05 8.39737e-05 6.91817e-05 8.30514e-05 5.34576e-05 8.17019e-05 3.08144e-05 8.27262e-05 1.9324e-05 8.41855e-05 2.43459e-06 8.68227e-05 -4.24178e-06 8.66379e-05 -2.54911e-05 8.4592e-05 -6.82442e-05 8.15198e-05 -8.80364e-05 8.01314e-05 -6.19107e-05 8.23221e-05 -3.58152e-05 9.39198e-05 -4.65201e-05 0.000110718 -2.07018e-05 0.000136668 2.08573e-05 0.000163025 2.75207e-05 0.000188883 -0.000108611 0.000210078 -0.000231546 0.000215405 -0.000318215 0.000218557 -0.000348011 0.00021962 -0.000389953 0.000229978 -0.000434469 0.000255827 -0.00045921 0.000305234 -0.000509271 0.000373127 -0.000538186 0.000467958 -0.000555536 0.000572544 -0.000490768 0.000653462 -0.000468543 0.000702418 -0.000545006 0.00074467 -0.000617883 0.000781186 -0.000575454 0.000803413 -0.000543746 0.00081302 -0.000570227 0.000793416 -0.000585727 0.000744453 -0.000610294 0.00069041 -0.000593927 0.000694141 -0.000637601 0.000742952 -0.000668821 0.000785121 -0.0006406 0.000777648 -0.000563941 0.000739464 -0.000465852 0.000720613 -0.000434844 0.00073031 -0.000359126 0.000723173 -0.000216243 0.000728169 -0.00012643 0.000751592 -4.56394e-05 0.000754093 8.08711e-05 0.000775369 0.000181974 0.000791443 0.000315081 0.00081251 0.000400116 0.000838679 0.000455572 0.000864943 0.000528375 0.000874642 0.000630377 0.000910659 0.000671598 0.000947273 0.000747926 0.000892719 0.000854414 0.000654326 0.00110358 0.000352449 0.00135378 0.000163961 0.00137648 0.000123239 0.00123 0.000116575 0.000989398 0.000105453 0.000843465 9.31636e-05 0.000772105 7.64679e-05 0.000691056 6.12957e-05 0.000624907 5.43051e-05 0.000579078 4.55928e-05 0.00051655 3.74841e-05 0.000465273 3.10009e-05 0.000421068 2.77846e-05 0.000382642 2.61486e-05 0.000340593 2.44554e-05 0.000297209 2.29863e-05 0.000257609 2.21514e-05 0.000222982 2.1713e-05 0.000189908 2.16517e-05 0.000158648 2.18303e-05 0.000128032 2.18896e-05 9.6942e-05 2.21449e-05 6.78195e-05 2.26766e-05 4.00162e-05 2.31029e-05 1.23253e-05 2.42083e-05 -1.39203e-05 2.57216e-05 -4.05947e-05 2.70994e-05 -7.09159e-05 2.87998e-05 -0.000100654 3.05068e-05 -0.000131126 3.1039e-05 -0.000169218 3.34023e-05 -0.000193657 3.70332e-05 -0.000223668 3.90429e-05 -0.000268905 4.1432e-05 -0.000305529 4.3264e-05 -0.000350973 4.41153e-05 -0.00039595 4.82293e-05 -0.000426874 5.02438e-05 -0.000482247 5.1483e-05 -0.000530878 5.4531e-05 -0.000572676 5.57428e-05 -0.000631978 5.68288e-05 -0.000679871 5.83802e-05 -0.000733403 5.84033e-05 -0.000780996 5.48535e-05 -0.000848856 5.23267e-05 -0.000880452 5.47489e-05 -0.00089504 2.32658e-05 -0.00104999 -2.08974e-05 -0.000939493 2.27712e-05 -0.00100582 8.88206e-05 -0.00105859 0.000180001 -0.000944811 0.000216667 -0.000860817 0.000253969 -0.000777763 0.000280271 -0.000657023 0.000301202 -0.000542102 0.00031496 -0.000413588 0.000325554 -0.000277552 0.000330992 -0.000136598 0.000331141 1.01324e-05 0.000320549 0.000164552 0.000310276 0.000286483 0.000300154 0.000431919 0.000250725 0.000615733 0.000262119 0.000600541 0.000302023 0.000717303 0.000246512 0.000832762 0.000223449 0.000860448 0.000109877 0.00115002 1.34727e-06 0.00100876 -2.94906e-05 0.0010138 -3.32797e-05 0.00105521 0.00110153 7.92939e-06 0.000107538 1.07442e-05 8.7873e-05 1.13006e-05 6.5535e-05 1.09701e-05 4.50127e-05 1.03466e-05 2.62875e-05 9.77478e-06 9.02952e-06 9.55515e-06 -7.37319e-06 9.53149e-06 -2.49926e-05 9.29089e-06 -4.49526e-05 8.87196e-06 -6.57467e-05 8.11706e-06 -8.72636e-05 7.28255e-06 -0.000107468 7.03347e-06 -0.00012493 9.16368e-06 -0.000136808 1.17823e-05 -0.000162065 1.41644e-05 -0.000197571 1.10583e-05 -0.000248605 8.13271e-06 -0.000284393 1.14242e-05 -0.000295614 1.4766e-05 -0.000335251 1.39878e-05 -0.000395465 1.18543e-05 -0.000445344 1.12068e-05 -0.000490957 1.17251e-05 -0.000535904 9.57601e-06 -0.00059441 1.0795e-05 -0.000636963 9.00539e-06 -0.000698485 6.1116e-06 -0.000754706 3.72473e-06 -0.000810496 -4.82406e-06 -0.000887338 -1.86795e-06 -0.000890507 -1.05408e-05 -0.000962295 -2.41784e-05 -0.0010462 -3.72456e-05 -0.000977026 -1.26875e-05 -0.00103323 5.47265e-05 -0.00106397 0.000154197 -0.000902567 0.000248323 -0.000859666 0.000267634 -0.000685803 0.000274867 -0.000560746 0.00029487 -0.000455167 0.000310285 -0.000321082 0.000316428 -0.000182469 0.000318263 -4.32445e-05 0.000323196 8.99866e-05 0.000326045 0.00022113 0.000335566 0.000339449 0.000357458 0.000446855 0.000383604 0.000537165 0.000446895 0.00057233 0.000408185 0.000741932 0.000330237 0.000804664 0.000243519 0.000899138 0.000159008 0.000944437 0.000101262 0.000984427 7.05598e-05 0.000959464 5.87071e-05 0.000952554 5.56174e-05 0.000913434 4.92273e-05 0.000866154 5.26349e-05 0.000841655 4.85279e-05 0.000775585 4.42819e-05 0.000725223 4.32422e-05 0.000685735 3.93888e-05 0.000630588 3.39583e-05 0.000579813 3.27064e-05 0.00054465 2.90656e-05 0.000490715 2.48843e-05 0.00044246 2.11334e-05 0.000399804 1.81888e-05 0.000359832 1.68257e-05 0.000322852 1.44784e-05 0.000279941 1.20802e-05 0.000240284 1.01343e-05 0.000205121 8.44728e-06 0.000172954 7.29275e-06 0.000142525 6.85321e-06 0.000117774 6.50468e-06 8.90949e-05 6.77094e-06 6.62952e-05 7.46851e-06 4.15929e-05 8.13804e-06 1.46043e-05 9.14983e-06 -1.06291e-05 9.4588e-06 -4.42187e-05 1.00539e-05 -6.60166e-05 1.0803e-05 -9.68839e-05 1.15027e-05 -0.000122039 1.2829e-05 -0.000145813 1.31714e-05 -0.000182636 1.3653e-05 -0.000200425 1.51647e-05 -0.000235881 1.52072e-05 -0.000257379 1.60663e-05 -0.000299415 1.61369e-05 -0.000315068 1.83563e-05 -0.000355639 1.88692e-05 -0.00037045 2.31351e-05 -0.000410827 2.56546e-05 -0.000429273 3.07253e-05 -0.000483037 3.3687e-05 -0.000507589 4.16483e-05 -0.000560161 4.94213e-05 -0.000604425 6.10047e-05 -0.0006376 8.19234e-05 -0.000701413 0.000111323 -0.000738734 0.000165298 -0.000785031 0.000225778 -0.000810125 0.000286929 -0.00082774 0.000340413 -0.000825564 0.000372789 -0.000800777 0.00038828 -0.000790026 0.000389339 -0.000797505 0.000390528 -0.000770523 0.000408795 -0.000739422 0.000453239 -0.000704805 0.000501701 -0.000654065 0.000536431 -0.000578332 0.000559576 -0.000490437 0.000568426 -0.000417398 0.000570399 -0.000314319 0.000566874 -0.000225207 0.000569553 -0.000125164 0.000577281 -1.69175e-05 0.000581124 0.000104711 0.000586047 0.000211089 0.000620725 0.00029207 0.000625444 0.000421872 0.000672914 0.00044505 0.000716341 0.000537146 0.000755348 0.00056293 0.00075064 0.000598067 0.00064076 0.00078676 0.000469622 0.000846174 0.000347605 0.000939705 0.00027235 0.000937951 0.000237061 0.000950598 0.000207708 0.000901179 0.000186401 0.000875829 0.000161737 0.000816531 0.00013824 0.00076633 0.00011835 0.000716413 0.000101053 0.000653692 8.81941e-05 0.000600171 7.879e-05 0.000541844 7.20537e-05 0.000480109 6.60414e-05 0.000424583 6.02897e-05 0.000373708 5.57779e-05 0.000320409 5.21461e-05 0.000278108 4.89933e-05 0.000229348 4.54545e-05 0.000192172 4.33826e-05 0.000152844 4.22698e-05 0.000131155 4.29028e-05 0.00010168 4.33724e-05 8.16152e-05 4.33143e-05 5.11353e-05 4.29581e-05 3.04591e-05 4.19881e-05 5.50016e-06 4.12235e-05 -7.63107e-06 4.18464e-05 -2.57434e-05 4.36314e-05 -3.65099e-05 4.57635e-05 -5.60013e-05 4.81104e-05 -7.91127e-05 5.09117e-05 -9.64368e-05 5.23711e-05 -0.000113765 5.37328e-05 -0.000131006 5.51336e-05 -0.000151125 5.61763e-05 -0.000164785 6.03625e-05 -0.000191628 6.44214e-05 -0.000211826 7.00571e-05 -0.000255919 7.46153e-05 -0.000281505 8.09158e-05 -0.000317952 8.75694e-05 -0.000338721 9.78004e-05 -0.000383265 0.000107533 -0.000416071 0.000118366 -0.000463729 0.0001335 -0.000510863 0.000149947 -0.000529622 0.000175207 -0.000568951 0.000212142 -0.0006343 0.000267499 -0.000694228 0.000343438 -0.000728756 0.000431688 -0.000759654 0.000519092 -0.000797694 0.000602195 -0.000800597 0.000660951 -0.000756442 0.00069149 -0.000740908 0.000691058 -0.000753533 0.000673174 -0.00074289 0.000679608 -0.00073319 0.000721949 -0.000705534 0.000761789 -0.000638114 0.00077055 -0.000555511 0.000754516 -0.000470703 0.000735368 -0.000385951 0.000723121 -0.000294016 0.000717744 -0.000184841 0.000718638 -7.2525e-05 0.000729789 4.19286e-05 0.000736211 0.000166939 0.000754358 0.000276312 0.000782031 0.000374139 0.000823377 0.000449877 0.000883031 0.000509655 0.000970671 0.000487893 0.00100749 0.000534646 0.000944212 0.000733698 0.000764857 0.000821908 0.000568648 0.000930046 0.000418178 0.000975843 0.000336177 0.000979622 0.000277186 0.000904068 0.000240361 0.000863224 0.000206549 0.000790136 0.000180929 0.000727816 0.000160305 0.000668254 0.000143747 0.000597871 0.000133009 0.000525018 0.000121038 0.00044654 0.000109303 0.000386029 0.000102547 0.000347486 9.89417e-05 0.000316391 9.60972e-05 0.000275548 9.10969e-05 0.000229679 8.52174e-05 0.000191508 7.83004e-05 0.000156418 7.03403e-05 0.000120156 6.4729e-05 9.47274e-05 6.06457e-05 7.3265e-05 5.84309e-05 5.56725e-05 5.67958e-05 3.24495e-05 5.68797e-05 1.924e-05 5.729e-05 2.02428e-06 5.86796e-05 -5.63138e-06 5.75213e-05 -2.43328e-05 5.1546e-05 -6.22689e-05 4.31081e-05 -7.95985e-05 4.03519e-05 -5.91546e-05 4.23881e-05 -3.78514e-05 4.79547e-05 -5.20867e-05 5.52536e-05 -2.80007e-05 8.09047e-05 -4.79375e-06 0.000118072 -9.64623e-06 0.000147311 -0.00013785 0.000163606 -0.000247841 0.000170591 -0.000325201 0.000176971 -0.000354391 0.000175929 -0.000388911 0.000177365 -0.000435905 0.000190648 -0.000472493 0.000225484 -0.000544107 0.000266681 -0.000579383 0.000317972 -0.000606827 0.00039244 -0.000565236 0.000463574 -0.000539677 0.000514756 -0.000596188 0.000575375 -0.000678502 0.00066147 -0.000661549 0.000742294 -0.000624571 0.000804567 -0.000632499 0.000844407 -0.000625567 0.000868415 -0.000634303 0.000848256 -0.000573768 0.000784042 -0.000573387 0.000772617 -0.000657396 0.000813655 -0.000681637 0.000851032 -0.000601318 0.000878344 -0.000493164 0.000882251 -0.00043875 0.000881719 -0.000358595 0.000873542 -0.000208066 0.000870582 -0.00012347 0.000898483 -7.35397e-05 0.000921171 5.81833e-05 0.000952727 0.000150418 0.000984613 0.000283194 0.00101846 0.00036627 0.00105104 0.000422995 0.00109925 0.000480159 0.00114378 0.000585847 0.00113678 0.0006786 0.00100123 0.00088348 0.00071477 0.00114087 0.000392211 0.00142614 0.000193978 0.00155201 0.000135518 0.00143494 0.000142644 0.00122287 0.000138235 0.000993807 0.000114873 0.000866828 9.40317e-05 0.000792946 7.40618e-05 0.000711026 5.73159e-05 0.000641653 4.79467e-05 0.000588447 3.90874e-05 0.000525409 3.21848e-05 0.000472176 2.73495e-05 0.000425903 2.51982e-05 0.000384794 2.40728e-05 0.000341719 2.27891e-05 0.000298493 2.1581e-05 0.000258817 2.08394e-05 0.000223724 2.04217e-05 0.000190326 2.03341e-05 0.000158735 2.04658e-05 0.000127901 2.05293e-05 9.68785e-05 2.07714e-05 6.75774e-05 2.12611e-05 3.95266e-05 2.17003e-05 1.18861e-05 2.2719e-05 -1.4939e-05 2.41057e-05 -4.19814e-05 2.54059e-05 -7.22162e-05 2.69585e-05 -0.000102206 2.85613e-05 -0.000132729 2.91922e-05 -0.000169848 3.14012e-05 -0.000195866 3.46329e-05 -0.0002269 3.65302e-05 -0.000270803 3.87813e-05 -0.00030778 4.04917e-05 -0.000352684 4.14855e-05 -0.000396944 4.50763e-05 -0.000430464 4.6967e-05 -0.000484138 4.82496e-05 -0.000532161 5.10489e-05 -0.000575475 5.20301e-05 -0.00063296 5.30732e-05 -0.000680914 5.40833e-05 -0.000734413 5.44992e-05 -0.000781411 5.1363e-05 -0.00084572 4.97319e-05 -0.000878821 5.39329e-05 -0.000899241 3.0189e-05 -0.00102625 3.55547e-05 -0.000944859 2.09313e-05 -0.000991202 1.27331e-05 -0.0010504 -7.12611e-06 -0.000924952 0.000129495 -0.000997439 0.000294756 -0.000943023 0.000266523 -0.00062879 0.000278305 -0.000553884 0.000297437 -0.00043272 0.000315862 -0.000295977 0.000321841 -0.000142577 0.000319565 1.2408e-05 0.000293327 0.00019079 0.00030588 0.00027393 0.000356867 0.000380932 0.000461343 0.000511256 0.000453822 0.000608062 0.000280006 0.000891119 0.000107744 0.00100502 7.33484e-06 0.000960857 -5.24347e-06 0.0011626 -3.36684e-05 0.00103719 -4.03105e-05 0.00102044 -3.23302e-05 0.00104723 0.0010692 6.81141e-06 0.000100727 9.61806e-06 8.50663e-05 1.03269e-05 6.48261e-05 1.01376e-05 4.5202e-05 9.62667e-06 2.67984e-05 9.13566e-06 9.52052e-06 8.92149e-06 -7.15903e-06 8.86513e-06 -2.49362e-05 8.63653e-06 -4.4724e-05 8.2475e-06 -6.53577e-05 7.58879e-06 -8.66049e-05 6.89999e-06 -0.000106779 6.75692e-06 -0.000124787 8.632e-06 -0.000138683 1.08954e-05 -0.000164328 1.2735e-05 -0.000199411 1.03804e-05 -0.00024625 8.0489e-06 -0.000282061 1.07323e-05 -0.000298297 1.34838e-05 -0.000338003 1.28576e-05 -0.000394838 1.12082e-05 -0.000443695 1.05553e-05 -0.000490304 1.08345e-05 -0.000536184 9.16645e-06 -0.000592742 9.97831e-06 -0.000637774 8.38541e-06 -0.000696892 5.60539e-06 -0.000751926 3.2881e-06 -0.000808179 -4.99738e-06 -0.000879053 -2.94909e-06 -0.000892555 -9.11587e-06 -0.000956128 -2.28933e-05 -0.00103242 -2.33672e-05 -0.000976552 -2.98472e-05 -0.00102675 -3.84844e-05 -0.00105533 -2.3805e-05 -0.000917247 9.8526e-05 -0.000981997 0.000189754 -0.000777031 0.000260332 -0.000631323 0.000358163 -0.000552998 0.000364405 -0.000327324 0.000375758 -0.000193822 0.000394564 -6.20507e-05 0.00042385 6.07011e-05 0.000423418 0.000221562 0.000435826 0.000327042 0.000464115 0.000418565 0.000379295 0.000621985 0.000305134 0.000646491 0.000230571 0.000816495 0.000151832 0.000883403 9.64542e-05 0.000954516 6.76604e-05 0.000973231 5.62721e-05 0.000995816 5.003e-05 0.000965706 4.96956e-05 0.000952888 5.04797e-05 0.00091265 4.73336e-05 0.000869301 4.99515e-05 0.000839038 4.66434e-05 0.000778893 4.25596e-05 0.000729307 4.07743e-05 0.000687521 3.70402e-05 0.000634322 3.21805e-05 0.000584673 3.04852e-05 0.000546345 2.70883e-05 0.000494112 2.32944e-05 0.000446254 1.98966e-05 0.000403202 1.7203e-05 0.000362526 1.57412e-05 0.000324314 1.36241e-05 0.000282058 1.1439e-05 0.000242469 9.63282e-06 0.000206927 8.08244e-06 0.000174505 7.02007e-06 0.000143587 6.6064e-06 0.000118187 6.26627e-06 8.94351e-05 6.50227e-06 6.60592e-05 7.07284e-06 4.10223e-05 7.60197e-06 1.40752e-05 8.4394e-06 -1.14666e-05 8.68094e-06 -4.44603e-05 9.28232e-06 -6.6618e-05 9.80368e-06 -9.74053e-05 1.03457e-05 -0.000122581 1.15861e-05 -0.000147053 1.15748e-05 -0.000182625 1.21793e-05 -0.000201029 1.31225e-05 -0.000236824 1.33454e-05 -0.000257602 1.3543e-05 -0.000299613 1.344e-05 -0.000314965 1.462e-05 -0.000356819 1.46631e-05 -0.000370493 1.75789e-05 -0.000413743 1.94132e-05 -0.000431108 2.2317e-05 -0.00048594 2.37172e-05 -0.000508989 2.86803e-05 -0.000565124 3.14705e-05 -0.000607215 3.82649e-05 -0.000644395 4.60274e-05 -0.000709176 5.51146e-05 -0.000747821 7.11629e-05 -0.000801079 9.23184e-05 -0.000831281 0.000133676 -0.000869097 0.000197901 -0.000889789 0.000280961 -0.000883838 0.000355934 -0.000864998 0.000403522 -0.000845094 0.000440811 -0.000807812 0.000460547 -0.000759158 0.000475406 -0.000719664 0.000501524 -0.000680183 0.000535372 -0.00061218 0.00057612 -0.000531185 0.000612678 -0.000453956 0.000645245 -0.000346887 0.00065579 -0.000235752 0.000670334 -0.000139709 0.000687182 -3.37653e-05 0.000699808 9.20849e-05 0.000705321 0.000205576 0.00076017 0.000237221 0.000784274 0.000397769 0.000831408 0.000397916 0.000819743 0.000548811 0.000722309 0.000660365 0.00055209 0.000768286 0.000405113 0.000933737 0.00029563 0.000955657 0.000241189 0.000994147 0.00020369 0.00097545 0.000179944 0.000974344 0.000153057 0.000928067 0.000131037 0.000897848 0.000109604 0.000837964 9.31126e-05 0.000782821 8.10655e-05 0.00072846 7.1018e-05 0.00066374 6.42045e-05 0.000606984 5.88793e-05 0.000547169 5.46152e-05 0.000484374 5.05886e-05 0.00042861 4.68696e-05 0.000377427 4.36472e-05 0.000323631 4.06404e-05 0.000281115 3.78083e-05 0.00023218 3.42571e-05 0.000195723 3.16776e-05 0.000155423 2.99067e-05 0.000132925 2.96821e-05 0.000101904 2.97085e-05 8.15888e-05 2.94943e-05 5.13495e-05 2.90257e-05 3.09277e-05 2.81339e-05 6.39203e-06 2.7816e-05 -7.31324e-06 2.80686e-05 -2.5996e-05 2.92705e-05 -3.77118e-05 3.08012e-05 -5.75319e-05 3.22723e-05 -8.05838e-05 3.44363e-05 -9.86008e-05 3.66425e-05 -0.000115972 3.85933e-05 -0.000132957 4.02532e-05 -0.000152785 4.16164e-05 -0.000166148 4.52294e-05 -0.000195241 4.83881e-05 -0.000214985 5.28868e-05 -0.000260418 5.65571e-05 -0.000285175 6.15187e-05 -0.000322913 6.68503e-05 -0.000344053 7.47162e-05 -0.000391131 8.141e-05 -0.000422765 8.83307e-05 -0.00047065 9.43068e-05 -0.000516839 0.000103595 -0.000538911 0.000121542 -0.000586897 0.000139068 -0.000651826 0.000158391 -0.000713551 0.000188546 -0.000758911 0.000233299 -0.000804407 0.000297118 -0.000861512 0.000407779 -0.000911259 0.000539689 -0.000888352 0.000643411 -0.000844629 0.000713143 -0.000823265 0.000755206 -0.000784953 0.000772131 -0.000750115 0.000777099 -0.000710502 0.00079704 -0.000658056 0.000835288 -0.000593759 0.000866236 -0.000501651 0.000876115 -0.00039583 0.000870595 -0.000288496 0.000864236 -0.000178482 0.000865555 -7.38439e-05 0.000891393 1.609e-05 0.000900084 0.000158248 0.000940551 0.000235845 0.000995886 0.000318804 0.00107772 0.000368044 0.00112661 0.000460765 0.00109094 0.000523559 0.000940127 0.000685463 0.000737805 0.000936021 0.000537075 0.00102264 0.000394709 0.00107241 0.000301554 0.001069 0.000249587 0.00103159 0.000207681 0.000945975 0.000180634 0.000890271 0.000155389 0.000815381 0.000135982 0.000747223 0.000120535 0.000683702 0.000107304 0.000611102 9.75748e-05 0.000534748 8.73656e-05 0.00045675 7.79973e-05 0.000395398 7.22531e-05 0.00035323 7.00439e-05 0.000318601 6.88495e-05 0.000276742 6.55149e-05 0.000233014 6.22819e-05 0.000194741 5.83742e-05 0.000160326 5.37691e-05 0.000124762 5.00179e-05 9.84787e-05 4.61017e-05 7.71811e-05 4.50481e-05 5.67261e-05 4.38389e-05 3.36587e-05 4.34123e-05 1.96667e-05 4.40031e-05 1.43348e-06 4.43976e-05 -6.0259e-06 4.27758e-05 -2.2711e-05 3.58843e-05 -5.53774e-05 2.65143e-05 -7.02286e-05 2.34808e-05 -5.61211e-05 2.46521e-05 -3.90228e-05 2.73836e-05 -5.48181e-05 3.27474e-05 -3.33646e-05 5.12413e-05 -2.32876e-05 7.36116e-05 -3.20166e-05 8.67245e-05 -0.000150963 9.48938e-05 -0.00025601 0.000102058 -0.000332365 0.000112576 -0.000364909 0.000119861 -0.000396196 0.000131442 -0.000447486 0.000148866 -0.000489917 0.000182178 -0.00057742 0.000218047 -0.000615252 0.000249779 -0.000638559 0.000288461 -0.000603918 0.000320608 -0.000571824 0.000342181 -0.000617762 0.000368265 -0.000704585 0.000437935 -0.00073122 0.000527384 -0.000714021 0.000625879 -0.000730994 0.000728722 -0.000728411 0.000817882 -0.000723463 0.000895697 -0.000651582 0.000927386 -0.000605077 0.000931513 -0.000661523 0.000900451 -0.000650575 0.000869959 -0.000570826 0.000895327 -0.000518532 0.000967998 -0.000511422 0.000999301 -0.000389897 0.00102325 -0.000232015 0.00103691 -0.000137134 0.001066 -0.000102621 0.00108644 3.77422e-05 0.0011169 0.000119952 0.00115971 0.000240391 0.00122264 0.000303334 0.00127292 0.000372714 0.00127612 0.000476962 0.00120717 0.000654796 0.00101436 0.000871408 0.000708472 0.00118937 0.000395256 0.00145409 0.000205056 0.00161634 0.000145676 0.00161139 0.000153543 0.00142708 0.000167748 0.00120867 0.000147513 0.00101404 0.000115596 0.000898745 8.90202e-05 0.000819522 6.6395e-05 0.000733652 4.99184e-05 0.00065813 4.12571e-05 0.000597108 3.4018e-05 0.000532648 2.86417e-05 0.000477552 2.50054e-05 0.00042954 2.34012e-05 0.000386398 2.24343e-05 0.000342686 2.13078e-05 0.000299619 2.02178e-05 0.000259907 1.95198e-05 0.000224422 1.91141e-05 0.000190731 1.90118e-05 0.000158838 1.9103e-05 0.000127809 1.91559e-05 9.68257e-05 1.93842e-05 6.73491e-05 1.98392e-05 3.90716e-05 2.02783e-05 1.1447e-05 2.12106e-05 -1.58712e-05 2.24773e-05 -4.32482e-05 2.36932e-05 -7.3432e-05 2.51083e-05 -0.000103621 2.66033e-05 -0.000134224 2.73108e-05 -0.000170556 2.93523e-05 -0.000197908 3.22235e-05 -0.000229771 3.40111e-05 -0.00027259 3.61189e-05 -0.000309888 3.772e-05 -0.000354285 3.88054e-05 -0.00039803 4.19766e-05 -0.000433636 4.37221e-05 -0.000485883 4.50054e-05 -0.000533444 4.74777e-05 -0.000577948 4.84491e-05 -0.000633931 4.95012e-05 -0.000681966 5.02484e-05 -0.00073516 5.05394e-05 -0.000781702 4.75944e-05 -0.000842775 4.61549e-05 -0.000877381 4.89792e-05 -0.000902065 3.00755e-05 -0.00100735 3.41265e-05 -0.00094891 2.49908e-05 -0.000982066 9.67742e-06 -0.00103508 6.23546e-06 -0.00092151 -6.20494e-06 -0.000984998 -1.64362e-05 -0.000932792 6.45583e-05 -0.000709785 0.000293259 -0.000782584 0.000436325 -0.000575786 0.000364254 -0.000223907 0.000368163 -0.000146486 0.000417143 -3.65717e-05 0.000506315 0.000101618 0.00046519 0.000315055 0.000401792 0.00044433 0.000286599 0.00062645 0.000103253 0.000791408 1.3444e-05 0.000980928 -2.56459e-05 0.00104411 -5.68576e-05 0.000992068 -3.18519e-05 0.0011376 -3.52186e-05 0.00104055 -3.74717e-05 0.00102269 -2.82653e-05 0.00103802 0.00104094 5.86363e-06 9.4863e-05 8.58099e-06 8.2349e-05 9.39077e-06 6.40163e-05 9.31726e-06 4.52755e-05 8.90569e-06 2.721e-05 8.48612e-06 9.94009e-06 8.28193e-06 -6.95485e-06 8.20374e-06 -2.4858e-05 7.98813e-06 -4.45084e-05 7.63058e-06 -6.50002e-05 7.05815e-06 -8.60325e-05 6.492e-06 -0.000106213 6.43002e-06 -0.000124725 8.0738e-06 -0.000140327 1.0024e-05 -0.000166278 1.14591e-05 -0.000200846 9.67888e-06 -0.00024447 7.83103e-06 -0.000280213 1.00263e-05 -0.000300493 1.22875e-05 -0.000340264 1.17902e-05 -0.000394341 1.05086e-05 -0.000442413 9.88805e-06 -0.000489683 9.99393e-06 -0.00053629 8.71547e-06 -0.000591464 9.2461e-06 -0.000638305 7.70009e-06 -0.000695347 5.2777e-06 -0.000749504 2.99243e-06 -0.000805893 -4.51109e-06 -0.00087155 -3.42117e-06 -0.000893645 -9.04827e-06 -0.000950501 -2.14103e-05 -0.00102006 -2.26904e-05 -0.000975272 -3.06116e-05 -0.00101882 -4.65547e-05 -0.00103939 -4.31318e-05 -0.00092067 -6.17926e-05 -0.000963336 -5.62681e-05 -0.000782556 -3.76128e-05 -0.000649979 -1.7753e-05 -0.000572857 5.41887e-05 -0.000399266 0.000131517 -0.00027115 0.000167962 -9.84959e-05 0.000178103 5.05599e-05 0.000171582 0.000228083 0.000169645 0.000328979 0.000167898 0.000420312 0.000145375 0.000644509 9.37815e-05 0.000698084 7.1623e-05 0.000838654 5.11557e-05 0.00090387 4.25526e-05 0.00096312 3.91236e-05 0.00097666 4.21295e-05 0.00099281 4.29722e-05 0.000964864 4.56433e-05 0.000950217 4.68472e-05 0.000911446 4.4962e-05 0.000871186 4.65864e-05 0.000837413 4.36969e-05 0.000781783 4.00643e-05 0.000732939 3.80322e-05 0.000689553 3.4551e-05 0.000637803 3.03219e-05 0.000588902 2.84192e-05 0.000548248 2.52683e-05 0.000497263 2.1812e-05 0.00044971 1.87004e-05 0.000406314 1.62058e-05 0.000365021 1.4699e-05 0.000325821 1.27597e-05 0.000283998 1.07475e-05 0.000244481 9.03816e-06 0.000208636 7.60542e-06 0.000175938 6.62396e-06 0.000144568 6.2231e-06 0.000118588 5.90124e-06 8.97569e-05 6.08192e-06 6.58786e-05 6.56847e-06 4.05357e-05 6.93648e-06 1.37072e-05 7.70025e-06 -1.22304e-05 7.88224e-06 -4.46423e-05 8.46877e-06 -6.72046e-05 8.89071e-06 -9.78272e-05 9.28187e-06 -0.000122973 1.04291e-05 -0.0001482 1.03697e-05 -0.000182566 1.11307e-05 -0.00020179 1.15096e-05 -0.000237203 1.13914e-05 -0.000257484 1.17532e-05 -0.000299975 1.15506e-05 -0.000314763 1.22682e-05 -0.000357537 1.23078e-05 -0.000370533 1.45223e-05 -0.000415957 1.55535e-05 -0.000432139 1.80375e-05 -0.000488424 1.86734e-05 -0.000509625 2.24264e-05 -0.000568877 2.30154e-05 -0.000607804 2.81406e-05 -0.00064952 3.06653e-05 -0.0007117 3.37796e-05 -0.000750935 4.23814e-05 -0.000809681 4.86664e-05 -0.000837566 6.57289e-05 -0.00088616 8.08987e-05 -0.000904959 0.000118747 -0.000921686 0.000174024 -0.000920276 0.000244879 -0.000915948 0.000332746 -0.000895679 0.000415108 -0.00084152 0.000474233 -0.000778789 0.000523389 -0.000729339 0.000563916 -0.000652708 0.000583131 -0.0005504 0.000620919 -0.000491744 0.000654707 -0.000380674 0.000673692 -0.000254736 0.000705099 -0.000171116 0.000725553 -5.42195e-05 0.000731292 8.63463e-05 0.000737501 0.000199367 0.0007709 0.000203823 0.000775534 0.000393134 0.00073048 0.00044297 0.000611361 0.00066793 0.000452382 0.000819344 0.000322467 0.000898202 0.000252142 0.00100406 0.000200651 0.00100715 0.000172139 0.00102266 0.000146576 0.00100101 0.000127046 0.000993874 0.000105866 0.000949247 9.02531e-05 0.000913461 7.64963e-05 0.000851721 6.6593e-05 0.000792725 5.96736e-05 0.000735379 5.3425e-05 0.000669989 4.90753e-05 0.000611334 4.55355e-05 0.000550709 4.17778e-05 0.000488131 3.86438e-05 0.000431744 3.59244e-05 0.000380147 3.30819e-05 0.000326474 3.05663e-05 0.000283631 2.77212e-05 0.000235026 2.47265e-05 0.000198718 2.1917e-05 0.000158233 2.04439e-05 0.000134399 1.96257e-05 0.000102722 1.9553e-05 8.16615e-05 1.88162e-05 5.20862e-05 1.81967e-05 3.15473e-05 1.69339e-05 7.65477e-06 1.65945e-05 -6.97383e-06 1.64277e-05 -2.58292e-05 1.74047e-05 -3.86888e-05 1.82152e-05 -5.83424e-05 1.89147e-05 -8.12833e-05 1.97588e-05 -9.9445e-05 2.12656e-05 -0.000117478 2.24223e-05 -0.000134114 2.36711e-05 -0.000154034 2.54526e-05 -0.00016793 2.74177e-05 -0.000197206 3.0268e-05 -0.000217835 3.27281e-05 -0.000262878 3.59524e-05 -0.000288399 3.98606e-05 -0.000326822 4.55105e-05 -0.000349703 5.19082e-05 -0.000397529 5.92328e-05 -0.000430089 6.52208e-05 -0.000476638 7.11325e-05 -0.000522751 7.94186e-05 -0.000547197 9.36057e-05 -0.000601085 0.000105662 -0.000663883 0.000114836 -0.000722726 0.000132405 -0.000776479 0.00015648 -0.000828482 0.000183144 -0.000888176 0.000226339 -0.000954453 0.000307756 -0.000969769 0.000414643 -0.000951517 0.00054218 -0.000950802 0.000667337 -0.00091011 0.000758296 -0.000841075 0.00081814 -0.000770346 0.000852723 -0.000692638 0.000875292 -0.000616328 0.000900924 -0.000527284 0.000932836 -0.000427742 0.000957137 -0.000312797 0.000975948 -0.000197293 0.000995149 -9.30448e-05 0.00103169 -2.04491e-05 0.00106805 0.000121885 0.00112363 0.000180262 0.00115539 0.000287043 0.00114838 0.000375054 0.00108195 0.000527201 0.000899415 0.000706092 0.000669619 0.000915259 0.000504042 0.0011016 0.000376897 0.00114978 0.000284947 0.00116436 0.000224046 0.0011299 0.000188123 0.00106751 0.000156142 0.000977956 0.000135187 0.000911227 0.0001151 0.000835468 9.92549e-05 0.000763068 8.72943e-05 0.000695663 7.70609e-05 0.000621335 6.90982e-05 0.000542711 6.05447e-05 0.000465303 5.31566e-05 0.000402786 4.86733e-05 0.000357714 4.6783e-05 0.000320491 4.58427e-05 0.000277682 4.34649e-05 0.000235392 4.09934e-05 0.000197213 3.8814e-05 0.000162505 3.64473e-05 0.000127128 3.45311e-05 0.000100395 3.30821e-05 7.86302e-05 3.34689e-05 5.63393e-05 3.28219e-05 3.43058e-05 3.30166e-05 1.94719e-05 3.32849e-05 1.16517e-06 3.37091e-05 -6.45004e-06 3.31454e-05 -2.21474e-05 2.68405e-05 -4.90725e-05 1.75801e-05 -6.09681e-05 1.2976e-05 -5.15171e-05 1.2517e-05 -3.85638e-05 1.34401e-05 -5.57412e-05 1.70343e-05 -3.69588e-05 2.82507e-05 -3.4504e-05 4.62184e-05 -4.99843e-05 5.55624e-05 -0.000160307 5.61508e-05 -0.000256598 5.45508e-05 -0.000330765 5.58022e-05 -0.00036616 6.08491e-05 -0.000401243 7.29366e-05 -0.000459574 9.15224e-05 -0.000508503 0.000123967 -0.000609865 0.000161428 -0.000652712 0.000197407 -0.000674539 0.000231204 -0.000637714 0.000256768 -0.000597388 0.00026582 -0.000626814 0.000267855 -0.00070662 0.000288005 -0.00075137 0.000324211 -0.000750226 0.000384513 -0.000791296 0.0004724 -0.000816298 0.000579578 -0.00083064 0.000728075 -0.000800079 0.000850655 -0.000727657 0.000931484 -0.000742352 0.000983282 -0.000702373 0.00101645 -0.000603996 0.00102534 -0.000527424 0.00102452 -0.0005106 0.00104684 -0.000412216 0.00108459 -0.000269764 0.00108277 -0.000135317 0.0011293 -0.000149152 0.00115493 1.21137e-05 0.00121227 6.26182e-05 0.00125038 0.000202278 0.00126453 0.000289183 0.00125013 0.000387118 0.00117 0.000557091 0.000957387 0.000867406 0.000648223 0.00118057 0.000382254 0.00145534 0.000212516 0.00162382 0.000149042 0.00167981 0.000160127 0.00160031 0.000184479 0.00140272 0.000181479 0.00121167 0.000147958 0.00104756 0.000109192 0.000937511 7.96561e-05 0.000849058 5.87788e-05 0.000754529 4.47606e-05 0.000672148 3.69919e-05 0.000604877 3.07935e-05 0.000538847 2.62688e-05 0.000482077 2.32341e-05 0.000432575 2.179e-05 0.000387842 2.08225e-05 0.000343653 1.97687e-05 0.000300673 1.87641e-05 0.000260911 1.81053e-05 0.000225081 1.77154e-05 0.000191121 1.76056e-05 0.000158947 1.76807e-05 0.000127734 1.77456e-05 9.67607e-05 1.79643e-05 6.71303e-05 1.83847e-05 3.86513e-05 1.88222e-05 1.10095e-05 1.96789e-05 -1.67279e-05 2.08359e-05 -4.44053e-05 2.19668e-05 -7.45629e-05 2.32586e-05 -0.000104913 2.46472e-05 -0.000135613 2.53922e-05 -0.000171301 2.72722e-05 -0.000199788 2.98311e-05 -0.00023233 3.15015e-05 -0.000274261 3.34527e-05 -0.000311839 3.49498e-05 -0.000355782 3.60718e-05 -0.000399152 3.88621e-05 -0.000436426 4.04681e-05 -0.000487489 4.17379e-05 -0.000534714 4.39409e-05 -0.000580151 4.4855e-05 -0.000634845 4.58439e-05 -0.000682955 4.64133e-05 -0.00073573 4.66791e-05 -0.000781968 4.41835e-05 -0.00084028 4.27405e-05 -0.000875938 4.44254e-05 -0.00090375 2.8235e-05 -0.000991156 3.04168e-05 -0.000951092 2.33817e-05 -0.000975031 7.74248e-06 -0.00101944 6.79702e-06 -0.000920565 -1.31483e-05 -0.000965053 -3.59161e-05 -0.000910024 -2.7239e-05 -0.000718462 -5.79795e-05 -0.000751844 -7.92513e-05 -0.000554515 -5.52148e-05 -0.000247943 -4.41836e-05 -0.000157517 -3.66984e-05 -4.4057e-05 -1.93993e-05 8.43192e-05 9.54365e-07 0.000294701 -1.87782e-05 0.000464063 -4.20185e-05 0.00064969 -6.72729e-05 0.000816662 -5.9491e-05 0.000973146 -4.71724e-05 0.0010318 -5.74569e-05 0.00100235 -3.34699e-05 0.00111361 -3.30901e-05 0.00104017 -3.3674e-05 0.00102328 -2.42122e-05 0.00102856 0.00101672 5.05187e-06 8.98111e-05 7.62495e-06 7.97759e-05 8.49156e-06 6.31497e-05 8.51004e-06 4.5257e-05 8.18485e-06 2.75352e-05 7.82849e-06 1.02964e-05 7.63756e-06 -6.76392e-06 7.54628e-06 -2.47668e-05 7.34483e-06 -4.4307e-05 7.01951e-06 -6.46749e-05 6.5244e-06 -8.55374e-05 6.06136e-06 -0.00010575 6.0599e-06 -0.000124724 7.49504e-06 -0.000141762 9.17026e-06 -0.000167953 1.03018e-05 -0.000201977 8.96135e-06 -0.00024313 7.50602e-06 -0.000278758 9.3066e-06 -0.000302293 1.11635e-05 -0.000342121 1.07753e-05 -0.000393953 9.7814e-06 -0.000441419 9.19841e-06 -0.0004891 9.17843e-06 -0.00053627 8.21204e-06 -0.000590497 8.58271e-06 -0.000638676 7.00138e-06 -0.000693765 4.9927e-06 -0.000747495 2.72044e-06 -0.000803621 -3.88842e-06 -0.000864941 -3.49521e-06 -0.000894038 -8.32141e-06 -0.000945675 -1.94959e-05 -0.00100889 -2.06455e-05 -0.000974123 -2.832e-05 -0.00101115 -4.32027e-05 -0.00102451 -4.23352e-05 -0.000921537 -6.13934e-05 -0.000944278 -6.14181e-05 -0.000782531 -5.58641e-05 -0.000655533 -5.84355e-05 -0.000570286 -4.675e-05 -0.000410951 -3.48004e-05 -0.0002831 -2.0155e-05 -0.000113141 7.5623e-07 2.96487e-05 2.2664e-05 0.000206175 3.03792e-05 0.000321264 1.95048e-05 0.000431186 2.50297e-05 0.000638984 1.51403e-05 0.000707973 1.84895e-05 0.000835305 1.99759e-05 0.000902384 2.55903e-05 0.000957505 3.00936e-05 0.000972157 3.67556e-05 0.000986148 3.9312e-05 0.000962307 4.25026e-05 0.000947026 4.34768e-05 0.000910472 4.22634e-05 0.000872399 4.31409e-05 0.000836536 4.06419e-05 0.000784282 3.74786e-05 0.000736103 3.53499e-05 0.000691682 3.21303e-05 0.000641023 2.84093e-05 0.000592623 2.6402e-05 0.000550255 2.34731e-05 0.000500192 2.03251e-05 0.000452858 1.74847e-05 0.000409154 1.51996e-05 0.000367306 1.36944e-05 0.000327326 1.18875e-05 0.000285805 1.00663e-05 0.000246302 8.51009e-06 0.000210192 7.22161e-06 0.000177226 6.33267e-06 0.000145457 5.99097e-06 0.00011893 5.71752e-06 9.00304e-05 5.85482e-06 6.57413e-05 6.34215e-06 4.00484e-05 6.67587e-06 1.33735e-05 7.43975e-06 -1.29942e-05 7.5165e-06 -4.4719e-05 8.15524e-06 -6.78433e-05 8.59231e-06 -9.82643e-05 8.88642e-06 -0.000123267 9.95309e-06 -0.000149267 9.76433e-06 -0.000182377 1.0553e-05 -0.000202579 1.07267e-05 -0.000237377 1.09357e-05 -0.000257693 1.08456e-05 -0.000299884 1.05926e-05 -0.00031451 1.06364e-05 -0.00035758 1.09715e-05 -0.000370868 1.20814e-05 -0.000417067 1.35092e-05 -0.000433567 1.42292e-05 -0.000489145 1.57252e-05 -0.000511121 1.80082e-05 -0.00057116 1.80205e-05 -0.000607817 2.1752e-05 -0.000653252 2.24458e-05 -0.000712394 2.4622e-05 -0.000753111 2.79173e-05 -0.000812976 3.11426e-05 -0.000840791 3.89694e-05 -0.000893987 4.63415e-05 -0.000912331 6.11868e-05 -0.000936532 8.14243e-05 -0.000940513 0.000110564 -0.000945088 0.000141309 -0.000926424 0.000200054 -0.000900265 0.000281047 -0.000859783 0.000359653 -0.000807945 0.00042883 -0.000721885 0.000502318 -0.000623888 0.000539452 -0.000528878 0.000589492 -0.000430714 0.000620374 -0.000285619 0.000639549 -0.000190291 0.000657198 -7.18682e-05 0.000666238 7.73059e-05 0.000656572 0.000209033 0.000616777 0.000243618 0.000549886 0.000460025 0.000433447 0.000559409 0.000339732 0.000761645 0.000262071 0.000897005 0.00019977 0.000960503 0.000167263 0.00103657 0.000138862 0.00103555 0.000119662 0.00104186 0.0001009 0.00101977 8.66759e-05 0.0010081 7.30111e-05 0.000962912 6.39062e-05 0.000922566 5.60525e-05 0.000859575 4.99536e-05 0.000798824 4.5999e-05 0.000739334 4.17415e-05 0.000674246 3.88994e-05 0.000614176 3.63959e-05 0.000553213 3.34733e-05 0.000491054 3.11069e-05 0.00043411 2.91244e-05 0.00038213 2.66614e-05 0.000328937 2.4612e-05 0.00028568 2.22152e-05 0.000237422 1.98043e-05 0.000201129 1.74149e-05 0.000160622 1.60993e-05 0.000135714 1.5277e-05 0.000103545 1.49805e-05 8.19581e-05 1.4378e-05 5.26887e-05 1.3576e-05 3.23494e-05 1.25952e-05 8.63556e-06 1.19866e-05 -6.36523e-06 1.19296e-05 -2.57722e-05 1.24785e-05 -3.92377e-05 1.34356e-05 -5.92994e-05 1.33917e-05 -8.12394e-05 1.4251e-05 -0.000100304 1.45568e-05 -0.000117784 1.57111e-05 -0.000135268 1.59371e-05 -0.00015426 1.76128e-05 -0.000169605 1.90573e-05 -0.000198651 2.08694e-05 -0.000219647 2.25397e-05 -0.000264548 2.3316e-05 -0.000289176 2.61095e-05 -0.000329615 2.8481e-05 -0.000352075 3.2962e-05 -0.00040201 3.52382e-05 -0.000432365 4.17131e-05 -0.000483113 4.53254e-05 -0.000526363 5.64492e-05 -0.000558321 6.41622e-05 -0.000608798 7.25946e-05 -0.000672315 8.84167e-05 -0.000738548 9.69715e-05 -0.000785034 0.000115305 -0.000846816 0.00013565 -0.000908522 0.000155949 -0.000974752 0.000183144 -0.000996964 0.000236002 -0.00100437 0.000306791 -0.00102159 0.00040785 -0.00101117 0.00054133 -0.000974555 0.000671182 -0.000900198 0.00078328 -0.000804736 0.000866394 -0.000699442 0.000923338 -0.000584228 0.000957156 -0.000461559 0.000984664 -0.000340305 0.00100389 -0.000216518 0.00102033 -0.000109489 0.00105347 -5.3584e-05 0.00107493 0.000100426 0.0010851 0.000170092 0.00106856 0.000303582 0.000974374 0.000469238 0.000796432 0.000705143 0.000599324 0.0009032 0.000450025 0.00106456 0.000352465 0.00119916 0.000270387 0.00123186 0.000208344 0.00122641 0.0001666 0.00117164 0.0001401 0.00109401 0.000115408 0.00100265 9.90967e-05 0.000927538 8.36061e-05 0.000850959 7.1575e-05 0.000775099 6.32899e-05 0.000703948 5.676e-05 0.000627866 5.13888e-05 0.000548082 4.46164e-05 0.000472076 3.88442e-05 0.000408558 3.54529e-05 0.000361105 3.41632e-05 0.000321781 3.32625e-05 0.000278583 3.16438e-05 0.00023701 2.96419e-05 0.000199215 2.78564e-05 0.000164291 2.56109e-05 0.000129374 2.37237e-05 0.000102282 2.29619e-05 7.9392e-05 2.30477e-05 5.62535e-05 2.26292e-05 3.47243e-05 2.32377e-05 1.88634e-05 2.33846e-05 1.01822e-06 2.41431e-05 -7.20855e-06 2.47616e-05 -2.27658e-05 1.88645e-05 -4.31754e-05 9.28012e-06 -5.13837e-05 3.88148e-06 -4.61184e-05 3.77195e-06 -3.84542e-05 4.73217e-06 -5.67015e-05 8.88708e-06 -4.11137e-05 1.99461e-05 -4.55631e-05 3.61552e-05 -6.61934e-05 4.25808e-05 -0.000166732 4.05145e-05 -0.000254532 3.66766e-05 -0.000326927 3.51171e-05 -0.000364601 3.86438e-05 -0.00040477 4.19409e-05 -0.000462871 5.22156e-05 -0.000518777 6.7525e-05 -0.000625174 8.73912e-05 -0.000672578 0.00012612 -0.000713268 0.000162745 -0.000674339 0.00019644 -0.000631084 0.000208875 -0.000639249 0.000211094 -0.000708839 0.000217738 -0.000758014 0.000235913 -0.000768402 0.000274514 -0.000829896 0.000310089 -0.000851873 0.000376515 -0.000897067 0.000453992 -0.000877555 0.000585071 -0.000858737 0.000703882 -0.000861164 0.000827641 -0.000826132 0.000934542 -0.000710897 0.00103118 -0.00062406 0.00106312 -0.000542545 0.00107861 -0.000427697 0.00111297 -0.000304129 0.00112155 -0.000143901 0.00113647 -0.000164069 0.00117842 -2.98351e-05 0.00119825 4.27856e-05 0.00119272 0.000207811 0.00116559 0.000316316 0.00105381 0.000498895 0.000824254 0.000786647 0.000567276 0.00112438 0.00035434 0.00139351 0.000216777 0.0015929 0.000155238 0.00168536 0.00015919 0.00167586 0.000195591 0.00156391 0.000208197 0.00139012 0.000184532 0.00123533 0.000140162 0.00109193 9.8197e-05 0.000979476 7.10744e-05 0.000876181 5.30739e-05 0.00077253 4.08812e-05 0.000684341 3.37387e-05 0.00061202 2.82268e-05 0.000544359 2.42315e-05 0.000486072 2.1544e-05 0.000435262 2.01629e-05 0.000389223 1.91988e-05 0.000344617 1.82206e-05 0.000301651 1.73108e-05 0.000261821 1.67058e-05 0.000225686 1.6342e-05 0.000191485 1.62252e-05 0.000159064 1.62731e-05 0.000127687 1.63373e-05 9.66965e-05 1.65385e-05 6.69292e-05 1.69236e-05 3.82662e-05 1.73555e-05 1.05776e-05 1.81355e-05 -1.75079e-05 1.91893e-05 -4.5459e-05 2.02344e-05 -7.5608e-05 2.14073e-05 -0.000106086 2.26885e-05 -0.000136894 2.34505e-05 -0.000172063 2.51695e-05 -0.000201507 2.74448e-05 -0.000234605 2.89952e-05 -0.000275811 3.07946e-05 -0.000313638 3.21852e-05 -0.000357173 3.33089e-05 -0.000400275 3.57661e-05 -0.000438883 3.72385e-05 -0.000488962 3.84579e-05 -0.000535934 4.0413e-05 -0.000582106 4.12695e-05 -0.000635702 4.22001e-05 -0.000683885 4.26163e-05 -0.000736146 4.28742e-05 -0.000782226 4.06464e-05 -0.000838052 3.93347e-05 -0.000874627 4.00562e-05 -0.000904472 2.69474e-05 -0.000978047 2.73136e-05 -0.000951458 2.11465e-05 -0.000968864 6.82748e-06 -0.00100512 4.90756e-06 -0.000918645 -1.17769e-05 -0.000948369 -3.21217e-05 -0.00088968 -2.76561e-05 -0.000722928 -5.83704e-05 -0.000721129 -7.86911e-05 -0.000534194 -6.26765e-05 -0.000263958 -6.41986e-05 -0.000155995 -7.15922e-05 -3.66636e-05 -8.24212e-05 9.5148e-05 -8.31313e-05 0.000295411 -8.69509e-05 0.000467882 -8.47326e-05 0.000647471 -7.85588e-05 0.000810488 -6.1868e-05 0.000956455 -4.74318e-05 0.00101736 -5.23193e-05 0.00100724 -3.2332e-05 0.00109362 -3.09529e-05 0.00103879 -2.98483e-05 0.00102217 -2.07026e-05 0.00101941 0.000996021 4.34919e-06 8.54619e-05 6.74149e-06 7.73836e-05 7.62789e-06 6.22633e-05 7.71646e-06 4.51684e-05 7.4651e-06 2.77865e-05 7.16473e-06 1.05968e-05 6.98932e-06 -6.58853e-06 6.89193e-06 -2.46694e-05 6.7058e-06 -4.41209e-05 6.4129e-06 -6.4382e-05 5.98709e-06 -8.51116e-05 5.61065e-06 -0.000105374 5.6528e-06 -0.000124766 6.90031e-06 -0.00014301 8.3349e-06 -0.000169388 9.23696e-06 -0.000202879 8.2331e-06 -0.000242126 7.09506e-06 -0.00027762 8.5756e-06 -0.000303774 1.00995e-05 -0.000343645 9.80202e-06 -0.000393656 9.03077e-06 -0.000440648 8.49334e-06 -0.000488563 8.38783e-06 -0.000536164 7.67179e-06 -0.000589781 7.94773e-06 -0.000638952 6.17894e-06 -0.000691996 4.70249e-06 -0.000746019 2.28691e-06 -0.000801206 -3.08151e-06 -0.000859572 -3.41241e-06 -0.000893707 -7.88548e-06 -0.000941202 -1.76072e-05 -0.000999165 -1.91037e-05 -0.000972626 -2.61489e-05 -0.0010041 -3.86586e-05 -0.001012 -3.91676e-05 -0.000921028 -5.56963e-05 -0.000927749 -5.72111e-05 -0.000781016 -5.47263e-05 -0.000658018 -5.84118e-05 -0.000566601 -5.35439e-05 -0.000415819 -5.0965e-05 -0.000285679 -4.49143e-05 -0.000119192 -3.58836e-05 2.06179e-05 -2.25627e-05 0.000192854 -1.63892e-05 0.00031509 -2.02037e-05 0.000435001 -7.72457e-06 0.000626505 -5.69999e-06 0.000705949 2.74553e-06 0.000826859 1.09176e-05 0.000894212 2.0178e-05 0.000948245 2.64949e-05 0.00096584 3.35568e-05 0.000979086 3.63863e-05 0.000959478 3.94708e-05 0.000943942 4.02429e-05 0.0009097 3.94476e-05 0.000873195 3.98274e-05 0.000836156 3.76334e-05 0.000786476 3.48514e-05 0.000738885 3.27221e-05 0.000693811 2.97548e-05 0.00064399 2.64468e-05 0.000595931 2.44188e-05 0.000552283 2.17146e-05 0.000502896 1.88493e-05 0.000455723 1.62729e-05 0.000411731 1.41686e-05 0.00036941 1.26808e-05 0.000328814 1.10193e-05 0.000287466 9.39512e-06 0.000247927 8.00962e-06 0.000211578 6.87697e-06 0.000178359 6.10674e-06 0.000146228 5.80878e-06 0.000119228 5.60359e-06 9.02356e-05 5.75048e-06 6.55944e-05 6.23141e-06 3.95675e-05 6.58454e-06 1.30203e-05 7.33366e-06 -1.37434e-05 7.31293e-06 -4.46983e-05 8.00516e-06 -6.85355e-05 8.37726e-06 -9.86364e-05 8.69341e-06 -0.000123583 9.72165e-06 -0.000150295 9.45326e-06 -0.000182109 1.02797e-05 -0.000203405 1.02748e-05 -0.000237372 1.07464e-05 -0.000258164 1.0263e-05 -0.000299401 1.04214e-05 -0.000314668 1.00268e-05 -0.000357186 1.05586e-05 -0.0003714 1.1101e-05 -0.00041761 1.23118e-05 -0.000434777 1.25826e-05 -0.000489415 1.35737e-05 -0.000512112 1.46133e-05 -0.000572199 1.44851e-05 -0.000607689 1.65179e-05 -0.000655284 1.67714e-05 -0.000712648 1.87545e-05 -0.000755095 1.90508e-05 -0.000813273 2.18891e-05 -0.00084363 2.4049e-05 -0.000896146 2.89094e-05 -0.000917191 3.55338e-05 -0.000943156 4.6425e-05 -0.000951404 6.01425e-05 -0.000958805 7.67999e-05 -0.000943081 0.000101404 -0.00092487 0.000135413 -0.000893792 0.000174731 -0.000847262 0.000219533 -0.000766687 0.000280553 -0.000684908 0.000330854 -0.000579179 0.000376964 -0.000476824 0.000420107 -0.000328762 0.000436845 -0.000207029 0.000438553 -7.35759e-05 0.000434882 8.09765e-05 0.000409817 0.000234098 0.00035115 0.000302285 0.000305355 0.00050582 0.000238743 0.00062602 0.000194637 0.000805751 0.000159985 0.000931656 0.000128601 0.000991888 0.000111772 0.0010534 9.40921e-05 0.00105323 8.08887e-05 0.00105506 6.82229e-05 0.00103244 5.98148e-05 0.00101651 5.21523e-05 0.000970575 4.76833e-05 0.000927035 4.33446e-05 0.000863914 3.97931e-05 0.000802375 3.73808e-05 0.000741747 3.46234e-05 0.000677004 3.26235e-05 0.000616176 3.08023e-05 0.000555034 2.86144e-05 0.000493242 2.66209e-05 0.000436104 2.49847e-05 0.000383766 2.27952e-05 0.000331126 2.11773e-05 0.000287298 1.90069e-05 0.000239593 1.71186e-05 0.000203017 1.4852e-05 0.000162889 1.37008e-05 0.000136866 1.2801e-05 0.000104444 1.23769e-05 8.23821e-05 1.16343e-05 5.34313e-05 1.10326e-05 3.2951e-05 1.00145e-05 9.65367e-06 9.91929e-06 -6.26997e-06 9.57091e-06 -2.54238e-05 1.01184e-05 -3.97852e-05 1.08444e-05 -6.00255e-05 1.07609e-05 -8.1156e-05 1.11181e-05 -0.000100662 1.17671e-05 -0.000118433 1.21021e-05 -0.000135603 1.26501e-05 -0.000154808 1.42309e-05 -0.000171186 1.52758e-05 -0.000199696 1.74373e-05 -0.000221809 1.79594e-05 -0.000265071 1.89106e-05 -0.000290127 2.00568e-05 -0.000330761 2.3179e-05 -0.000355197 2.47535e-05 -0.000403584 2.65722e-05 -0.000434184 3.01867e-05 -0.000486727 3.07149e-05 -0.000526891 3.62937e-05 -0.0005639 4.32483e-05 -0.000615752 4.73005e-05 -0.000676367 5.6832e-05 -0.000748079 6.58835e-05 -0.000794086 7.91613e-05 -0.000860093 9.90091e-05 -0.00092837 0.000114302 -0.000990045 0.000131746 -0.00101441 0.000162544 -0.00103517 0.000200488 -0.00105954 0.000242169 -0.00105285 0.000308006 -0.00104039 0.000402782 -0.000994974 0.000515741 -0.000917695 0.000631308 -0.000815009 0.00073866 -0.00069158 0.000826167 -0.000549066 0.000892073 -0.000406211 0.000941959 -0.000266404 0.000961418 -0.000128948 0.000964772 -5.69376e-05 0.000948886 0.000116312 0.000884696 0.000234281 0.000779315 0.000408963 0.000644965 0.000603589 0.000515837 0.000834272 0.000401913 0.00101712 0.00031222 0.00115425 0.000248522 0.00126286 0.000192782 0.0012876 0.00015105 0.00126814 0.000122981 0.00119971 0.000103852 0.00111314 8.56303e-05 0.00102087 7.33232e-05 0.000939846 6.23412e-05 0.000861941 5.41958e-05 0.000783244 4.88533e-05 0.000709291 4.49802e-05 0.000631739 4.11478e-05 0.000551914 3.59054e-05 0.000477318 3.10371e-05 0.000413427 2.80363e-05 0.000364106 2.71159e-05 0.000322701 2.63205e-05 0.000279379 2.49853e-05 0.000238345 2.35782e-05 0.000200622 2.20494e-05 0.000165819 2.00888e-05 0.000131334 1.86132e-05 0.000103758 1.74785e-05 8.05268e-05 1.72988e-05 5.64333e-05 1.6541e-05 3.5482e-05 1.64284e-05 1.89761e-05 1.72631e-05 1.83495e-07 1.80536e-05 -7.99902e-06 1.72543e-05 -2.19665e-05 1.13014e-05 -3.72225e-05 4.07504e-06 -4.41573e-05 1.11704e-06 -4.31604e-05 1.69228e-06 -3.90295e-05 2.74286e-06 -5.77521e-05 7.20038e-06 -4.55713e-05 1.66565e-05 -5.50193e-05 2.94066e-05 -7.89434e-05 3.39219e-05 -0.000171248 3.25136e-05 -0.000253124 2.79676e-05 -0.000322382 2.59339e-05 -0.000362567 2.83947e-05 -0.00040723 3.07696e-05 -0.000465246 3.79922e-05 -0.000526 4.30989e-05 -0.000630281 5.05913e-05 -0.000680071 6.8397e-05 -0.000731074 8.91684e-05 -0.000695111 0.0001136 -0.000655515 0.000134013 -0.000659662 0.000143722 -0.000718548 0.000161866 -0.000776158 0.000185767 -0.000792303 0.000216042 -0.000860171 0.000243986 -0.000879817 0.000283721 -0.000936803 0.000322651 -0.000916485 0.000386618 -0.000922704 0.000447256 -0.000921802 0.000536705 -0.000915581 0.00064564 -0.000819832 0.000767281 -0.000745702 0.000863226 -0.00063849 0.000923583 -0.000488054 0.000984605 -0.000365151 0.00100957 -0.000168866 0.00101165 -0.000166146 0.00103169 -4.98746e-05 0.00103124 4.32347e-05 0.000984115 0.000254934 0.000885948 0.000414483 0.000705748 0.000679095 0.000493816 0.000998579 0.000322339 0.00129586 0.00021391 0.00150194 0.000165636 0.00164118 0.00016326 0.00168774 0.000198595 0.00164052 0.00022848 0.00153402 0.000216258 0.00140234 0.000177143 0.00127445 0.000126719 0.00114236 8.75528e-05 0.00101864 6.40434e-05 0.000899691 4.83146e-05 0.000788259 3.75452e-05 0.00069511 3.09424e-05 0.000618623 2.59416e-05 0.00054936 2.23266e-05 0.000489687 1.99015e-05 0.000437688 1.85808e-05 0.000390544 1.76337e-05 0.000345565 1.6719e-05 0.000302566 1.58859e-05 0.000262654 1.53207e-05 0.000226251 1.49709e-05 0.000191835 1.48479e-05 0.000159187 1.48761e-05 0.000127658 1.49365e-05 9.66361e-05 1.51184e-05 6.67474e-05 1.54612e-05 3.79234e-05 1.58819e-05 1.01568e-05 1.65873e-05 -1.82133e-05 1.75379e-05 -4.64096e-05 1.8495e-05 -7.65651e-05 1.95586e-05 -0.00010715 2.07312e-05 -0.000138067 2.14859e-05 -0.000172818 2.30467e-05 -0.000203067 2.50656e-05 -0.000236624 2.64927e-05 -0.000277238 2.81356e-05 -0.000315281 2.9421e-05 -0.000358458 3.05165e-05 -0.000401371 3.2677e-05 -0.000441044 3.40169e-05 -0.000490302 3.51704e-05 -0.000537087 3.69013e-05 -0.000583837 3.77064e-05 -0.000636507 3.85586e-05 -0.000684738 3.88819e-05 -0.000736469 3.90856e-05 -0.00078243 3.71651e-05 -0.000836131 3.59167e-05 -0.000873379 3.59588e-05 -0.000904514 2.51597e-05 -0.000967248 2.44201e-05 -0.000950719 1.8985e-05 -0.000963429 6.04984e-06 -0.000992189 3.71278e-06 -0.000916308 -1.14592e-05 -0.000933197 -2.89425e-05 -0.000872196 -2.73865e-05 -0.000724484 -5.27667e-05 -0.000695749 -6.94668e-05 -0.000517494 -5.83276e-05 -0.000275097 -5.97975e-05 -0.000154525 -6.69263e-05 -2.9535e-05 -7.80253e-05 0.000106247 -8.06748e-05 0.00029806 -8.35682e-05 0.000470775 -8.07608e-05 0.000644664 -7.32128e-05 0.00080294 -5.81887e-05 0.00094143 -4.52296e-05 0.0010044 -4.70875e-05 0.0010091 -3.04712e-05 0.001077 -2.84412e-05 0.00103676 -2.63719e-05 0.0010201 -1.77011e-05 0.00101074 0.000978319 3.73418e-06 8.17278e-05 5.92226e-06 7.51955e-05 6.79769e-06 6.13879e-05 6.93651e-06 4.50296e-05 6.74724e-06 2.79758e-05 6.49637e-06 1.08477e-05 6.33803e-06 -6.43019e-06 6.24006e-06 -2.45714e-05 6.07036e-06 -4.39512e-05 5.80965e-06 -6.41213e-05 5.44601e-06 -8.4748e-05 5.14224e-06 -0.00010507 5.21426e-06 -0.000124838 6.29324e-06 -0.000144089 7.51728e-06 -0.000170612 8.24395e-06 -0.000203606 7.4978e-06 -0.00024138 6.6155e-06 -0.000276738 7.83507e-06 -0.000304993 9.08484e-06 -0.000344894 8.86238e-06 -0.000393433 8.26511e-06 -0.000440051 7.77717e-06 -0.000488075 7.61202e-06 -0.000535999 7.02863e-06 -0.000589198 7.19257e-06 -0.000639116 5.54834e-06 -0.000690352 4.3889e-06 -0.000744859 1.92065e-06 -0.000798737 -2.08292e-06 -0.000855569 -3.16422e-06 -0.000892626 -7.23487e-06 -0.000937131 -1.57628e-05 -0.000990637 -1.74732e-05 -0.000970916 -2.4116e-05 -0.000997462 -3.51341e-05 -0.00100098 -3.6063e-05 -0.000920099 -4.9994e-05 -0.000913818 -5.16737e-05 -0.000779337 -5.03344e-05 -0.000659357 -5.39959e-05 -0.000562939 -5.13174e-05 -0.000418498 -5.09406e-05 -0.000286056 -4.73637e-05 -0.000122769 -4.26983e-05 1.59525e-05 -3.39649e-05 0.000184121 -2.87778e-05 0.000309903 -2.95336e-05 0.000435757 -1.61562e-05 0.000613128 -1.14173e-05 0.00070121 -1.33589e-06 0.000816778 8.30808e-06 0.000884568 1.78509e-05 0.000938702 2.42068e-05 0.000959484 3.08382e-05 0.000972455 3.36422e-05 0.000956674 3.64553e-05 0.000941129 3.70893e-05 0.000909066 3.65527e-05 0.000873731 3.65951e-05 0.000836114 3.46548e-05 0.000788417 3.21864e-05 0.000741353 3.01138e-05 0.000695884 2.7397e-05 0.000646707 2.44503e-05 0.000598878 2.24581e-05 0.000554276 1.99804e-05 0.000505374 1.73785e-05 0.000458325 1.50138e-05 0.000414095 1.30553e-05 0.000371369 1.16036e-05 0.000330266 1.00727e-05 0.000288997 8.59233e-06 0.000249407 7.31918e-06 0.000212851 6.31421e-06 0.000179364 5.62671e-06 0.000146915 5.33221e-06 0.000119522 5.23745e-06 9.03304e-05 5.39278e-06 6.54391e-05 5.84085e-06 3.91194e-05 6.22145e-06 1.26397e-05 6.92495e-06 -1.44469e-05 7.03349e-06 -4.48069e-05 7.6648e-06 -6.91668e-05 7.9333e-06 -9.89049e-05 8.30289e-06 -0.000123953 9.24277e-06 -0.000151235 9.05279e-06 -0.000181919 9.86971e-06 -0.000204222 9.89486e-06 -0.000237397 1.05572e-05 -0.000258827 9.88121e-06 -0.000298725 1.01805e-05 -0.000314968 9.74322e-06 -0.000356749 1.04019e-05 -0.000372059 1.06272e-05 -0.000417835 1.17627e-05 -0.000435913 1.19408e-05 -0.000489594 1.27872e-05 -0.000512959 1.31568e-05 -0.000572569 1.31065e-05 -0.000607638 1.42376e-05 -0.000656415 1.37785e-05 -0.000712189 1.42037e-05 -0.00075552 1.36953e-05 -0.000812764 1.47069e-05 -0.000844641 1.42602e-05 -0.0008957 1.64049e-05 -0.000919336 1.92905e-05 -0.000946042 2.59034e-05 -0.000958017 3.31073e-05 -0.000966009 4.40652e-05 -0.000954039 5.80137e-05 -0.000938818 7.60014e-05 -0.00091178 9.33851e-05 -0.000864646 0.000115271 -0.000788573 0.000146062 -0.000715699 0.000175008 -0.000608125 0.000200186 -0.000502002 0.000229075 -0.000357651 0.00024179 -0.000219745 0.000243001 -7.47866e-05 0.000241396 8.2582e-05 0.000230339 0.000245155 0.000193136 0.000339487 0.000169036 0.00052992 0.000133889 0.000661168 0.000113913 0.000825727 9.83533e-05 0.000947216 8.18005e-05 0.00100844 7.32008e-05 0.001062 6.28792e-05 0.00106355 5.48449e-05 0.0010631 4.72085e-05 0.00104008 4.32865e-05 0.00102043 3.94673e-05 0.000974394 3.7732e-05 0.000928771 3.54625e-05 0.000866184 3.32394e-05 0.000804599 3.1707e-05 0.000743279 2.98169e-05 0.000678894 2.82397e-05 0.000617754 2.66794e-05 0.000556594 2.48373e-05 0.000495084 2.29135e-05 0.000438028 2.13621e-05 0.000385317 1.94036e-05 0.000333085 1.79723e-05 0.000288729 1.60183e-05 0.000241547 1.43632e-05 0.000204672 1.24149e-05 0.000164837 1.13222e-05 0.000137958 1.0277e-05 0.00010549 9.86226e-06 8.27969e-05 9.03443e-06 5.42592e-05 8.52139e-06 3.34641e-05 7.58493e-06 1.05901e-05 7.39241e-06 -6.07745e-06 7.09334e-06 -2.51248e-05 7.64388e-06 -4.03357e-05 7.93961e-06 -6.03212e-05 8.08011e-06 -8.12965e-05 8.05317e-06 -0.000100635 8.43306e-06 -0.000118813 8.78992e-06 -0.00013596 9.35898e-06 -0.000155377 1.10951e-05 -0.000172922 1.18466e-05 -0.000200447 1.38647e-05 -0.000223827 1.40896e-05 -0.000265295 1.55333e-05 -0.000291571 1.60284e-05 -0.000331256 1.87363e-05 -0.000357905 1.97297e-05 -0.000404577 2.18958e-05 -0.00043635 2.39315e-05 -0.000488763 2.40349e-05 -0.000526995 2.79022e-05 -0.000567767 3.34497e-05 -0.0006213 3.57057e-05 -0.000678623 3.88351e-05 -0.000751209 4.48526e-05 -0.000800103 5.1178e-05 -0.000866419 6.11576e-05 -0.000938349 7.30912e-05 -0.00100198 9.17472e-05 -0.00103306 0.000118711 -0.00106214 0.000144684 -0.00108551 0.000173197 -0.00108136 0.00020882 -0.00107601 0.000256833 -0.00104299 0.000317883 -0.000978745 0.000391357 -0.000888484 0.000472953 -0.000773175 0.000552776 -0.00062889 0.000619708 -0.000473143 0.000668976 -0.000315672 0.000690977 -0.000150949 0.000681868 -4.78289e-05 0.000653162 0.000145018 0.00058911 0.000298334 0.000509119 0.000488954 0.000420384 0.000692323 0.000342516 0.00091214 0.000274569 0.00108507 0.000215998 0.00121282 0.000172274 0.00130658 0.000135647 0.00132423 0.000109625 0.00129416 9.19481e-05 0.00121739 7.88628e-05 0.00112622 6.60037e-05 0.00103373 5.68151e-05 0.000949034 4.92779e-05 0.000869479 4.37998e-05 0.000788723 4.00712e-05 0.000713019 3.72976e-05 0.000634512 3.39536e-05 0.000555259 2.94903e-05 0.000481782 2.5165e-05 0.000417752 2.22479e-05 0.000367023 2.10391e-05 0.00032391 2.00404e-05 0.000280378 1.893e-05 0.000239456 1.781e-05 0.000201742 1.65261e-05 0.000167103 1.50883e-05 0.000132772 1.36394e-05 0.000105207 1.29186e-05 8.12477e-05 1.22989e-05 5.70529e-05 1.15172e-05 3.62638e-05 1.15453e-05 1.8948e-05 1.15642e-05 1.64551e-07 1.16678e-05 -8.10261e-06 1.07104e-05 -2.10092e-05 6.62323e-06 -3.31353e-05 2.16279e-06 -3.96969e-05 6.67007e-07 -4.16647e-05 1.52994e-06 -3.98924e-05 2.18804e-06 -5.84102e-05 5.86345e-06 -4.92467e-05 1.26571e-05 -6.18129e-05 2.25311e-05 -8.88174e-05 2.67457e-05 -0.000175462 2.5978e-05 -0.000252356 2.24054e-05 -0.000318809 2.1336e-05 -0.000361497 2.30958e-05 -0.00040899 2.51076e-05 -0.000467257 3.02625e-05 -0.000531155 2.95685e-05 -0.000629587 3.42363e-05 -0.000684738 3.99441e-05 -0.000736782 5.21141e-05 -0.000707281 6.90525e-05 -0.000672453 8.4263e-05 -0.000674872 9.24105e-05 -0.000726696 0.000107644 -0.000791391 0.000133585 -0.000818243 0.000160647 -0.000887234 0.000190791 -0.000909961 0.000222924 -0.000968935 0.000256536 -0.000950097 0.000296955 -0.000963122 0.000331755 -0.000956602 0.000375351 -0.000959177 0.000435867 -0.000880348 0.000507662 -0.000817497 0.000583146 -0.000713974 0.000639473 -0.000544381 0.000682685 -0.000408363 0.000706322 -0.000192503 0.000692247 -0.000152071 0.000702125 -5.97526e-05 0.000731344 1.40158e-05 0.000710651 0.000275627 0.000621004 0.000504131 0.000455772 0.000844327 0.000295434 0.00115892 0.000205175 0.00138612 0.00017183 0.00153528 0.000172856 0.00164015 0.000204551 0.00165604 0.00023883 0.00160624 0.000241147 0.00153171 0.000212214 0.00143127 0.000161966 0.0013247 0.000111201 0.00119312 7.81044e-05 0.00105174 5.8115e-05 0.00091968 4.4326e-05 0.000802048 3.46792e-05 0.000704757 2.85099e-05 0.000624792 2.39087e-05 0.000553961 2.05867e-05 0.000493009 1.83355e-05 0.000439939 1.70336e-05 0.000391846 1.60927e-05 0.000346506 1.5223e-05 0.000303436 1.44441e-05 0.000263433 1.39094e-05 0.000226786 1.35744e-05 0.00019217 1.34455e-05 0.000159316 1.34581e-05 0.000127646 1.35147e-05 9.65796e-05 1.36794e-05 6.65826e-05 1.39865e-05 3.76164e-05 1.43897e-05 9.75356e-06 1.50234e-05 -1.8847e-05 1.58778e-05 -4.7264e-05 1.67475e-05 -7.74348e-05 1.7704e-05 -0.000108106 1.87677e-05 -0.00013913 1.94992e-05 -0.000173549 2.09052e-05 -0.000204473 2.26882e-05 -0.000238407 2.39903e-05 -0.00027854 2.54789e-05 -0.00031677 2.66567e-05 -0.000359636 2.77011e-05 -0.000402415 2.95934e-05 -0.000442936 3.08043e-05 -0.000491513 3.18744e-05 -0.000538157 3.34045e-05 -0.000585367 3.41514e-05 -0.000637254 3.49257e-05 -0.000685512 3.51737e-05 -0.000736717 3.53472e-05 -0.000782604 3.36832e-05 -0.000834467 3.25128e-05 -0.000872208 3.21279e-05 -0.000904129 2.32297e-05 -0.00095835 2.17328e-05 -0.000949222 1.68095e-05 -0.000958506 5.46777e-06 -0.000980847 2.63322e-06 -0.000913473 -1.07825e-05 -0.000919781 -2.57174e-05 -0.000857262 -2.63927e-05 -0.000723809 -4.75737e-05 -0.000674568 -6.12284e-05 -0.000503839 -5.34546e-05 -0.000282871 -5.48392e-05 -0.000153141 -6.09927e-05 -2.33816e-05 -7.07657e-05 0.00011602 -7.37596e-05 0.000301054 -7.6188e-05 0.000473204 -7.39666e-05 0.000642442 -6.66188e-05 0.000795592 -5.32525e-05 0.000928064 -4.18259e-05 0.000992973 -4.16254e-05 0.0010089 -2.82983e-05 0.00106368 -2.57093e-05 0.00103417 -2.31472e-05 0.00101754 -1.5097e-05 0.00100269 0.000963222 3.18975e-06 7.8538e-05 5.15923e-06 7.3226e-05 5.99843e-06 6.05487e-05 6.16985e-06 4.48582e-05 6.03184e-06 2.81138e-05 5.82465e-06 1.10549e-05 5.68435e-06 -6.28989e-06 5.59018e-06 -2.44773e-05 5.43787e-06 -4.37989e-05 5.20889e-06 -6.38923e-05 4.90112e-06 -8.44402e-05 4.65831e-06 -0.000104827 4.74916e-06 -0.000124929 5.67661e-06 -0.000145016 6.71615e-06 -0.000171652 7.30695e-06 -0.000204197 6.75802e-06 -0.000240831 6.08114e-06 -0.000276061 7.0867e-06 -0.000305999 8.11069e-06 -0.000345918 7.94979e-06 -0.000393272 7.48885e-06 -0.00043959 7.0527e-06 -0.000487639 6.84737e-06 -0.000535794 6.40228e-06 -0.000588753 6.46465e-06 -0.000639178 5.09077e-06 -0.000688978 3.99912e-06 -0.000743768 1.60259e-06 -0.000796341 -1.29431e-06 -0.000852672 -2.89781e-06 -0.000891023 -6.43086e-06 -0.000933598 -1.39051e-05 -0.000983163 -1.5762e-05 -0.000969059 -2.18477e-05 -0.000991376 -3.13152e-05 -0.000991514 -3.27762e-05 -0.000918638 -4.44804e-05 -0.000902114 -4.63411e-05 -0.000777476 -4.55059e-05 -0.000660192 -4.85545e-05 -0.000559891 -4.69204e-05 -0.000420132 -4.70608e-05 -0.000285915 -4.42511e-05 -0.000125579 -4.08218e-05 1.25232e-05 -3.38744e-05 0.000177173 -2.94378e-05 0.000305466 -2.90388e-05 0.000435358 -1.72658e-05 0.000601355 -1.16539e-05 0.000695598 -1.97917e-06 0.000807103 7.42567e-06 0.000875163 1.63101e-05 0.000929818 2.22827e-05 0.000953512 2.82678e-05 0.00096647 3.09665e-05 0.000953975 3.34759e-05 0.000938619 3.4015e-05 0.000908527 3.36303e-05 0.000874116 3.34414e-05 0.000836303 3.17137e-05 0.000790144 2.951e-05 0.000743557 2.75253e-05 0.000697869 2.50506e-05 0.000649182 2.24283e-05 0.0006015 2.05142e-05 0.00055619 1.82421e-05 0.000507646 1.58903e-05 0.000460677 1.37703e-05 0.000416215 1.20191e-05 0.00037312 1.06868e-05 0.000331598 9.32089e-06 0.000290363 7.97725e-06 0.000250751 6.81579e-06 0.000214013 5.87792e-06 0.000180302 5.19966e-06 0.000147593 4.91818e-06 0.000119804 4.82928e-06 9.04193e-05 4.96289e-06 6.53055e-05 5.37029e-06 3.8712e-05 5.6572e-06 1.23528e-05 6.25033e-06 -1.504e-05 6.38222e-06 -4.49388e-05 6.92361e-06 -6.97082e-05 7.26654e-06 -9.92479e-05 7.58593e-06 -0.000124272 8.34582e-06 -0.000151995 8.24763e-06 -0.00018182 9.07174e-06 -0.000205047 9.26733e-06 -0.000237593 9.9512e-06 -0.000259511 9.38973e-06 -0.000298164 9.9136e-06 -0.000315491 9.52125e-06 -0.000356356 1.0242e-05 -0.000372779 1.0347e-05 -0.00041794 1.15108e-05 -0.000437077 1.15892e-05 -0.000489672 1.23978e-05 -0.000513767 1.24324e-05 -0.000572604 1.23544e-05 -0.00060756 1.30358e-05 -0.000657097 1.23182e-05 -0.000711471 1.20631e-05 -0.000755265 1.07755e-05 -0.000811477 1.08082e-05 -0.000844674 9.59364e-06 -0.000894485 9.62938e-06 -0.000919372 9.75433e-06 -0.000946167 1.17888e-05 -0.000960052 1.44388e-05 -0.000968659 2.00932e-05 -0.000959693 2.84509e-05 -0.000947176 3.95033e-05 -0.000922832 4.92591e-05 -0.000874402 6.26136e-05 -0.000801927 7.77148e-05 -0.000730801 9.33499e-05 -0.00062376 0.000106149 -0.000514802 0.000121071 -0.000372573 0.000129084 -0.000227757 0.000130235 -7.59373e-05 0.000129692 8.3125e-05 0.000126101 0.000248746 0.000104097 0.000361491 9.15645e-05 0.000542453 7.28838e-05 0.000679849 6.41207e-05 0.00083449 5.79685e-05 0.000953369 5.02221e-05 0.00101619 4.72497e-05 0.00106497 4.22756e-05 0.00106853 3.82784e-05 0.00106709 3.43039e-05 0.00104405 3.3062e-05 0.00102167 3.15692e-05 0.000975887 3.11452e-05 0.000929195 2.99774e-05 0.000867352 2.85284e-05 0.000806048 2.74381e-05 0.00074437 2.58732e-05 0.000680459 2.46105e-05 0.000619016 2.33234e-05 0.000557881 2.16766e-05 0.000496731 1.99229e-05 0.000439781 1.84752e-05 0.000386765 1.67244e-05 0.000334836 1.54643e-05 0.00028999 1.37366e-05 0.000243275 1.23132e-05 0.000206096 1.06461e-05 0.000166505 9.72883e-06 0.000138876 8.70356e-06 0.000106515 8.3227e-06 8.31778e-05 7.49926e-06 5.50826e-05 7.01039e-06 3.39529e-05 6.16284e-06 1.14377e-05 5.92511e-06 -5.83972e-06 5.71145e-06 -2.49111e-05 6.11512e-06 -4.07394e-05 6.3463e-06 -6.05524e-05 6.33221e-06 -8.12824e-05 6.21319e-06 -0.000100516 6.37217e-06 -0.000118972 6.6839e-06 -0.000136272 7.1186e-06 -0.000155812 8.42909e-06 -0.000174233 9.15667e-06 -0.000201175 1.09517e-05 -0.000225622 1.09872e-05 -0.000265331 1.20341e-05 -0.000292618 1.21202e-05 -0.000331342 1.42586e-05 -0.000360043 1.49539e-05 -0.000405273 1.71019e-05 -0.000438498 1.79176e-05 -0.000489579 1.86149e-05 -0.000527692 2.22965e-05 -0.000571449 2.59282e-05 -0.000624932 2.82413e-05 -0.000680936 2.98779e-05 -0.000752845 3.41005e-05 -0.000804326 3.78313e-05 -0.00087015 4.08507e-05 -0.000941369 4.5174e-05 -0.0010063 5.5301e-05 -0.00104319 7.26644e-05 -0.0010795 9.43705e-05 -0.00110721 0.000120643 -0.00110764 0.000148542 -0.00110391 0.000181533 -0.00107598 0.000219687 -0.0010169 0.000262845 -0.000931641 0.000309958 -0.000820289 0.000360015 -0.000678946 0.000404882 -0.00051801 0.000439554 -0.000350345 0.000459413 -0.000170807 0.000449417 -3.78334e-05 0.000429721 0.000164714 0.000386655 0.0003414 0.000333342 0.000542267 0.000276305 0.000749361 0.000227605 0.00096084 0.000184391 0.00112828 0.000145035 0.00125218 0.000116611 0.00133501 9.49796e-05 0.00134586 8.06553e-05 0.00130848 7.03294e-05 0.00122772 6.16115e-05 0.00113494 5.27081e-05 0.00104263 4.58498e-05 0.000955893 4.04741e-05 0.000874854 3.6514e-05 0.000792683 3.37051e-05 0.000715828 3.14408e-05 0.000636777 2.85437e-05 0.000558156 2.47029e-05 0.000485623 2.0945e-05 0.00042151 1.82963e-05 0.000369672 1.69143e-05 0.000325292 1.58706e-05 0.000281421 1.47626e-05 0.000240564 1.36266e-05 0.000202878 1.25259e-05 0.000168204 1.11162e-05 0.000134182 9.87865e-06 0.000106444 9.24482e-06 8.18815e-05 8.52423e-06 5.77735e-05 7.66122e-06 3.71268e-05 7.29128e-06 1.93179e-05 6.72661e-06 7.29223e-07 6.52851e-06 -7.90451e-06 6.33183e-06 -2.08125e-05 4.23883e-06 -3.10423e-05 1.49201e-06 -3.69501e-05 7.8535e-07 -4.0958e-05 1.62147e-06 -4.07286e-05 1.66304e-06 -5.84517e-05 4.28264e-06 -5.18663e-05 1.06056e-05 -6.81359e-05 1.94709e-05 -9.76828e-05 2.26962e-05 -0.000178688 2.16445e-05 -0.000251304 1.86672e-05 -0.000315832 1.82132e-05 -0.000361043 1.97661e-05 -0.000410543 2.16684e-05 -0.00046916 2.4505e-05 -0.000533992 2.21547e-05 -0.000627237 2.24388e-05 -0.000685023 2.25357e-05 -0.000736878 3.30083e-05 -0.000717753 4.82382e-05 -0.000687683 6.25224e-05 -0.000689157 7.05159e-05 -0.000734689 7.55454e-05 -0.000796421 8.97689e-05 -0.000832467 0.000106189 -0.000903654 0.000130874 -0.000934647 0.000156305 -0.000994366 0.000187187 -0.000980979 0.000218467 -0.000994402 0.000245377 -0.000983511 0.000270525 -0.000984325 0.000304545 -0.000914368 0.000340698 -0.00085365 0.000378592 -0.000751868 0.000406161 -0.00057195 0.000423779 -0.000425982 0.000443172 -0.000211895 0.000447933 -0.000156832 0.000490128 -0.000101948 0.000542215 -3.80717e-05 0.00053292 0.000284922 0.00044141 0.000595641 0.000301074 0.000984663 0.000199738 0.00126025 0.000170403 0.00141546 0.000179068 0.00152662 0.00021108 0.00160814 0.000244811 0.00162231 0.000254921 0.00159613 0.000240539 0.00154609 0.000197 0.00147481 0.000140557 0.00138114 9.72726e-05 0.00123641 7.03993e-05 0.00107861 5.31366e-05 0.000936943 4.07512e-05 0.000814433 3.19616e-05 0.000713547 2.61678e-05 0.000630586 2.18881e-05 0.000558241 1.88021e-05 0.000496095 1.67017e-05 0.000442039 1.54326e-05 0.000393115 1.4516e-05 0.000347422 1.36987e-05 0.000304253 1.29795e-05 0.000264153 1.2481e-05 0.000227284 1.21655e-05 0.000192485 1.20376e-05 0.000159444 1.20383e-05 0.000127645 1.20873e-05 9.65306e-05 1.22364e-05 6.64335e-05 1.25124e-05 3.73403e-05 1.28835e-05 9.38245e-06 1.34496e-05 -1.94131e-05 1.4211e-05 -4.80253e-05 1.49934e-05 -7.82172e-05 1.58479e-05 -0.000108961 1.68036e-05 -0.000140086 1.74956e-05 -0.000174241 1.87492e-05 -0.000205727 2.03144e-05 -0.000239972 2.1489e-05 -0.000279715 2.2823e-05 -0.000318104 2.38913e-05 -0.000360704 2.48664e-05 -0.00040339 2.65151e-05 -0.000444585 2.75988e-05 -0.000492596 2.85698e-05 -0.000539128 2.99174e-05 -0.000586714 3.06068e-05 -0.000637943 3.13012e-05 -0.000686206 3.14996e-05 -0.000736916 3.1638e-05 -0.000782742 3.02127e-05 -0.000833042 2.91323e-05 -0.000871128 2.84869e-05 -0.000903484 2.11331e-05 -0.000950996 1.91888e-05 -0.000947278 1.48035e-05 -0.00095412 4.85059e-06 -0.000970895 1.49934e-06 -0.000910122 -9.99485e-06 -0.000908287 -2.27896e-05 -0.000844467 -2.48237e-05 -0.000721774 -4.24082e-05 -0.000656984 -5.36706e-05 -0.000492577 -4.83786e-05 -0.000288163 -4.96673e-05 -0.000151852 -5.48503e-05 -1.81988e-05 -6.31986e-05 0.000124368 -6.62059e-05 0.000304061 -6.80429e-05 0.00047504 -6.60267e-05 0.000640426 -5.93516e-05 0.000788917 -4.77806e-05 0.000916492 -3.81154e-05 0.000983307 -3.66296e-05 0.00100741 -2.58145e-05 0.00105286 -2.29764e-05 0.00103134 -2.01468e-05 0.00101471 -1.28081e-05 0.000995352 0.000950414 2.70206e-06 7.58359e-05 4.44479e-06 7.14833e-05 5.22727e-06 5.97662e-05 5.41576e-06 4.46697e-05 5.31924e-06 2.82103e-05 5.15055e-06 1.12235e-05 5.02884e-06 -6.16819e-06 4.94188e-06 -2.43903e-05 4.80782e-06 -4.36648e-05 4.60993e-06 -6.36944e-05 4.35252e-06 -8.41828e-05 4.16089e-06 -0.000104635 4.26176e-06 -0.00012503 5.05264e-06 -0.000145807 5.92987e-06 -0.000172529 6.41353e-06 -0.00020468 6.01552e-06 -0.000240433 5.50313e-06 -0.000275548 6.33194e-06 -0.000306828 7.16963e-06 -0.000346756 7.05923e-06 -0.000393162 6.70616e-06 -0.000439237 6.32482e-06 -0.000487258 6.09642e-06 -0.000535565 5.81888e-06 -0.000588475 5.7368e-06 -0.000639096 4.49538e-06 -0.000687737 3.43071e-06 -0.000742703 1.76463e-06 -0.000794675 -8.54975e-07 -0.000850052 -2.69171e-06 -0.000889186 -5.47389e-06 -0.000930816 -1.20794e-05 -0.000976557 -1.40484e-05 -0.00096709 -1.95313e-05 -0.000985894 -2.77161e-05 -0.000983329 -2.92993e-05 -0.000917055 -3.9079e-05 -0.000892334 -4.09653e-05 -0.00077559 -4.04702e-05 -0.000660687 -4.29474e-05 -0.000557414 -4.19077e-05 -0.000421172 -4.216e-05 -0.000285663 -3.98884e-05 -0.00012785 -3.74488e-05 1.00835e-05 -3.17263e-05 0.000171451 -2.78172e-05 0.000301557 -2.66267e-05 0.000434167 -1.61355e-05 0.000590864 -1.0772e-05 0.000690234 -1.59297e-06 0.000797924 7.02809e-06 0.000866542 1.49873e-05 0.000921858 2.04705e-05 0.000948029 2.57826e-05 0.000961158 2.83299e-05 0.000951428 3.05265e-05 0.000936423 3.09833e-05 0.00090807 3.06736e-05 0.000874426 3.03247e-05 0.000836652 2.8775e-05 0.000791694 2.68009e-05 0.000745531 2.4937e-05 0.000699733 2.27014e-05 0.000651418 2.03702e-05 0.000603832 1.85702e-05 0.00055799 1.65197e-05 0.000509696 1.44318e-05 0.000462765 1.25679e-05 0.000418079 1.10188e-05 0.000374669 9.80856e-06 0.000332808 8.59427e-06 0.000291577 7.4026e-06 0.000251943 6.39013e-06 0.000215025 5.56162e-06 0.00018113 4.93568e-06 0.000148219 4.61818e-06 0.000120121 4.4372e-06 9.06003e-05 4.49484e-06 6.52478e-05 4.81472e-06 3.83921e-05 5.05356e-06 1.2114e-05 5.55448e-06 -1.55409e-05 5.67551e-06 -4.50598e-05 6.12756e-06 -7.01603e-05 6.3926e-06 -9.95129e-05 6.68809e-06 -0.000124567 7.37728e-06 -0.000152684 7.2987e-06 -0.000181742 7.93392e-06 -0.000205682 8.19938e-06 -0.000237858 9.01805e-06 -0.000260329 8.5588e-06 -0.000297704 9.22903e-06 -0.000316162 8.87566e-06 -0.000356003 9.82711e-06 -0.000373731 9.81926e-06 -0.000417932 1.10764e-05 -0.000438334 1.10197e-05 -0.000489615 1.20267e-05 -0.000514774 1.18743e-05 -0.000572451 1.18305e-05 -0.000607517 1.22969e-05 -0.000657563 1.13235e-05 -0.000710498 1.07095e-05 -0.000754651 9.06009e-06 -0.000809827 8.26493e-06 -0.000843879 6.54412e-06 -0.000892765 5.69635e-06 -0.000918524 5.07179e-06 -0.000945542 5.13842e-06 -0.000960118 5.58335e-06 -0.000969104 7.5894e-06 -0.0009617 1.02781e-05 -0.000949865 1.39438e-05 -0.000926498 1.81141e-05 -0.000878572 2.60282e-05 -0.000809841 3.4953e-05 -0.000739725 4.45253e-05 -0.000633333 5.13776e-05 -0.000521654 5.95889e-05 -0.000380784 6.4632e-05 -0.0002328 6.58141e-05 -7.71195e-05 6.58725e-05 8.30666e-05 6.55856e-05 0.000249033 5.25991e-05 0.000374477 4.59773e-05 0.000549075 3.60077e-05 0.000689819 3.30219e-05 0.000837476 3.22562e-05 0.000954135 3.01431e-05 0.0010183 3.07936e-05 0.00106432 2.93119e-05 0.00107001 2.80868e-05 0.00106832 2.64652e-05 0.00104567 2.6683e-05 0.00102145 2.64213e-05 0.000976149 2.67026e-05 0.000928914 2.61045e-05 0.00086795 2.5069e-05 0.000807083 2.41839e-05 0.000745255 2.28601e-05 0.000681783 2.17284e-05 0.000620148 2.05083e-05 0.000559102 1.9011e-05 0.000498229 1.75744e-05 0.000441218 1.62404e-05 0.000388099 1.46663e-05 0.00033641 1.35217e-05 0.000291134 1.19883e-05 0.000244808 1.07569e-05 0.000207327 9.24242e-06 0.000168019 8.45234e-06 0.000139666 7.52374e-06 0.000107444 7.16329e-06 8.35383e-05 6.41186e-06 5.58341e-05 5.94923e-06 3.44156e-05 5.2606e-06 1.21263e-05 5.0911e-06 -5.67022e-06 4.85394e-06 -2.4674e-05 5.18071e-06 -4.10662e-05 5.43681e-06 -6.08085e-05 5.37192e-06 -8.12175e-05 5.27005e-06 -0.000100414 5.32583e-06 -0.000119028 5.66226e-06 -0.000136609 6.02386e-06 -0.000156173 7.14048e-06 -0.000175349 7.9107e-06 -0.000201945 9.32813e-06 -0.000227039 9.21489e-06 -0.000265218 1.01186e-05 -0.000293522 1.0321e-05 -0.000331545 1.18054e-05 -0.000361528 1.22563e-05 -0.000405724 1.36619e-05 -0.000439904 1.40117e-05 -0.000489928 1.48758e-05 -0.000528556 1.71237e-05 -0.000573696 1.97588e-05 -0.000627567 2.21449e-05 -0.000683323 2.28173e-05 -0.000753518 2.60915e-05 -0.0008076 2.88902e-05 -0.000872948 3.03045e-05 -0.000942783 3.16906e-05 -0.00100769 3.71884e-05 -0.00104869 4.503e-05 -0.00108734 5.46972e-05 -0.00111688 7.10007e-05 -0.00112394 9.08497e-05 -0.00112376 0.000115086 -0.00110021 0.000143202 -0.00104502 0.000173648 -0.000962087 0.000205207 -0.000851848 0.000237772 -0.000711511 0.000267225 -0.000547463 0.000291015 -0.000374135 0.00030536 -0.000185152 0.000296949 -2.9422e-05 0.000283174 0.000178489 0.000254224 0.000370349 0.000218175 0.000578317 0.000180003 0.000787532 0.000147995 0.000992848 0.00011979 0.00115649 9.4554e-05 0.00127741 7.84348e-05 0.00135112 6.78293e-05 0.00135647 6.14443e-05 0.00131487 5.59193e-05 0.00123324 5.00587e-05 0.0011408 4.37744e-05 0.00104892 3.86122e-05 0.000961055 3.45026e-05 0.000878964 3.13541e-05 0.000795832 2.90881e-05 0.000718094 2.71275e-05 0.000638737 2.46376e-05 0.000560646 2.14248e-05 0.000488836 1.81225e-05 0.000424812 1.57248e-05 0.00037207 1.44054e-05 0.000326612 1.33274e-05 0.000282499 1.22505e-05 0.000241641 1.12754e-05 0.000203853 1.02747e-05 0.000169205 9.04562e-06 0.000135411 8.00601e-06 0.000107484 7.38271e-06 8.25048e-05 6.75178e-06 5.84045e-05 5.87073e-06 3.80078e-05 5.39839e-06 1.97903e-05 4.74072e-06 1.38689e-06 4.31151e-06 -7.47529e-06 3.88772e-06 -2.03887e-05 2.55495e-06 -2.97096e-05 1.15077e-06 -3.55459e-05 8.60598e-07 -4.06678e-05 1.33084e-06 -4.11988e-05 1.16076e-06 -5.82817e-05 3.83636e-06 -5.45419e-05 9.30566e-06 -7.36052e-05 1.68533e-05 -0.00010523 1.93697e-05 -0.000181204 1.83855e-05 -0.00025032 1.62947e-05 -0.000313741 1.58563e-05 -0.000360605 1.72459e-05 -0.000411933 1.87911e-05 -0.000470705 2.06469e-05 -0.000535847 1.81103e-05 -0.0006247 1.57777e-05 -0.00068269 1.16759e-05 -0.000732777 1.63357e-05 -0.000722413 3.01015e-05 -0.000701449 4.38834e-05 -0.000702938 5.18145e-05 -0.00074262 5.63091e-05 -0.000800915 6.65216e-05 -0.000842679 7.3428e-05 -0.00091056 8.89548e-05 -0.000950173 0.000102558 -0.00100797 0.00012287 -0.00100129 0.000144031 -0.00101556 0.000164275 -0.00100375 0.00017998 -0.00100003 0.000200601 -0.000934989 0.000222968 -0.000876018 0.000242774 -0.000771675 0.000254019 -0.000583194 0.000260325 -0.000432288 0.000284144 -0.000235715 0.000304681 -0.000177368 0.00035874 -0.000156007 0.00041621 -9.55412e-05 0.000415615 0.000285517 0.000325898 0.000685358 0.000221015 0.00108955 0.000170341 0.00131093 0.000177012 0.00140878 0.000210377 0.00149325 0.000244672 0.00157384 0.00025958 0.00160741 0.00025546 0.00160026 0.000225141 0.00157641 0.00016934 0.00153061 0.000118403 0.00143208 8.52024e-05 0.00126961 6.35656e-05 0.00110025 4.84318e-05 0.000952077 3.72811e-05 0.000825584 2.9281e-05 0.000721547 2.38627e-05 0.000636004 1.98702e-05 0.000562233 1.69995e-05 0.000498966 1.50436e-05 0.000443995 1.38193e-05 0.000394339 1.29325e-05 0.000348309 1.21685e-05 0.000305017 1.1512e-05 0.000264809 1.10555e-05 0.000227741 1.0763e-05 0.000192778 1.06361e-05 0.000159571 1.06248e-05 0.000127656 1.06629e-05 9.64925e-05 1.07933e-05 6.63031e-05 1.10364e-05 3.70973e-05 1.13694e-05 9.04938e-06 1.18717e-05 -1.99155e-05 1.25421e-05 -4.86956e-05 1.32361e-05 -7.89112e-05 1.399e-05 -0.000109714 1.48368e-05 -0.000140933 1.54774e-05 -0.000174882 1.65817e-05 -0.000206831 1.79423e-05 -0.000241333 1.89879e-05 -0.000280761 2.01688e-05 -0.000319285 2.11251e-05 -0.000361661 2.20169e-05 -0.000404282 2.34413e-05 -0.000446009 2.4399e-05 -0.000493554 2.52597e-05 -0.000539989 2.64422e-05 -0.000587897 2.70706e-05 -0.000638572 2.76855e-05 -0.000686821 2.78469e-05 -0.000737077 2.79602e-05 -0.000782855 2.67563e-05 -0.000831838 2.5774e-05 -0.000870146 2.50108e-05 -0.00090272 1.89219e-05 -0.000944907 1.6719e-05 -0.000945075 1.28225e-05 -0.000950224 4.29226e-06 -0.000962364 7.1138e-07 -0.000906541 -9.09149e-06 -0.000898484 -2.01009e-05 -0.000833457 -2.28677e-05 -0.000719008 -3.74135e-05 -0.000642438 -4.66385e-05 -0.000483352 -4.3132e-05 -0.00029167 -4.43585e-05 -0.000150626 -4.86537e-05 -1.39036e-05 -5.57496e-05 0.000131464 -5.85673e-05 0.000306879 -5.98684e-05 0.000476341 -5.79832e-05 0.00063854 -5.22582e-05 0.000783192 -4.23564e-05 0.00090659 -3.4135e-05 0.000975086 -3.19279e-05 0.0010052 -2.31172e-05 0.00104405 -2.02322e-05 0.00102845 -1.73337e-05 0.00101181 -1.07682e-05 0.000988787 0.000939646 2.25979e-06 7.35761e-05 3.77182e-06 6.99712e-05 4.48119e-06 5.90568e-05 4.6733e-06 4.44776e-05 4.60963e-06 2.8274e-05 4.4748e-06 1.13584e-05 4.37193e-06 -6.06532e-06 4.29487e-06 -2.43133e-05 4.17975e-06 -4.35497e-05 4.01222e-06 -6.35269e-05 3.80044e-06 -8.3971e-05 3.65187e-06 -0.000104487 3.75579e-06 -0.000125134 4.423e-06 -0.000146474 5.15672e-06 -0.000173263 5.5542e-06 -0.000205078 5.27161e-06 -0.00024015 4.89061e-06 -0.000275167 5.5722e-06 -0.000307509 6.25552e-06 -0.000347439 6.18627e-06 -0.000393093 5.91847e-06 -0.000438969 5.59094e-06 -0.00048693 5.34772e-06 -0.000535322 5.11139e-06 -0.000588239 4.97637e-06 -0.000638961 4.14154e-06 -0.000686902 3.15795e-06 -0.000741719 2.11681e-06 -0.000793634 -6.03219e-07 -0.000847332 -2.23706e-06 -0.000887552 -4.63143e-06 -0.000928422 -1.02991e-05 -0.000970889 -1.22913e-05 -0.000965098 -1.71541e-05 -0.000981031 -2.41448e-05 -0.000976339 -2.579e-05 -0.00091541 -3.3881e-05 -0.000884243 -3.56885e-05 -0.000773782 -3.54266e-05 -0.000660949 -3.74047e-05 -0.000555436 -3.67024e-05 -0.000421874 -3.68721e-05 -0.000285493 -3.48549e-05 -0.000129868 -3.28318e-05 8.06042e-06 -2.81207e-05 0.00016674 -2.48446e-05 0.000298281 -2.32229e-05 0.000432545 -1.4256e-05 0.000581897 -9.22397e-06 0.000685202 -8.85531e-07 0.000789585 6.83975e-06 0.000858817 1.3789e-05 0.000914909 1.87233e-05 0.000943094 2.33712e-05 0.00095651 2.57304e-05 0.000949069 2.76209e-05 0.000934532 2.79958e-05 0.000907695 2.77151e-05 0.000874706 2.72609e-05 0.000837106 2.58661e-05 0.000793089 2.40988e-05 0.000747298 2.23794e-05 0.000701452 2.03785e-05 0.000653419 1.83103e-05 0.0006059 1.66382e-05 0.000559662 1.48085e-05 0.000511526 1.29779e-05 0.000464596 1.13314e-05 0.000419726 9.94105e-06 0.000376059 8.8273e-06 0.000333922 7.73781e-06 0.000292667 6.67482e-06 0.000253006 5.76753e-06 0.000215932 5.00485e-06 0.000181893 4.41365e-06 0.000148811 4.12532e-06 0.00012041 3.94006e-06 9.07855e-05 3.94323e-06 6.52446e-05 4.13355e-06 3.82018e-05 4.31329e-06 1.19342e-05 4.6664e-06 -1.5894e-05 4.77187e-06 -4.51653e-05 5.09669e-06 -7.04851e-05 5.29409e-06 -9.97103e-05 5.61521e-06 -0.000124889 6.05378e-06 -0.000153123 6.03343e-06 -0.000181722 6.64353e-06 -0.000206292 6.86973e-06 -0.000238084 7.64089e-06 -0.0002611 7.37645e-06 -0.00029744 8.15911e-06 -0.000316944 7.96407e-06 -0.000355808 9.01994e-06 -0.000374787 8.98612e-06 -0.000417898 1.03158e-05 -0.000439663 1.02777e-05 -0.000489577 1.14927e-05 -0.000515989 1.1213e-05 -0.000572172 1.12243e-05 -0.000607528 1.16254e-05 -0.000657964 1.07596e-05 -0.000709632 1.00533e-05 -0.000753945 8.31841e-06 -0.000808092 7.20352e-06 -0.000842764 5.12909e-06 -0.00089069 3.73821e-06 -0.000917133 2.46403e-06 -0.000944268 1.46561e-06 -0.00095912 8.29716e-07 -0.000968468 1.15058e-06 -0.00096202 1.64693e-06 -0.000950361 2.106e-06 -0.000926957 3.24165e-06 -0.000879708 5.93959e-06 -0.000812539 9.7733e-06 -0.000743559 1.46126e-05 -0.000638172 1.84331e-05 -0.000525474 2.29095e-05 -0.000385261 2.60721e-05 -0.000235963 2.71942e-05 -7.82415e-05 2.75132e-05 8.27475e-05 2.83397e-05 0.000248206 2.09594e-05 0.000381858 1.77597e-05 0.000552274 1.31129e-05 0.000694465 1.35732e-05 0.000837015 1.62224e-05 0.000951485 1.7732e-05 0.00101679 2.06228e-05 0.00106143 2.13242e-05 0.00106931 2.18075e-05 0.00106784 2.16154e-05 0.00104587 2.25209e-05 0.00102055 2.28215e-05 0.000975848 2.33177e-05 0.000928418 2.2913e-05 0.000868355 2.20363e-05 0.00080796 2.12087e-05 0.000746083 2.00128e-05 0.000682979 1.89356e-05 0.000621226 1.78521e-05 0.000560185 1.6563e-05 0.000499518 1.51126e-05 0.000442669 1.39273e-05 0.000389284 1.25558e-05 0.000337782 1.15145e-05 0.000292176 1.01845e-05 0.000246138 9.15984e-06 0.000208352 7.84338e-06 0.000169336 7.16167e-06 0.000140347 6.36902e-06 0.000108236 5.98572e-06 8.39216e-05 5.32229e-06 5.64975e-05 4.88474e-06 3.48531e-05 4.36117e-06 1.26499e-05 4.13784e-06 -5.4469e-06 3.9168e-06 -2.44529e-05 4.20141e-06 -4.13508e-05 4.43591e-06 -6.1043e-05 4.32281e-06 -8.11044e-05 4.27361e-06 -0.000100365 4.29792e-06 -0.000119052 4.62624e-06 -0.000136937 4.96013e-06 -0.000156507 5.90594e-06 -0.000176295 6.54772e-06 -0.000202587 7.78319e-06 -0.000228275 7.83127e-06 -0.000265266 8.54512e-06 -0.000294235 8.67114e-06 -0.000331671 9.8717e-06 -0.000362728 1.01409e-05 -0.000405993 1.13546e-05 -0.000441118 1.1491e-05 -0.000490065 1.20492e-05 -0.000529114 1.3914e-05 -0.000575561 1.55641e-05 -0.000629217 1.721e-05 -0.000684968 1.74418e-05 -0.00075375 1.9517e-05 -0.000809676 2.13192e-05 -0.000874751 2.19771e-05 -0.000943441 2.17244e-05 -0.00100744 2.39945e-05 -0.00105096 2.86741e-05 -0.00109202 3.41016e-05 -0.00112231 4.39161e-05 -0.00113375 5.51788e-05 -0.00113503 6.8995e-05 -0.00111403 8.71875e-05 -0.00106321 0.000107587 -0.000982486 0.000128968 -0.000873229 0.000151144 -0.000733687 0.00017156 -0.000567879 0.000188024 -0.0003906 0.000198212 -0.00019534 0.000192314 -2.35244e-05 0.000182064 0.000188739 0.000161817 0.000390596 0.000136873 0.000603261 0.000111055 0.00081335 9.04613e-05 0.00101344 7.32837e-05 0.00117367 5.93337e-05 0.00129136 5.27832e-05 0.00135768 4.98061e-05 0.00135944 4.84211e-05 0.00131625 4.58226e-05 0.00123584 4.17572e-05 0.00114487 3.70725e-05 0.0010536 3.29476e-05 0.00096518 2.9673e-05 0.000882239 2.70344e-05 0.00079847 2.5124e-05 0.000720005 2.33272e-05 0.000640534 2.09769e-05 0.000562996 1.82245e-05 0.000491588 1.53903e-05 0.000427647 1.33141e-05 0.000374146 1.21692e-05 0.000327757 1.11833e-05 0.000283485 1.0247e-05 0.000242577 9.38756e-06 0.000204713 8.5399e-06 0.000170053 7.50037e-06 0.00013645 6.61646e-06 0.000108368 6.06549e-06 8.30558e-05 5.3999e-06 5.90701e-05 4.72132e-06 3.86864e-05 4.24507e-06 2.02665e-05 3.40461e-06 2.22736e-06 2.97426e-06 -7.04495e-06 2.56688e-06 -1.99813e-05 1.63375e-06 -2.87764e-05 7.4521e-07 -3.46574e-05 6.21008e-07 -4.05436e-05 1.25557e-06 -4.18334e-05 1.30559e-06 -5.83317e-05 3.41648e-06 -5.66528e-05 7.82295e-06 -7.80117e-05 1.36364e-05 -0.000111044 1.54859e-05 -0.000183054 1.52747e-05 -0.000250109 1.37239e-05 -0.00031219 1.35885e-05 -0.00036047 1.47607e-05 -0.000413105 1.60089e-05 -0.000471953 1.76095e-05 -0.000537448 1.51136e-05 -0.000622204 1.18364e-05 -0.000679413 6.68825e-06 -0.000727629 6.65273e-06 -0.000722378 1.38875e-05 -0.000708684 2.30262e-05 -0.000712077 2.85341e-05 -0.000748128 3.09582e-05 -0.000803339 3.81519e-05 -0.000849873 4.40861e-05 -0.000916494 5.7682e-05 -0.000963769 6.77759e-05 -0.00101806 8.4494e-05 -0.00101801 9.81424e-05 -0.00102921 0.000109846 -0.00101546 0.000118277 -0.00100846 0.000130393 -0.000947106 0.000141203 -0.000886828 0.000146886 -0.000777357 0.000155533 -0.000591842 0.000164364 -0.000441118 0.000188727 -0.000260078 0.000216275 -0.000204917 0.000266997 -0.000206728 0.00032142 -0.000149964 0.000336132 0.000270804 0.000259767 0.000761724 0.000192687 0.00115663 0.000175119 0.00132849 0.000202936 0.00138097 0.000236786 0.0014594 0.000255021 0.00155561 0.000258987 0.00160344 0.000240597 0.00161865 0.000193897 0.00162311 0.00013953 0.00158498 0.000101228 0.00147038 7.6012e-05 0.00129482 5.76349e-05 0.00111863 4.40378e-05 0.000965674 3.39338e-05 0.000835688 2.66179e-05 0.000728863 2.15459e-05 0.000641076 1.78284e-05 0.000565951 1.5173e-05 0.000501622 1.33645e-05 0.000445804 1.21993e-05 0.000395505 1.13505e-05 0.000349158 1.06376e-05 0.00030573 1.00411e-05 0.000265406 9.62343e-06 0.000228158 9.35033e-06 0.000193051 9.22457e-06 0.000159697 9.20434e-06 0.000127677 9.23174e-06 9.64651e-05 9.34452e-06 6.61903e-05 9.55819e-06 3.68836e-05 9.84322e-06 8.76435e-06 1.02838e-05 -2.0356e-05 1.08669e-05 -4.92787e-05 1.1473e-05 -7.95173e-05 1.21287e-05 -0.00011037 1.28673e-05 -0.000141671 1.34455e-05 -0.00017546 1.4403e-05 -0.000207789 1.55706e-05 -0.0002425 1.64862e-05 -0.000281676 1.75152e-05 -0.000320314 1.83576e-05 -0.000362503 1.91553e-05 -0.00040508 2.03713e-05 -0.000447225 2.12041e-05 -0.000494387 2.19426e-05 -0.000540727 2.29755e-05 -0.00058893 2.35418e-05 -0.000639138 2.40788e-05 -0.000687358 2.42129e-05 -0.000737211 2.43055e-05 -0.000782948 2.32982e-05 -0.000830831 2.24244e-05 -0.000869272 2.16488e-05 -0.000901945 1.66306e-05 -0.000939889 1.43355e-05 -0.00094278 1.08276e-05 -0.000946716 3.46055e-06 -0.000954997 2.42885e-07 -0.000903324 -8.14229e-06 -0.000890099 -1.75343e-05 -0.000824065 -2.05995e-05 -0.000715943 -3.25248e-05 -0.000630513 -4.00321e-05 -0.000475845 -3.77674e-05 -0.000293935 -3.88781e-05 -0.000149515 -4.24398e-05 -1.0342e-05 -4.83975e-05 0.000137421 -5.09481e-05 0.000309429 -5.18748e-05 0.000477268 -5.01595e-05 0.000636825 -4.52789e-05 0.000778311 -3.69138e-05 0.000898225 -2.99679e-05 0.00096814 -2.74364e-05 0.00100267 -2.02641e-05 0.00103688 -1.74834e-05 0.00102567 -1.46739e-05 0.001009 -8.92313e-06 0.000983036 0.000930722 1.85359e-06 7.17225e-05 3.13366e-06 6.86912e-05 3.75697e-06 5.84335e-05 3.94136e-06 4.42932e-05 3.90298e-06 2.83123e-05 3.79798e-06 1.14634e-05 3.71399e-06 -5.98133e-06 3.64888e-06 -2.42482e-05 3.55327e-06 -4.34541e-05 3.41538e-06 -6.3389e-05 3.24517e-06 -8.38008e-05 3.13296e-06 -0.000104375 3.23452e-06 -0.000125235 3.78904e-06 -0.000147029 4.39444e-06 -0.000173868 4.72041e-06 -0.000205404 4.52646e-06 -0.000239956 4.25016e-06 -0.000274891 4.80758e-06 -0.000308067 5.36215e-06 -0.000347994 5.32728e-06 -0.000393058 5.12824e-06 -0.00043877 4.86189e-06 -0.000486664 4.60549e-06 -0.000535066 4.4632e-06 -0.000588097 4.35808e-06 -0.000638856 3.70494e-06 -0.000686249 2.99974e-06 -0.000741014 1.88653e-06 -0.000792521 -4.18109e-07 -0.000845028 -1.37626e-06 -0.000886594 -3.49327e-06 -0.000926305 -8.10683e-06 -0.000966276 -1.02995e-05 -0.000962905 -1.47804e-05 -0.00097655 -2.06472e-05 -0.000970472 -2.21913e-05 -0.000913866 -2.87903e-05 -0.000877644 -3.04554e-05 -0.000772117 -3.03585e-05 -0.000661046 -3.19297e-05 -0.000553864 -3.14701e-05 -0.000422334 -3.15726e-05 -0.000285391 -2.98451e-05 -0.000131595 -2.82225e-05 6.43776e-06 -2.43717e-05 0.000162889 -2.15989e-05 0.000295508 -1.97179e-05 0.000430664 -1.23162e-05 0.000574495 -7.58014e-06 0.000680466 -2.60191e-07 0.000782266 6.41409e-06 0.000852142 1.25731e-05 0.00090875 1.69607e-05 0.000938707 2.09879e-05 0.000952482 2.3131e-05 0.000946926 2.47294e-05 0.000932934 2.50228e-05 0.000907402 2.47451e-05 0.000874984 2.42245e-05 0.000837627 2.29667e-05 0.000794347 2.13855e-05 0.00074888 1.98135e-05 0.000703024 1.80184e-05 0.000655214 1.61931e-05 0.000607725 1.4691e-05 0.000561164 1.30881e-05 0.000513129 1.14983e-05 0.000466186 1.00718e-05 0.000421152 8.8711e-06 0.00037726 7.89435e-06 0.000334899 6.95551e-06 0.000293606 6.03831e-06 0.000253923 5.23532e-06 0.000216735 4.4822e-06 0.000182646 3.8749e-06 0.000149418 3.60007e-06 0.000120685 3.43962e-06 9.0946e-05 3.44926e-06 6.5235e-05 3.61079e-06 3.80403e-05 3.76225e-06 1.17828e-05 4.02033e-06 -1.61521e-05 4.04715e-06 -4.51921e-05 4.29767e-06 -7.07356e-05 4.40329e-06 -9.98159e-05 4.62212e-06 -0.000125107 4.90567e-06 -0.000153407 4.84162e-06 -0.000181657 5.33609e-06 -0.000206786 5.38222e-06 -0.00023813 6.01489e-06 -0.000261733 5.72694e-06 -0.000297152 6.49677e-06 -0.000317714 6.39317e-06 -0.000355704 7.44918e-06 -0.000375843 7.46809e-06 -0.000417917 8.89003e-06 -0.000441085 8.91296e-06 -0.0004896 1.03133e-05 -0.00051739 1.01311e-05 -0.000571989 1.05776e-05 -0.000607974 1.09772e-05 -0.000658364 1.02522e-05 -0.000708907 9.58141e-06 -0.000753274 7.92042e-06 -0.000806431 6.72494e-06 -0.000841568 4.56849e-06 -0.000888534 2.88198e-06 -0.000915447 1.23879e-06 -0.000942625 -1.50631e-07 -0.000957731 -1.6155e-06 -0.000967004 -2.15371e-06 -0.000961482 -2.61817e-06 -0.000949897 -3.54657e-06 -0.000926028 -3.87916e-06 -0.000879375 -3.19367e-06 -0.000813225 -2.47278e-06 -0.00074428 -1.10292e-06 -0.000639542 4.50755e-07 -0.000527028 2.34236e-06 -0.000387152 4.73488e-06 -0.000238355 5.82751e-06 -7.93342e-05 6.5114e-06 8.20636e-05 7.38092e-06 0.000247337 4.0605e-06 0.000385178 2.85712e-06 0.000553478 1.81349e-06 0.000695509 4.03373e-06 0.000834795 8.45262e-06 0.000947067 1.16883e-05 0.00101356 1.5384e-05 0.00105773 1.69639e-05 0.00106773 1.80733e-05 0.00106673 1.84431e-05 0.0010455 1.94932e-05 0.0010195 1.99378e-05 0.000975404 2.04352e-05 0.00092792 2.01254e-05 0.000868664 1.93742e-05 0.000808711 1.86081e-05 0.000746849 1.75357e-05 0.000684051 1.65437e-05 0.000622218 1.55354e-05 0.000561193 1.43291e-05 0.000500724 1.30586e-05 0.000443939 1.19639e-05 0.000390379 1.07604e-05 0.000338985 9.8601e-06 0.000293076 8.71222e-06 0.000247286 7.84238e-06 0.000209221 6.72549e-06 0.000170452 6.13216e-06 0.000140941 5.4018e-06 0.000108967 5.0831e-06 8.42403e-05 4.49274e-06 5.70879e-05 4.15444e-06 3.51914e-05 3.68913e-06 1.31152e-05 3.55787e-06 -5.31564e-06 3.4208e-06 -2.43158e-05 3.64451e-06 -4.15745e-05 3.76927e-06 -6.11678e-05 3.69067e-06 -8.10258e-05 3.62203e-06 -0.000100296 3.61722e-06 -0.000119047 3.87054e-06 -0.00013719 4.18073e-06 -0.000156817 4.99592e-06 -0.00017711 5.50511e-06 -0.000203096 6.52111e-06 -0.000229291 6.46927e-06 -0.000265214 7.08314e-06 -0.000294849 7.10854e-06 -0.000331696 8.12507e-06 -0.000363745 8.20872e-06 -0.000406076 9.30237e-06 -0.000442211 9.23067e-06 -0.000489993 9.66348e-06 -0.000529547 1.12012e-05 -0.000577099 1.23915e-05 -0.000630407 1.37926e-05 -0.00068637 1.37828e-05 -0.00075374 1.49556e-05 -0.000810848 1.60883e-05 -0.000875883 1.61757e-05 -0.000943528 1.5348e-05 -0.00100661 1.61156e-05 -0.00105173 1.77098e-05 -0.00109361 1.95738e-05 -0.00112417 2.50661e-05 -0.00113925 3.19265e-05 -0.00114189 4.01747e-05 -0.00112228 5.14675e-05 -0.0010745 6.44542e-05 -0.000995473 7.85069e-05 -0.000887281 9.3439e-05 -0.000748619 0.000107506 -0.000581945 0.000118992 -0.000402087 0.000126138 -0.000202486 0.000121754 -1.91404e-05 0.000114094 0.000196399 9.96308e-05 0.000405059 8.25611e-05 0.000620331 6.56949e-05 0.000830216 5.34138e-05 0.00102572 4.4312e-05 0.00118277 3.85399e-05 0.00129714 3.80848e-05 0.00135813 3.92478e-05 0.00135828 4.01847e-05 0.00131532 3.88503e-05 0.00123718 3.57064e-05 0.00114801 3.19424e-05 0.00105737 2.8493e-05 0.00096863 2.57946e-05 0.000884937 2.34854e-05 0.000800779 2.18061e-05 0.000721684 2.01394e-05 0.000642201 1.80265e-05 0.000565109 1.56642e-05 0.000493951 1.31748e-05 0.000430136 1.13383e-05 0.000375983 1.02604e-05 0.000328834 9.35426e-06 0.000284392 8.5203e-06 0.000243411 7.73336e-06 0.000205499 7.01917e-06 0.000170767 6.12719e-06 0.000137342 5.37797e-06 0.000109117 4.87392e-06 8.35599e-05 4.26967e-06 5.96743e-05 3.71432e-06 3.92418e-05 3.27407e-06 2.07068e-05 2.45685e-06 3.04457e-06 2.08447e-06 -6.67257e-06 1.72776e-06 -1.96246e-05 1.0424e-06 -2.80911e-05 4.78575e-07 -3.40935e-05 3.28335e-07 -4.03934e-05 7.63298e-07 -4.22683e-05 8.69985e-07 -5.84384e-05 2.99843e-06 -5.87812e-05 6.47859e-06 -8.14918e-05 1.13219e-05 -0.000115887 1.29973e-05 -0.000184729 1.24574e-05 -0.000249569 1.12971e-05 -0.00031103 1.13334e-05 -0.000360506 1.22653e-05 -0.000414037 1.32864e-05 -0.000472974 1.43251e-05 -0.000538487 1.18054e-05 -0.000619684 8.85906e-06 -0.000676466 4.02539e-06 -0.000722795 2.96395e-06 -0.000721316 6.83874e-06 -0.000712559 1.25642e-05 -0.000717803 1.65409e-05 -0.000752105 1.78244e-05 -0.000804623 2.14766e-05 -0.000853525 2.38465e-05 -0.000918864 3.12046e-05 -0.000971128 3.69443e-05 -0.0010238 5.03807e-05 -0.00103145 6.17518e-05 -0.00104058 7.20031e-05 -0.00102571 7.8065e-05 -0.00101452 8.49603e-05 -0.000954001 8.93286e-05 -0.000891196 9.12473e-05 -0.000779276 9.97591e-05 -0.000600354 0.000109005 -0.000450364 0.000131367 -0.00028244 0.000157233 -0.000230784 0.000195454 -0.000244949 0.000248766 -0.000203277 0.000280637 0.000238934 0.000227987 0.000814373 0.000192228 0.00119238 0.000198183 0.00132254 0.000225401 0.00135375 0.000243466 0.00144134 0.000251313 0.00154776 0.000240741 0.00161401 0.000202704 0.00165668 0.000153092 0.00167272 0.000111853 0.00162622 8.51661e-05 0.00149706 6.65848e-05 0.0013134 5.13366e-05 0.00113387 3.94778e-05 0.000977533 3.04842e-05 0.000844682 2.38388e-05 0.000735509 1.91297e-05 0.000645786 1.56928e-05 0.000569388 1.32573e-05 0.000504057 1.16002e-05 0.000447461 1.05159e-05 0.000396589 9.73716e-06 0.000349937 9.09806e-06 0.000306369 8.56441e-06 0.00026594 8.1873e-06 0.000228535 7.93823e-06 0.0001933 7.8166e-06 0.000159818 7.78782e-06 0.000127705 7.80298e-06 9.645e-05 7.89507e-06 6.60982e-05 8.07428e-06 3.67044e-05 8.31889e-06 8.51974e-06 8.69567e-06 -2.07328e-05 9.18987e-06 -4.97729e-05 9.70663e-06 -8.00341e-05 1.02642e-05 -0.000110928 1.08942e-05 -0.000142301 1.14017e-05 -0.000175968 1.22147e-05 -0.000208602 1.31982e-05 -0.000243484 1.39826e-05 -0.00028246 1.48612e-05 -0.000321193 1.55872e-05 -0.000363229 1.62817e-05 -0.000405774 1.73019e-05 -0.000448245 1.80108e-05 -0.000495096 1.86197e-05 -0.000541336 1.95154e-05 -0.000589826 2.0017e-05 -0.00063964 2.04764e-05 -0.000687818 2.05881e-05 -0.000737323 2.06656e-05 -0.000783026 1.9838e-05 -0.000830003 1.90839e-05 -0.000868518 1.84074e-05 -0.000901268 1.4281e-05 -0.000935763 1.19035e-05 -0.000940402 8.80976e-06 -0.000943622 2.49446e-06 -0.000948682 1.42445e-07 -0.000900972 -7.19348e-06 -0.000882763 -1.50724e-05 -0.000816187 -1.81017e-05 -0.000712913 -2.77357e-05 -0.000620879 -3.37471e-05 -0.000469833 -3.23157e-05 -0.000295366 -3.32513e-05 -0.00014858 -3.62204e-05 -7.37302e-06 -4.11223e-05 0.000142323 -4.33585e-05 0.000311665 -4.40229e-05 0.000477932 -4.25001e-05 0.000635302 -3.84057e-05 0.000774217 -3.146e-05 0.000891279 -2.56646e-05 0.000962344 -2.30954e-05 0.0010001 -1.72963e-05 0.00103108 -1.47353e-05 0.00102311 -1.21384e-05 0.00100641 -7.22813e-06 0.000978125 0.000923494 1.47556e-06 7.0247e-05 2.5241e-06 6.76426e-05 3.05131e-06 5.79063e-05 3.21861e-06 4.41259e-05 3.19912e-06 2.83318e-05 3.12051e-06 1.1542e-05 3.05529e-06 -5.91612e-06 3.00373e-06 -2.41966e-05 2.92805e-06 -4.33784e-05 2.8191e-06 -6.32801e-05 2.6871e-06 -8.36688e-05 2.60591e-06 -0.000104294 2.70121e-06 -0.000125331 3.15199e-06 -0.00014748 3.64255e-06 -0.000174359 3.90878e-06 -0.00020567 3.78168e-06 -0.000239829 3.58834e-06 -0.000274698 4.03988e-06 -0.000308518 4.48605e-06 -0.00034844 4.47915e-06 -0.000393051 4.33422e-06 -0.000438625 4.11939e-06 -0.000486449 3.81896e-06 -0.000534765 3.79563e-06 -0.000588073 3.72338e-06 -0.000638784 3.01745e-06 -0.000685543 2.56125e-06 -0.000740558 1.5764e-06 -0.000791536 -2.27864e-07 -0.000843224 -9.95794e-07 -0.000885826 -2.66498e-06 -0.000924636 -6.07514e-06 -0.000962866 -7.71806e-06 -0.000961262 -1.17519e-05 -0.000972516 -1.70293e-05 -0.000965194 -1.85629e-05 -0.000912332 -2.38052e-05 -0.000872402 -2.52759e-05 -0.000770647 -2.52901e-05 -0.000661032 -2.65281e-05 -0.000552626 -2.62467e-05 -0.000422615 -2.6308e-05 -0.00028533 -2.49129e-05 -0.00013299 -2.36312e-05 5.15604e-06 -2.0573e-05 0.000159831 -1.8278e-05 0.000293213 -1.633e-05 0.000428716 -1.02173e-05 0.000568382 -5.90497e-06 0.000676154 6.45401e-07 0.000775715 6.00214e-06 0.000846786 1.15259e-05 0.000903227 1.53979e-05 0.000934835 1.8815e-05 0.000949065 2.07039e-05 0.000945037 2.20102e-05 0.000931628 2.21815e-05 0.000907231 2.18498e-05 0.000875316 2.12547e-05 0.000838222 2.00977e-05 0.000795504 1.86757e-05 0.000750302 1.72515e-05 0.000704448 1.56772e-05 0.000656788 1.41042e-05 0.000609298 1.27718e-05 0.000562497 1.1381e-05 0.00051452 1.00195e-05 0.000467547 8.80506e-06 0.000422367 7.77556e-06 0.00037829 6.91922e-06 0.000335755 6.109e-06 0.000294416 5.32331e-06 0.000254708 4.63871e-06 0.00021742 3.96396e-06 0.000183321 3.39565e-06 0.000149986 3.11615e-06 0.000120964 2.91769e-06 9.11444e-05 2.87739e-06 6.52753e-05 2.9813e-06 3.79364e-05 3.10358e-06 1.16605e-05 3.3659e-06 -1.64144e-05 3.41097e-06 -4.52372e-05 3.60766e-06 -7.09323e-05 3.63294e-06 -9.98412e-05 3.79756e-06 -0.000125272 3.9769e-06 -0.000153586 3.81292e-06 -0.000181493 4.22691e-06 -0.0002072 4.16454e-06 -0.000238068 4.62211e-06 -0.000262191 4.39974e-06 -0.00029693 4.96208e-06 -0.000318277 4.74394e-06 -0.000355486 5.65303e-06 -0.000376752 5.60653e-06 -0.000417871 6.79925e-06 -0.000442278 6.81442e-06 -0.000489615 8.25674e-06 -0.000518832 8.11827e-06 -0.000571851 9.01537e-06 -0.000608872 9.46957e-06 -0.000658818 9.19674e-06 -0.000708634 9.01031e-06 -0.000753087 7.6363e-06 -0.000805057 6.70786e-06 -0.00084064 4.75078e-06 -0.000886577 2.98785e-06 -0.000913684 1.05173e-06 -0.000940689 -6.06968e-07 -0.000956072 -2.41583e-06 -0.000965195 -3.51816e-06 -0.00096038 -4.7098e-06 -0.000948705 -6.24808e-06 -0.00092449 -7.1045e-06 -0.000878519 -6.97793e-06 -0.000813352 -7.66797e-06 -0.00074359 -7.62746e-06 -0.000639582 -7.79861e-06 -0.000526857 -7.40713e-06 -0.000387544 -6.55358e-06 -0.000239209 -5.82049e-06 -8.00673e-05 -5.26631e-06 8.15094e-05 -3.86405e-06 0.000245935 -5.61013e-06 0.000386924 -4.92357e-06 0.000552791 -4.21059e-06 0.000694796 -7.08092e-07 0.000831293 3.98768e-06 0.000942371 7.77987e-06 0.00100976 1.16057e-05 0.00105391 1.35817e-05 0.00106575 1.50645e-05 0.00106524 1.58351e-05 0.00104473 1.70267e-05 0.00101831 1.75848e-05 0.000974846 1.80512e-05 0.000927454 1.77249e-05 0.000868991 1.69345e-05 0.000809502 1.61128e-05 0.000747671 1.50204e-05 0.000685144 1.40344e-05 0.000623204 1.30471e-05 0.000562181 1.18963e-05 0.000501875 1.07532e-05 0.000445082 9.77569e-06 0.000391357 8.72672e-06 0.000340034 7.91986e-06 0.000293883 6.92226e-06 0.000248284 6.17662e-06 0.000209967 5.23104e-06 0.000171398 4.76765e-06 0.000141404 4.1716e-06 0.000109563 3.89266e-06 8.45192e-05 3.40257e-06 5.7578e-05 3.13199e-06 3.5462e-05 2.71958e-06 1.35276e-05 2.61319e-06 -5.20925e-06 2.49615e-06 -2.41988e-05 2.67931e-06 -4.17577e-05 2.77546e-06 -6.12639e-05 2.74497e-06 -8.09953e-05 2.69295e-06 -0.000100244 2.67163e-06 -0.000119026 2.86569e-06 -0.000137384 3.10291e-06 -0.000157055 3.77647e-06 -0.000177784 4.17934e-06 -0.000203499 5.05623e-06 -0.000230168 5.03045e-06 -0.000265188 5.55535e-06 -0.000295374 5.53406e-06 -0.000331675 6.36233e-06 -0.000364573 6.41153e-06 -0.000406126 7.37116e-06 -0.000443171 7.27408e-06 -0.000489896 7.77094e-06 -0.000530044 8.88305e-06 -0.000578211 9.81025e-06 -0.000631334 1.07701e-05 -0.000687329 1.06616e-05 -0.000753631 1.1504e-05 -0.000811691 1.21712e-05 -0.00087655 1.19231e-05 -0.00094328 1.08316e-05 -0.00100552 1.0778e-05 -0.00105167 1.10083e-05 -0.00109385 1.09825e-05 -0.00112415 1.26609e-05 -0.00114092 1.52034e-05 -0.00114443 1.92245e-05 -0.0011263 2.5944e-05 -0.00108122 3.40747e-05 -0.0010036 4.32036e-05 -0.00089641 5.31261e-05 -0.000758542 6.27505e-05 -0.00059157 7.06462e-05 -0.000409982 7.54483e-05 -0.000207288 7.21417e-05 -1.58339e-05 6.65224e-05 0.000202019 5.64112e-05 0.00041517 4.52723e-05 0.00063147 3.50672e-05 0.000840421 2.87827e-05 0.00103201 2.52813e-05 0.00118627 2.48072e-05 0.00129761 2.78387e-05 0.0013551 3.11549e-05 0.00135496 3.33181e-05 0.00131315 3.28601e-05 0.00123763 3.05037e-05 0.00115037 2.74607e-05 0.00106041 2.45183e-05 0.000971572 2.22009e-05 0.000887255 2.00611e-05 0.000802919 1.84742e-05 0.000723271 1.6891e-05 0.000643784 1.49898e-05 0.00056701 1.29625e-05 0.000495978 1.08473e-05 0.000432251 9.28587e-06 0.000377544 8.30781e-06 0.000329813 7.50834e-06 0.000285191 6.79602e-06 0.000244123 6.12043e-06 0.000206175 5.52257e-06 0.000171365 4.77283e-06 0.000138092 4.19249e-06 0.000109697 3.74086e-06 8.40115e-05 3.25083e-06 6.01644e-05 2.82362e-06 3.9669e-05 2.43366e-06 2.10967e-05 1.79312e-06 3.68512e-06 1.5624e-06 -6.44185e-06 1.30536e-06 -1.93676e-05 7.58201e-07 -2.75439e-05 2.09033e-07 -3.35444e-05 1.84885e-08 -4.02029e-05 2.18976e-07 -4.24688e-05 3.81507e-07 -5.86009e-05 2.00437e-06 -6.04041e-05 5.09024e-06 -8.45777e-05 9.17518e-06 -0.000119972 1.04684e-05 -0.000186022 1.02679e-05 -0.000249368 9.23931e-06 -0.000310001 9.28358e-06 -0.00036055 9.96435e-06 -0.000414718 1.07612e-05 -0.000473771 1.17893e-05 -0.000539515 9.67205e-06 -0.000617567 7.00378e-06 -0.000673798 2.64627e-06 -0.000718437 1.19589e-06 -0.000719866 3.25579e-06 -0.000714619 7.29363e-06 -0.00072184 9.95274e-06 -0.000754764 1.06409e-05 -0.000805311 1.27125e-05 -0.000855597 1.32495e-05 -0.000919401 1.56943e-05 -0.000973572 1.76891e-05 -0.0010258 2.62285e-05 -0.00103998 3.47362e-05 -0.00104909 4.26963e-05 -0.00103367 4.66448e-05 -0.00101847 5.13873e-05 -0.000958744 5.37569e-05 -0.000893565 5.49396e-05 -0.000780458 6.27896e-05 -0.000608204 7.21685e-05 -0.000459743 9.19287e-05 -0.0003022 0.000113568 -0.000252423 0.000139655 -0.000271036 0.000188929 -0.000252551 0.000233441 0.000194422 0.00021362 0.000834194 0.000207213 0.00119879 0.000220204 0.00130955 0.000232269 0.00134168 0.000234888 0.00143872 0.000224932 0.00155772 0.00019737 0.00164157 0.000158337 0.00169571 0.000120702 0.00171035 9.29918e-05 0.00165393 7.57205e-05 0.00151434 6.08004e-05 0.00132832 4.66558e-05 0.00114802 3.56041e-05 0.000988585 2.72331e-05 0.000853053 2.10142e-05 0.000741728 1.66156e-05 0.000650184 1.3484e-05 0.00057252 1.13164e-05 0.000506225 9.85216e-06 0.000448925 8.87441e-06 0.000397567 8.16607e-06 0.000350645 7.59026e-06 0.000306945 7.1143e-06 0.000266415 6.77237e-06 0.000228877 6.5393e-06 0.000193533 6.41546e-06 0.000159942 6.37422e-06 0.000127747 6.37097e-06 9.64532e-05 6.43676e-06 6.60325e-05 6.58386e-06 3.65573e-05 6.75955e-06 8.34405e-06 7.07486e-06 -2.10481e-05 7.48275e-06 -5.01808e-05 7.90864e-06 -8.046e-05 8.36874e-06 -0.000111388 8.89002e-06 -0.000142823 9.31954e-06 -0.000176397 9.99029e-06 -0.000209273 1.07979e-05 -0.000244292 1.14526e-05 -0.000283115 1.21848e-05 -0.000321925 1.27971e-05 -0.000363842 1.33879e-05 -0.000406365 1.42306e-05 -0.000449088 1.48237e-05 -0.000495689 1.52896e-05 -0.000541802 1.60607e-05 -0.000590597 1.64991e-05 -0.000640078 1.68858e-05 -0.000688205 1.69844e-05 -0.000737422 1.70617e-05 -0.000783103 1.63968e-05 -0.000829338 1.57064e-05 -0.000867827 1.49368e-05 -0.000900499 1.13084e-05 -0.000932134 9.19558e-06 -0.000938289 6.85973e-06 -0.000941286 1.88689e-06 -0.000943709 1.01829e-07 -0.000899187 -6.22372e-06 -0.000876437 -1.27435e-05 -0.000809667 -1.54346e-05 -0.000710222 -2.3029e-05 -0.000613284 -2.77112e-05 -0.000465151 -2.68031e-05 -0.000296274 -2.7531e-05 -0.000147852 -2.99721e-05 -4.93202e-06 -3.39098e-05 0.000146261 -3.58079e-05 0.000313563 -3.62856e-05 0.00047841 -3.49738e-05 0.00063399 -3.16207e-05 0.000770863 -2.59971e-05 0.000885655 -2.12622e-05 0.000957609 -1.88608e-05 0.0009977 -1.42441e-05 0.00102646 -1.19901e-05 0.00102085 -9.7013e-06 0.00100412 -5.64537e-06 0.000974069 0.000917849 1.11891e-06 6.91281e-05 1.93736e-06 6.68242e-05 2.36089e-06 5.74827e-05 2.50361e-06 4.39832e-05 2.4977e-06 2.83377e-05 2.4426e-06 1.15971e-05 2.39599e-06 -5.86951e-06 2.3592e-06 -2.41598e-05 2.30376e-06 -4.3323e-05 2.22311e-06 -6.31994e-05 2.1265e-06 -8.35722e-05 2.07136e-06 -0.000104238 2.15211e-06 -0.000125411 2.50236e-06 -0.00014783 2.88018e-06 -0.000174736 3.07664e-06 -0.000205867 2.98802e-06 -0.000239741 2.8581e-06 -0.000274568 3.20192e-06 -0.000308862 3.53973e-06 -0.000348778 3.54856e-06 -0.00039306 3.46063e-06 -0.000438537 3.31012e-06 -0.000486299 3.06007e-06 -0.000534515 3.12795e-06 -0.000588141 3.10408e-06 -0.00063876 2.4363e-06 -0.000684875 2.15248e-06 -0.000740274 1.45298e-06 -0.000790836 3.55234e-07 -0.000842126 -6.12433e-07 -0.000884858 -2.04633e-06 -0.000923202 -5.04461e-06 -0.000959867 -6.06371e-06 -0.000960243 -8.54124e-06 -0.000970039 -1.2646e-05 -0.00096109 -1.44987e-05 -0.00091048 -1.88119e-05 -0.000868089 -2.00866e-05 -0.000769372 -2.01539e-05 -0.000660964 -2.1085e-05 -0.000551695 -2.09132e-05 -0.000422787 -2.09486e-05 -0.000285294 -1.9836e-05 -0.000134103 -1.89655e-05 4.28549e-06 -1.65537e-05 0.000157419 -1.45949e-05 0.000291255 -1.26727e-05 0.000426794 -7.74939e-06 0.000563459 -4.08656e-06 0.000672491 1.28485e-06 0.000770344 5.34072e-06 0.00084273 9.91954e-06 0.000898648 1.32943e-05 0.00093146 1.6117e-05 0.000946243 1.7727e-05 0.000943427 1.87423e-05 0.000930612 1.88391e-05 0.000907134 1.85316e-05 0.000875623 1.79806e-05 0.000838773 1.70051e-05 0.000796479 1.58065e-05 0.0007515 1.45917e-05 0.000705663 1.32682e-05 0.000658112 1.19396e-05 0.000610627 1.07715e-05 0.000563665 9.58417e-06 0.000515707 8.45621e-06 0.000468675 7.44762e-06 0.000423375 6.58061e-06 0.000379157 5.86157e-06 0.000336474 5.19248e-06 0.000295085 4.54242e-06 0.000255358 3.94665e-06 0.000218016 3.45829e-06 0.000183809 3.12314e-06 0.000150321 2.91509e-06 0.000121172 2.73608e-06 9.13234e-05 2.68796e-06 6.53234e-05 2.71837e-06 3.7906e-05 2.78497e-06 1.15939e-05 2.89385e-06 -1.65233e-05 2.87623e-06 -4.52196e-05 3.01964e-06 -7.10757e-05 2.98596e-06 -9.98075e-05 3.18241e-06 -0.000125468 3.30032e-06 -0.000153704 3.20013e-06 -0.000181393 3.47399e-06 -0.000207474 3.34331e-06 -0.000237937 3.73637e-06 -0.000262584 3.40137e-06 -0.000296595 3.85439e-06 -0.00031873 3.57066e-06 -0.000355202 4.20527e-06 -0.000377387 4.0523e-06 -0.000417718 4.9709e-06 -0.000443197 4.8596e-06 -0.000489504 5.92314e-06 -0.000519896 5.7558e-06 -0.000571684 6.6064e-06 -0.000609722 7.03967e-06 -0.000659251 6.99223e-06 -0.000708587 7.31562e-06 -0.000753411 6.4519e-06 -0.000804194 6.20585e-06 -0.000840394 4.76096e-06 -0.000885132 3.4538e-06 -0.000912377 1.84044e-06 -0.000939076 6.87035e-08 -0.0009543 -2.27782e-06 -0.000962848 -3.73232e-06 -0.000958925 -5.27479e-06 -0.000947163 -7.16388e-06 -0.000922601 -8.2675e-06 -0.000877415 -8.42881e-06 -0.00081319 -9.49439e-06 -0.000742525 -9.59432e-06 -0.000639482 -1.00707e-05 -0.000526381 -1.00688e-05 -0.000387546 -9.75155e-06 -0.000239526 -9.20397e-06 -8.06148e-05 -8.66405e-06 8.09695e-05 -7.11745e-06 0.000244388 -7.75485e-06 0.000387562 -6.35513e-06 0.000551392 -4.81416e-06 0.000693255 -1.3398e-06 0.000827818 3.39855e-06 0.000937632 7.27639e-06 0.00100589 1.08849e-05 0.0010503 1.27875e-05 0.00106385 1.41544e-05 0.00106388 1.48217e-05 0.00104406 1.57082e-05 0.00101742 1.58986e-05 0.000974655 1.59225e-05 0.00092743 1.52575e-05 0.000869656 1.43002e-05 0.000810459 1.33467e-05 0.000748624 1.22697e-05 0.000686221 1.13186e-05 0.000624155 1.04266e-05 0.000563073 9.44601e-06 0.000502856 8.54219e-06 0.000445986 7.73475e-06 0.000392164 6.91325e-06 0.000340856 6.27435e-06 0.000294522 5.47224e-06 0.000249086 4.88732e-06 0.000210552 4.13067e-06 0.000172155 3.76527e-06 0.000141769 3.30493e-06 0.000110023 3.11896e-06 8.47052e-05 2.74275e-06 5.79542e-05 2.551e-06 3.56537e-05 2.22014e-06 1.38585e-05 2.14432e-06 -5.13343e-06 2.06562e-06 -2.41201e-05 2.18116e-06 -4.18732e-05 2.2326e-06 -6.13153e-05 2.23819e-06 -8.10009e-05 2.20707e-06 -0.000100213 2.18564e-06 -0.000119005 2.30077e-06 -0.000137499 2.50453e-06 -0.000157258 2.99833e-06 -0.000178278 3.29521e-06 -0.000203796 3.94108e-06 -0.000230814 3.90156e-06 -0.000265149 4.305e-06 -0.000295778 4.36205e-06 -0.000331732 5.03467e-06 -0.000365246 5.13389e-06 -0.000406225 5.78076e-06 -0.000443818 5.7153e-06 -0.000489831 6.51442e-06 -0.000530843 7.34584e-06 -0.000579043 7.98184e-06 -0.00063197 8.71552e-06 -0.000688063 8.51205e-06 -0.000753428 9.17371e-06 -0.000812352 9.411e-06 -0.000876788 8.85572e-06 -0.000942725 7.60763e-06 -0.00100427 7.14403e-06 -0.00105121 6.65781e-06 -0.00109336 6.26099e-06 -0.00112375 6.59352e-06 -0.00114126 7.06117e-06 -0.0011449 8.28054e-06 -0.00112752 1.15219e-05 -0.00108446 1.6147e-05 -0.00100823 2.18354e-05 -0.000902099 2.83482e-05 -0.000765054 3.49479e-05 -0.000598169 4.03402e-05 -0.000415375 4.35237e-05 -0.000210471 4.1086e-05 -1.33962e-05 3.71576e-05 0.000205947 3.05256e-05 0.000421802 2.3862e-05 0.000638133 1.85044e-05 0.000845779 1.6359e-05 0.00103415 1.64974e-05 0.00118613 1.91475e-05 0.00129496 2.38401e-05 0.00135041 2.78155e-05 0.00135099 3.0002e-05 0.00131097 2.9349e-05 0.00123829 2.68926e-05 0.00115283 2.38838e-05 0.00106342 2.10234e-05 0.000974433 1.87773e-05 0.000889501 1.67634e-05 0.000804933 1.52693e-05 0.000724766 1.38281e-05 0.000645226 1.21876e-05 0.000568651 1.04633e-05 0.000497702 8.75556e-06 0.000433959 7.501e-06 0.000378799 6.67443e-06 0.000330639 6.00004e-06 0.000285865 5.41643e-06 0.000244707 4.87793e-06 0.000206714 4.39927e-06 0.000171843 3.79555e-06 0.000138696 3.34873e-06 0.000110144 2.95318e-06 8.44071e-05 2.56022e-06 6.05573e-05 2.23186e-06 3.99973e-05 1.9084e-06 2.14202e-05 1.4126e-06 4.18091e-06 1.26635e-06 -6.2956e-06 1.05087e-06 -1.91521e-05 6.39203e-07 -2.71322e-05 2.67677e-07 -3.31729e-05 1.86603e-07 -4.01218e-05 4.63692e-07 -4.27459e-05 6.49997e-07 -5.87872e-05 2.08055e-06 -6.18347e-05 4.06384e-06 -8.6561e-05 6.85748e-06 -0.000122766 7.90395e-06 -0.000187069 7.77162e-06 -0.000249236 6.97994e-06 -0.00030921 6.89724e-06 -0.000360467 7.40903e-06 -0.000415229 8.16756e-06 -0.00047453 9.15218e-06 -0.000540499 7.66409e-06 -0.000616079 5.32271e-06 -0.000671457 1.80961e-06 -0.000714924 6.89822e-07 -0.000718746 1.82175e-06 -0.000715751 4.28792e-06 -0.000724307 6.40122e-06 -0.000756877 7.34878e-06 -0.000806259 8.71925e-06 -0.000856967 8.49286e-06 -0.000919174 8.93645e-06 -0.000974016 8.21568e-06 -0.00102508 1.14959e-05 -0.00104327 1.67497e-05 -0.00105434 2.42579e-05 -0.00104118 2.82816e-05 -0.0010225 3.23316e-05 -0.000962794 3.39174e-05 -0.000895151 3.52876e-05 -0.000781829 4.25753e-05 -0.000615492 5.1004e-05 -0.000468171 6.72617e-05 -0.000318458 8.24037e-05 -0.000267565 9.73933e-05 -0.000286025 0.000137273 -0.000292431 0.000195549 0.000136147 0.000212614 0.000817129 0.000220151 0.00119125 0.000227992 0.00130171 0.000224586 0.00134509 0.000207043 0.00145626 0.000181559 0.0015832 0.000152312 0.00167082 0.000120747 0.00172728 9.44055e-05 0.0017367 7.68869e-05 0.00167145 6.48107e-05 0.00152641 5.18464e-05 0.00134129 3.96072e-05 0.00116026 3.02033e-05 0.000997988 2.29891e-05 0.000860267 1.76455e-05 0.000747071 1.38847e-05 0.000653945 1.12046e-05 0.0005752 9.34048e-06 0.000508089 8.07198e-06 0.000450194 7.19926e-06 0.000398439 6.55186e-06 0.000351293 6.02836e-06 0.000307468 5.60116e-06 0.000266843 5.28992e-06 0.000229189 5.07039e-06 0.000193753 4.94414e-06 0.000160069 4.88824e-06 0.000127802 4.86306e-06 9.64784e-05 4.8964e-06 6.59991e-05 4.98424e-06 3.64695e-05 5.12606e-06 8.20223e-06 5.34607e-06 -2.12682e-05 5.63845e-06 -5.04732e-05 5.95133e-06 -8.07729e-05 6.29662e-06 -0.000111733 6.69958e-06 -0.000143226 7.04264e-06 -0.00017674 7.57677e-06 -0.000209807 8.22874e-06 -0.000244944 8.77196e-06 -0.000283658 9.38238e-06 -0.000322535 9.91013e-06 -0.000364369 1.04279e-05 -0.000406883 1.11127e-05 -0.000449773 1.15921e-05 -0.000496168 1.19013e-05 -0.000542111 1.25943e-05 -0.00059129 1.29679e-05 -0.000640452 1.32814e-05 -0.000688518 1.33508e-05 -0.000737491 1.33472e-05 -0.000783099 1.27461e-05 -0.000828737 1.20975e-05 -0.000867179 1.12973e-05 -0.000899699 8.65429e-06 -0.000929491 7.25005e-06 -0.000936885 5.31207e-06 -0.000939348 1.49804e-06 -0.000939895 -2.95092e-08 -0.000897659 -4.97669e-06 -0.00087149 -1.00971e-05 -0.000804546 -1.26067e-05 -0.000707713 -1.83878e-05 -0.000607503 -2.18609e-05 -0.000461678 -2.12425e-05 -0.000296893 -2.1749e-05 -0.000147345 -2.36702e-05 -3.01086e-06 -2.67399e-05 0.000149331 -2.82912e-05 0.000315115 -2.86339e-05 0.000478752 -2.7554e-05 0.00063291 -2.49091e-05 0.000768219 -2.0527e-05 0.000881273 -1.67905e-05 0.000953873 -1.47021e-05 0.000995612 -1.1133e-05 0.00102289 -9.2505e-06 0.00101897 -7.3411e-06 0.00100221 -4.14285e-06 0.000970871 0.000913706 7.77622e-07 6.83504e-05 1.36792e-06 6.62339e-05 1.68236e-06 5.71683e-05 1.79487e-06 4.38706e-05 1.79853e-06 2.83341e-05 1.76492e-06 1.16307e-05 1.73676e-06 -5.84135e-06 1.7131e-06 -2.41361e-05 1.67532e-06 -4.32852e-05 1.62063e-06 -6.31447e-05 1.55536e-06 -8.3507e-05 1.52116e-06 -0.000104204 1.58593e-06 -0.000125476 1.84373e-06 -0.000148088 2.11757e-06 -0.00017501 2.27136e-06 -0.00020602 2.23701e-06 -0.000239706 2.17167e-06 -0.000274503 2.43419e-06 -0.000309125 2.69015e-06 -0.000349034 2.71915e-06 -0.000393089 2.69265e-06 -0.000438511 2.58463e-06 -0.000486191 2.47836e-06 -0.000534409 2.38899e-06 -0.000588052 2.25027e-06 -0.000638621 1.90404e-06 -0.000684529 1.87343e-06 -0.000740244 1.34107e-06 -0.000790304 5.55353e-07 -0.00084134 -3.18155e-07 -0.000883985 -1.4856e-06 -0.000922034 -3.99372e-06 -0.000957359 -4.69263e-06 -0.000959544 -6.5817e-06 -0.00096815 -9.35341e-06 -0.000958318 -1.04534e-05 -0.00090938 -1.37676e-05 -0.000864775 -1.48614e-05 -0.000768278 -1.5014e-05 -0.000660812 -1.57099e-05 -0.000550999 -1.55709e-05 -0.000422926 -1.54798e-05 -0.000285385 -1.45562e-05 -0.000135026 -1.37462e-05 3.47543e-06 -1.20088e-05 0.000155682 -1.05854e-05 0.000289831 -9.008e-06 0.000425217 -5.38552e-06 0.000559837 -2.36118e-06 0.000669467 1.66699e-06 0.000766316 4.81733e-06 0.00083958 8.20221e-06 0.000895263 1.07717e-05 0.00092889 1.28704e-05 0.000944144 1.4302e-05 0.000941996 1.53968e-05 0.000929518 1.57161e-05 0.000906815 1.55244e-05 0.000875815 1.50295e-05 0.000839268 1.41762e-05 0.000797333 1.31182e-05 0.000752558 1.20487e-05 0.000706733 1.09168e-05 0.000659244 9.79845e-06 0.000611745 8.84529e-06 0.000564618 7.89927e-06 0.000516653 6.98206e-06 0.000469592 6.1207e-06 0.000424237 5.35219e-06 0.000379925 4.70912e-06 0.000337117 4.12823e-06 0.000295666 3.58867e-06 0.000255898 3.12302e-06 0.000218481 2.78224e-06 0.00018415 2.54763e-06 0.000150556 2.37208e-06 0.000121348 2.23463e-06 9.14609e-05 2.19543e-06 6.53626e-05 2.20703e-06 3.78944e-05 2.21259e-06 1.15884e-05 2.27434e-06 -1.6585e-05 2.20548e-06 -4.51507e-05 2.2932e-06 -7.11635e-05 2.19332e-06 -9.97077e-05 2.30297e-06 -0.000125578 2.32706e-06 -0.000153728 2.29787e-06 -0.000181364 2.51427e-06 -0.000207691 2.37704e-06 -0.0002378 2.67499e-06 -0.000262882 2.43316e-06 -0.000296353 2.84485e-06 -0.000319141 2.59705e-06 -0.000354955 3.15661e-06 -0.000377946 2.95211e-06 -0.000417513 3.63313e-06 -0.000443878 3.39572e-06 -0.000489267 4.13971e-06 -0.00052064 3.87201e-06 -0.000571416 4.35401e-06 -0.000610204 4.56344e-06 -0.000659461 4.46696e-06 -0.00070849 4.78867e-06 -0.000753733 4.27472e-06 -0.00080368 4.50016e-06 -0.000840619 3.64109e-06 -0.000884273 3.1017e-06 -0.000911837 2.09322e-06 -0.000938067 1.0458e-06 -0.000953253 -3.57996e-07 -0.000961444 -1.83593e-06 -0.000957448 -4.02421e-06 -0.000944974 -6.59368e-06 -0.000920032 -8.34388e-06 -0.000875665 -8.65367e-06 -0.00081288 -9.93109e-06 -0.000741247 -9.94819e-06 -0.000639465 -1.02843e-05 -0.000526045 -1.00297e-05 -0.0003878 -9.50715e-06 -0.000240049 -8.97275e-06 -8.11492e-05 -8.43001e-06 8.04268e-05 -7.09832e-06 0.000243056 -7.17305e-06 0.000387636 -5.61889e-06 0.000549838 -3.66225e-06 0.000691299 -2.61047e-07 0.000824417 4.09432e-06 0.000933277 7.33629e-06 0.00100264 9.99804e-06 0.00104764 1.13449e-05 0.0010625 1.23e-05 0.00106292 1.26368e-05 0.00104372 1.30583e-05 0.001017 1.29823e-05 0.000974731 1.28201e-05 0.000927592 1.21673e-05 0.000870309 1.14266e-05 0.0008112 1.06287e-05 0.000749422 9.83463e-06 0.000687015 9.06397e-06 0.000624925 8.34577e-06 0.000563791 7.5354e-06 0.000503666 6.7905e-06 0.000446731 6.11589e-06 0.000392839 5.41677e-06 0.000341555 4.89606e-06 0.000295042 4.25433e-06 0.000249728 3.79881e-06 0.000211008 3.22531e-06 0.000172728 2.93531e-06 0.000142059 2.56547e-06 0.000110393 2.40869e-06 8.4862e-05 2.10771e-06 5.82552e-05 1.96094e-06 3.58005e-05 1.71066e-06 1.41088e-05 1.66203e-06 -5.08479e-06 1.603e-06 -2.40611e-05 1.72221e-06 -4.19924e-05 1.78054e-06 -6.13737e-05 1.75105e-06 -8.09714e-05 1.70147e-06 -0.000100163 1.68452e-06 -0.000118988 1.78023e-06 -0.000137595 1.9174e-06 -0.000157396 2.27614e-06 -0.000178637 2.51298e-06 -0.000204033 3.01356e-06 -0.000231314 2.97785e-06 -0.000265113 3.2631e-06 -0.000296063 3.21171e-06 -0.000331681 3.66309e-06 -0.000365697 3.62318e-06 -0.000406185 4.05294e-06 -0.000444248 3.89666e-06 -0.000489674 4.26586e-06 -0.000531212 4.65064e-06 -0.000579427 5.17166e-06 -0.000632491 6.03371e-06 -0.000688925 5.65576e-06 -0.00075305 5.92445e-06 -0.000812621 6.12962e-06 -0.000876993 5.728e-06 -0.000942323 4.63752e-06 -0.00100318 4.07555e-06 -0.00105065 3.4121e-06 -0.0010927 2.90071e-06 -0.00112324 2.65015e-06 -0.00114101 2.50729e-06 -0.00114475 2.66135e-06 -0.00112767 3.73592e-06 -0.00108554 6.02837e-06 -0.00101052 9.43497e-06 -0.000905505 1.33129e-05 -0.000768932 1.74008e-05 -0.000602257 2.10209e-05 -0.000418995 2.31886e-05 -0.000212639 2.14318e-05 -1.16394e-05 1.87665e-05 0.000208612 1.47204e-05 0.000425848 1.13416e-05 0.000641512 9.35744e-06 0.000847763 9.8506e-06 0.00103366 1.19268e-05 0.00118406 1.56578e-05 0.00129123 2.02389e-05 0.00134583 2.35288e-05 0.0013477 2.50234e-05 0.00130947 2.40649e-05 0.00123925 2.18079e-05 0.00115508 1.92282e-05 0.001066 1.68744e-05 0.000976786 1.50456e-05 0.00089133 1.34611e-05 0.000806518 1.22105e-05 0.000726016 1.10052e-05 0.000646431 9.63814e-06 0.000570018 8.23872e-06 0.000499102 6.88319e-06 0.000435315 5.8321e-06 0.00037985 5.1526e-06 0.000331319 4.57826e-06 0.00028644 4.08677e-06 0.000245199 3.64408e-06 0.000207156 3.26387e-06 0.000172224 2.80897e-06 0.000139151 2.47347e-06 0.00011048 2.19754e-06 8.4683e-05 1.90736e-06 6.08475e-05 1.67663e-06 4.02281e-05 1.4508e-06 2.1646e-05 1.04619e-06 4.58553e-06 9.24482e-07 -6.17389e-06 7.36063e-07 -1.89637e-05 3.97809e-07 -2.6794e-05 1.66134e-07 -3.29412e-05 1.95524e-07 -4.01512e-05 4.79619e-07 -4.303e-05 5.2143e-07 -5.8829e-05 1.3808e-06 -6.2694e-05 2.82531e-06 -8.80055e-05 5.01176e-06 -0.000124952 5.8049e-06 -0.000187862 5.73951e-06 -0.000249171 5.14166e-06 -0.000308612 5.1341e-06 -0.00036046 5.50054e-06 -0.000415596 6.07153e-06 -0.000475101 6.6334e-06 -0.000541061 5.54128e-06 -0.000614987 4.05893e-06 -0.000669974 1.27582e-06 -0.000712141 2.19177e-07 -0.000717689 9.6792e-07 -0.000716499 2.77914e-06 -0.000726118 4.33579e-06 -0.000758434 4.76312e-06 -0.000806686 5.6007e-06 -0.000857805 5.44948e-06 -0.000919023 5.18845e-06 -0.000973755 3.92158e-06 -0.00102381 4.46131e-06 -0.0010438 5.60563e-06 -0.00105549 9.5806e-06 -0.00104515 1.33301e-05 -0.00102624 1.87324e-05 -0.000968196 2.14271e-05 -0.000897846 2.33954e-05 -0.000783797 2.93482e-05 -0.000621444 3.50317e-05 -0.000473855 4.58511e-05 -0.000329277 5.537e-05 -0.000277084 6.32915e-05 -0.000293947 9.13741e-05 -0.000320514 0.000156153 7.13678e-05 0.000205456 0.000767826 0.000221908 0.0011748 0.000220232 0.00130338 0.000193668 0.00137165 0.000161388 0.00148854 0.000138937 0.00160565 0.000116765 0.00169299 9.53748e-05 0.00174867 7.92123e-05 0.00175286 6.89167e-05 0.00168174 5.95651e-05 0.00153576 4.73668e-05 0.00135349 3.58794e-05 0.00117175 2.69991e-05 0.00100687 2.01835e-05 0.000867083 1.51075e-05 0.000752147 1.14361e-05 0.000657617 8.80009e-06 0.000577836 7.04211e-06 0.000509847 5.9366e-06 0.000451299 5.23819e-06 0.000399138 4.76182e-06 0.000351769 4.39524e-06 0.000307835 4.09764e-06 0.00026714 3.876e-06 0.00022941 3.70799e-06 0.000193921 3.60135e-06 0.000160175 3.54946e-06 0.000127854 3.52286e-06 9.6505e-05 3.5482e-06 6.59738e-05 3.63066e-06 3.6387e-05 3.69671e-06 8.13618e-06 3.87875e-06 -2.14502e-05 4.10374e-06 -5.06982e-05 4.33405e-06 -8.10032e-05 4.57598e-06 -0.000111975 4.84204e-06 -0.000143492 5.06218e-06 -0.00017696 5.40437e-06 -0.000210149 5.80783e-06 -0.000245347 6.13256e-06 -0.000283983 6.49643e-06 -0.000322899 6.79401e-06 -0.000364667 7.10264e-06 -0.000407192 7.55792e-06 -0.000450228 7.95555e-06 -0.000496566 8.38968e-06 -0.000542545 9.06486e-06 -0.000591965 9.35578e-06 -0.000640743 9.61601e-06 -0.000688778 9.70224e-06 -0.000737577 9.78247e-06 -0.000783179 9.46019e-06 -0.000828415 9.05361e-06 -0.000866772 8.369e-06 -0.000899014 6.50974e-06 -0.000927632 5.45131e-06 -0.000935827 3.90607e-06 -0.000937803 1.00806e-06 -0.000936997 -2.19946e-07 -0.000896431 -4.04679e-06 -0.000867663 -7.59006e-06 -0.000801003 -9.64239e-06 -0.00070566 -1.37871e-05 -0.000603359 -1.61542e-05 -0.000459311 -1.56711e-05 -0.000297376 -1.5956e-05 -0.00014706 -1.73542e-05 -1.61268e-06 -1.9635e-05 0.000151611 -2.08486e-05 0.000316328 -2.10949e-05 0.000478999 -2.02578e-05 0.000632073 -1.82948e-05 0.000766255 -1.50793e-05 0.000878057 -1.22925e-05 0.000951086 -1.06097e-05 0.000993929 -7.98862e-06 0.00102027 -6.5201e-06 0.0010175 -5.03979e-06 0.00100073 -2.69254e-06 0.000968523 0.000911013 4.46212e-07 6.79042e-05 8.10943e-07 6.58692e-05 1.01259e-06 5.69667e-05 1.09027e-06 4.3793e-05 1.09936e-06 2.8325e-05 1.08389e-06 1.16461e-05 1.07256e-06 -5.83001e-06 1.06475e-06 -2.41283e-05 1.04863e-06 -4.32691e-05 1.0205e-06 -6.31166e-05 9.86173e-07 -8.34726e-05 9.71896e-07 -0.00010419 1.01997e-06 -0.000125524 1.19262e-06 -0.00014826 1.37409e-06 -0.000175192 1.4779e-06 -0.000206124 1.47513e-06 -0.000239703 1.46076e-06 -0.000274488 1.65397e-06 -0.000309318 1.84322e-06 -0.000349223 1.89556e-06 -0.000393141 1.9351e-06 -0.00043855 1.91722e-06 -0.000486173 1.99839e-06 -0.00053449 1.83642e-06 -0.00058789 1.66205e-06 -0.000638447 1.76078e-06 -0.000684628 1.63692e-06 -0.00074012 1.35891e-06 -0.000790026 9.61248e-07 -0.000840942 5.0757e-07 -0.000883531 -9.14957e-08 -0.000921435 -1.62472e-06 -0.000955826 -2.0565e-06 -0.000959112 -3.3748e-06 -0.000966831 -5.33691e-06 -0.000956356 -6.20842e-06 -0.000908508 -8.51976e-06 -0.000862463 -9.32834e-06 -0.00076747 -9.55513e-06 -0.000660585 -1.01578e-05 -0.000550397 -1.01848e-05 -0.000422899 -1.01985e-05 -0.000285372 -9.5986e-06 -0.000135626 -9.44987e-06 3.3267e-06 -8.43829e-06 0.00015467 -7.39608e-06 0.000288789 -6.00845e-06 0.000423829 -3.30452e-06 0.000557133 -8.52801e-07 0.000667015 2.14902e-06 0.000763314 4.65623e-06 0.000837072 7.16854e-06 0.000892751 9.10121e-06 0.000926958 1.05769e-05 0.000942668 1.13218e-05 0.000941251 1.16688e-05 0.000929171 1.15815e-05 0.000906902 1.11937e-05 0.000876203 1.06511e-05 0.00083981 9.91921e-06 0.000798065 9.08821e-06 0.000753389 8.26941e-06 0.000707552 7.42672e-06 0.000660086 6.61163e-06 0.00061256 5.90296e-06 0.000565327 5.18317e-06 0.000517373 4.49693e-06 0.000470279 3.90873e-06 0.000424825 3.42117e-06 0.000380413 3.01042e-06 0.000337528 2.62846e-06 0.000296048 2.25911e-06 0.000256267 1.93814e-06 0.000218802 1.72195e-06 0.000184366 1.5706e-06 0.000150707 1.43603e-06 0.000121482 1.33804e-06 9.15589e-05 1.29473e-06 6.5406e-05 1.28985e-06 3.78993e-05 1.36312e-06 1.15151e-05 1.39237e-06 -1.66143e-05 1.34722e-06 -4.51055e-05 1.44598e-06 -7.12622e-05 1.40035e-06 -9.9662e-05 1.49293e-06 -0.000125671 1.50578e-06 -0.000153741 1.41298e-06 -0.000181271 1.51917e-06 -0.000207797 1.41589e-06 -0.000237697 1.60275e-06 -0.000263069 1.39957e-06 -0.00029615 1.67509e-06 -0.000319417 1.50545e-06 -0.000354785 1.89729e-06 -0.000378338 1.73663e-06 -0.000417353 2.28883e-06 -0.00044443 2.11404e-06 -0.000489092 2.73427e-06 -0.00052126 2.50437e-06 -0.000571186 2.93222e-06 -0.000610632 3.03019e-06 -0.000659559 2.79541e-06 -0.000708256 2.93654e-06 -0.000753874 2.39321e-06 -0.000803136 2.46375e-06 -0.00084069 1.86794e-06 -0.000883677 1.71137e-06 -0.000911681 1.18781e-06 -0.000937543 7.49833e-07 -0.000952815 1.49437e-07 -0.000960844 -4.39395e-07 -0.000956859 -1.30475e-06 -0.000944109 -2.78025e-06 -0.000918556 -4.33538e-06 -0.00087411 -5.21245e-06 -0.000812003 -7.14356e-06 -0.000739316 -7.66825e-06 -0.000638941 -8.19236e-06 -0.00052552 -8.03809e-06 -0.000387954 -7.66134e-06 -0.000240425 -7.23721e-06 -8.15734e-05 -6.78634e-06 7.99759e-05 -5.59129e-06 0.000241861 -5.06255e-06 0.000387108 -3.28311e-06 0.000548058 -1.05102e-06 0.000689067 2.0068e-06 0.000821359 5.61862e-06 0.000929665 8.22882e-06 0.00100003 1.01807e-05 0.00104569 1.11435e-05 0.00106154 1.17023e-05 0.00106236 1.1833e-05 0.00104359 1.19656e-05 0.00101687 1.17489e-05 0.000974948 1.14089e-05 0.000927933 1.06973e-05 0.00087102 9.91598e-06 0.000811981 9.03168e-06 0.000750306 8.1477e-06 0.000687899 7.22903e-06 0.000625844 6.35485e-06 0.000564665 5.49264e-06 0.000504528 4.75379e-06 0.00044747 4.12942e-06 0.000393463 3.54101e-06 0.000342143 3.09122e-06 0.000295492 2.59641e-06 0.000250222 2.23986e-06 0.000211364 1.82934e-06 0.000173139 1.61252e-06 0.000142276 1.36453e-06 0.000110641 1.2613e-06 8.49652e-05 1.08739e-06 5.84291e-05 1.00039e-06 3.58875e-05 8.82785e-07 1.42264e-05 8.30427e-07 -5.03244e-06 7.64568e-07 -2.39952e-05 8.12877e-07 -4.20408e-05 8.34991e-07 -6.13958e-05 8.33463e-07 -8.09699e-05 8.20214e-07 -0.00010015 8.30571e-07 -0.000118998 9.03886e-07 -0.000137668 1.00823e-06 -0.0001575 1.22312e-06 -0.000178851 1.34618e-06 -0.000204156 1.64731e-06 -0.000231615 1.60622e-06 -0.000265072 1.85799e-06 -0.000296315 1.83341e-06 -0.000331656 2.15822e-06 -0.000366022 2.1005e-06 -0.000406127 2.46469e-06 -0.000444612 2.37114e-06 -0.000489581 2.60031e-06 -0.000531442 2.93081e-06 -0.000579758 3.32759e-06 -0.000632888 3.71646e-06 -0.000689314 3.54187e-06 -0.000752875 4.01457e-06 -0.000813094 4.1116e-06 -0.00087709 3.80563e-06 -0.000942017 3.00008e-06 -0.00100237 2.5076e-06 -0.00105015 1.79974e-06 -0.00109199 1.13145e-06 -0.00112257 5.81208e-07 -0.00114046 1.95002e-07 -0.00114437 4.9671e-08 -0.00112753 4.63784e-07 -0.00108595 1.71274e-06 -0.00101177 3.93721e-06 -0.00090773 6.67787e-06 -0.000771673 9.45331e-06 -0.000605033 1.16895e-05 -0.000421231 1.28725e-05 -0.000213822 1.19215e-05 -1.06883e-05 1.07207e-05 0.000209813 9.18179e-06 0.000427387 8.34002e-06 0.000642354 8.36985e-06 0.000847733 9.70892e-06 0.00103232 1.2093e-05 0.00118167 1.57355e-05 0.00128759 1.96237e-05 0.00134194 2.21621e-05 0.00134516 2.3023e-05 0.00130861 2.17511e-05 0.00124052 1.9464e-05 0.00115737 1.69641e-05 0.0010685 1.47179e-05 0.000979033 1.2902e-05 0.000893146 1.12969e-05 0.000808123 9.86322e-06 0.00072745 8.47595e-06 0.000647818 7.08334e-06 0.000571411 5.80558e-06 0.000500379 4.70922e-06 0.000436411 3.87927e-06 0.00038068 3.33955e-06 0.000331858 2.90757e-06 0.000286872 2.56027e-06 0.000245546 2.26249e-06 0.000207454 2.00796e-06 0.000172478 1.70269e-06 0.000139456 1.47658e-06 0.000110706 1.30438e-06 8.48552e-05 1.11578e-06 6.10361e-05 9.69497e-07 4.03744e-05 9.03585e-07 2.17119e-05 7.85502e-07 4.70361e-06 7.32439e-07 -6.12083e-06 5.93849e-07 -1.88251e-05 4.28297e-07 -2.66284e-05 2.49883e-07 -3.27628e-05 8.63687e-08 -3.99877e-05 1.62021e-07 -4.31057e-05 1.07759e-07 -5.87748e-05 4.55092e-07 -6.30414e-05 1.14022e-06 -8.86906e-05 2.26674e-06 -0.000126079 2.82035e-06 -0.000188415 3.10609e-06 -0.000249456 2.96994e-06 -0.000308476 3.05056e-06 -0.000360541 3.17607e-06 -0.000415721 3.46467e-06 -0.000475389 3.72235e-06 -0.000541319 3.06634e-06 -0.000614331 2.49543e-06 -0.000669404 8.94945e-07 -0.000710541 1.9444e-07 -0.000716989 7.51851e-07 -0.000717057 2.04552e-06 -0.000727412 2.9146e-06 -0.000759303 3.00476e-06 -0.000806776 3.54612e-06 -0.000858346 3.28157e-06 -0.000918759 2.8876e-06 -0.000973361 1.76169e-06 -0.00102268 1.47315e-06 -0.00104352 1.42455e-06 -0.00105544 2.60069e-06 -0.00104633 4.37541e-06 -0.00102802 9.19244e-06 -0.000973013 1.31784e-05 -0.000901832 1.68545e-05 -0.000787473 2.29611e-05 -0.000627551 2.74585e-05 -0.000478352 3.48074e-05 -0.000336626 3.91477e-05 -0.000281424 4.04654e-05 -0.000295265 5.97959e-05 -0.000339844 0.000128885 2.27828e-06 0.000197306 0.000699406 0.000217323 0.00115479 0.000203178 0.00131753 0.00016592 0.00140891 0.000135677 0.00151878 0.000115416 0.00162591 9.56548e-05 0.00171275 7.83805e-05 0.00176594 6.64643e-05 0.00176477 5.80529e-05 0.00169016 4.8436e-05 0.00154538 3.68999e-05 0.00136502 2.70545e-05 0.00118159 1.95645e-05 0.00101436 1.39222e-05 0.000872725 9.97091e-06 0.000756099 7.48889e-06 0.000660099 5.91267e-06 0.000579412 4.82354e-06 0.000510936 4.06037e-06 0.000452062 3.52203e-06 0.000399676 3.123e-06 0.000352168 2.80402e-06 0.000308154 2.55004e-06 0.000267394 2.37213e-06 0.000229588 2.25748e-06 0.000194036 2.19309e-06 0.00016024 2.16607e-06 0.000127881 2.14542e-06 9.65257e-05 2.1612e-06 6.5958e-05 2.20053e-06 3.63477e-05 2.2798e-06 8.05691e-06 2.42191e-06 -2.15923e-05 2.58294e-06 -5.08592e-05 2.75101e-06 -8.11712e-05 2.93121e-06 -0.000112155 3.13313e-06 -0.000143694 3.30731e-06 -0.000177135 3.56536e-06 -0.000210407 3.86847e-06 -0.00024565 4.11775e-06 -0.000284232 4.39526e-06 -0.000323177 4.62314e-06 -0.000364895 4.83642e-06 -0.000407405 5.09897e-06 -0.000450491 5.20733e-06 -0.000496674 5.2851e-06 -0.000542623 5.37045e-06 -0.00059205 5.49408e-06 -0.000640866 5.61766e-06 -0.000688902 5.61299e-06 -0.000737573 5.57428e-06 -0.000783141 5.24867e-06 -0.00082809 4.91006e-06 -0.000866433 4.42682e-06 -0.000898531 3.33936e-06 -0.000926544 2.70995e-06 -0.000935197 1.85366e-06 -0.000936947 1.08971e-07 -0.000935252 -5.74055e-07 -0.000895748 -2.98072e-06 -0.000865257 -5.13243e-06 -0.000798851 -6.51969e-06 -0.000704273 -9.08355e-06 -0.000600795 -1.04498e-05 -0.000457945 -9.99612e-06 -0.00029783 -9.97824e-06 -0.000147078 -1.08092e-05 -7.81697e-07 -1.21878e-05 0.00015299 -1.28685e-05 0.000317009 -1.29069e-05 0.000479037 -1.22974e-05 0.000631463 -1.10354e-05 0.000764993 -9.03905e-06 0.000876061 -7.2943e-06 0.000949341 -6.17245e-06 0.000992807 -4.56905e-06 0.00101867 -3.6214e-06 0.00101656 -2.66434e-06 0.000999769 -1.23173e-06 0.000967091 0.000909782 1.14453e-07 2.5406e-07 3.4439e-07 3.9252e-07 4.15355e-07 4.26563e-07 4.38744e-07 4.5198e-07 4.61173e-07 4.64767e-07 4.65689e-07 4.76437e-07 5.1747e-07 6.12839e-07 7.02483e-07 7.56058e-07 7.76542e-07 7.99064e-07 9.08996e-07 1.00143e-06 1.04228e-06 1.09049e-06 1.10933e-06 1.18359e-06 1.083e-06 1.01081e-06 1.16893e-06 1.03385e-06 9.12544e-07 6.30466e-07 3.64824e-07 2.17893e-08 -8.06533e-07 -1.09433e-06 -1.82089e-06 -2.89696e-06 -3.36412e-06 -4.46451e-06 -4.85507e-06 -4.90867e-06 -5.15852e-06 -5.41246e-06 -5.77564e-06 -5.71359e-06 -5.81789e-06 -5.18426e-06 -4.27671e-06 -2.98172e-06 -1.05216e-06 8.2771e-07 2.9198e-06 4.82178e-06 6.54249e-06 7.83858e-06 8.72861e-06 9.10596e-06 9.19533e-06 9.02906e-06 8.62623e-06 8.09923e-06 7.4682e-06 6.77737e-06 6.09643e-06 5.4169e-06 4.76375e-06 4.1738e-06 3.61177e-06 3.10609e-06 2.67675e-06 2.30237e-06 1.97498e-06 1.69247e-06 1.4516e-06 1.26507e-06 1.11968e-06 1.0078e-06 9.22262e-07 8.51513e-07 8.10858e-07 7.87565e-07 7.97433e-07 7.60644e-07 7.07633e-07 7.07685e-07 6.68889e-07 6.85795e-07 6.80063e-07 6.61928e-07 6.87986e-07 6.23111e-07 6.81954e-07 5.86317e-07 6.79344e-07 5.67636e-07 7.00774e-07 6.03662e-07 7.60714e-07 6.52415e-07 8.25702e-07 7.16143e-07 8.34428e-07 8.2848e-07 7.96856e-07 8.48004e-07 6.92759e-07 7.4052e-07 5.20898e-07 4.45555e-07 2.79971e-07 1.08717e-07 -1.36039e-07 -3.29116e-07 -5.33294e-07 -7.83975e-07 -1.00431e-06 -1.11859e-06 -1.54972e-06 -1.67362e-06 -1.76162e-06 -1.48201e-06 -9.50488e-07 -4.57298e-07 -5.75909e-08 8.52881e-07 1.77516e-06 3.34965e-06 4.95269e-06 6.76133e-06 8.51427e-06 9.6573e-06 1.02281e-05 1.02607e-05 1.00402e-05 9.65108e-06 9.21592e-06 8.60463e-06 7.88448e-06 6.98237e-06 6.04184e-06 5.11855e-06 4.28456e-06 3.58429e-06 3.01003e-06 2.5149e-06 2.11153e-06 1.78557e-06 1.50392e-06 1.30097e-06 1.09224e-06 9.5101e-07 8.10955e-07 7.34898e-07 6.42435e-07 6.0884e-07 5.516e-07 5.04658e-07 4.61387e-07 4.37806e-07 4.20995e-07 4.35469e-07 4.47131e-07 4.45183e-07 4.44287e-07 4.44317e-07 4.5886e-07 4.76064e-07 5.26451e-07 5.56431e-07 6.39985e-07 6.29029e-07 6.86218e-07 6.77388e-07 7.51381e-07 7.28909e-07 8.20453e-07 7.85792e-07 8.94164e-07 1.00997e-06 9.86544e-07 1.06491e-06 1.07479e-06 1.09959e-06 1.13793e-06 1.10246e-06 9.14209e-07 7.75913e-07 5.41214e-07 2.38159e-07 -1.42757e-07 -6.31635e-07 -1.06642e-06 -1.22012e-06 -8.4458e-07 3.0586e-07 2.58028e-06 5.70084e-06 8.82762e-06 1.07148e-05 1.07274e-05 1.0265e-05 9.78165e-06 9.87151e-06 1.05259e-05 1.19106e-05 1.39136e-05 1.62143e-05 1.80131e-05 1.88178e-05 1.82196e-05 1.62539e-05 1.3775e-05 1.13608e-05 9.27981e-06 7.56514e-06 6.12749e-06 4.97458e-06 4.03686e-06 3.23267e-06 2.56534e-06 2.0387e-06 1.65387e-06 1.41296e-06 1.21375e-06 1.05132e-06 9.255e-07 8.19476e-07 7.01348e-07 5.99107e-07 5.49773e-07 4.97229e-07 4.50424e-07 3.86741e-07 2.82083e-07 2.3302e-07 1.95643e-07 1.63817e-07 1.6877e-07 1.41886e-07 2.93298e-07 3.60268e-07 6.3689e-07 9.20113e-07 1.21089e-06 1.15905e-06 1.0501e-06 9.3108e-07 1.00228e-06 1.14185e-06 1.30003e-06 1.36498e-06 1.08436e-06 7.37336e-07 2.1509e-07 8.21247e-08 2.54153e-07 5.80164e-07 8.6518e-07 9.85844e-07 1.10002e-06 1.02423e-06 8.90951e-07 4.50621e-07 2.62317e-07 8.85764e-08 3.91112e-08 7.51981e-08 1.0258e-06 3.51284e-06 8.26888e-06 1.3764e-05 1.67661e-05 1.80885e-05 1.59036e-05 1.27835e-05 2.44355e-05 8.05043e-05 0.0001498 0.000173056 0.000146031 0.000109793 9.24781e-05 8.16949e-05 7.08349e-05 6.1433e-05 5.42316e-05 4.68634e-05 3.7281e-05 2.75021e-05 1.98477e-05 1.40364e-05 9.784e-06 6.93081e-06 5.13713e-06 3.94682e-06 3.13637e-06 2.58855e-06 2.20214e-06 1.92001e-06 1.70085e-06 1.52634e-06 1.39744e-06 1.30385e-06 1.23359e-06 1.18856e-06 1.16181e-06 1.16369e-06 1.16346e-06 1.25215e-06 1.30122e-06 1.37182e-06 1.44476e-06 1.52219e-06 1.61061e-06 1.67826e-06 1.78132e-06 1.90264e-06 1.99072e-06 2.10069e-06 2.18677e-06 2.26888e-06 2.38688e-06 2.45843e-06 2.58173e-06 2.59448e-06 2.60436e-06 2.61237e-06 2.55358e-06 2.49115e-06 2.28607e-06 2.07339e-06 1.8135e-06 1.23795e-06 8.76165e-07 4.5019e-07 -4.66773e-07 -7.10132e-07 -1.73003e-06 -2.69426e-06 -3.25508e-06 -4.19098e-06 -4.59798e-06 -4.42297e-06 -4.47153e-06 -4.92408e-06 -5.56986e-06 -5.90443e-06 -5.84301e-06 -5.40962e-06 -4.74906e-06 -3.78193e-06 -2.90571e-06 -2.26063e-06 -1.48535e-06 -9.83716e-07 -5.12207e-07 7.773e-08 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 60 ( 0.000151886 0.000151912 0.000151966 0.000152047 0.000152155 0.00015229 0.000152451 0.000152639 0.000152854 0.000153096 0.000153364 0.000153659 0.00015398 0.000154328 0.000154701 0.000155101 0.000155527 0.000155978 0.000156455 0.000156958 0.000157486 0.000158039 0.000158617 0.00015922 0.000159847 0.000160498 0.000161174 0.000161873 0.000162595 0.000163341 0.000164109 0.0001649 0.000165713 0.000166547 0.000167403 0.00016828 0.000168937 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } bottom { type calculated; value uniform 0; } outlet { type calculated; value nonuniform List<scalar> 60 ( 4.96315e-05 4.96241e-05 4.96092e-05 4.95868e-05 4.95567e-05 4.95189e-05 4.9473e-05 4.9419e-05 4.93565e-05 4.92853e-05 4.92049e-05 4.91151e-05 4.90153e-05 4.89052e-05 4.87841e-05 4.86517e-05 4.85072e-05 4.835e-05 4.81795e-05 4.79949e-05 4.77953e-05 4.75801e-05 4.73482e-05 4.70987e-05 4.68306e-05 4.65429e-05 4.62343e-05 4.59038e-05 4.555e-05 4.51717e-05 4.47673e-05 4.43355e-05 4.38747e-05 4.33832e-05 4.28593e-05 4.23012e-05 4.1707e-05 4.10747e-05 4.04022e-05 3.96872e-05 3.90273e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } atmosphere { type calculated; value nonuniform List<scalar> 357 ( 6.77898e-05 6.57296e-05 5.68763e-05 4.37448e-05 2.83022e-05 1.16349e-05 -5.8422e-06 -2.41416e-05 -4.32783e-05 -6.31202e-05 -8.34736e-05 -0.000104201 -0.000125565 -0.000148356 -0.000175281 -0.000206178 -0.000239724 -0.000274511 -0.000309428 -0.000349316 -0.000393182 -0.000438598 -0.000486191 -0.000534564 -0.000587789 -0.000638375 -0.000684786 -0.000739985 -0.000789905 -0.00084066 -0.000883266 -0.000921092 -0.000954998 -0.000958825 -0.000966105 -0.00095528 -0.000908041 -0.000861363 -0.000767079 -0.000660532 -0.000550147 -0.000422645 -0.000285008 -0.000135688 3.431e-06 0.000154037 0.000287881 0.000422534 0.000555203 0.000665135 0.000761222 0.00083517 0.00089103 0.000925662 0.000941778 0.000940873 0.000929081 0.000907068 0.000876606 0.000840337 0.000798696 0.00075408 0.000708233 0.000660766 0.000613213 0.000565917 0.000517935 0.000470784 0.000425254 0.000380787 0.000337855 0.00029633 0.000256508 0.000218989 0.000184512 0.000150819 0.000121568 9.16296e-05 6.54466e-05 3.79226e-05 1.15052e-05 -1.65775e-05 -4.50525e-05 -7.12623e-05 -9.96232e-05 -0.000125688 -0.000153735 -0.000181253 -0.000207823 -0.000237632 -0.000263127 -0.000296054 -0.00031951 -0.000354673 -0.000378471 -0.000417256 -0.000444587 -0.000488984 -0.000521433 -0.000571076 -0.00061075 -0.000659553 -0.000708224 -0.000753925 -0.000802981 -0.000840738 -0.000883457 -0.000911606 -0.000937378 -0.000952644 -0.000960599 -0.000956666 -0.000943905 -0.000918306 -0.00087389 -0.000811889 -0.000738885 -0.000638817 -0.000525432 -0.000388234 -0.000240957 -8.20666e-05 7.95762e-05 0.000240951 0.000386185 0.000546484 0.000687464 0.000819551 0.000927912 0.00099889 0.00104512 0.00106151 0.00106258 0.00104398 0.0010173 0.000975559 0.000928653 0.000871922 0.000812922 0.00075123 0.000688733 0.000626544 0.000565239 0.000505024 0.000447873 0.000393789 0.000342425 0.000295695 0.000250431 0.000211505 0.000173279 0.000142352 0.000110733 8.49988e-05 5.84863e-05 3.59345e-05 1.42696e-05 -5.00885e-06 -2.39784e-05 -4.20552e-05 -6.14074e-05 -8.0968e-05 -0.000100149 -0.000118998 -0.000137683 -0.000157517 -0.000178902 -0.000204186 -0.000231699 -0.000265061 -0.000296372 -0.000331647 -0.000366096 -0.000406105 -0.000444703 -0.000489546 -0.00053155 -0.000579874 -0.000632865 -0.000689392 -0.000752885 -0.000813119 -0.000877128 -0.000941982 -0.00100218 -0.00105002 -0.00109175 -0.00112227 -0.00114007 -0.00114388 -0.00112709 -0.0010858 -0.00101215 -0.00090888 -0.000773947 -0.000608153 -0.000424358 -0.000215709 -1.07009e-05 0.000210276 0.00042787 0.000642264 0.000847078 0.00103094 0.00117967 0.00128529 0.00134014 0.00134436 0.00130921 0.00124248 0.00115985 0.00107091 0.000981114 0.00089486 0.000809561 0.000728603 0.000648756 0.000572215 0.000501047 0.000436938 0.000381065 0.000332099 0.000287071 0.000245708 0.00020758 0.000172584 0.000139574 0.000110808 8.49045e-05 6.10887e-05 4.04212e-05 2.17756e-05 4.80827e-06 -6.07177e-06 -1.87877e-05 -2.65966e-05 -3.27677e-05 -3.99608e-05 -4.32571e-05 -5.88418e-05 -6.3318e-05 -8.89739e-05 -0.00012637 -0.000188363 -0.000249348 -0.000308357 -0.000360612 -0.000415861 -0.000475547 -0.000541384 -0.00061405 -0.000669057 -0.000710018 -0.000716856 -0.000717229 -0.000727738 -0.000759588 -0.000806897 -0.000858461 -0.000918683 -0.000973228 -0.00102224 -0.00104333 -0.00105527 -0.00104628 -0.00102806 -0.000973964 -0.000904319 -0.000792229 -0.000633046 -0.000481355 -0.000337949 -0.000279239 -0.000292144 -0.000351496 -5.37905e-05 0.00063011 0.00113153 0.00134456 0.00144515 0.0015361 0.0016367 0.00172361 0.00177535 0.00177198 0.00169752 0.00155496 0.0013748 0.00118925 0.00102017 0.000876977 0.000758952 0.000661892 0.000580602 0.000511747 0.00045261 0.000400063 0.00035245 0.000308373 0.000267569 0.000229717 0.000194129 0.00016031 0.000127926 9.65524e-05 6.59561e-05 3.63479e-05 7.96822e-06 -2.16414e-05 -5.09298e-05 -8.12442e-05 -0.000112233 -0.000143782 -0.000177202 -0.00021051 -0.000245771 -0.00028432 -0.000323287 -0.000364981 -0.000407487 -0.000450609 -0.000496746 -0.000542747 -0.000592063 -0.000640876 -0.00068891 -0.000737514 -0.000783078 -0.000827885 -0.000866221 -0.000898271 -0.000925969 -0.000934836 -0.000936521 -0.000934336 -0.000895505 -0.000864237 -0.000797887 -0.000703712 -0.000599859 -0.000457538 -0.000298005 -0.00014703 -3.29162e-07 0.000153636 0.000317344 0.000478976 0.00063103 0.000764333 0.000875094 0.000948465 0.000992162 0.00101789 0.00101605 0.000999297 0.000966501 0.000909859 ) ; } frontBack { type empty; value nonuniform 0(); } } // ************************************************************************* //
d91e4422be2d2154e09a7d607bab9830da26fe91
da1ba0378e1ed8ff8380afb9072efcd3bbead74e
/google/cloud/storagetransfer/internal/storage_transfer_connection_impl.h
d404de436deb1e0fd6684942ee251ccc0897c55d
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Jseph/google-cloud-cpp
76894af7ce744cd44304b48bea32d5116ded7497
fd8e70650ebac0c10bac4b293972e79eef46b128
refs/heads/master
2022-10-18T13:07:01.710328
2022-10-01T18:16:16
2022-10-01T18:16:16
192,397,663
0
0
null
2019-06-17T18:22:36
2019-06-17T18:22:35
null
UTF-8
C++
false
false
6,782
h
storage_transfer_connection_impl.h
// Copyright 2022 Google LLC // // 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 // // https://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. // Generated by the Codegen C++ plugin. // If you make any local changes, they will be lost. // source: google/storagetransfer/v1/transfer.proto #ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGETRANSFER_INTERNAL_STORAGE_TRANSFER_CONNECTION_IMPL_H #define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGETRANSFER_INTERNAL_STORAGE_TRANSFER_CONNECTION_IMPL_H #include "google/cloud/storagetransfer/internal/storage_transfer_retry_traits.h" #include "google/cloud/storagetransfer/internal/storage_transfer_stub.h" #include "google/cloud/storagetransfer/storage_transfer_connection.h" #include "google/cloud/storagetransfer/storage_transfer_connection_idempotency_policy.h" #include "google/cloud/storagetransfer/storage_transfer_options.h" #include "google/cloud/background_threads.h" #include "google/cloud/backoff_policy.h" #include "google/cloud/future.h" #include "google/cloud/options.h" #include "google/cloud/polling_policy.h" #include "google/cloud/status_or.h" #include "google/cloud/stream_range.h" #include "google/cloud/version.h" #include <google/longrunning/operations.grpc.pb.h> #include <memory> namespace google { namespace cloud { namespace storagetransfer_internal { GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN class StorageTransferServiceConnectionImpl : public storagetransfer::StorageTransferServiceConnection { public: ~StorageTransferServiceConnectionImpl() override = default; StorageTransferServiceConnectionImpl( std::unique_ptr<google::cloud::BackgroundThreads> background, std::shared_ptr<storagetransfer_internal::StorageTransferServiceStub> stub, Options options); Options options() override { return options_; } StatusOr<google::storagetransfer::v1::GoogleServiceAccount> GetGoogleServiceAccount( google::storagetransfer::v1::GetGoogleServiceAccountRequest const& request) override; StatusOr<google::storagetransfer::v1::TransferJob> CreateTransferJob( google::storagetransfer::v1::CreateTransferJobRequest const& request) override; StatusOr<google::storagetransfer::v1::TransferJob> UpdateTransferJob( google::storagetransfer::v1::UpdateTransferJobRequest const& request) override; StatusOr<google::storagetransfer::v1::TransferJob> GetTransferJob( google::storagetransfer::v1::GetTransferJobRequest const& request) override; StreamRange<google::storagetransfer::v1::TransferJob> ListTransferJobs( google::storagetransfer::v1::ListTransferJobsRequest request) override; Status PauseTransferOperation( google::storagetransfer::v1::PauseTransferOperationRequest const& request) override; Status ResumeTransferOperation( google::storagetransfer::v1::ResumeTransferOperationRequest const& request) override; future<StatusOr<google::storagetransfer::v1::TransferOperation>> RunTransferJob(google::storagetransfer::v1::RunTransferJobRequest const& request) override; Status DeleteTransferJob( google::storagetransfer::v1::DeleteTransferJobRequest const& request) override; StatusOr<google::storagetransfer::v1::AgentPool> CreateAgentPool( google::storagetransfer::v1::CreateAgentPoolRequest const& request) override; StatusOr<google::storagetransfer::v1::AgentPool> UpdateAgentPool( google::storagetransfer::v1::UpdateAgentPoolRequest const& request) override; StatusOr<google::storagetransfer::v1::AgentPool> GetAgentPool( google::storagetransfer::v1::GetAgentPoolRequest const& request) override; StreamRange<google::storagetransfer::v1::AgentPool> ListAgentPools( google::storagetransfer::v1::ListAgentPoolsRequest request) override; Status DeleteAgentPool( google::storagetransfer::v1::DeleteAgentPoolRequest const& request) override; private: std::unique_ptr<storagetransfer::StorageTransferServiceRetryPolicy> retry_policy() { auto const& options = internal::CurrentOptions(); if (options .has<storagetransfer::StorageTransferServiceRetryPolicyOption>()) { return options .get<storagetransfer::StorageTransferServiceRetryPolicyOption>() ->clone(); } return options_ .get<storagetransfer::StorageTransferServiceRetryPolicyOption>() ->clone(); } std::unique_ptr<BackoffPolicy> backoff_policy() { auto const& options = internal::CurrentOptions(); if (options.has< storagetransfer::StorageTransferServiceBackoffPolicyOption>()) { return options .get<storagetransfer::StorageTransferServiceBackoffPolicyOption>() ->clone(); } return options_ .get<storagetransfer::StorageTransferServiceBackoffPolicyOption>() ->clone(); } std::unique_ptr< storagetransfer::StorageTransferServiceConnectionIdempotencyPolicy> idempotency_policy() { auto const& options = internal::CurrentOptions(); if (options.has< storagetransfer:: StorageTransferServiceConnectionIdempotencyPolicyOption>()) { return options .get<storagetransfer:: StorageTransferServiceConnectionIdempotencyPolicyOption>() ->clone(); } return options_ .get<storagetransfer:: StorageTransferServiceConnectionIdempotencyPolicyOption>() ->clone(); } std::unique_ptr<PollingPolicy> polling_policy() { auto const& options = internal::CurrentOptions(); if (options.has< storagetransfer::StorageTransferServicePollingPolicyOption>()) { return options .get<storagetransfer::StorageTransferServicePollingPolicyOption>() ->clone(); } return options_ .get<storagetransfer::StorageTransferServicePollingPolicyOption>() ->clone(); } std::unique_ptr<google::cloud::BackgroundThreads> background_; std::shared_ptr<storagetransfer_internal::StorageTransferServiceStub> stub_; Options options_; }; GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END } // namespace storagetransfer_internal } // namespace cloud } // namespace google #endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGETRANSFER_INTERNAL_STORAGE_TRANSFER_CONNECTION_IMPL_H