blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
bf0e5115c3515aafd6db99996ca1dd05b008fd9a
8e989f9e239f75b599340e2fa491cb1a35d76c25
/GammaRay/Scene/Components/3D/Mesh.h
c315af43bdc37f968f829f90c4fcc46b96e10982
[]
no_license
WiggleWizard/GammaRay
3a9dba92140f85583efcb7d6cc29966dd845b924
79df013c1f44f474313f96627d9d5032921005b5
refs/heads/master
2023-02-21T04:15:33.888504
2021-01-18T19:49:00
2021-01-18T19:49:00
324,452,068
2
1
null
2021-01-05T23:42:19
2020-12-26T00:01:10
C++
UTF-8
C++
false
false
347
h
#pragma once #include "Core/Object/Component.h" #include <memory> class VertexBuffer; class IndexBuffer; class VertexArray; struct ComponentMesh3D : public Component { std::shared_ptr<VertexBuffer> vertices = nullptr; std::shared_ptr<IndexBuffer> indices = nullptr; std::shared_ptr<VertexArray> vertexArray = nullptr; };
[ "1405402+WiggleWizard@users.noreply.github.com" ]
1405402+WiggleWizard@users.noreply.github.com
36a3fd69508c7cd5b45cd18e2fb50f4137fa6089
ba1c94f6272d4a94726c7719ec71247bf58bdbf9
/src/quicksort.hpp
d4a4e362296ffe96ca736931cd1f636e70818a4d
[]
no_license
jptbrandao/Master-Thesis
23bc496f6e2c13f90a716d733bf5a4e147c68227
1e0b8d0775d3f50740947670993952e1817c2346
refs/heads/master
2020-04-10T02:57:10.870772
2018-12-07T02:21:48
2018-12-07T02:21:48
160,756,667
0
0
null
null
null
null
UTF-8
C++
false
false
516
hpp
#ifndef quicksort_hpp #define quicksort_hpp #include <vector> #include "DataStructures/Data.hpp" #include "DataStructures/Solution.hpp" using namespace std; int customSort(Data &myD, vector<double> &v, int low, int high, Solution &candidate); void printVector(vector<double> &v, int start, int end); void greedyStrong(Data &myD, double lambda, Solution &left, Solution &right); void simpleGreedy(Data &myD, Solution &sol); void convexSum( Data &myD, Solution &left, Solution &right, Solution &cand); #endif
[ "brandao@Joaos-MacBook-Pro-2.local" ]
brandao@Joaos-MacBook-Pro-2.local
c88bd3c98880a42aeffa264568274391dbf32461
9d364070c646239b2efad7abbab58f4ad602ef7b
/platform/external/chromium_org/gpu/command_buffer/service/query_manager.h
d8a9f4c959ff8691985a61bfb8e6b57340ba706e
[ "BSD-3-Clause" ]
permissive
denix123/a32_ul
4ffe304b13c1266b6c7409d790979eb8e3b0379c
b2fd25640704f37d5248da9cc147ed267d4771c2
refs/heads/master
2021-01-17T20:21:17.196296
2016-08-16T04:30:53
2016-08-16T04:30:53
65,786,970
0
2
null
2020-03-06T22:00:52
2016-08-16T04:15:54
null
UTF-8
C++
false
false
4,683
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_COMMAND_BUFFER_SERVICE_QUERY_MANAGER_H_ #define GPU_COMMAND_BUFFER_SERVICE_QUERY_MANAGER_H_ #include <deque> #include <vector> #include "base/atomicops.h" #include "base/basictypes.h" #include "base/containers/hash_tables.h" #include "base/logging.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "gpu/command_buffer/service/feature_info.h" #include "gpu/gpu_export.h" namespace gpu { class GLES2Decoder; namespace gles2 { class FeatureInfo; class GPU_EXPORT QueryManager { public: class GPU_EXPORT Query : public base::RefCounted<Query> { public: Query( QueryManager* manager, GLenum target, int32 shm_id, uint32 shm_offset); GLenum target() const { return target_; } bool IsDeleted() const { return deleted_; } bool IsValid() const { return target() && !IsDeleted(); } bool pending() const { return pending_; } int32 shm_id() const { return shm_id_; } uint32 shm_offset() const { return shm_offset_; } virtual bool Begin() = 0; virtual bool End(base::subtle::Atomic32 submit_count) = 0; virtual bool Process() = 0; virtual void Destroy(bool have_context) = 0; void AddCallback(base::Closure callback); protected: virtual ~Query(); QueryManager* manager() const { return manager_; } void MarkAsDeleted() { deleted_ = true; } bool MarkAsCompleted(uint64 result); void MarkAsPending(base::subtle::Atomic32 submit_count) { DCHECK(!pending_); pending_ = true; submit_count_ = submit_count; } void UnmarkAsPending() { DCHECK(pending_); pending_ = false; } bool AddToPendingQueue(base::subtle::Atomic32 submit_count) { return manager_->AddPendingQuery(this, submit_count); } bool AddToPendingTransferQueue(base::subtle::Atomic32 submit_count) { return manager_->AddPendingTransferQuery(this, submit_count); } void BeginQueryHelper(GLenum target, GLuint id) { manager_->BeginQueryHelper(target, id); } void EndQueryHelper(GLenum target) { manager_->EndQueryHelper(target); } base::subtle::Atomic32 submit_count() const { return submit_count_; } private: friend class QueryManager; friend class QueryManagerTest; friend class base::RefCounted<Query>; void RunCallbacks(); QueryManager* manager_; GLenum target_; int32 shm_id_; uint32 shm_offset_; base::subtle::Atomic32 submit_count_; bool pending_; bool deleted_; std::vector<base::Closure> callbacks_; }; QueryManager( GLES2Decoder* decoder, FeatureInfo* feature_info); ~QueryManager(); void Destroy(bool have_context); Query* CreateQuery( GLenum target, GLuint client_id, int32 shm_id, uint32 shm_offset); Query* GetQuery(GLuint client_id); void RemoveQuery(GLuint client_id); bool BeginQuery(Query* query); bool EndQuery(Query* query, base::subtle::Atomic32 submit_count); bool ProcessPendingQueries(); bool HavePendingQueries(); bool ProcessPendingTransferQueries(); bool HavePendingTransferQueries(); GLES2Decoder* decoder() const { return decoder_; } void GenQueries(GLsizei n, const GLuint* queries); bool IsValidQuery(GLuint id); private: void StartTracking(Query* query); void StopTracking(Query* query); void BeginQueryHelper(GLenum target, GLuint id); void EndQueryHelper(GLenum target); bool AddPendingQuery(Query* query, base::subtle::Atomic32 submit_count); bool AddPendingTransferQuery(Query* query, base::subtle::Atomic32 submit_count); bool RemovePendingQuery(Query* query); GLenum AdjustTargetForEmulation(GLenum target); GLES2Decoder* decoder_; bool use_arb_occlusion_query2_for_occlusion_query_boolean_; bool use_arb_occlusion_query_for_occlusion_query_boolean_; unsigned query_count_; typedef base::hash_map<GLuint, scoped_refptr<Query> > QueryMap; QueryMap queries_; typedef base::hash_set<GLuint> GeneratedQueryIds; GeneratedQueryIds generated_query_ids_; typedef std::deque<scoped_refptr<Query> > QueryQueue; QueryQueue pending_queries_; QueryQueue pending_transfer_queries_; DISALLOW_COPY_AND_ASSIGN(QueryManager); }; } } #endif
[ "allegrant@mail.ru" ]
allegrant@mail.ru
f73f649e75e88cee5c91b4e44019f0e1c418c600
1843944284aa420e90f634714e8406e96ca84914
/Tupleple.hpp
e4d24976c6891bc4fc1246cc68e6a1e1189ba1d6
[]
no_license
Fuyutsubaki/Logic
8e664c2d5caebc2f8ced208fcb90fc41fdc80860
93b8499af245bb8df3602a53a66cc6dd551178ee
refs/heads/master
2020-06-26T09:02:25.501975
2014-02-19T15:10:38
2014-02-19T15:10:38
null
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
6,471
hpp
#pragma once namespace tupleple { template<class T, class ...R> auto cons(const T&lhs, const std::tuple<R...>&rhs) ->decltype(std::tuple_cat(std::make_tuple(lhs), rhs)) { return std::tuple_cat( std::make_tuple(lhs) , rhs); } template<class T, class ...R> auto cons_back(const std::tuple<R...>&lhs, const T&rhs) ->decltype(std::tuple_cat(lhs, std::make_tuple(rhs))) { return std::tuple_cat( lhs , std::make_tuple(rhs)); } namespace deteil { template<bool end, size_t N, class LTuple, class RTuple> struct zip_impl2; template<size_t N, class LTuple, class RTuple> struct zip_impl :zip_impl2<N == std::tuple_size<LTuple>::value, N, LTuple, RTuple> {}; template<size_t N, class LTuple, class RTuple> struct zip_impl2<false, N, LTuple, RTuple> { using Rest = zip_impl<N + 1, LTuple, RTuple>; static auto zip(const LTuple&lhs, const RTuple&rhs) ->decltype(cons(std::make_tuple(std::get<N>(lhs), std::get<N>(rhs)), Rest::zip(lhs, rhs))) { return cons(std::make_tuple(std::get<N>(lhs), std::get<N>(rhs)), Rest::zip(lhs, rhs)); } }; template<size_t N, class LTuple, class RTuple> struct zip_impl2<true, N, LTuple, RTuple> { static std::tuple<> zip(const LTuple&lhs, const RTuple&rhs) { return std::tuple<>(); } }; } template<class LTuple, class RTuple> auto zip(const LTuple&lhs, const RTuple&rhs) ->decltype(deteil::zip_impl<0, LTuple, RTuple>::zip(lhs, rhs)) { return deteil::zip_impl<0, LTuple, RTuple>::zip(lhs, rhs); } namespace deteil { template<bool, class T, class Tuple> struct cons_if_impl2; template< class T, class Tuple> struct cons_if_impl2<true, T, Tuple> { static auto cons_if(const T&t, const Tuple&tuple) ->decltype(cons(t, tuple)) { return cons(t, tuple); } }; template< class T, class Tuple> struct cons_if_impl2<false, T, Tuple> { static Tuple cons_if(const T&t, const Tuple&tuple) { return tuple; } }; template<class T, class Tuple, template<class T> class Pred_class > struct cons_if_impl :cons_if_impl2<Pred_class<T>::value, T, Tuple> {}; template< template<class T> class Pred_class, class T, class Tuple> auto cons_if(const T&t, const Tuple&tuple) ->decltype(cons_if_impl<T, Tuple, Pred_class>::cons_if(t, tuple)) { return cons_if_impl<T, Tuple, Pred_class>::cons_if(t, tuple); } template<bool end, size_t N, class Tuple, template<class T> class Pred_class> struct filter_impl2; template<size_t N, class Tuple, template<class T> class Pred_class> struct filter_impl :filter_impl2<N == std::tuple_size<Tuple>::value, N, Tuple, Pred_class> { }; template<size_t N, class Tuple, template<class T> class Pred_class> struct filter_impl2<false, N, Tuple, Pred_class> { using element = typename std::tuple_element<N, Tuple>::type; static auto filter(const Tuple&tuple) ->decltype(cons_if<Pred_class>(std::get<N>(tuple), filter_impl<N + 1, Tuple, Pred_class>::filter(tuple))) { return cons_if<Pred_class>(std::get<N>(tuple), filter_impl<N + 1, Tuple, Pred_class>::filter(tuple)); } }; template<size_t N, class Tuple, template<class T> class Pred_class> struct filter_impl2<true, N, Tuple, Pred_class> { static std::tuple<> filter(const Tuple&tuple) { return std::tuple<>(); } }; } template <template<class T> class Pred_class, class Tuple> auto filter(const Tuple&tuple) ->decltype(deteil::filter_impl<0, Tuple, Pred_class>::filter(tuple)) { return deteil::filter_impl<0, Tuple, Pred_class>::filter(tuple); } class find_default_type{}; namespace deteil { template<bool end, size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl2; template<size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl :find_if_impl2<N == std::tuple_size<Tuple>::value, N, Tuple, Pred_class> {}; template<bool r, size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl3; template<size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl3<false, N, Tuple, Pred_class> { using Rest = find_if_impl<N + 1, Tuple, Pred_class>; static auto find_if(const Tuple&tuple) ->decltype(Rest::find_if(tuple)) { return Rest::find_if(tuple); } }; template<size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl3<true, N, Tuple, Pred_class> { static typename std::tuple_element<N, Tuple>::type find_if(const Tuple&tuple) { auto n = N; //std::string ss=typeid(Pred_class).name() auto r = Pred_class<typename std::tuple_element<N, Tuple>::type>::value; std::string s=typeid(typename std::tuple_element<N, Tuple>::type).name(); return std::get<N>(tuple); } }; template<size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl2<false, N, Tuple, Pred_class> :find_if_impl3<Pred_class<typename std::tuple_element<N, Tuple>::type>::value, N, Tuple, Pred_class> {}; template<size_t N, class Tuple, template<class T>class Pred_class> struct find_if_impl2<true, N, Tuple, Pred_class> { static find_default_type find_if(const Tuple&) { return find_default_type(); } }; } template<template<class T>class Pred_class, class Tuple> auto find_if(const Tuple&tuple) ->decltype(deteil::find_if_impl<0, Tuple, Pred_class>::find_if(tuple)) { return deteil::find_if_impl<0, Tuple, Pred_class>::find_if(tuple ); } namespace deteil { template<class T> struct map_impl { template<class Tuple> struct Key { static const bool value = std::is_same<typename std::tuple_element<0, Tuple>::type, T>::value; }; //template<class Tuple> //using key=std::is_same<typename std::tuple_element<0, Tuple>::type, T>; //VSで上を使うとバグった。クソッたれめ template<class Tuple> static auto map(const Tuple&tuple) ->typename std::tuple_element<1, typename std::tuple_element<0, decltype(filter<Key>(tuple))>::type>::type { auto t = filter<Key>(tuple); static_assert(std::tuple_size<decltype(t)>::value != 0, "tupleple::map 見つかりません"); static_assert(std::tuple_size<decltype(t)>::value == 1, "tupleple::map 多過ぎます"); return std::get<1>(std::get<0>(t)); } }; } template<class T, class Tuple> auto map(const Tuple&tuple) ->decltype(deteil::map_impl<T>::map(tuple)) { return deteil::map_impl<T>::map(tuple); } }
[ "pushrunkey@gmail.com" ]
pushrunkey@gmail.com
c0c46eba182d0850d9690bce1a294a22f6e545b4
a07fd48cbaca980b51291360dcd81565a8bd934c
/LeetCode/easy/788_RotatedDigits.cc
3a24526085f70400f9f24fcf6fcd52bd733034be
[]
no_license
autyinjing/OJ
710ac21f44cfe2edd58c55ba339d4fc1441ed6ba
4a5935ba00c9ccf1c2bb2b8c4939dd672b71aad1
refs/heads/master
2020-04-05T22:48:09.327856
2018-11-06T13:55:32
2018-11-06T13:55:32
42,866,291
0
0
null
null
null
null
UTF-8
C++
false
false
510
cc
class Solution { public: int rotatedDigits(int N) { int ret = 0; for (int i = 1; i <= N; ++i) if (isGoodNum(i)) ++ret; return ret; } bool isGoodNum(int num) { int v = 0, n = num, pow = 1; int help[10] = {0,1,5,-1,-1, 2,9,-1,8,6}; while (n) { int tmp = help[n % 10]; if (tmp < 0) return false; v = tmp * pow + v; n /= 10; pow *= 10; } return v != num; } };
[ "autyin@123u.com" ]
autyin@123u.com
981ee24213db769c625d1a35b02b859f6dbe0543
c577fb9a250ef8c5b2a687302024262762b9e566
/test/test/main1.cpp
fafd37cd0f81a4099e0a5d57f632b7dceae80cf0
[]
no_license
Wilingpz/sunny
8c37df85865385d0c697b125f36086344707b715
5d8138ee0030166ef9e61a9dc58e043d3bfa44c2
refs/heads/master
2021-06-13T17:47:53.901751
2021-04-13T11:58:42
2021-04-13T11:58:42
178,678,425
0
1
null
null
null
null
UTF-8
C++
false
false
593
cpp
#include<iostream> #include<string> #include<vector> using namespace std; void screen(vector<char>&old, vector<char>&newo) { int flag; for (int i = 0; i < old.size();i++) { flag = 1; for (int j = 0; (j<newo.size() && j < i); j++) { if (old[i] == newo[j]) { flag = 0; } } if (flag) { newo.push_back(old[i]); } } for (auto &i : newo) { cout << i; } cout << endl; } int main() { string tmp; getline(cin, tmp); vector<char>old; vector<char>newo; for (auto &i : tmp) { old.push_back(i); } screen(old, newo); system("pause"); return 0; }
[ "1874078207@qq.com" ]
1874078207@qq.com
a00cbe7550da9e55346a53c0dc134b0a2e8459a1
cfeac52f970e8901871bd02d9acb7de66b9fb6b4
/generated/src/aws-cpp-sdk-quicksight/include/aws/quicksight/model/BarChartOrientation.h
04e006fe48fe00842aa6be045aac47d7b65583c4
[ "Apache-2.0", "MIT", "JSON" ]
permissive
aws/aws-sdk-cpp
aff116ddf9ca2b41e45c47dba1c2b7754935c585
9a7606a6c98e13c759032c2e920c7c64a6a35264
refs/heads/main
2023-08-25T11:16:55.982089
2023-08-24T18:14:53
2023-08-24T18:14:53
35,440,404
1,681
1,133
Apache-2.0
2023-09-12T15:59:33
2015-05-11T17:57:32
null
UTF-8
C++
false
false
704
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/quicksight/QuickSight_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> namespace Aws { namespace QuickSight { namespace Model { enum class BarChartOrientation { NOT_SET, HORIZONTAL, VERTICAL }; namespace BarChartOrientationMapper { AWS_QUICKSIGHT_API BarChartOrientation GetBarChartOrientationForName(const Aws::String& name); AWS_QUICKSIGHT_API Aws::String GetNameForBarChartOrientation(BarChartOrientation value); } // namespace BarChartOrientationMapper } // namespace Model } // namespace QuickSight } // namespace Aws
[ "sdavtaker@users.noreply.github.com" ]
sdavtaker@users.noreply.github.com
b06da4944feca1cefc5cc01f9d8fb01229b17b0f
2fd79bef54d5ed3ced0cedc42db9ecafcacc0937
/gbUI/sources/table_view.h
62dab161a99c29986a4ecca147319b3fc557098e
[]
no_license
codeoneclick/game-box
aea6bc479f89c543e80e90af647775e1ac567954
c962634b86a59c7d096e9d4bb1a96419272f4315
refs/heads/master
2023-02-22T10:49:58.396769
2017-05-25T13:57:26
2017-05-25T13:57:26
49,065,778
3
0
null
null
null
null
UTF-8
C++
false
false
2,434
h
// // table_view.h // gbUI // // Created by sergey.sergeev on 1/15/16. // Copyright © 2016 sergey.sergeev. All rights reserved. // #ifndef table_view_h #define table_view_h #include "control.h" #include "input_context.h" namespace gb { namespace ui { class table_view : public control { public: typedef std::function<table_view_cell_shared_ptr(i32, const table_view_cell_data_shared_ptr&, const ces_entity_shared_ptr&)> t_get_cell_callback; typedef std::function<f32(i32)> t_get_cell_height_callback; private: protected: t_get_cell_callback m_get_cell_callback; t_get_cell_height_callback m_get_cell_height_callback; glm::vec2 m_separator_offset; glm::vec2 m_previous_dragged_point; f32 m_drag_events_sum; i32 m_drag_events_count; f32 m_scroll_inertia; std::list<table_view_cell_shared_ptr> m_unused_cells; std::list<table_view_cell_shared_ptr> m_cells; std::vector<table_view_cell_data_shared_ptr> m_data_source; void scroll_content(f32 delta); void on_touched(const ces_entity_shared_ptr&, const glm::vec2& point, e_input_source input_source, e_input_state input_state); void on_autoscroll(const gb::ces_entity_shared_ptr& entity, f32 deltatime); void fill_cell(i32 index, i32 direction); void clip_invisible_cells(i32 direction); void add_visible_cells(i32 direction); public: table_view(const scene_fabricator_shared_ptr& fabricator); ~table_view(); void create(); void set_separator_offset(const glm::vec2& separator_offset); void set_on_get_cell_callback(const t_get_cell_callback& callback); void set_on_get_table_cell_height_callback(const t_get_cell_height_callback& callback); void set_data_source(const std::vector<table_view_cell_data_shared_ptr>& data_source); void reload_data(); table_view_cell_shared_ptr reuse_cell(const std::string& identifier, i32 index); }; }; }; #endif
[ "sergey.sergeev.oneclick@gmail.com" ]
sergey.sergeev.oneclick@gmail.com
afa846f7fa69961cb3b46abb00b4e3fcef183832
2bf4c3a5bb22ef7fa7f609801ef4bf45b34251c5
/FA(2차원배열)/방배정1.cpp
4f2edc4d6c64a11d668037ceb71058ac74c3587c
[]
no_license
tndud042713/basic_c_FA-2-
ceeeeed16363c60b20c7b427f77c7f42e2ac8a8b
a577f61ece1c83bd7c81714d6ff7adba5dc29dbe
refs/heads/main
2022-12-23T23:26:41.744717
2020-10-05T05:12:53
2020-10-05T05:12:53
301,298,219
0
0
null
null
null
null
UTF-8
C++
false
false
371
cpp
//#include<stdio.h> //#include<math.h> // //int b[2][7]; //int main(void){ // int sex,Class,n,k,i,j,Sum=0; // // scanf("%d %d", &n, &k); // for(i=1;i<=16;i++){ // scanf("%d %d",&sex, &Class); // b[sex][Class]++; // } // // for(i=0;i<2;i++){ // for(j=0;j<7;j++){ // Sum+=ceil(b[i][j]/(double)k); // } // } // printf("%d",Sum); // return 0; //}
[ "noreply@github.com" ]
noreply@github.com
4435f054c90278153825cae8a5c89fc600ea057c
2b3b00c2f776eb13cb2e09f8e1d69a5828b34513
/visitorlatex.hpp
c25427c59fe69af68bbed9bf70cb9533f87f6da7
[]
no_license
GilbertH72/CS100-Lab8
d6e47b42b3193adaf6ff596f9a8a289e653d2656
e2a7a2672454bf5bace77d37a1f6a95d2d2bd707
refs/heads/master
2023-06-03T17:30:14.203973
2021-05-25T19:14:24
2021-05-25T19:14:24
378,597,842
0
0
null
null
null
null
UTF-8
C++
false
false
1,656
hpp
#ifndef __VISITOR_LATEX_HPP__ #define __VISITOR_LATEX_HPP__ #include "iterator.hpp" #include "visitor.hpp" #include "base.hpp" #include "op.hpp" #include "mult.hpp" #include "add.hpp" #include "sub.hpp" #include "pow.hpp" #include "rand.hpp" #include "div.hpp" #include <string> class VisitorLaTeX : public Visitor { protected: std::string format = ""; public: std::string getstring() { return format; } virtual void visit_op(Op* node) { format += "{" + node->stringify() + "}"; } virtual void visit_rand(Rand* node) { format += "{" + node->stringify() + "}"; } virtual void visit_add_begin(Add* node) { format += "{("; } virtual void visit_add_middle(Add* node) { format += "+"; } virtual void visit_add_end(Add* node) { format += ")}"; } virtual void visit_sub_begin(Sub* node) { format += "{("; } virtual void visit_sub_middle(Sub* node) { format += "-"; } virtual void visit_sub_end(Sub* node) { format += ")}"; } virtual void visit_mult_begin(Mult* node) { format += "{("; } virtual void visit_mult_middle(Mult* node) { format += "\\cdot"; } virtual void visit_mult_end(Mult* node) { format += ")}"; } virtual void visit_div_begin(Div* node) { format += "{\\frac"; } virtual void visit_div_middle(Div* node) { format += ""; } virtual void visit_div_end(Div* node) { format += "}"; } virtual void visit_pow_begin(Pow* node) { format += "{("; } virtual void visit_pow_middle(Pow* node) { format += "^"; } virtual void visit_pow_end(Pow* node) { format += ")}"; } std::string PrintLaTeX(Base* ptr) { return "$" + format + "$"; } }; #endif // __VISITOR_LATEX_HPP__
[ "gilbert4slips@gmail.com" ]
gilbert4slips@gmail.com
70dd5b785eedd0bd76ef1f634a93ff271f59919c
0389bb4a95fde8d4aba994d7c0bd7d595cbd9eda
/lab04/Shapes/CSolidShapeBase.cpp
8d6ed69f48e747be413a816c584c961c874b25a0
[]
no_license
Bariskas/oop
715afafd27c4d9586932480056b6f8429d2f77ea
7fd21acc9ca48bb9f2192b0fa1ca73e417dec4ab
refs/heads/master
2021-01-18T02:01:23.838417
2017-01-20T22:45:51
2017-01-20T22:45:51
68,470,845
0
0
null
null
null
null
UTF-8
C++
false
false
452
cpp
#include "stdafx.h" #include "CSolidShapeBase.h" using namespace std; CSolidShapeBase::CSolidShapeBase(string outline, string fillColor) : CShapeBase(outline) , m_fillColor(fillColor) { } string CSolidShapeBase::GetFillColor() const { return m_fillColor; } std::string CSolidShapeBase::ToString() const { return CShapeBase::ToString(); } std::string CSolidShapeBase::GetOutlineColor() const { return CShapeBase::GetOutlineColor(); }
[ "Bariskas@gmail.com" ]
Bariskas@gmail.com
6913c55f2295fef69986f79fe26c706b0f3b6c70
9d0d9492c12b3e88303c87134d6c0536e727b34f
/t94_call_member_function_at_rvalue.cpp
791654dc3637ec0ce8d7dfa2feeb2a1e766e4ae2
[]
no_license
s-kramer/cpp_tests
361929b81b99fcb17da13014e78748f7578becc1
2d6d3404bc5d6405e0cba8159e1cce0248efc194
refs/heads/master
2021-01-10T03:54:39.174981
2017-08-07T08:16:14
2017-08-07T08:16:14
53,738,390
0
0
null
null
null
null
UTF-8
C++
false
false
177
cpp
#include <iostream> class Foo { public: explicit Foo (int i) {}; void bar(void) { std::cout << "Foo::bar" << '\n'; } }; int main() { Foo(5).bar(); return 0; }
[ "sebastian.kramer@wp.pl" ]
sebastian.kramer@wp.pl
4cea572225889c35b15a2654f8b90bf5c6e3f4cd
65e6c1ab37942512ab00f3a0d449400d1647b06f
/Text_Town_Game/Text_Town_Game/CharacterManager.h
ccffb05cb654db2fcf960c242c55f5876bbdf56e
[]
no_license
MrElliott/TownGame
df191dec097d00063b0ae25975f1cf5329a9fab4
30591df5eb2775df4035b260117823448e5b6971
refs/heads/master
2021-03-12T20:05:40.114419
2015-05-07T23:57:08
2015-05-07T23:57:08
32,031,538
0
0
null
null
null
null
UTF-8
C++
false
false
731
h
#include <iostream> #include <ctime> enum Class { WARRIOR, ROUGE, MAGE }; enum Stat { Health, Mana, Strength, Endurance, Charisma, Intelect, Agility, Luck, }; class CharacterManager { public: CharacterManager(); ~CharacterManager(); void CreateCharacter(); int GetStat(Stat requiredStat); bool IsCharacterCreated(); void AddExperience(int experience); void LevelCheck(); private: bool _CharacterCreated; std::string _CharacterName; int _Health; int _Mana; int _Experience; int _NextLevelExp; int _Strength; int _Endurance; int _Charisma; int _Intelect; int _Agility; int _Luck; // Requires Inventory for character Class _CharClass; }; extern CharacterManager* g_pCharacterManager;
[ "elliottholt90@gmail.com" ]
elliottholt90@gmail.com
1ff854a097fa753231b6d692f6a77edbb0c24500
060591cee2eca06aaef4e05dd8476d3692160d54
/src/xrEngine/xrGame/ui/UI_IB_Static.h
d6fc64a8d49c576d90a17c9b6b26e40a1dcfe4c7
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
Georgiy-Timoshin/X-Ray
7c96c494803edbe4c9e03d4e3b8ebb46c02ff35e
51dc8ddcfdde3167f3a025022d8420a94c5c1c43
refs/heads/main
2023-04-29T18:35:06.229863
2021-05-14T02:13:00
2021-05-14T02:13:00
367,538,251
0
2
NOASSERTION
2021-05-15T04:48:44
2021-05-15T04:23:35
null
UTF-8
C++
false
false
548
h
// File: UI_IB_Static.h // Description: Inheritance of UIInteractiveBackground template class with some // CUIStatic features // Created: 09.02.2005 // Author: Serge Vynnychenko // Mail: narrator@gsc-game.kiev.ua // Copyright 2005 GSC Game World #pragma once #include "UIInteractiveBackground.h" #include "UIStatic.h" class CUI_IB_Static : public CUIInteractiveBackground<CUIStatic> { public: virtual void SetTextureOffset(float x, float y); virtual void SetStretchTexture(bool stretch_texture); virtual void EnableHeading(bool b); };
[ "53347567+xrModder@users.noreply.github.com" ]
53347567+xrModder@users.noreply.github.com
9e905e6148d3f143924db8b850d3a46ec9e69c3e
17c1e08352b39fbbc811089d73e7b2f878ccc47c
/src/PiecewiseProfile.hpp
0500bff2e168918e88876e8713cbcea78066a066
[]
no_license
zacjohnston/skynet_tools
dc484feaddc8b92dca799d7db7464b93b51440f2
f00416da04dc7d96f0af09d288a4d48d6c783932
refs/heads/master
2021-04-05T10:16:14.535524
2020-04-23T20:32:19
2020-04-23T20:32:19
256,601,065
1
0
null
null
null
null
UTF-8
C++
false
false
9,487
hpp
/// \file PiecewiseProfile.hpp /// \author khermans /// /// \brief /// /// file to create piecewise profiles and read in data from tracer files #ifndef PIECEWISE_PROFILE_HPP_ #define PIECEWISE_PROFILE_HPP_ #include <math.h> #include <memory> #include <algorithm> #include <iostream> #include <string> #include <fstream> #include <sstream> #include <iomanip> #include "Utilities/FunctionVsTime.hpp" #include "Utilities/Interpolators/PiecewiseLinearFunction.hpp" class PiecewiseProfile : public FunctionVsTime<double> { public: PiecewiseProfile(const std::vector<double>& time, const std::vector<double>& vals) : mTimes(time), mVals(vals){} double operator()(const double time) const { return interp(time, mTimes, mVals); } double ReverseInterp(const double val) const { return interp(val, mVals, mTimes); } std::unique_ptr<FunctionVsTime<double>> MakeUniquePtr() const { return std::unique_ptr<FunctionVsTime<double>>(new PiecewiseProfile(mTimes, mVals)); } protected: std::vector<double> mTimes, mVals; double interp(const double xin, const std::vector<double>& x, const std::vector<double>& y) const { auto lbound = x.begin(); if (x[0] > x[x.back()]) { lbound = std::lower_bound(x.begin(), x.end(), xin, [](double a, double b){return a>b;}); } else { lbound = std::lower_bound(x.begin(), x.end(), xin, [](double a, double b){return a<b;}); } int idx = lbound - x.begin(); if (lbound == x.begin()) return y[0]; if (lbound == x.end()) return y.back(); double h = (xin - x[idx-1])/(x[idx] - x[idx-1]); return y[idx]*h + y[idx-1]*(1.0-h); } }; // read in density from file PiecewiseProfile ReadDensityProfileFromFile(std::string fname) { std::ifstream f(fname); std::string line; std::vector<double> times, rhos; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data while (std::getline(f, line)) { double tc, T9c, rhoc; std::stringstream ss(line); ss >> tc >> T9c >> rhoc; times.push_back(tc); rhos.push_back(rhoc); // std::cout << "rhoc: " << rhoc << "\n"; } return PiecewiseProfile(times, rhos); } // read in temperatures from file in T9 PiecewiseProfile ReadTempProfileFromFile(std::string fname) { std::ifstream f(fname); std::string line; std::vector<double> times, temps; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data while (std::getline(f, line)) { double tc, T9c, rhoc; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc; times.push_back(tc); temps.push_back(T9c/1000000000.0); // std::cout << "tc: " << tc << "\tT9c: " << T9c << "\n"; } return PiecewiseProfile(times, temps); } // read ye profile from file PiecewiseProfile ReadYeProfileFromFile(std::string fname) { std::ifstream f(fname); std::string line; std::vector<double> times, yes; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data while (std::getline(f, line)) { double tc, T9c, rhoc, rc, yec; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> rc >> yec; times.push_back(tc); yes.push_back(yec); // std::cout << "tc: " << tc << "\tT9c: " << T9c << "\n"; } return PiecewiseProfile(times, yes); } // find the start time for files that go to NSE double FindStartTFromFile(std::string fname) { std::ifstream f(fname); std::string line; std::vector<double> times; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data int i = 0; int start_NSE = 0; int start_t_index; double max_T9c = 0; while (std::getline(f, line)) { double tc, T9c, rhoc, rc, yec; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> rc >> yec; times.push_back(tc); // std::cout << T9c << std::endl; if (T9c > 10000000000.0 ) start_NSE = i; if (start_NSE>0 & T9c < 10000000000.0 ) { start_t_index = i-1; break; } else if (T9c > max_T9c) { max_T9c = T9c; start_t_index = i; } i++; // std::cout << "tc: " << tc << "\tT9c: " << T9c << "\n"; } return start_t_index; } // read in density std::vector<double> ReadDensityFromFile(std::string fname) { std::ifstream f(fname); std::string line; std::vector<double> times, rho; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data while (std::getline(f, line)) { double tc, T9c, rhoc, radc, yec, ENUEc, ENUBc, LNUEc, LNUBc; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> radc >> yec >> ENUEc >> ENUBc >> LNUEc >> LNUBc; times.push_back(tc); rho.push_back(rhoc); } return rho; } // read in radii std::vector<double> ReadRadiiFromFile(std::string fname, int t_start_index) { std::ifstream f(fname); std::string line; std::vector<double> times, radii; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data int line_no = 1; while (std::getline(f, line)) { if ( line_no > t_start_index ){ double tc, T9c, rhoc, radc, yec, ENUEc, ENUBc, LNUEc, LNUBc; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> radc >> yec >> ENUEc >> ENUBc >> LNUEc >> LNUBc; times.push_back(tc); radii.push_back(radc); } else { line_no++; } } return radii; } // read in times std::vector<double> ReadTimesFromFile(std::string fname, int t_start_index) { std::ifstream f(fname); std::string line; std::vector<double> times, temp_ENU; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data int line_no = 1; while (std::getline(f, line)) { if ( line_no > t_start_index ){ double tc, T9c, rhoc, radc, yec, ENUEc, ENUBc, LNUEc, LNUBc; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> radc >> yec >> ENUEc >> ENUBc >> LNUEc >> LNUBc; times.push_back(tc); } else { line_no++; } } return times; } // read in neutrino average energies std::vector<std::vector<double>> ReadENUFromFile(std::string fname, int t_start_index) { std::ifstream f(fname); std::string line; std::vector<double> times, temp_ENU; std::vector<std::vector<double>> ENU; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data double ConstToGK = 1.0 / 3.15137 / Constants::BoltzmannConstantInMeVPerGK ; int line_no = 1; while (std::getline(f, line)) { if ( line_no > t_start_index ){ double tc, T9c, rhoc, radc, yec, ENUEc, ENUBc, LNUEc, LNUBc; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> radc >> yec >> ENUEc >> ENUBc >> LNUEc >> LNUBc; times.push_back(tc); double temp_ENUE = ENUEc * ConstToGK ; double temp_ENUB = ENUBc * ConstToGK ; double mult = 1.0; std::vector<double> temp_ENU = { temp_ENUE * mult , temp_ENUB * mult }; ENU.push_back(temp_ENU); // std::cout << "ENUEc: " << temp_ENUE << "\tENUBc: " << temp_ENUB << "\n"; } else { line_no++; } } return ENU; } // read in neutrino luminosities std::vector<std::vector<double>> ReadLNUFromFile(std::string fname, int t_start_index) { std::ifstream f(fname); std::string line; std::vector<double> times, temp_LNU; std::vector<std::vector<double>> LNU; // Read the first two header lines std::getline(f, line); std::getline(f, line); // Read the data int line_no = 1; while (std::getline(f, line)) { if ( line_no > t_start_index ){ double tc, T9c, rhoc, radc, yec, ENUEc, ENUBc, LNUEc, LNUBc; std::stringstream ss(line); ss >> std::setprecision(std::numeric_limits<double>::digits10) >> tc >> T9c >> rhoc >> radc >> yec >> ENUEc >> ENUBc >> LNUEc >> LNUBc; times.push_back(tc); double area = 4 * Constants::Pi * radc * radc ; double mag = 1e51; std::vector<double> temp_LNU = { LNUEc * area * mag , LNUBc * area * mag }; // std::cout << "LNUEc: " << LNUEc * area << "\tLNUBc: " << LNUBc * area << "\n"; LNU.push_back(temp_LNU); } else { line_no++; } } return LNU; } #endif // PIECEWISE_PROFILE_HPP_
[ "zacpjohnston@gmail.com" ]
zacpjohnston@gmail.com
c64e68e3e0f9aed434bdb1f11bd5c918fe4f86d9
3e36c6fa0bfc44896ee5bf3dfa2489a0b02e2fb7
/MeshRefining/MeshRefining/include/config.h
66698ac30a076539753a4585b9c5f065742f86cf
[]
no_license
whitehorsetzm/mesh_changed
467ff493fbcd7c40b9bb595e9ff691aece6d789b
bea1b7d48d8eba796c15a0f111e4b7c44b13d4bc
refs/heads/master
2020-05-23T00:06:08.415711
2019-07-05T01:53:23
2019-07-05T01:53:23
186,568,953
1
0
null
null
null
null
UTF-8
C++
false
false
1,546
h
/* ********struct of the config to define the property********** ** ** */ #ifndef CONFIG_H #define CONFIG_H #pragma once #include <map> #include<vector> #define FILENAMESIZE 120 #define DEFAULTCFNAME "TRAN_CONFIG" //char config[FILENAMESIZE]; class COORDS { public: double cood[3]; }; typedef struct { char filenam[FILENAMESIZE]; // the project name int NumFile; //the number of files char command[FILENAMESIZE]; double sTolerance; //set sTolerance, default value 1.0e-8 double gTolerance; //set gTolerance, default value 1.0e-8 bool del_small_edges; //set del_small_edges, default value false double spacing; int geotype; int unum; int vnum; int outflow; //option for generating a outflow field double L; double xmin,ymin,zmin; double xmax,ymax,zmax; double center_coord[3]; double a; //half long axis of elipsoid double b; //half short axis of elipoid char rotate; // the rotation axis; int step; char method[256]; double global_spacing; double min_spacing; double inner_spacing; double conV; double conR; int hull; //double hullcoord[3]; std::vector<COORDS> hullcoord; int proximity_num; double curvature_angle; double expand_ratio; int outputM; std::map<int, double> mapfcbku; std::map<int, double> mapfcbkv; std::map<int,double> mapFaceSize; }ConfigArgc; extern ConfigArgc cf; #endif
[ "tzm@localhost.localdomain" ]
tzm@localhost.localdomain
7bac465166de43560adef1aa8172834acb8c6300
1fc3b49e2f8cf0aed8b5e996e6a9311370c91de4
/Programmation/Codes fonctionnels/Arduino/out.h
55e37e778bdb1a4c0d5720426817ccac5ba396ee
[]
no_license
mjc-ermont/2011
cbc8607ada345db8a7cf1e5dc2fe226f731e849a
1047a8c43d888df73325b7146f2e434ff5e11be2
refs/heads/master
2016-09-06T02:34:01.777438
2013-08-19T14:24:37
2013-08-19T14:24:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
408
h
#ifndef OUT_INCLUDED #define OUT_INCLUDED #include <Arduino.h> #include "queue.h" class Out { public: Out(); virtual bool init() = 0; // Initialisation de la sortie void addTrame(char *trame); // Ajout de la trame a la file virtual void writeQueue(char*) = 0; // Ecriture de la file sur la sortie protected: QueueList<char*> queue; // File d'attente }; #endif
[ "arthurtoussaint@free.fr" ]
arthurtoussaint@free.fr
039ad4d7008c1db238b238018a3c387c1afd765c
623fa6c07a2ae7b581c1c121d29e69dc776c4a3b
/wwscat/inc/HadronicOutputOrganizer.h
fb8ffbbf73988b1a0ff234983e5e21e5a0c890df
[]
no_license
andres0sorio/ILCWork
2af53044f6558c36a8f0607f2fd46962428a2b13
a0bf74effbb9c8b0ddb078068e6fb70eff26f549
refs/heads/master
2021-01-20T17:50:52.013787
2016-08-12T15:16:50
2016-08-12T15:16:50
65,562,356
0
0
null
null
null
null
UTF-8
C++
false
false
2,048
h
#ifndef HADRONICOUTPUTORGANIZER_H #define HADRONICOUTPUTORGANIZER_H #include "TROOT.h" #include "TH1.h" #include "TH2.h" #include "TNamed.h" #include "TObjArray.h" #include "TStyle.h" #include "HadronicOutput.h" #include "BasicOutput.h" #include "WhizardSpecificOutput.h" #include "PythiaSpecificOutput.h" #include "wwsHadronEventProc.h" #include "ParamLoader.h" #include <sys/stat.h> #include <sys/unistd.h> #include <iostream> #include <fstream> #include "string_utilities.h" class HadronicOutputOrganizer { private: bool isWhizardSignal; bool isWhizardBackg; bool isPythiaSignal; bool isPythiaBackg; std::string event_type; std::string generator_name; std::string process_type; std::string process_name; std::string outputname; HadronicOutput *detectordata_nunuWW; HadronicOutput *detectordata_nunuZZ; HadronicOutput *detectordata_background; HadronicOutput *truedata_nunuWW; HadronicOutput *truedata_nunuZZ; HadronicOutput *truedata_background; ParamLoader *all_parameters; TStyle *st1; ofstream *os; //Stats int pairZZ_true; int missZZ_true; int pairWW_true; int missWW_true; int pairZZ_det; int missZZ_det; int pairWW_det; int missWW_det; bool needCalculation; bool isA6f_signal; bool isA6f_ZZsignal; bool isA6f_WWsignal; bool isA6f_background; bool isA4f_background; bool isA2f_background; public: PythiaSpecificOutput *only_pythia; WhizardSpecificOutput *only_whizard; HadronicOutputOrganizer() { }; HadronicOutputOrganizer(const char *, const char *, const char *, const char *); ~HadronicOutputOrganizer(); void fillWithTrueData(wwsHadronEventProc *); void fillWithDetectorData(wwsHadronEventProc *); void fillEventTypeInformation(wwsHadronEventProc *); void setParameters (ParamLoader *); void scaleHistograms(); void importXsectionsFrom(HadronicOutputOrganizer *); void evalDiffCrossSections(); void printPrettyStats(const char *); void printStats(const char *); }; #endif
[ "osorio.af@gmail.com" ]
osorio.af@gmail.com
4a51af89e24a56290cde036ed96cc558103f95aa
80db239af828381855fab2553423ef7c9a775936
/Engine/Base/Include/Quad.h
116a965b66d47af2fc95a10f99c9bcf995725eac
[]
no_license
NalMak/Nalmak_PersonalProject
c4d703c5a1bb2cfd3c24a9e00f13cc35089881b0
b992c2b6734798516210810f66561324958ed29d
refs/heads/main
2023-04-30T04:40:51.396731
2021-05-23T22:23:04
2021-05-23T22:23:04
352,413,745
0
0
null
null
null
null
UTF-8
C++
false
false
307
h
#pragma once #ifndef __QUAD_H__ #define __QUAD_H__ #include "Nalmak_Include.h" #include "VIBuffer.h" class Quad : public VIBuffer { public: virtual void Initialize(wstring _fp = L"") override; private: virtual void CreateVertexBuffer(); virtual void CreateIndexBuffer(); }; #endif // ! __QUAD_H__
[ "48557775+NalMak@users.noreply.github.com" ]
48557775+NalMak@users.noreply.github.com
8e9115a7d84b7d884a14f0dcdcf07a40b7a7bb4c
978eb53a505e4e6b7345975d65a270d2af2389ce
/util/replacer.h
f6abec9df778b63d47b598911f47bb45cc713aa2
[]
no_license
kevinleen/common
0ae7ce9194afb8b8a5adaa56da4202b37059badc
ab4deae737bbfb69f92b57b8da2d48d00dde8498
refs/heads/master
2021-01-19T04:34:39.824560
2016-06-13T07:59:26
2016-06-13T07:59:26
55,756,420
0
0
null
null
null
null
UTF-8
C++
false
false
778
h
#pragma once #include "base/base.h" namespace util { class Replacer { public: Replacer(std::string* str) : _str(str) { CHECK_NOTNULL(str); } ~Replacer() { } void replace() { for (auto it = _map.begin(); it != _map.end(); ++it) { const auto& src = it->first; const auto& dst = it->second; while (true) { auto pos = _str->find(src); if (pos == std::string::npos) { break; } _str->replace(pos, src.size(), dst); } } } void push(const std::string& src, const std::string& dst) { _map[src] = dst; } private: std::string* _str; std::map<std::string, std::string> _map; DISALLOW_COPY_AND_ASSIGN(Replacer); }; }
[ "kevinlinb@gmail.com" ]
kevinlinb@gmail.com
2ac408d97a7c20e8e5184f1378530a960ba1e669
9f6bc9f9f7ef707ec4355fa31f6b4799235939c9
/Stack/llist.h
bbb7e93dfbb1a4c2e64084b9d10702b121cf0b78
[]
no_license
JonnyBeoulve/College-Projects
bf25ec25b0f311b4f81f6b611d55a4adde7843fb
012ddf72b907bcf2335736c7c8603eab0cd801b1
refs/heads/master
2021-09-18T04:36:18.313926
2018-07-09T18:27:31
2018-07-09T18:27:31
106,219,672
0
0
null
null
null
null
UTF-8
C++
false
false
1,094
h
/******************************************************* Jonathan Leack HW3 llist Complier: g++ File type: .h *******************************************************/ #ifndef llist_H #define llist_H #include<iostream> #include<iomanip> typedef int el_t;// list node is defined here as a struct Node struct Node { el_t Elem;// elem is the element stored Node *Next;// next is the pointer to the next node }; // I could have done class Node and add the data members under public // but it will use too much space class llist { protected: Node *Front; // front pointer Node *Rear; // rear pointer int Count; // counter for the number of elements public: class Underflow{}; class OutOfRange{}; llist (); // constructor ~llist(); // destructor bool isEmpty(); void displayAll(); void addRear(el_t NewNum); void deleteFront(el_t& OldNum); void addFront(el_t NewNum); void deleteRear(el_t& OldNum); void deleteIth(int I, el_t& OldNum); void addbeforeIth(int I, el_t newNum); }; #endif
[ "jleack@gmail.com" ]
jleack@gmail.com
76954f76b3dbcfb6e9b446f04795142b8f03bbe4
97e53e8028ffb9d3f736a0999cc470f9942ddcd0
/01 窗体与界面设计/12 通用对话框的应用/001 打开位图预览对话框-例1/TopWindow/TopWindow.cpp
9df2af852418701ee3d16b43f63d40263148a592
[]
no_license
BambooMa/VC_openSource
3da1612ca8285eaba9b136fdc2c2034c7b92f300
8c519e73ef90cdb2bad3de7ba75ec74115aab745
refs/heads/master
2021-05-14T15:22:10.563149
2017-09-11T07:59:18
2017-09-11T07:59:18
115,991,286
1
0
null
2018-01-02T08:12:01
2018-01-02T08:12:00
null
UTF-8
C++
false
false
2,031
cpp
// TopWindow.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "TopWindow.h" #include "TopWindowDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CTopWindowApp BEGIN_MESSAGE_MAP(CTopWindowApp, CWinApp) //{{AFX_MSG_MAP(CTopWindowApp) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG ON_COMMAND(ID_HELP, CWinApp::OnHelp) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CTopWindowApp construction CTopWindowApp::CTopWindowApp() { // TODO: add construction code here, // Place all significant initialization in InitInstance } ///////////////////////////////////////////////////////////////////////////// // The one and only CTopWindowApp object CTopWindowApp theApp; ///////////////////////////////////////////////////////////////////////////// // CTopWindowApp initialization BOOL CTopWindowApp::InitInstance() { AfxEnableControlContainer(); // Standard initialization // If you are not using these features and wish to reduce the size // of your final executable, you should remove from the following // the specific initialization routines you do not need. #ifdef _AFXDLL Enable3dControls(); // Call this when using MFC in a shared DLL #else Enable3dControlsStatic(); // Call this when linking to MFC statically #endif CTopWindowDlg dlg; m_pMainWnd = &dlg; int nResponse = dlg.DoModal(); if (nResponse == IDOK) { // TODO: Place code here to handle when the dialog is // dismissed with OK } else if (nResponse == IDCANCEL) { // TODO: Place code here to handle when the dialog is // dismissed with Cancel } // Since the dialog has been closed, return FALSE so that we exit the // application, rather than start the application's message pump. return FALSE; }
[ "xiaohuh421@qq.com" ]
xiaohuh421@qq.com
1e9a0d717c2db5447a4c124e8ae5dc0090f8c6c9
e79b3990bc9c13117572fe4c39277b187b37bff2
/include/RE/C/ConcreteObjectFormFactory.h
10fac12fab997c4101b2a45ffeae071c104c5216
[ "MIT" ]
permissive
Ryan-rsm-McKenzie/CommonLibSSE
669e36cd643ea9dcc97c8e147d10ee7f6eebb8df
3282565a2c86535036f5a556758fb1cf8ab85225
refs/heads/master
2023-08-07T15:02:02.476156
2023-07-20T11:52:36
2023-07-20T12:41:44
158,496,181
178
93
MIT
2023-07-20T12:41:45
2018-11-21T05:36:24
C++
UTF-8
C++
false
false
815
h
#pragma once #include "RE/C/ConcreteFormFactory.h" namespace RE { template <class T, FormType FORM_TYPE, OBJECT_TYPE OBJ_TYPE, OBJECT_CATEGORY_TYPE OBJ_CATEGORY_TYPE> class ConcreteObjectFormFactory : public ConcreteFormFactory<T, FORM_TYPE> { public: ~ConcreteObjectFormFactory() override; // 00 // override (ConcreteFormFactory) const char* GetObjectName() const override; // 04 - { return _name; } OBJECT_TYPE GetObjectType() const override; // 05 - { return OBJ_TYPE; } [[nodiscard]] OBJECT_CATEGORY_TYPE GetObjectCategory() const override; // 06 - { return OBJ_CATEGORY_TYPE; } }; static_assert(sizeof(ConcreteObjectFormFactory<TESForm, FormType::None, static_cast<OBJECT_TYPE>(0), static_cast<OBJECT_CATEGORY_TYPE>(0)>) == 0x10); }
[ "ryan__mckenzie@hotmail.com" ]
ryan__mckenzie@hotmail.com
9079a0695de89e4bf8e1dd07ccfb678b88b7f979
9fb96f30d9b21d1e3bcfaf17079b8bf012f7bb30
/prime_factor.h
406b9aba6aa1c8c435e14eafee4895e79aaf7a24
[]
no_license
benjiellis/ModularArithmetic
e39b08a5146be8c8e62f878519af853d8a5df5d9
d2432539d5b0e4a789f7d898ca24b0b53e62f366
refs/heads/master
2020-05-19T03:27:08.136838
2019-05-03T18:19:41
2019-05-03T18:19:41
184,801,272
0
0
null
null
null
null
UTF-8
C++
false
false
1,418
h
#pragma once #include <cmath> #include <vector> using std::vector; // A function to print all prime factors of a given number n vector<int> get_prime_factors(int n) { vector<int> to_return; // Print the number of 2s that divide n while (n % 2 == 0) { to_return.push_back(2); n = n / 2; } // n must be odd at this point. So we can skip // one element (Note i = i +2) for (int i = 3; i <= sqrt(n); i = i + 2) { // While i divides n, print i and divide n while (n%i == 0) { to_return.push_back(i); n = n / i; } } // This condition is to handle the case when n // is a prime number greater than 2 if (n > 2) to_return.push_back(n); return to_return; } vector<int> store_part(vector<int>& v, int level) { vector<int> temp; for (int i = 0; i <= level; i++) { temp.push_back(v[i]); } return temp; } void part(int n, vector<int>& v, int level, vector<vector<int>>& out_vec) { int first; /* first is before last */ if (n<1) return; v[level] = n; out_vec.push_back(store_part(v, level)); first = (level == 0) ? 1 : v[level - 1]; for (int i = first; i <= n / 2; i++) { v[level] = i; /* replace last */ part(n - i, v, level + 1, out_vec); } } vector<vector<int>> get_partitions(int n) { vector<vector<int>> to_return; vector<int> temp(n); part(n, temp, 0, to_return); return to_return; }
[ "noreply@github.com" ]
noreply@github.com
b036df1aa505e704959b6a256a8c86b5b599982a
d8e8da85cc85f6270288dd1cfb421a58de6c8f89
/management.h
4c00cc1aa94ae6ad66f7b587ac909ccef867fda2
[]
no_license
szsoppa/Menelatorium
13267f6835ac79f583d8d111a56eff38df6891fe
947109a0a09123a3530fb382dbcc0e97db1820fe
refs/heads/master
2021-01-10T21:52:25.163676
2015-09-22T08:13:12
2015-09-22T08:13:12
40,253,539
1
0
null
null
null
null
UTF-8
C++
false
false
381
h
#ifndef MANAGEMENT_H #define MANAGEMENT_H #include "communicator.h" #include "lamport.h" class Management : public Communicator, public Lamport { public: Management(int positions_number, MPI_Comm COMM_WORLD); void participate(); private: int positions_number; int world_group_size; MPI_Comm COMM_MENELS, COMM_WORLD; Packet p; }; #endif // MANAGEMENT_H
[ "sz.soppa@gmail.com" ]
sz.soppa@gmail.com
c35668ad93dcedc0e6a1be573adedf59ef2c84f4
39eac74fa6a244d15a01873623d05f480f45e079
/AptBookAlarmDetailDlg.cpp
18f8f05df45ed62a528c4392929299819e530190
[]
no_license
15831944/Practice
a8ac8416b32df82395bb1a4b000b35a0326c0897
ae2cde9c8f2fb6ab63bd7d8cd58701bd3513ec94
refs/heads/master
2021-06-15T12:10:18.730367
2016-11-30T15:13:53
2016-11-30T15:13:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,150
cpp
// AptBookAlarmDetailDlg.cpp : implementation file // #include "stdafx.h" #include "AptBookAlarmDetailDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif using namespace ADODB; using namespace NXDATALISTLib; ///////////////////////////////////////////////////////////////////////////// // CAptBookAlarmDetailDlg dialog CAptBookAlarmDetailDlg::CAptBookAlarmDetailDlg(CWnd* pParent /*=NULL*/) : CNxDialog(CAptBookAlarmDetailDlg::IDD, pParent) { //{{AFX_DATA_INIT(CAptBookAlarmDetailDlg) m_AptTypeID = -1; m_AptPurposeID = -1; //}}AFX_DATA_INIT } void CAptBookAlarmDetailDlg::DoDataExchange(CDataExchange* pDX) { CNxDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAptBookAlarmDetailDlg) DDX_Control(pDX, IDOK, m_btnOk); DDX_Control(pDX, IDCANCEL, m_btnCancel); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAptBookAlarmDetailDlg, CNxDialog) //{{AFX_MSG_MAP(CAptBookAlarmDetailDlg) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CAptBookAlarmDetailDlg message handlers BOOL CAptBookAlarmDetailDlg::OnInitDialog() { CNxDialog::OnInitDialog(); try { // (z.manning, 04/30/2008) - PLID 29845 - Set button styles m_btnOk.AutoSet(NXB_OK); m_btnCancel.AutoSet(NXB_CANCEL); m_AptTypeList = BindNxDataListCtrl(this,IDC_CHOOSE_TYPE,GetRemoteData(),true); m_AptPurposeList = BindNxDataListCtrl(this,IDC_CHOOSE_PURPOSE,GetRemoteData(),true); IRowSettingsPtr pRow = m_AptTypeList->GetRow(-1); pRow->PutValue(0,(long)-1); pRow->PutValue(1,"<All Types>"); m_AptTypeList->AddRow(pRow); pRow = m_AptPurposeList->GetRow(-1); pRow->PutValue(0,(long)-1); pRow->PutValue(1,"<All Purposes>"); m_AptPurposeList->AddRow(pRow); if(m_AptTypeID == -1) { m_AptTypeList->SetSelByColumn(0, (long)-1); } else { if(m_AptTypeList->SetSelByColumn(0,m_AptTypeID) == -1) { //Maybe an inactive type. _RecordsetPtr rsType = CreateRecordset("SELECT Name FROM AptTypeT WHERE ID = %li", m_AptTypeID); if(!rsType->eof) { m_AptTypeList->PutComboBoxText(_bstr_t(AdoFldString(rsType, "Name"))); } } } if(m_AptPurposeID == -1) m_AptPurposeList->SetSelByColumn(0, (long)-1); else { // (c.haag 2008-12-18 12:55) - PLID 32539 - If we didn't find the procedure, it may be inactive. Add // the inactive row. if (sriNoRow == m_AptPurposeList->SetSelByColumn(0,m_AptPurposeID) && m_AptPurposeID > 0) { _RecordsetPtr prs = CreateParamRecordset("SELECT Name FROM ProcedureT WHERE ID = {INT}", m_AptPurposeID); if (!prs->eof) { pRow = m_AptPurposeList->GetRow(-1); pRow->PutValue(0,m_AptPurposeID); pRow->PutValue(1,prs->Fields->Item["Name"]->Value); m_AptPurposeList->AddRow(pRow); m_AptPurposeList->Sort(); m_AptPurposeList->SetSelByColumn(0, m_AptPurposeID); } else { // It was deleted. Nothing we can do. } } } }NxCatchAll("Error loading alarm details."); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE } BEGIN_EVENTSINK_MAP(CAptBookAlarmDetailDlg, CNxDialog) //{{AFX_EVENTSINK_MAP(CAptBookAlarmDetailDlg) ON_EVENT(CAptBookAlarmDetailDlg, IDC_CHOOSE_TYPE, 16 /* SelChosen */, OnSelChosenChooseType, VTS_I4) //}}AFX_EVENTSINK_MAP END_EVENTSINK_MAP() void CAptBookAlarmDetailDlg::OnSelChosenChooseType(long nRow) { try { //filter the type list to only types of the selected purpose long nAptTypeID = -1; if(nRow != -1) { nAptTypeID = VarLong(m_AptTypeList->GetValue(nRow,0),-1); } CString strPurposeFilter = ""; if(nAptTypeID != -1) { // (c.haag 2008-12-18 12:55) - PLID 32376 - Filter out inactive procedures strPurposeFilter.Format( "AptPurposeT.ID IN (SELECT AptPurposeTypeT.AptPurposeID FROM AptPurposeTypeT WHERE AptPurposeTypeT.AptTypeID = %li) " "AND AptPurposeT.ID NOT IN (SELECT ID FROM ProcedureT WHERE Inactive = 1) ", nAptTypeID); } m_AptPurposeList->WhereClause = _bstr_t(strPurposeFilter); m_AptPurposeList->Requery(); IRowSettingsPtr pRow = m_AptPurposeList->GetRow(-1); pRow->PutValue(0,(long)-1); pRow->PutValue(1,"<All Purposes>"); m_AptPurposeList->AddRow(pRow); }NxCatchAll("Error filtering purpose list."); } void CAptBookAlarmDetailDlg::OnOK() { try { if(m_AptTypeList->CurSel == -1) { if(m_AptTypeList->GetComboBoxText() == _bstr_t("") || m_AptPurposeList->CurSel == -1) { AfxMessageBox("Please select an item in each list."); return; } //The type must be the same inactive one we originally loaded. m_AptPurposeID = VarLong(m_AptPurposeList->GetValue(m_AptPurposeList->GetCurSel(),0),-1); } else { if(m_AptTypeList->GetCurSel() == -1 || m_AptPurposeList->GetCurSel() == -1) { AfxMessageBox("Please select an item in each list."); return; } m_AptTypeID = VarLong(m_AptTypeList->GetValue(m_AptTypeList->GetCurSel(),0),-1); m_AptPurposeID = VarLong(m_AptPurposeList->GetValue(m_AptPurposeList->GetCurSel(),0),-1); } }NxCatchAll("Error setting detail information."); CDialog::OnOK(); }
[ "h.shah@WALD" ]
h.shah@WALD
1e7fe3baa6bc95b47b73738c0730f4e7ef991d13
ab51ea47b534dc565142f9b8e71540daf2080430
/Lista_2/mike_and_feet.cpp
cd017b801bf2c78420d2b7d3ff37b5dc3faf8ecd
[ "MIT" ]
permissive
Thulio-Carvalho/Advanced-Algorithms-Problems
872e90d0508e36bf05cda66714f2252d1b670769
724bfb765d056ddab414df7dd640914aa0c665ae
refs/heads/master
2020-03-11T21:19:53.347622
2019-06-13T22:19:29
2019-06-13T22:19:29
130,261,873
0
0
null
null
null
null
UTF-8
C++
false
false
1,288
cpp
#include <bits/stdc++.h> #define MAXN 100007 #define MAXLOG 20 using namespace std; typedef pair <int, int> ii; int N, Q, arr[MAXN]; int sp[MAXLOG][MAXN]; vector <ii> queries; void build(); int access(int, int); void read(); void print(); int main(){ read(); build(); print(); return 0; } void read(){ scanf("%d", &N); for (int i = 0; i < N; i++) { scanf("%d", &arr[i]); } } void build(){ for (int j = 0; j < N; j++) { sp[0][j] = j; } for (int i = 1; (1 << i) < N; i++){ for (int j = 0; j + (1 << i) < N; j++) { if (arr[sp[i-1][j]] < arr[sp[i-1][j + (1 << (i-1))]]){ sp[i][j] = sp[i-1][j]; } else { sp[i][j] = sp[i-1][j + (1 << (i-1))]; } } } } void print(){ for (int j = 0; j < N; j++) { cout << arr[sp[0][j]] << " "; } cout << endl; for (int i = 0; (1 << i) < N; i++){ for (int j = 0; j + (1 << i) < N; j++) { cout << arr[sp[i][j]] << " "; } cout << endl; } } int access(int l, int r){ if(l > r) swap(r, l); int size = r - l + 1; int logOfSize = __builtin_clz(1) - __builtin_clz(size); return min(arr[sp[logOfSize][l]], arr[sp[logOfSize][r - (1 << logOfSize) + 1 ]]); }
[ "thulioicc@gmail.com" ]
thulioicc@gmail.com
5bad0fe0957e7729e98e6684d66ac163364e3054
7ac65e94ca83911706e65458c9b29b55d0600e58
/Playground/Drzewo/main.cpp
c224f1e8654079d58c7fbaaefd227ecb039d5ea1
[]
no_license
a-zapala/Algorithms
6c45ce386dbbd098ce6bc10987000eefe25cb60a
473458279a6167448936c3efa592e9e1cb9249eb
refs/heads/master
2020-05-23T03:58:04.688260
2020-02-25T23:05:07
2020-02-25T23:05:07
186,626,813
0
0
null
null
null
null
UTF-8
C++
false
false
1,284
cpp
#include <iostream> #include <vector> #include <list> using namespace std; int n; constexpr int MAXN = 500002; vector<int> sasiedzi[MAXN]; long long int suma[MAXN]; long long int suma_wszystkich[MAXN]; int ilosc_w_podrzewie[MAXN]; int ojciec[MAXN]; void DFS(int i, int o) { ojciec[i] = o; for (auto p : sasiedzi[i]) { if (p != o) DFS(p, i); } for (auto p : sasiedzi[i]) { if (p != o) { ilosc_w_podrzewie[i] += max(ilosc_w_podrzewie[i],ilosc_w_podrzewie[p]); } } ilosc_w_podrzewie[i]++; } list<int> kol; void BFS(int i) { kol.push_back(i); while (!kol.empty()) { int v = kol.front(); kol.pop_front(); if (v != 1) suma_wszystkich[1] = suma_wszystkich[ojciec[v]] + n - 2 * ilosc_w_podrzewie[v]; for (auto u : sasiedzi[v]) { if (u != ojciec[v]) kol.push_back(u); } } } int main() { cin >> n; for (int i = 0; i < n - 1; ++i) { int a, b; cin >> a >> b; sasiedzi[a].push_back(b); sasiedzi[b].push_back(a); } DFS(1, -1); suma[1] = ilosc_w_podrzewie[1]; BFS(1); for (int j = 1; j <= n; ++j) { cout << suma_wszystkich[j]<<endl; } return 0; }
[ "zapala333@gmail.com" ]
zapala333@gmail.com
97b825821275386f46cd7d76a7f7a523e9863e64
23a405404b3238e9d7bb24f852f69d3f558183d9
/吉田学園情報ビジネス専門学校 竹内亘/12_2年チーム制作/開発環境/GHOST REMAINS/mesh.h
80c6deba29a481bbb4a963f62d015eecedb9f5ee
[]
no_license
takeuchiwataru/TakeuchiWataru_QMAX
fa25283aa90bcedb75dd650613d8d828a3f8f81a
cd5d6f75ca258f58df934d40a8ea238976e7c69d
refs/heads/master
2022-02-07T16:33:12.052935
2019-06-12T04:32:08
2019-06-12T04:32:08
191,302,573
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
3,987
h
//============================================================================= // // メッシュ処理 [mesh.h] // Author : Ryo Sugimoto // //============================================================================= #ifndef _MESH_H_ #define _MESH_H_ #include "main.h" #include "scene.h" #include "motion.h" //***************************************************************************** // マクロの定義 //***************************************************************************** #define WALL_PLUS (2.0f) //壁の判定のプラス値 #define MESH_PRIORITY (0) //メッシュの優先順位 //***************************************************************************** // クラスの定義 //***************************************************************************** class CMesh : public CScene { public: typedef enum { TYPE_FIELD, //地面 TYPE_WALL, //壁 TYPE_CEILING, //天井 TYPE_MAX }TYPE; CMesh(int nPrioryity = 0) : CScene::CScene(nPrioryity) {}; ~CMesh() {}; void Set(TYPE type, D3DXVECTOR3 pos, int nVertical, int nCorss, bool bMesh); //セット処理 void SetNor(void); //法線のセット処理 void SetWall(D3DXVECTOR3 *vtx); //壁セット処理 bool SetField(int *nDig, int nMaxDig, float *fHeight, bool bRoom); //床セット処理 void UpField(int *nMap, float fHeight); //床プラス処理 HRESULT Init(void); void Update(void); void Uninit(void); void Draw(void); void BindTexture(LPDIRECT3DTEXTURE9 pTex) { m_pTex = pTex; } static void MeshCollisionCeiling(D3DXVECTOR3& pos, D3DXVECTOR3 &posold, D3DXVECTOR3 &length); static bool MeshCollisionField(D3DXVECTOR3& pos, D3DXVECTOR3 &posold, D3DXVECTOR3 &move, D3DXVECTOR3 &length, D3DXVECTOR3 &FNor, bool &bJump); static void MeshCollisionWall(D3DXVECTOR3& pos, D3DXVECTOR3 &posold, D3DXVECTOR3 &move, D3DXVECTOR3 &length, D3DXVECTOR3 &FNor, int &nCntHit, bool &bJump, bool bReflection); static float FieldCollision(D3DXVECTOR3 &FposUL, D3DXVECTOR3 &FposUR, D3DXVECTOR3 &FposDL, D3DXVECTOR3 &FposDR, D3DXVECTOR3 WKpos, D3DXVECTOR3& pos, D3DXVECTOR3 &FNor); static int WallCollision(D3DXVECTOR3 Wall0, D3DXVECTOR3 Wall1, D3DXVECTOR3& pos, D3DXVECTOR3 &posold, D3DXVECTOR3 &move, float& fLength, int &nCntHit, bool &bReflection); static bool FieldCheck(D3DXVECTOR3 &FposUL, D3DXVECTOR3 &FposUR, D3DXVECTOR3 &FposDL, D3DXVECTOR3 &FposDR, D3DXVECTOR3& pos); static int AngleCheck(float fAngle0, float fAngle1); void MeshCeling(D3DXVECTOR3& pos, D3DXVECTOR3 &posold, float& fLength); bool MeshField(D3DXVECTOR3& pos, D3DXVECTOR3 &posold, D3DXVECTOR3 &move, D3DXVECTOR3 &FNor, float& fLength, bool &bJump); void MeshWall(D3DXVECTOR3& pos, D3DXVECTOR3 &posold, D3DXVECTOR3 &move, float& fLength, int &nCntHit, bool &bReflection); float &GetfUV_X(void) { return m_fUV_X; } float &GetfUV_Y(void) { return m_fUV_Y; } CScene::DRAW_TYPE &GetDrawType(void) { return m_DrawType; } private://***************************************************************************** void WallPlus(D3DXVECTOR3& pos0, D3DXVECTOR3 &pos1, float& fLengthX, float& fLengthZ); void PlusNor(VERTEX_3D *pVtx, VERTEX_3D *pVtxL, VERTEX_3D *pVtxR); //法線のセット処理 //変数宣言//*********************************************************************** CScene::DRAW_TYPE m_DrawType; // 描画する方法(加算合成など) TYPE m_Type; //タイプ LPDIRECT3DVERTEXBUFFER9 m_pVtxBuff; //頂点バッファ LPDIRECT3DINDEXBUFFER9 m_pIdxBuff; //インデックスバッファのポインタ LPDIRECT3DTEXTURE9 m_pTex; //画像 D3DXVECTOR3 m_pos; //位置 D3DXVECTOR3 m_rot; //向き float m_fUV_X; float m_fUV_Y; int m_nVertical; //縦の分割数 int m_nCross; //横の分割数 int m_nNumVertex; //頂点数 int m_nNumIdx; //インデックス数 int m_nNumPolygon; //ポリゴン数 bool m_bMesh; //張っている面が内側か外側か(左回りか右回りか) }; #endif
[ "jb2017024@stu.yoshida-g.ac.jp" ]
jb2017024@stu.yoshida-g.ac.jp
fc0be9e9db4365b30cad8534c7a49e7639484678
13dff6e0175eea78cb574378cc148ed80d1b9522
/tests/bluestone.cpp
c14bf5b1ec9ce2963adf6e99641c6822075503e0
[]
no_license
hcnelson99/voxel
b70972964fe7d52ca0f6b978a228eaab01900b73
b20192f6544c383c21eba1f01605235f9b6ac78b
refs/heads/master
2023-04-24T18:37:39.043762
2021-05-13T18:17:00
2021-05-13T18:17:00
351,544,398
0
0
null
null
null
null
UTF-8
C++
false
false
6,801
cpp
#include "../world.h" #include <iostream> World world; void test_straight_line() { world.set_block(0, 0, 0, Block::NotGate); world.set_block(1, 0, 0, Block::InactiveBluestone); world.set_block(2, 0, 0, Block::InactiveBluestone); world.set_block(3, 0, 0, Block::InactiveBluestone); world.tick(); assert(world.get_block(0, 0, 0).is(Block::ActiveNotGate)); assert(world.get_block(1, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 0).is(Block::ActiveBluestone)); // state should be steady world.tick(); assert(world.get_block(0, 0, 0).is(Block::ActiveNotGate)); assert(world.get_block(1, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 0).is(Block::ActiveBluestone)); } void test_or_gate() { world.set_block(0, 0, 0, Block::NotGate); world.set_block(1, 0, 0, Block::InactiveBluestone); world.set_block(2, 0, 0, Block::InactiveBluestone); world.set_block(3, 0, 0, Block::InactiveBluestone); world.set_block(3, 1, 0, Block::InactiveBluestone); world.set_block(3, 0, 1, Block::InactiveBluestone); world.tick(); assert(world.get_block(0, 0, 0).is(Block::ActiveNotGate)); assert(world.get_block(1, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 1, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 1).is(Block::ActiveBluestone)); // state should be steady world.tick(); assert(world.get_block(0, 0, 0).is(Block::ActiveNotGate)); assert(world.get_block(1, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 1, 0).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 1).is(Block::ActiveBluestone)); } void test_off_ring() { world.set_block(0, 0, 0, Block::InactiveBluestone); world.set_block(1, 0, 0, Block::InactiveBluestone); world.set_block(2, 0, 0, Block::InactiveBluestone); world.set_block(2, 1, 0, Block::InactiveBluestone); world.set_block(2, 2, 0, Block::InactiveBluestone); world.set_block(1, 2, 0, Block::InactiveBluestone); world.set_block(0, 2, 0, Block::InactiveBluestone); world.set_block(0, 1, 0, Block::InactiveBluestone); world.tick(); assert(world.get_block(0, 0, 0).is(Block::InactiveBluestone)); assert(world.get_block(1, 0, 0).is(Block::InactiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::InactiveBluestone)); assert(world.get_block(2, 1, 0).is(Block::InactiveBluestone)); assert(world.get_block(2, 2, 0).is(Block::InactiveBluestone)); assert(world.get_block(1, 2, 0).is(Block::InactiveBluestone)); assert(world.get_block(0, 2, 0).is(Block::InactiveBluestone)); assert(world.get_block(0, 1, 0).is(Block::InactiveBluestone)); } void test_off_ring2() { world.set_block(0, 0, 0, Block::InactiveBluestone); world.set_block(1, 0, 0, Block::InactiveBluestone); world.set_block(2, 0, 0, Block::InactiveBluestone); world.set_block(2, 1, 0, Block::InactiveBluestone); world.set_block(2, 2, 0, Block::InactiveBluestone); world.set_block(1, 2, 0, Block::InactiveBluestone); world.set_block(0, 2, 0, Block::InactiveBluestone); world.set_block(0, 1, 0, Block::InactiveBluestone); world.set_block(3, 0, 0, Block(Block::NotGate, Orientation::PosX)); world.set_block(4, 0, 0, Block::InactiveBluestone); const auto check = []() { assert(world.get_block(0, 0, 0).is(Block::InactiveBluestone)); assert(world.get_block(1, 0, 0).is(Block::InactiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::InactiveBluestone)); assert(world.get_block(2, 1, 0).is(Block::InactiveBluestone)); assert(world.get_block(2, 2, 0).is(Block::InactiveBluestone)); assert(world.get_block(1, 2, 0).is(Block::InactiveBluestone)); assert(world.get_block(0, 2, 0).is(Block::InactiveBluestone)); assert(world.get_block(0, 1, 0).is(Block::InactiveBluestone)); assert(world.get_block(4, 0, 0).is(Block::ActiveBluestone)); }; world.tick(); check(); world.tick(); check(); } void test_blue_red_incompatible() { world.set_block(0, 0, 0, Block::NotGate); world.set_block(1, 0, 0, Block::InactiveBluestone); world.set_block(2, 0, 0, Block::InactiveRedstone); world.set_block(3, 0, 0, Block::InactiveBluestone); const auto check = []() { assert(world.get_block(0, 0, 0).is(Block::ActiveNotGate)); assert(world.get_block(1, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::InactiveRedstone)); assert(world.get_block(3, 0, 0).is(Block::InactiveBluestone)); }; world.tick(); check(); world.tick(); check(); } void test_blue_red_combine_with_diode() { world.set_block(0, 0, 0, Block::NotGate); world.set_block(1, 0, 0, Block::InactiveBluestone); world.set_block(2, 0, 0, Block(Block::DiodeGate, Orientation::PosX)); world.set_block(3, 0, 0, Block::InactiveBluestone); world.set_block(0, 0, 2, Block::NotGate); world.set_block(1, 0, 2, Block::InactiveRedstone); world.set_block(2, 0, 2, Block(Block::DiodeGate, Orientation::PosX)); world.set_block(3, 0, 2, Block::InactiveBluestone); world.set_block(3, 0, 1, Block::InactiveBluestone); world.set_block(4, 0, 1, Block(Block::DiodeGate, Orientation::PosX)); world.set_block(5, 0, 1, Block::InactiveRedstone); const auto check = []() { assert(world.get_block(1, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(2, 0, 0).is(Block::ActiveDiodeGate)); assert(world.get_block(3, 0, 0).is(Block::ActiveBluestone)); assert(world.get_block(1, 0, 2).is(Block::ActiveRedstone)); assert(world.get_block(2, 0, 2).is(Block::ActiveDiodeGate)); assert(world.get_block(3, 0, 2).is(Block::ActiveBluestone)); assert(world.get_block(3, 0, 1).is(Block::ActiveBluestone)); assert(world.get_block(4, 0, 1).is(Block::ActiveDiodeGate)); assert(world.get_block(5, 0, 1).is(Block::ActiveRedstone)); }; world.tick(); check(); world.tick(); check(); } int main() { test_straight_line(); world.reset(); test_or_gate(); world.reset(); test_off_ring(); world.reset(); test_off_ring2(); world.reset(); test_blue_red_incompatible(); world.reset(); test_blue_red_combine_with_diode(); return 0; }
[ "steven.shan99@gmail.com" ]
steven.shan99@gmail.com
180ee6cd9d35dc41c5c381fc1403c5ad8af0212f
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/printscan/print/drivers/usermode/ddk/samples/oemdll/oemps/enable.cpp
7c438e58d2a56ca44bf72bd41026252a3fb19c29
[]
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
5,541
cpp
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright 1998 Microsoft Corporation. All Rights Reserved. // // FILE: Enable.cpp // // // PURPOSE: Enable routines for User Mode COM Customization DLL. // // // Functions: // // // // // PLATFORMS: Windows NT // // #include "precomp.h" #include "debug.h" #include "oemps.h" //////////////////////////////////////////////////////// // Internal Constants //////////////////////////////////////////////////////// /////////////////////////////////////////////////////// // Warning: the following array order must match the // order in enum ENUMHOOKS. /////////////////////////////////////////////////////// static const DRVFN OEMHookFuncs[] = { { INDEX_DrvRealizeBrush, (PFN) OEMRealizeBrush }, { INDEX_DrvCopyBits, (PFN) OEMCopyBits }, { INDEX_DrvBitBlt, (PFN) OEMBitBlt }, { INDEX_DrvStretchBlt, (PFN) OEMStretchBlt }, { INDEX_DrvTextOut, (PFN) OEMTextOut }, { INDEX_DrvStrokePath, (PFN) OEMStrokePath }, { INDEX_DrvFillPath, (PFN) OEMFillPath }, { INDEX_DrvStrokeAndFillPath, (PFN) OEMStrokeAndFillPath }, { INDEX_DrvStartPage, (PFN) OEMStartPage }, { INDEX_DrvSendPage, (PFN) OEMSendPage }, { INDEX_DrvEscape, (PFN) OEMEscape }, { INDEX_DrvStartDoc, (PFN) OEMStartDoc }, { INDEX_DrvEndDoc, (PFN) OEMEndDoc }, { INDEX_DrvQueryFont, (PFN) OEMQueryFont }, { INDEX_DrvQueryFontTree, (PFN) OEMQueryFontTree }, { INDEX_DrvQueryFontData, (PFN) OEMQueryFontData }, { INDEX_DrvQueryAdvanceWidths, (PFN) OEMQueryAdvanceWidths }, { INDEX_DrvFontManagement, (PFN) OEMFontManagement }, { INDEX_DrvGetGlyphMode, (PFN) OEMGetGlyphMode }, #ifndef WINNT_40 { INDEX_DrvStretchBltROP, (PFN) OEMStretchBltROP }, { INDEX_DrvPlgBlt, (PFN) OEMPlgBlt }, { INDEX_DrvTransparentBlt, (PFN) OEMTransparentBlt }, { INDEX_DrvAlphaBlend, (PFN) OEMAlphaBlend }, { INDEX_DrvGradientFill, (PFN) OEMGradientFill }, { INDEX_DrvIcmCreateColorTransform, (PFN) OEMIcmCreateColorTransform }, { INDEX_DrvIcmDeleteColorTransform, (PFN) OEMIcmDeleteColorTransform }, { INDEX_DrvQueryDeviceSupport, (PFN) OEMQueryDeviceSupport }, #endif }; PDEVOEM APIENTRY OEMEnablePDEV( PDEVOBJ pdevobj, PWSTR pPrinterName, ULONG cPatterns, HSURF *phsurfPatterns, ULONG cjGdiInfo, GDIINFO *pGdiInfo, ULONG cjDevInfo, DEVINFO *pDevInfo, DRVENABLEDATA *pded // Unidrv's hook table ) { POEMPDEV poempdev; INT i, j; DWORD dwDDIIndex; PDRVFN pdrvfn; VERBOSE(DLLTEXT("OEMEnablePDEV() entry.\r\n")); // // Allocate the OEMDev // poempdev = new OEMPDEV; if (NULL == poempdev) { return NULL; } // // Fill in OEMDEV as you need // // // Fill in OEMDEV // for (i = 0; i < MAX_DDI_HOOKS; i++) { // // search through Unidrv's hooks and locate the function ptr // dwDDIIndex = OEMHookFuncs[i].iFunc; for (j = pded->c, pdrvfn = pded->pdrvfn; j > 0; j--, pdrvfn++) { if (dwDDIIndex == pdrvfn->iFunc) { poempdev->pfnPS[i] = pdrvfn->pfn; break; } } if (j == 0) { // // didn't find the Unidrv hook. Should happen only with DrvRealizeBrush // poempdev->pfnPS[i] = NULL; } } return (POEMPDEV) poempdev; } VOID APIENTRY OEMDisablePDEV( PDEVOBJ pdevobj ) { VERBOSE(DLLTEXT("OEMDisablePDEV() entry.\r\n")); // // Free memory for OEMPDEV and any memory block that hangs off OEMPDEV. // assert(NULL != pdevobj->pdevOEM); delete pdevobj->pdevOEM; } BOOL APIENTRY OEMResetPDEV( PDEVOBJ pdevobjOld, PDEVOBJ pdevobjNew ) { VERBOSE(DLLTEXT("OEMResetPDEV() entry.\r\n")); // // If you want to carry over anything from old pdev to new pdev, do it here. // return TRUE; } VOID APIENTRY OEMDisableDriver() { VERBOSE(DLLTEXT("OEMDisableDriver() entry.\r\n")); } BOOL APIENTRY OEMEnableDriver(DWORD dwOEMintfVersion, DWORD dwSize, PDRVENABLEDATA pded) { VERBOSE(DLLTEXT("OEMEnableDriver() entry.\r\n")); // List DDI functions that are hooked. pded->iDriverVersion = PRINTER_OEMINTF_VERSION; pded->c = sizeof(OEMHookFuncs) / sizeof(DRVFN); pded->pdrvfn = (DRVFN *) OEMHookFuncs; return TRUE; }
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
fdfa070e00535ab37def95fd47652bfc31e53306
b3bddd7e74e7c0525cdb30cf57e0cd1f6a433645
/FastAndBeautiful/Projects/Lighting/FBX_Loader.cpp
f92d2ba9bebbdd74e1385623c6ac7567f78349d8
[]
no_license
akurt5/AIEShit
cb1e50fd8355ded401dabe9eb21a9a442cb2c8d8
a6d8d79d0b4f6a89a9e5752480f4a4a2e221bdea
refs/heads/master
2021-01-20T04:12:05.545012
2014-07-20T23:12:50
2014-07-20T23:12:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,281
cpp
#include "FBX_Loader.h" #include "Gizmos.h" #include "Utilities.h" #include <GL/glew.h> #include <GLFW/glfw3.h> #include <glm/ext.hpp> #include <SOIL.h> FBX_Loader::FBX_Loader() { } FBX_Loader::~FBX_Loader() { } bool FBX_Loader::Load(int a_argc, char* a_argv[]) { // load the shader const char* aszInputs[] = { "Position", "Color", "TexCoord1" }; const char* aszOutputs[] = { "outColour" }; // load shader internally calls glCreateShader... GLuint vshader = Utility::loadShader("./shaders/Simple.vert", GL_VERTEX_SHADER); GLuint pshader = Utility::loadShader("./shaders/Simple.frag", GL_FRAGMENT_SHADER); m_shader = Utility::createProgram( vshader, 0, 0, 0, pshader, 3, aszInputs, 1, aszOutputs); // free our shader once we built our program glDeleteShader( vshader ); glDeleteShader( pshader ); m_fbx = new FBXFile(); m_fbx->load( "./Models/soulspear/soulspear.fbx", FBXFile::UNITS_CENTIMETER ); InitFBXSceneResource( m_fbx ); return true; } void FBX_Loader::Draw(glm::mat4 viewmatrix) { RenderFBXSceneResource( m_fbx, viewmatrix, m_projectionMatrix ); } void FBX_Loader::Unload() { DestroyFBXSceneResource( m_fbx ); m_fbx->unload(); delete m_fbx; m_fbx = NULL; } void FBX_Loader::InitFBXSceneResource(FBXFile *a_pScene) { // how manu meshes and materials are stored within the fbx file unsigned int meshCount = a_pScene->getMeshCount(); unsigned int matCount = a_pScene->getMaterialCount(); // loop through each mesh for(int i=0; i<meshCount; ++i) { // get the current mesh FBXMeshNode *pMesh = a_pScene->getMeshByIndex(i); // genorate our OGL_FBXRenderData for storing the meshes VBO, IBO and VAO // and assign it to the meshes m_userData pointer so that we can retrive // it again within the render function OGL_FBXRenderData *ro = new OGL_FBXRenderData(); pMesh->m_userData = ro; // OPENGL: genorate the VBO, IBO and VAO glGenBuffers(1, &ro->VBO); glGenBuffers(1, &ro->IBO); glGenVertexArrays(1, &ro->VAO); // OPENGL: Bind VAO, and then bind the VBO and IBO to the VAO glBindVertexArray(ro->VAO); glBindBuffer(GL_ARRAY_BUFFER, ro->VBO); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ro->IBO); // Send the vertex data to the VBO glBufferData(GL_ARRAY_BUFFER, pMesh->m_vertices.size() * sizeof(FBXVertex), pMesh->m_vertices.data(), GL_STATIC_DRAW); // send the index data to the IBO glBufferData(GL_ELEMENT_ARRAY_BUFFER, pMesh->m_indices.size() * sizeof(unsigned int), pMesh->m_indices.data(), GL_STATIC_DRAW); // enable the attribute locations that will be used on our shaders glEnableVertexAttribArray(0); glEnableVertexAttribArray(1); glEnableVertexAttribArray(2); // tell our shaders where the information within our buffers lie // eg: attrubute 0 is expected to be the verticy's position. it should be 4 floats, representing xyzw // eg: attrubute 1 is expected to be the verticy's color. it should be 4 floats, representing rgba // eg: attrubute 2 is expected to be the verticy's texture coordinate. it should be 2 floats, representing U and V glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (char *)FBXVertex::PositionOffset); glVertexAttribPointer(1, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (char *)FBXVertex::ColourOffset); glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (char *)FBXVertex::TexCoord1Offset); // finally, where done describing our mesh to the shader // we can describe the next mesh glBindVertexArray(0); } // Loop through each material and load the texture for(unsigned int i = 0; i<matCount; ++i) { // get the current material being loaded FBXMaterial *pMaterial = a_pScene->getMaterialByIndex(i); // each material can optionally have many different textures that can be used to describe how the object should be rendered. // Look at the FBXMaterial structure. // the following textures can be assigned to a material within the 3D modeling programs // we can optionally support loading these in... // - DiffuseTexture, // - AmbientTexture, // - GlowTexture, // - SpecularTexture, // - GlossTexture, // - NormalTexture, // - AlphaTexture, // - DisplacementTexture, for(unsigned int j = 0; j<FBXMaterial::TextureTypes_Count; ++j) { // find the path to the texture to be loaded std::string path = a_pScene->getPath(); // append the filename of the texture path += pMaterial->textureFilenames[j]; // load the texture using SOIL pMaterial->textureIDs[j] = SOIL_load_OGL_texture(path.c_str(), 4, 0, SOIL_FLAG_TEXTURE_REPEATS | SOIL_FLAG_INVERT_Y); // lets just print what is loaded to the console... printf("Loading texture %i: %s - ID: %i\n", j, path.c_str(), pMaterial->textureIDs[j]); } } } void FBX_Loader::DestroyFBXSceneResource(FBXFile *a_pScene) { // how manu meshes and materials are stored within the fbx file unsigned int meshCount = a_pScene->getMeshCount(); unsigned int matCount = a_pScene->getMaterialCount(); // remove meshes for(unsigned int i=0; i<meshCount; i++) { // Get the current mesh and retrive the render data we assigned to m_userData FBXMeshNode* pMesh = a_pScene->getMeshByIndex(i); OGL_FBXRenderData *ro = (OGL_FBXRenderData *)pMesh->m_userData; // delete the buffers and free memory from the graphics card glDeleteBuffers(1, &ro->VBO); glDeleteBuffers(1, &ro->IBO); glDeleteVertexArrays(1, &ro->VAO); // this is memory we created earlier in the InitFBXSceneResources function // make sure to destroy it delete ro; } // loop through each of the materials for(int i=0; i<matCount; i++) { // get the current material FBXMaterial *pMaterial = a_pScene->getMaterialByIndex(i); for(int j=0; j<FBXMaterial::TextureTypes_Count; j++) { // delete the texture if it was loaded if( pMaterial->textureIDs[j] != 0 ) glDeleteTextures(1, &pMaterial->textureIDs[j]); } } } void FBX_Loader::UpdateFBXSceneResource(FBXFile *a_pScene) { for(int i=0; i<a_pScene->getMeshCount(); ++i) { // get the current mesh FBXMeshNode *mesh = a_pScene->getMeshByIndex(i); // if you move an object around within your scene // children nodes are not updated until this function is called. mesh->updateGlobalTransform(); } } void FBX_Loader::RenderFBXSceneResource(FBXFile *a_pScene, glm::mat4 a_view, glm::mat4 a_projection) { // activate a shader glUseProgram( m_shader ); // get the location of uniforms on the shader GLint uDiffuseTexture = glGetUniformLocation(m_shader, "DiffuseTexture"); GLint uDiffuseColor = glGetUniformLocation(m_shader, "DiffuseColor"); GLint uModel = glGetUniformLocation(m_shader, "Model"); GLint uView = glGetUniformLocation(m_shader, "View"); GLint uProjection = glGetUniformLocation(m_shader, "Projection"); // for each mesh in the model... for(int i=0; i<a_pScene->getMeshCount(); ++i) { // get the current mesh FBXMeshNode *mesh = a_pScene->getMeshByIndex(i); // get the render data attached to the m_userData pointer for this mesh OGL_FBXRenderData *ro = (OGL_FBXRenderData *) mesh->m_userData; // Bind the texture to one of the ActiveTextures // if your shader supported multiple textures, you would bind each texture to a new Active Texture ID here glActiveTexture( GL_TEXTURE1 ); glBindTexture( GL_TEXTURE_2D, mesh->m_material->textureIDs[ FBXMaterial::DiffuseTexture] ); // reset back to the default active texture glActiveTexture( GL_TEXTURE0 ); // tell the shader which texture to use glUniform1i( uDiffuseTexture, 1 ); // send the Model, View and Projection Matrices to the shader glUniformMatrix4fv( uModel, 1, false, glm::value_ptr(mesh->m_globalTransform) ); glUniformMatrix4fv( uView, 1, false, glm::value_ptr(a_view) ); glUniformMatrix4fv( uProjection, 1, false, glm::value_ptr(a_projection) ); // bind our vertex array object // remember in the initialise function, we bound the VAO and IBO to the VAO // so when we bind the VAO, openGL knows what what vertices, // indices and vertex attributes to send to the shader glBindVertexArray(ro->VAO); glDrawElements(GL_TRIANGLES, mesh->m_indices.size(), GL_UNSIGNED_INT, 0); } // finally, we have finished rendering the meshes // disable this shader glUseProgram(0); }
[ "anton.n.kurtz@gmail.com" ]
anton.n.kurtz@gmail.com
53ec9b36acbda858288d41159c4f6a475e77eeae
1395aa30dff5016307427677cdf3f30c714045c8
/bioreactor.ino
9c8ff23b6821a4fa6ead79745cfb8250938a7cc1
[]
no_license
karloacha/bioreactor
599e6af5edc08faacd1c17cf36ef4753c98cc585
c5c32cbd241cc00a86a981febfce5a933ea13ba4
refs/heads/master
2020-03-07T18:04:48.363519
2018-04-01T12:37:44
2018-04-01T12:37:44
127,627,886
0
0
null
null
null
null
UTF-8
C++
false
false
2,809
ino
#include <max6675.h> const float HEAT_RATE = 20.0; const float TERMINAL = 600.0; const float INITIAL = 50.0; float limit = 0.0; const int8_t INTERVALS = 10; const int8_t SSR_PIN = 9; const int8_t DO = 50; const int8_t CS_1 = 48; const int8_t CS_2 = 46; const int8_t CS_3 = 44; const int8_t CS_4 = 42; const int8_t CS_5 = 40; const int8_t CLK = 52; const float temp_per_interval = (HEAT_RATE / INTERVALS); // get the target incremental value per 6 seconds unsigned long PERIOD = 1000*60/INTERVALS; // duration per interval in milliseconds float dummy_reading = 0.0; // just a placeholder const float DIFF = 0.3000; // window for error is set as +- 0.3000 void setup() { Serial.begin(9600); pinMode(SSR_PIN, OUTPUT); change_temp(millis(), false); // set the initial temperature to 50C } void loop() { unsigned long lapse = millis(); // Do the following functions until 6 seconds is reached // read temperatures from the 5 thermocouples //double temp_1 = readTemp(CLK, CS_1 ,DO); // top of furnace double temp_2 = readTemp(CLK, CS_2 ,DO); // middle of furnace double temp_3 = readTemp(CLK, CS_3 ,DO); // bottom of furnace double temp_4 = readTemp(CLK, CS_4 ,DO); // heating element double temp_5 = readTemp(CLK, CS_5 ,DO); // vapor inlet Serial.println(temp_2); Serial.println(temp_3); Serial.println(temp_4); Serial.println(temp_5); Serial.println(" "); while (millis() - lapse < 6000) { change_temp(lapse, true); } } // Change the temperature up to the set limit // Argument: target, Type: boolean /// set false if there is no target temperature per interval (e.g. initializing temperature) /// set true if there is a target per intervall (e.g. raising the temperature up to the TERMINAL) void change_temp (unsigned long dur, boolean target) { unsigned long SPAN = 0; if (target) { SPAN = PERIOD; if (limit < TERMINAL) { limit = limit + temp_per_interval; } else { limit = TERMINAL; } } else { limit = INITIAL; } do { dummy_reading = readTemp(CLK, CS_2 ,DO); Serial.print("T2 = "); Serial.println(dummy_reading); Serial.print("limit = "); Serial.println(limit); Serial.print("temp_per_interval = "); Serial.println(temp_per_interval); Serial.println(" "); if (dummy_reading < limit) { digitalWrite(SSR_PIN, HIGH); delay(100); } else { digitalWrite(SSR_PIN, LOW); delay(100); } }while ((millis() - dur) < SPAN); } double readTemp(int8_t clk, int8_t cs, int8_t miso) { MAX6675 thermo(clk, cs, miso); double temperature = thermo.readCelsius(); delay(250); return temperature; }
[ "noreply@github.com" ]
noreply@github.com
ab6316f9ccdca76c4d7f4e3f1293c88cc37c12f1
8010df1fef10ddfd83bf07966cbf7e2e4b0d7ee9
/include/winsdk/cppwinrt/winrt/Windows.Storage.Pickers.h
ee964aa7e84545dc5e329f6588c4f7833c70ad27
[ "MIT" ]
permissive
light-tech/MSCpp
a23ab987b7e12329ab2d418b06b6b8055bde5ca2
012631b58c402ceec73c73d2bda443078bc151ef
refs/heads/master
2022-12-26T23:51:21.686396
2020-10-15T13:40:34
2020-10-15T13:40:34
188,921,341
6
0
null
null
null
null
UTF-8
C++
false
false
43,030
h
// C++/WinRT v2.0.190620.2 // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #ifndef WINRT_Windows_Storage_Pickers_H #define WINRT_Windows_Storage_Pickers_H #include "winrt/base.h" static_assert(winrt::check_version(CPPWINRT_VERSION, "2.0.190620.2"), "Mismatched C++/WinRT headers."); #include "winrt/Windows.Storage.h" #include "winrt/impl/Windows.Foundation.2.h" #include "winrt/impl/Windows.Foundation.Collections.2.h" #include "winrt/impl/Windows.Storage.2.h" #include "winrt/impl/Windows.System.2.h" #include "winrt/impl/Windows.Storage.Pickers.2.h" namespace winrt::impl { template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::ViewMode() const { Windows::Storage::Pickers::PickerViewMode value; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->get_ViewMode(put_abi(value))); return value; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::ViewMode(Windows::Storage::Pickers::PickerViewMode const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->put_ViewMode(static_cast<int32_t>(value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::SettingsIdentifier() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->get_SettingsIdentifier(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::SettingsIdentifier(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->put_SettingsIdentifier(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::SuggestedStartLocation() const { Windows::Storage::Pickers::PickerLocationId value; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->get_SuggestedStartLocation(put_abi(value))); return value; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::SuggestedStartLocation(Windows::Storage::Pickers::PickerLocationId const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->put_SuggestedStartLocation(static_cast<int32_t>(value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::CommitButtonText() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->get_CommitButtonText(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::CommitButtonText(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->put_CommitButtonText(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::FileTypeFilter() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->get_FileTypeFilter(&value)); return Windows::Foundation::Collections::IVector<hstring>{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::PickSingleFileAsync() const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->PickSingleFileAsync(&operation)); return Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>{ operation, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker<D>::PickMultipleFilesAsync() const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker)->PickMultipleFilesAsync(&operation)); return Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Storage::StorageFile>>{ operation, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker2<D>::ContinuationData() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker2)->get_ContinuationData(&value)); return Windows::Foundation::Collections::ValueSet{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker2<D>::PickSingleFileAndContinue() const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker2)->PickSingleFileAndContinue()); } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker2<D>::PickMultipleFilesAndContinue() const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker2)->PickMultipleFilesAndContinue()); } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPicker3<D>::User() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPicker3)->get_User(&value)); return Windows::System::User{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPickerStatics<D>::ResumePickSingleFileAsync() const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPickerStatics)->ResumePickSingleFileAsync(&operation)); return Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>{ operation, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPickerStatics2<D>::CreateForUser(Windows::System::User const& user) const { void* result{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPickerStatics2)->CreateForUser(*(void**)(&user), &result)); return Windows::Storage::Pickers::FileOpenPicker{ result, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileOpenPickerWithOperationId<D>::PickSingleFileAsync(param::hstring const& pickerOperationId) const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileOpenPickerWithOperationId)->PickSingleFileAsync(*(void**)(&pickerOperationId), &operation)); return Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>{ operation, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SettingsIdentifier() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_SettingsIdentifier(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SettingsIdentifier(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->put_SettingsIdentifier(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SuggestedStartLocation() const { Windows::Storage::Pickers::PickerLocationId value; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_SuggestedStartLocation(put_abi(value))); return value; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SuggestedStartLocation(Windows::Storage::Pickers::PickerLocationId const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->put_SuggestedStartLocation(static_cast<int32_t>(value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::CommitButtonText() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_CommitButtonText(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::CommitButtonText(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->put_CommitButtonText(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::FileTypeChoices() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_FileTypeChoices(&value)); return Windows::Foundation::Collections::IMap<hstring, Windows::Foundation::Collections::IVector<hstring>>{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::DefaultFileExtension() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_DefaultFileExtension(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::DefaultFileExtension(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->put_DefaultFileExtension(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SuggestedSaveFile() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_SuggestedSaveFile(&value)); return Windows::Storage::StorageFile{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SuggestedSaveFile(Windows::Storage::StorageFile const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->put_SuggestedSaveFile(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SuggestedFileName() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->get_SuggestedFileName(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::SuggestedFileName(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->put_SuggestedFileName(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker<D>::PickSaveFileAsync() const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker)->PickSaveFileAsync(&operation)); return Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>{ operation, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker2<D>::ContinuationData() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker2)->get_ContinuationData(&value)); return Windows::Foundation::Collections::ValueSet{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker2<D>::PickSaveFileAndContinue() const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker2)->PickSaveFileAndContinue()); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker3<D>::EnterpriseId() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker3)->get_EnterpriseId(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker3<D>::EnterpriseId(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker3)->put_EnterpriseId(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePicker4<D>::User() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePicker4)->get_User(&value)); return Windows::System::User{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFileSavePickerStatics<D>::CreateForUser(Windows::System::User const& user) const { void* result{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFileSavePickerStatics)->CreateForUser(*(void**)(&user), &result)); return Windows::Storage::Pickers::FileSavePicker{ result, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::ViewMode() const { Windows::Storage::Pickers::PickerViewMode value; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->get_ViewMode(put_abi(value))); return value; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::ViewMode(Windows::Storage::Pickers::PickerViewMode const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->put_ViewMode(static_cast<int32_t>(value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::SettingsIdentifier() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->get_SettingsIdentifier(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::SettingsIdentifier(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->put_SettingsIdentifier(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::SuggestedStartLocation() const { Windows::Storage::Pickers::PickerLocationId value; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->get_SuggestedStartLocation(put_abi(value))); return value; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::SuggestedStartLocation(Windows::Storage::Pickers::PickerLocationId const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->put_SuggestedStartLocation(static_cast<int32_t>(value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::CommitButtonText() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->get_CommitButtonText(&value)); return hstring{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::CommitButtonText(param::hstring const& value) const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->put_CommitButtonText(*(void**)(&value))); } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::FileTypeFilter() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->get_FileTypeFilter(&value)); return Windows::Foundation::Collections::IVector<hstring>{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker<D>::PickSingleFolderAsync() const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker)->PickSingleFolderAsync(&operation)); return Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFolder>{ operation, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker2<D>::ContinuationData() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker2)->get_ContinuationData(&value)); return Windows::Foundation::Collections::ValueSet{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker2<D>::PickFolderAndContinue() const { check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker2)->PickFolderAndContinue()); } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPicker3<D>::User() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPicker3)->get_User(&value)); return Windows::System::User{ value, take_ownership_from_abi }; } template <typename D> auto consume_Windows_Storage_Pickers_IFolderPickerStatics<D>::CreateForUser(Windows::System::User const& user) const { void* result{}; check_hresult(WINRT_IMPL_SHIM(Windows::Storage::Pickers::IFolderPickerStatics)->CreateForUser(*(void**)(&user), &result)); return Windows::Storage::Pickers::FolderPicker{ result, take_ownership_from_abi }; } template <typename D> struct produce<D, Windows::Storage::Pickers::IFileOpenPicker> : produce_base<D, Windows::Storage::Pickers::IFileOpenPicker> { int32_t __stdcall get_ViewMode(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Storage::Pickers::PickerViewMode>(this->shim().ViewMode()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_ViewMode(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().ViewMode(*reinterpret_cast<Windows::Storage::Pickers::PickerViewMode const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SettingsIdentifier(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().SettingsIdentifier()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SettingsIdentifier(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SettingsIdentifier(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SuggestedStartLocation(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Storage::Pickers::PickerLocationId>(this->shim().SuggestedStartLocation()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SuggestedStartLocation(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SuggestedStartLocation(*reinterpret_cast<Windows::Storage::Pickers::PickerLocationId const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_CommitButtonText(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().CommitButtonText()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_CommitButtonText(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().CommitButtonText(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_FileTypeFilter(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Foundation::Collections::IVector<hstring>>(this->shim().FileTypeFilter()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickSingleFileAsync(void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from<Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>>(this->shim().PickSingleFileAsync()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickMultipleFilesAsync(void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from<Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Storage::StorageFile>>>(this->shim().PickMultipleFilesAsync()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileOpenPicker2> : produce_base<D, Windows::Storage::Pickers::IFileOpenPicker2> { int32_t __stdcall get_ContinuationData(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Foundation::Collections::ValueSet>(this->shim().ContinuationData()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickSingleFileAndContinue() noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().PickSingleFileAndContinue(); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickMultipleFilesAndContinue() noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().PickMultipleFilesAndContinue(); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileOpenPicker3> : produce_base<D, Windows::Storage::Pickers::IFileOpenPicker3> { int32_t __stdcall get_User(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::System::User>(this->shim().User()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileOpenPickerStatics> : produce_base<D, Windows::Storage::Pickers::IFileOpenPickerStatics> { int32_t __stdcall ResumePickSingleFileAsync(void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from<Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>>(this->shim().ResumePickSingleFileAsync()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileOpenPickerStatics2> : produce_base<D, Windows::Storage::Pickers::IFileOpenPickerStatics2> { int32_t __stdcall CreateForUser(void* user, void** result) noexcept final try { clear_abi(result); typename D::abi_guard guard(this->shim()); *result = detach_from<Windows::Storage::Pickers::FileOpenPicker>(this->shim().CreateForUser(*reinterpret_cast<Windows::System::User const*>(&user))); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileOpenPickerWithOperationId> : produce_base<D, Windows::Storage::Pickers::IFileOpenPickerWithOperationId> { int32_t __stdcall PickSingleFileAsync(void* pickerOperationId, void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from<Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>>(this->shim().PickSingleFileAsync(*reinterpret_cast<hstring const*>(&pickerOperationId))); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileSavePicker> : produce_base<D, Windows::Storage::Pickers::IFileSavePicker> { int32_t __stdcall get_SettingsIdentifier(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().SettingsIdentifier()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SettingsIdentifier(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SettingsIdentifier(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SuggestedStartLocation(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Storage::Pickers::PickerLocationId>(this->shim().SuggestedStartLocation()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SuggestedStartLocation(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SuggestedStartLocation(*reinterpret_cast<Windows::Storage::Pickers::PickerLocationId const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_CommitButtonText(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().CommitButtonText()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_CommitButtonText(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().CommitButtonText(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_FileTypeChoices(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Foundation::Collections::IMap<hstring, Windows::Foundation::Collections::IVector<hstring>>>(this->shim().FileTypeChoices()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_DefaultFileExtension(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().DefaultFileExtension()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_DefaultFileExtension(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().DefaultFileExtension(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SuggestedSaveFile(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Storage::StorageFile>(this->shim().SuggestedSaveFile()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SuggestedSaveFile(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SuggestedSaveFile(*reinterpret_cast<Windows::Storage::StorageFile const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SuggestedFileName(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().SuggestedFileName()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SuggestedFileName(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SuggestedFileName(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickSaveFileAsync(void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from<Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFile>>(this->shim().PickSaveFileAsync()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileSavePicker2> : produce_base<D, Windows::Storage::Pickers::IFileSavePicker2> { int32_t __stdcall get_ContinuationData(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Foundation::Collections::ValueSet>(this->shim().ContinuationData()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickSaveFileAndContinue() noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().PickSaveFileAndContinue(); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileSavePicker3> : produce_base<D, Windows::Storage::Pickers::IFileSavePicker3> { int32_t __stdcall get_EnterpriseId(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().EnterpriseId()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_EnterpriseId(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().EnterpriseId(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileSavePicker4> : produce_base<D, Windows::Storage::Pickers::IFileSavePicker4> { int32_t __stdcall get_User(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::System::User>(this->shim().User()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFileSavePickerStatics> : produce_base<D, Windows::Storage::Pickers::IFileSavePickerStatics> { int32_t __stdcall CreateForUser(void* user, void** result) noexcept final try { clear_abi(result); typename D::abi_guard guard(this->shim()); *result = detach_from<Windows::Storage::Pickers::FileSavePicker>(this->shim().CreateForUser(*reinterpret_cast<Windows::System::User const*>(&user))); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFolderPicker> : produce_base<D, Windows::Storage::Pickers::IFolderPicker> { int32_t __stdcall get_ViewMode(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Storage::Pickers::PickerViewMode>(this->shim().ViewMode()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_ViewMode(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().ViewMode(*reinterpret_cast<Windows::Storage::Pickers::PickerViewMode const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SettingsIdentifier(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().SettingsIdentifier()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SettingsIdentifier(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SettingsIdentifier(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SuggestedStartLocation(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Storage::Pickers::PickerLocationId>(this->shim().SuggestedStartLocation()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SuggestedStartLocation(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SuggestedStartLocation(*reinterpret_cast<Windows::Storage::Pickers::PickerLocationId const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_CommitButtonText(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<hstring>(this->shim().CommitButtonText()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_CommitButtonText(void* value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().CommitButtonText(*reinterpret_cast<hstring const*>(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_FileTypeFilter(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Foundation::Collections::IVector<hstring>>(this->shim().FileTypeFilter()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickSingleFolderAsync(void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from<Windows::Foundation::IAsyncOperation<Windows::Storage::StorageFolder>>(this->shim().PickSingleFolderAsync()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFolderPicker2> : produce_base<D, Windows::Storage::Pickers::IFolderPicker2> { int32_t __stdcall get_ContinuationData(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::Foundation::Collections::ValueSet>(this->shim().ContinuationData()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall PickFolderAndContinue() noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().PickFolderAndContinue(); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFolderPicker3> : produce_base<D, Windows::Storage::Pickers::IFolderPicker3> { int32_t __stdcall get_User(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from<Windows::System::User>(this->shim().User()); return 0; } catch (...) { return to_hresult(); } }; template <typename D> struct produce<D, Windows::Storage::Pickers::IFolderPickerStatics> : produce_base<D, Windows::Storage::Pickers::IFolderPickerStatics> { int32_t __stdcall CreateForUser(void* user, void** result) noexcept final try { clear_abi(result); typename D::abi_guard guard(this->shim()); *result = detach_from<Windows::Storage::Pickers::FolderPicker>(this->shim().CreateForUser(*reinterpret_cast<Windows::System::User const*>(&user))); return 0; } catch (...) { return to_hresult(); } }; } namespace winrt::Windows::Storage::Pickers { inline FileOpenPicker::FileOpenPicker() : FileOpenPicker(impl::call_factory<FileOpenPicker>([](auto&& f) { return f.template ActivateInstance<FileOpenPicker>(); })) { } inline auto FileOpenPicker::ResumePickSingleFileAsync() { return impl::call_factory<FileOpenPicker, Windows::Storage::Pickers::IFileOpenPickerStatics>([&](auto&& f) { return f.ResumePickSingleFileAsync(); }); } inline auto FileOpenPicker::CreateForUser(Windows::System::User const& user) { return impl::call_factory<FileOpenPicker, Windows::Storage::Pickers::IFileOpenPickerStatics2>([&](auto&& f) { return f.CreateForUser(user); }); } inline FileSavePicker::FileSavePicker() : FileSavePicker(impl::call_factory<FileSavePicker>([](auto&& f) { return f.template ActivateInstance<FileSavePicker>(); })) { } inline auto FileSavePicker::CreateForUser(Windows::System::User const& user) { return impl::call_factory<FileSavePicker, Windows::Storage::Pickers::IFileSavePickerStatics>([&](auto&& f) { return f.CreateForUser(user); }); } inline FolderPicker::FolderPicker() : FolderPicker(impl::call_factory<FolderPicker>([](auto&& f) { return f.template ActivateInstance<FolderPicker>(); })) { } inline auto FolderPicker::CreateForUser(Windows::System::User const& user) { return impl::call_factory<FolderPicker, Windows::Storage::Pickers::IFolderPickerStatics>([&](auto&& f) { return f.CreateForUser(user); }); } } namespace std { template<> struct hash<winrt::Windows::Storage::Pickers::IFileOpenPicker> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileOpenPicker> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileOpenPicker2> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileOpenPicker2> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileOpenPicker3> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileOpenPicker3> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileOpenPickerStatics> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileOpenPickerStatics> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileOpenPickerStatics2> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileOpenPickerStatics2> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileOpenPickerWithOperationId> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileOpenPickerWithOperationId> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileSavePicker> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileSavePicker> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileSavePicker2> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileSavePicker2> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileSavePicker3> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileSavePicker3> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileSavePicker4> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileSavePicker4> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFileSavePickerStatics> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFileSavePickerStatics> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFolderPicker> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFolderPicker> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFolderPicker2> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFolderPicker2> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFolderPicker3> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFolderPicker3> {}; template<> struct hash<winrt::Windows::Storage::Pickers::IFolderPickerStatics> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::IFolderPickerStatics> {}; template<> struct hash<winrt::Windows::Storage::Pickers::FileExtensionVector> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::FileExtensionVector> {}; template<> struct hash<winrt::Windows::Storage::Pickers::FileOpenPicker> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::FileOpenPicker> {}; template<> struct hash<winrt::Windows::Storage::Pickers::FilePickerFileTypesOrderedMap> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::FilePickerFileTypesOrderedMap> {}; template<> struct hash<winrt::Windows::Storage::Pickers::FilePickerSelectedFilesArray> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::FilePickerSelectedFilesArray> {}; template<> struct hash<winrt::Windows::Storage::Pickers::FileSavePicker> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::FileSavePicker> {}; template<> struct hash<winrt::Windows::Storage::Pickers::FolderPicker> : winrt::impl::hash_base<winrt::Windows::Storage::Pickers::FolderPicker> {}; } #endif
[ "lightech@outlook.com" ]
lightech@outlook.com
fb880c506e6e0f0afce853fd9d9802ca5ca0b550
9f4b3edaf1095ed58f5ff2d38d79d27b7e230e92
/test/test_array/array_add.cxx
a3cacc781f33ae59af36f716ae558b708734d456
[ "BSD-3-Clause-LBNL" ]
permissive
zhishang72/TECA
dbd954ec48f5d9ad0643d26f5fbb6daf8dfd9842
b8bed845e868133e4fbe01f4da40edd4c34cd775
refs/heads/master
2020-04-21T04:54:35.853007
2019-01-26T18:13:18
2019-01-26T18:13:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,350
cxx
#include "array_add.h" #include "array.h" #include <iostream> #include <sstream> using std::vector; using std::string; using std::ostringstream; using std::cerr; using std::endl; // -------------------------------------------------------------------------- array_add::array_add() { this->set_number_of_input_connections(2); this->set_number_of_output_ports(1); } // -------------------------------------------------------------------------- array_add::~array_add() {} // -------------------------------------------------------------------------- int array_add::get_active_array( const std::string &user_array, const teca_metadata &input_md, std::string &active_array) const { if (user_array.empty()) { // by default process the first array found on the input if (!input_md.has("array_names")) { TECA_ERROR("no array specified and none found on the input") return -1; } vector<string> array_names; input_md.get("array_names", array_names); active_array = array_names[0]; } else { // otherwise process the requested array active_array = user_array; } return 0; } // -------------------------------------------------------------------------- teca_metadata array_add::get_output_metadata( unsigned int port, const std::vector<teca_metadata> &input_md) { #ifndef TECA_NDEBUG cerr << teca_parallel_id() << "array_add::get_output_metadata" << endl; #endif (void)port; teca_metadata output_md(input_md[0]); // get the active arrays string active_array_1; string active_array_2; if ( this->get_active_array(this->array_1, input_md[0], active_array_1) || this->get_active_array(this->array_2, input_md[1], active_array_2) ) { TECA_ERROR("failed to get the active arrays") return output_md; } // replace the "array_names" key in the meta data. down stream // filters only see what this filter generates. ostringstream oss; oss << active_array_1 << "_plus_" << active_array_2; output_md.insert("array_names", oss.str()); return output_md; } // -------------------------------------------------------------------------- std::vector<teca_metadata> array_add::get_upstream_request( unsigned int port, const std::vector<teca_metadata> &input_md, const teca_metadata &request) { #ifndef TECA_NDEBUG cerr << teca_parallel_id() << "array_add::get_upstream_request" << endl; #endif (void)port; vector<teca_metadata> up_reqs(2); // get the active arrays string active_array_1; string active_array_2; if ( this->get_active_array(this->array_1, input_md[0], active_array_1) || this->get_active_array(this->array_2, input_md[1], active_array_2) ) { TECA_ERROR("failed to get the active arrays") return up_reqs; } teca_metadata up_req_1(request); up_req_1.insert("array_name", active_array_1); up_reqs[0] = up_req_1; teca_metadata up_req_2(request); up_req_2.insert("array_name", active_array_2); up_reqs[1] = up_req_2; return up_reqs; } // -------------------------------------------------------------------------- const_p_teca_dataset array_add::execute( unsigned int port, const std::vector<const_p_teca_dataset> &input_data, const teca_metadata &request) { (void)port; p_array a_out = array::New(); // get the array on the two inputs const_p_array a_in_1 = std::dynamic_pointer_cast<const array>(input_data[0]); const_p_array a_in_2 = std::dynamic_pointer_cast<const array>(input_data[1]); if (!a_in_1 || !a_in_2) { TECA_ERROR("required inputs are not present") return a_out; } // get the output array name string active_array; if (request.get("array_name", active_array)) { TECA_ERROR("failed to get the active array") return a_out; } // compute the output a_out->copy_metadata(a_in_1); a_out->set_name(active_array); size_t n_elem = a_out->size(); for (size_t i = 0; i < n_elem; ++i) a_out->get(i) = a_in_1->get(i) + a_in_2->get(i); #ifndef TECA_NDEBUG cerr << teca_parallel_id() << "array_add::execute " << active_array << endl; #endif return a_out; }
[ "bloring@lbl.gov" ]
bloring@lbl.gov
d98909279ae382ecb9de25faf64e2b02b1b6b0c6
6c3a5fdc90fa4a62be3d8a97f378ae222f1d3b84
/Chapter_07_Quicksort/exercise_code/7.1-4.cpp
dfc0d411aab02ad4e564db4deea5536ae171a355
[]
no_license
QiangL-DUT/CLRS
6f57b9d96aea956d986ecba19dd5dfe0026e2b7b
fb632e80c63bcbad0905112a8e367f140486482f
refs/heads/master
2020-04-06T06:47:22.064530
2016-08-26T02:49:29
2016-08-26T02:49:29
65,347,343
0
0
null
null
null
null
UTF-8
C++
false
false
864
cpp
/*** nonincreasing nonrandomized ***/ #include <iostream> #include <vector> #include <time.h> using namespace std; inline void swap(int& a, int& b) { int temp = a; a = b; b = temp; } int Partition(vector<int>& A, int p, int r) { int x = A[r]; int i = p - 1; for (int j = p; j < r; ++j) { if (A[j] >= x) { swap(A[++i], A[j]); } } swap(A[++i], A[r]); return i; } void QuickSort(vector<int>& A, int p, int r) { if (p < r) { int q = Partition(A, p, r); QuickSort(A, p, q - 1); QuickSort(A, q + 1, r); } } void Print(const vector<int>& A) { for (auto a : A) cout << a << " "; cout << endl; } const int N = 10; int main() { srand((int)time(NULL)); vector<int> A(N); for (int i = 0; i < N; ++i) { A[i] = rand() % 100; } cout << "A: "; Print(A); QuickSort(A, 0, N - 1); cout << "After QuickSort(A): "; Print(A); return 0; }
[ "noreply@github.com" ]
noreply@github.com
4fdb8f99411fb310c15d1365508739f3fc996b6c
77eb251d1dc23e6c6ce82f434cccbc3a40806e69
/student/02/molkky/player.hh
bd58947d0163a9e3202e3765492d22c7de25468f
[]
no_license
jewhoguy/STLProject
f300d6a27cee40bccef9e8e93c711d5a674c6d91
8d4c5b6cd967aaf005329d5bcf4509a4aa1af680
refs/heads/master
2021-03-02T14:43:48.867599
2018-02-16T18:37:51
2018-02-16T18:37:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
312
hh
#include <string> #ifndef PLAYER_HH #define PLAYER_HH using namespace std; class Player { public: Player(string name, int points = 0); const string get_name(); int get_points(); void add_points(int pts); bool has_won(); int _points; private: string _name; }; #endif // PLAYER_HH
[ "lusetti@piispahaikara.lin.tut.fi" ]
lusetti@piispahaikara.lin.tut.fi
dda2c918a9779f76763b02e0c9ca3685c9d87334
c47379db39fd6998924f7839b1263c7228b3a88a
/src/dso/srclib/hdl/rec/src/widget/foo/index.hpp
58c2a921fb7e4a8f4fa60f2ab05038e6c44d2bad
[]
no_license
skullquake/crowsamples
e7c71ef02dafc42241684a2547152ca91a1e81d3
fbee1189527664f6ef0757d6d66b60c946c2fd36
refs/heads/main
2023-03-30T08:39:03.636699
2021-04-05T19:37:31
2021-04-05T19:37:31
353,323,722
0
0
null
null
null
null
UTF-8
C++
false
false
149
hpp
#ifndef hef238132963311eb9c29af6afa972b3b #define hef238132963311eb9c29af6afa972b3b #include"../index.hpp" class Widget_Foo:public Widget{ }; #endif
[ "ockert8080@gmail.com" ]
ockert8080@gmail.com
6da6a16557b9b09ccae95ca512fa727e0104f1b3
641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2
/components/sync_sessions/tab_node_pool.h
caadc4e5f2ee97964b3646e73828dacb62286e28
[ "BSD-3-Clause" ]
permissive
massnetwork/mass-browser
7de0dfc541cbac00ffa7308541394bac1e945b76
67526da9358734698c067b7775be491423884339
refs/heads/master
2022-12-07T09:01:31.027715
2017-01-19T14:29:18
2017-01-19T14:29:18
73,799,690
4
4
BSD-3-Clause
2022-11-26T11:53:23
2016-11-15T09:49:29
null
UTF-8
C++
false
false
6,632
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SYNC_SESSIONS_TAB_NODE_POOL_H_ #define COMPONENTS_SYNC_SESSIONS_TAB_NODE_POOL_H_ #include <stddef.h> #include <map> #include <set> #include <string> #include "base/macros.h" #include "components/sessions/core/session_id.h" #include "components/sync/model/sync_change_processor.h" namespace syncer { class SyncChangeProcessor; } // namespace syncer namespace sync_sessions { // A pool for managing free/used tab sync nodes for the *local* session. // Performs lazy creation of sync nodes when necessary. // Note: We make use of the following "id's" // - a tab_id: created by session service, unique to this client // - a tab_node_id: the id for a particular sync tab node. This is used // to generate the sync tab node tag through: // tab_tag = StringPrintf("%s_%ui", local_session_tag, tab_node_id); // // A sync node can be in one of the three states: // 1. Associated : Sync node is used and associated with a tab. // 2. Unassociated : Sync node is used but currently unassociated with any tab. // This is true for old nodes that remain from a session // restart. Nodes are only unassociated temporarily while the // model associator figures out which tabs belong to which // nodes. Eventually any remaining unassociated nodes are // freed. // 3. Free : Sync node is unused. class TabNodePool { public: TabNodePool(); ~TabNodePool(); enum InvalidTab { kInvalidTabID = -1 }; // If free nodes > kFreeNodesHighWatermark, delete all free nodes until // free nodes <= kFreeNodesLowWatermark. static const size_t kFreeNodesLowWatermark; // Maximum limit of FreeNodes allowed on the client. static const size_t kFreeNodesHighWatermark; static const int kInvalidTabNodeID; // Build a sync tag from tab_node_id. static std::string TabIdToTag(const std::string& machine_tag, int tab_node_id); // Returns the tab_node_id for the next free tab node. If none are available, // creates a new tab node and adds it to free nodes pool. The free node can // then be used to associate with a tab by calling AssociateTabNode. // Note: The node is considered free until it has been associated. Repeated // calls to GetFreeTabNode will return the same id until node has been // associated. // |change_output| *must* be provided. It is the TabNodePool's link to // the SyncChange pipeline that exists in the caller context. If the need // to create nodes arises in the implementation, associated SyncChanges will // be appended to this list for later application by the caller via the // SyncChangeProcessor. int GetFreeTabNode(syncer::SyncChangeList* change_output); // Removes association for |tab_node_id| and returns it to the free node pool. // |change_output| *must* be provided. It is the TabNodePool's link to // the SyncChange pipeline that exists in the caller's context. If the need // to delete sync nodes arises in the implementation, associated SyncChanges // will be appended to this list for later application by the caller via the // SyncChangeProcessor. void FreeTabNode(int tab_node_id, syncer::SyncChangeList* change_output); // Associates |tab_node_id| with |tab_id|. |tab_node_id| should either be // unassociated or free. If |tab_node_id| is free, |tab_node_id| is removed // from the free node pool In order to associate a non free sync node, // use ReassociateTabNode. void AssociateTabNode(int tab_node_id, SessionID::id_type tab_id); // Adds |tab_node_id| as an unassociated sync node. // Note: this should only be called when we discover tab sync nodes from // previous sessions, not for freeing tab nodes we created through // GetFreeTabNode (use FreeTabNode below for that). void AddTabNode(int tab_node_id); // Returns the tab_id for |tab_node_id| if it is associated else returns // kInvalidTabID. SessionID::id_type GetTabIdFromTabNodeId(int tab_node_id) const; // Reassociates |tab_node_id| with |tab_id|. |tab_node_id| must be either // associated with a tab or in the set of unassociated nodes. void ReassociateTabNode(int tab_node_id, SessionID::id_type tab_id); // Returns true if |tab_node_id| is an unassociated tab node. bool IsUnassociatedTabNode(int tab_node_id); // Returns any unassociated nodes to the free node pool. // |change_output| *must* be provided. It is the TabNodePool's link to // the SyncChange pipeline that exists in the caller's context. // See FreeTabNode for more detail. void DeleteUnassociatedTabNodes(syncer::SyncChangeList* change_output); // Clear tab pool. void Clear(); // Return the number of tab nodes this client currently has allocated // (including both free, unassociated and associated nodes) size_t Capacity() const; // Return empty status (all tab nodes are in use). bool Empty() const; // Return full status (no tab nodes are in use). bool Full(); void SetMachineTag(const std::string& machine_tag); private: friend class SyncTabNodePoolTest; typedef std::map<int, SessionID::id_type> TabNodeIDToTabIDMap; // Adds |tab_node_id| to free node pool. // |change_output| *must* be provided. It is the TabNodePool's link to // the SyncChange pipeline that exists in the caller's context. // See FreeTabNode for more detail. void FreeTabNodeInternal(int tab_node_id, syncer::SyncChangeList* change_output); // Stores mapping of node ids associated with tab_ids, these are the used // nodes of tab node pool. // The nodes in the map can be returned to free tab node pool by calling // FreeTabNode(tab_node_id). TabNodeIDToTabIDMap nodeid_tabid_map_; // The node ids for the set of free sync nodes. std::set<int> free_nodes_pool_; // The node ids that are added to pool using AddTabNode and are currently // not associated with any tab. They can be reassociated using // ReassociateTabNode. std::set<int> unassociated_nodes_; // The maximum used tab_node id for a sync node. A new sync node will always // be created with max_used_tab_node_id_ + 1. int max_used_tab_node_id_; // The machine tag associated with this tab pool. Used in the title of new // sync nodes. std::string machine_tag_; DISALLOW_COPY_AND_ASSIGN(TabNodePool); }; } // namespace sync_sessions #endif // COMPONENTS_SYNC_SESSIONS_TAB_NODE_POOL_H_
[ "xElvis89x@gmail.com" ]
xElvis89x@gmail.com
e58d21dfdd5a7913f792a0fe44d07711868ceed1
b58052e50abeb4060bc4f3ac70d8eb2913ba84ab
/yggdrasil/tests/runtime/src/system.cpp
60532c6d5a581d4bc179c5b6ba0b73869b970e7b
[]
no_license
vyrp/Mjollnir
21d99b4ebf9c027318c0c492cddc606bdfeb8640
2933fe62c0e90fdfd2ea0796e407f26d534b0341
refs/heads/master
2016-09-11T01:31:29.712610
2015-11-22T06:46:21
2015-11-22T07:08:40
17,535,505
6
2
null
null
null
null
UTF-8
C++
false
false
470
cpp
#include <stdio.h> #include <stdlib.h> int main(){ int result = 0, status; result = (status = system("pwd")) || result; printf("pwd: %d\n", status); result = (status = system("touch tmp")) || result; printf("touch tmp: %d\n", status); result = (status = system("ls")) || result; printf("ls: %d\n", status); result = (status = system("rm tmp")) || result; printf("rm tmp: %d\n", status); return result; }
[ "felipe.croata@gmail.com" ]
felipe.croata@gmail.com
21c9e545ebe0bf972568e51d43130c64ef6a5fde
9041050804dd56d058925ddec4b14e638ea29f52
/include/clang/AST/Comment.h
55cb08141a9db64698e5814a13733e1a37873e4c
[ "NCSA" ]
permissive
CTSRD-TESLA/clang
ee4cef5ebfe3e6f27a83ad8b7a739ecb49e81c7b
f5e0b225b4d8027edab993ad4ac87510fcd6f991
refs/heads/master
2020-06-02T21:56:13.262003
2012-07-24T09:37:54
2012-07-24T09:37:54
1,744,036
2
2
null
null
null
null
UTF-8
C++
false
false
23,952
h
//===--- Comment.h - Comment AST nodes --------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines comment AST nodes. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_COMMENT_H #define LLVM_CLANG_AST_COMMENT_H #include "clang/Basic/SourceLocation.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" namespace clang { namespace comments { /// Any part of the comment. /// Abstract class. class Comment { protected: /// Preferred location to show caret. SourceLocation Loc; /// Source range of this AST node. SourceRange Range; class CommentBitfields { friend class Comment; /// Type of this AST node. unsigned Kind : 8; }; enum { NumCommentBits = 8 }; class InlineContentCommentBitfields { friend class InlineContentComment; unsigned : NumCommentBits; /// True if there is a newline after this inline content node. /// (There is no separate AST node for a newline.) unsigned HasTrailingNewline : 1; }; enum { NumInlineContentCommentBits = NumCommentBits + 1 }; class TextCommentBitfields { friend class TextComment; unsigned : NumInlineContentCommentBits; /// True if \c IsWhitespace field contains a valid value. mutable unsigned IsWhitespaceValid : 1; /// True if this comment AST node contains only whitespace. mutable unsigned IsWhitespace : 1; }; enum { NumTextCommentBits = NumInlineContentCommentBits + 2 }; class InlineCommandCommentBitfields { friend class InlineCommandComment; unsigned : NumInlineContentCommentBits; unsigned RenderKind : 2; }; enum { NumInlineCommandCommentBits = NumInlineContentCommentBits + 1 }; class HTMLStartTagCommentBitfields { friend class HTMLStartTagComment; unsigned : NumInlineContentCommentBits; /// True if this tag is self-closing (e. g., <br />). This is based on tag /// spelling in comment (plain <br> would not set this flag). unsigned IsSelfClosing : 1; }; enum { NumHTMLStartTagCommentBits = NumInlineContentCommentBits + 1 }; class ParagraphCommentBitfields { friend class ParagraphComment; unsigned : NumCommentBits; /// True if \c IsWhitespace field contains a valid value. mutable unsigned IsWhitespaceValid : 1; /// True if this comment AST node contains only whitespace. mutable unsigned IsWhitespace : 1; }; enum { NumParagraphCommentBits = NumCommentBits + 2 }; class ParamCommandCommentBitfields { friend class ParamCommandComment; unsigned : NumCommentBits; /// Parameter passing direction, see ParamCommandComment::PassDirection. unsigned Direction : 2; /// True if direction was specified explicitly in the comment. unsigned IsDirectionExplicit : 1; }; enum { NumParamCommandCommentBits = 11 }; union { CommentBitfields CommentBits; InlineContentCommentBitfields InlineContentCommentBits; TextCommentBitfields TextCommentBits; InlineCommandCommentBitfields InlineCommandCommentBits; HTMLStartTagCommentBitfields HTMLStartTagCommentBits; ParagraphCommentBitfields ParagraphCommentBits; ParamCommandCommentBitfields ParamCommandCommentBits; }; void setSourceRange(SourceRange SR) { Range = SR; } void setLocation(SourceLocation L) { Loc = L; } public: enum CommentKind { NoCommentKind = 0, #define COMMENT(CLASS, PARENT) CLASS##Kind, #define COMMENT_RANGE(BASE, FIRST, LAST) \ First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind, #define LAST_COMMENT_RANGE(BASE, FIRST, LAST) \ First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind #define ABSTRACT_COMMENT(COMMENT) #include "clang/AST/CommentNodes.inc" }; Comment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) : Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) { CommentBits.Kind = K; } CommentKind getCommentKind() const { return static_cast<CommentKind>(CommentBits.Kind); } const char *getCommentKindName() const; LLVM_ATTRIBUTE_USED void dump() const; LLVM_ATTRIBUTE_USED void dump(SourceManager &SM) const; void dump(llvm::raw_ostream &OS, SourceManager *SM) const; static bool classof(const Comment *) { return true; } SourceRange getSourceRange() const LLVM_READONLY { return Range; } SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } SourceLocation getLocation() const LLVM_READONLY { return Loc; } typedef Comment * const *child_iterator; child_iterator child_begin() const; child_iterator child_end() const; // TODO: const child iterator unsigned child_count() const { return child_end() - child_begin(); } }; /// Inline content (contained within a block). /// Abstract class. class InlineContentComment : public Comment { protected: InlineContentComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) : Comment(K, LocBegin, LocEnd) { InlineContentCommentBits.HasTrailingNewline = 0; } public: static bool classof(const Comment *C) { return C->getCommentKind() >= FirstInlineContentCommentConstant && C->getCommentKind() <= LastInlineContentCommentConstant; } static bool classof(const InlineContentComment *) { return true; } void addTrailingNewline() { InlineContentCommentBits.HasTrailingNewline = 1; } bool hasTrailingNewline() const { return InlineContentCommentBits.HasTrailingNewline; } }; /// Plain text. class TextComment : public InlineContentComment { StringRef Text; public: TextComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Text) : InlineContentComment(TextCommentKind, LocBegin, LocEnd), Text(Text) { TextCommentBits.IsWhitespaceValid = false; } static bool classof(const Comment *C) { return C->getCommentKind() == TextCommentKind; } static bool classof(const TextComment *) { return true; } child_iterator child_begin() const { return NULL; } child_iterator child_end() const { return NULL; } StringRef getText() const LLVM_READONLY { return Text; } bool isWhitespace() const { if (TextCommentBits.IsWhitespaceValid) return TextCommentBits.IsWhitespace; TextCommentBits.IsWhitespace = isWhitespaceNoCache(); TextCommentBits.IsWhitespaceValid = true; return TextCommentBits.IsWhitespace; } private: bool isWhitespaceNoCache() const; }; /// A command with word-like arguments that is considered inline content. class InlineCommandComment : public InlineContentComment { public: struct Argument { SourceRange Range; StringRef Text; Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { } }; /// The most appropriate rendering mode for this command, chosen on command /// semantics in Doxygen. enum RenderKind { RenderNormal, RenderBold, RenderMonospaced, RenderEmphasized }; protected: /// Command name. StringRef Name; /// Command arguments. llvm::ArrayRef<Argument> Args; public: InlineCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Name, RenderKind RK, llvm::ArrayRef<Argument> Args) : InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), Name(Name), Args(Args) { InlineCommandCommentBits.RenderKind = RK; } static bool classof(const Comment *C) { return C->getCommentKind() == InlineCommandCommentKind; } static bool classof(const InlineCommandComment *) { return true; } child_iterator child_begin() const { return NULL; } child_iterator child_end() const { return NULL; } StringRef getCommandName() const { return Name; } SourceRange getCommandNameRange() const { return SourceRange(getLocStart().getLocWithOffset(-1), getLocEnd()); } RenderKind getRenderKind() const { return static_cast<RenderKind>(InlineCommandCommentBits.RenderKind); } unsigned getNumArgs() const { return Args.size(); } StringRef getArgText(unsigned Idx) const { return Args[Idx].Text; } SourceRange getArgRange(unsigned Idx) const { return Args[Idx].Range; } }; /// Abstract class for opening and closing HTML tags. HTML tags are always /// treated as inline content (regardless HTML semantics); opening and closing /// tags are not matched. class HTMLTagComment : public InlineContentComment { protected: StringRef TagName; SourceRange TagNameRange; HTMLTagComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName, SourceLocation TagNameBegin, SourceLocation TagNameEnd) : InlineContentComment(K, LocBegin, LocEnd), TagName(TagName), TagNameRange(TagNameBegin, TagNameEnd) { setLocation(TagNameBegin); } public: static bool classof(const Comment *C) { return C->getCommentKind() >= FirstHTMLTagCommentConstant && C->getCommentKind() <= LastHTMLTagCommentConstant; } static bool classof(const HTMLTagComment *) { return true; } StringRef getTagName() const LLVM_READONLY { return TagName; } SourceRange getTagNameSourceRange() const LLVM_READONLY { SourceLocation L = getLocation(); return SourceRange(L.getLocWithOffset(1), L.getLocWithOffset(1 + TagName.size())); } }; /// An opening HTML tag with attributes. class HTMLStartTagComment : public HTMLTagComment { public: class Attribute { public: SourceLocation NameLocBegin; StringRef Name; SourceLocation EqualsLoc; SourceRange ValueRange; StringRef Value; Attribute() { } Attribute(SourceLocation NameLocBegin, StringRef Name) : NameLocBegin(NameLocBegin), Name(Name), EqualsLoc(SourceLocation()), ValueRange(SourceRange()), Value(StringRef()) { } Attribute(SourceLocation NameLocBegin, StringRef Name, SourceLocation EqualsLoc, SourceRange ValueRange, StringRef Value) : NameLocBegin(NameLocBegin), Name(Name), EqualsLoc(EqualsLoc), ValueRange(ValueRange), Value(Value) { } SourceLocation getNameLocEnd() const { return NameLocBegin.getLocWithOffset(Name.size()); } SourceRange getNameRange() const { return SourceRange(NameLocBegin, getNameLocEnd()); } }; private: ArrayRef<Attribute> Attributes; public: HTMLStartTagComment(SourceLocation LocBegin, StringRef TagName) : HTMLTagComment(HTMLStartTagCommentKind, LocBegin, LocBegin.getLocWithOffset(1 + TagName.size()), TagName, LocBegin.getLocWithOffset(1), LocBegin.getLocWithOffset(1 + TagName.size())) { HTMLStartTagCommentBits.IsSelfClosing = false; } static bool classof(const Comment *C) { return C->getCommentKind() == HTMLStartTagCommentKind; } static bool classof(const HTMLStartTagComment *) { return true; } child_iterator child_begin() const { return NULL; } child_iterator child_end() const { return NULL; } unsigned getNumAttrs() const { return Attributes.size(); } const Attribute &getAttr(unsigned Idx) const { return Attributes[Idx]; } void setAttrs(ArrayRef<Attribute> Attrs) { Attributes = Attrs; if (!Attrs.empty()) { const Attribute &Attr = Attrs.back(); SourceLocation L = Attr.ValueRange.getEnd(); if (L.isValid()) Range.setEnd(L); else { Range.setEnd(Attr.getNameLocEnd()); } } } void setGreaterLoc(SourceLocation GreaterLoc) { Range.setEnd(GreaterLoc); } bool isSelfClosing() const { return HTMLStartTagCommentBits.IsSelfClosing; } void setSelfClosing() { HTMLStartTagCommentBits.IsSelfClosing = true; } }; /// A closing HTML tag. class HTMLEndTagComment : public HTMLTagComment { public: HTMLEndTagComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName) : HTMLTagComment(HTMLEndTagCommentKind, LocBegin, LocEnd, TagName, LocBegin.getLocWithOffset(2), LocBegin.getLocWithOffset(2 + TagName.size())) { } static bool classof(const Comment *C) { return C->getCommentKind() == HTMLEndTagCommentKind; } static bool classof(const HTMLEndTagComment *) { return true; } child_iterator child_begin() const { return NULL; } child_iterator child_end() const { return NULL; } }; /// Block content (contains inline content). /// Abstract class. class BlockContentComment : public Comment { protected: BlockContentComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) : Comment(K, LocBegin, LocEnd) { } public: static bool classof(const Comment *C) { return C->getCommentKind() >= FirstBlockContentCommentConstant && C->getCommentKind() <= LastBlockContentCommentConstant; } static bool classof(const BlockContentComment *) { return true; } }; /// A single paragraph that contains inline content. class ParagraphComment : public BlockContentComment { llvm::ArrayRef<InlineContentComment *> Content; public: ParagraphComment(llvm::ArrayRef<InlineContentComment *> Content) : BlockContentComment(ParagraphCommentKind, SourceLocation(), SourceLocation()), Content(Content) { if (Content.empty()) { ParagraphCommentBits.IsWhitespace = true; ParagraphCommentBits.IsWhitespaceValid = true; return; } ParagraphCommentBits.IsWhitespaceValid = false; setSourceRange(SourceRange(Content.front()->getLocStart(), Content.back()->getLocEnd())); setLocation(Content.front()->getLocStart()); } static bool classof(const Comment *C) { return C->getCommentKind() == ParagraphCommentKind; } static bool classof(const ParagraphComment *) { return true; } child_iterator child_begin() const { return reinterpret_cast<child_iterator>(Content.begin()); } child_iterator child_end() const { return reinterpret_cast<child_iterator>(Content.end()); } bool isWhitespace() const { if (ParagraphCommentBits.IsWhitespaceValid) return ParagraphCommentBits.IsWhitespace; ParagraphCommentBits.IsWhitespace = isWhitespaceNoCache(); ParagraphCommentBits.IsWhitespaceValid = true; return ParagraphCommentBits.IsWhitespace; } private: bool isWhitespaceNoCache() const; }; /// A command that has zero or more word-like arguments (number of word-like /// arguments depends on command name) and a paragraph as an argument /// (e. g., \\brief). class BlockCommandComment : public BlockContentComment { public: struct Argument { SourceRange Range; StringRef Text; Argument() { } Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { } }; protected: /// Command name. StringRef Name; /// Word-like arguments. llvm::ArrayRef<Argument> Args; /// Paragraph argument. ParagraphComment *Paragraph; BlockCommandComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, StringRef Name) : BlockContentComment(K, LocBegin, LocEnd), Name(Name), Paragraph(NULL) { setLocation(getCommandNameRange().getBegin()); } public: BlockCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Name) : BlockContentComment(BlockCommandCommentKind, LocBegin, LocEnd), Name(Name), Paragraph(NULL) { setLocation(getCommandNameRange().getBegin()); } static bool classof(const Comment *C) { return C->getCommentKind() >= FirstBlockCommandCommentConstant && C->getCommentKind() <= LastBlockCommandCommentConstant; } static bool classof(const BlockCommandComment *) { return true; } child_iterator child_begin() const { return reinterpret_cast<child_iterator>(&Paragraph); } child_iterator child_end() const { return reinterpret_cast<child_iterator>(&Paragraph + 1); } StringRef getCommandName() const { return Name; } SourceRange getCommandNameRange() const { return SourceRange(getLocStart().getLocWithOffset(1), getLocStart().getLocWithOffset(1 + Name.size())); } unsigned getNumArgs() const { return Args.size(); } StringRef getArgText(unsigned Idx) const { return Args[Idx].Text; } SourceRange getArgRange(unsigned Idx) const { return Args[Idx].Range; } void setArgs(llvm::ArrayRef<Argument> A) { Args = A; if (Args.size() > 0) { SourceLocation NewLocEnd = Args.back().Range.getEnd(); if (NewLocEnd.isValid()) setSourceRange(SourceRange(getLocStart(), NewLocEnd)); } } ParagraphComment *getParagraph() const LLVM_READONLY { return Paragraph; } bool hasNonWhitespaceParagraph() const { return Paragraph && !Paragraph->isWhitespace(); } void setParagraph(ParagraphComment *PC) { Paragraph = PC; SourceLocation NewLocEnd = PC->getLocEnd(); if (NewLocEnd.isValid()) setSourceRange(SourceRange(getLocStart(), NewLocEnd)); } }; /// Doxygen \\param command. class ParamCommandComment : public BlockCommandComment { private: /// Parameter index in the function declaration. unsigned ParamIndex; public: enum { InvalidParamIndex = ~0U }; ParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Name) : BlockCommandComment(ParamCommandCommentKind, LocBegin, LocEnd, Name), ParamIndex(InvalidParamIndex) { ParamCommandCommentBits.Direction = In; ParamCommandCommentBits.IsDirectionExplicit = false; } static bool classof(const Comment *C) { return C->getCommentKind() == ParamCommandCommentKind; } static bool classof(const ParamCommandComment *) { return true; } enum PassDirection { In, Out, InOut }; static const char *getDirectionAsString(PassDirection D); PassDirection getDirection() const LLVM_READONLY { return static_cast<PassDirection>(ParamCommandCommentBits.Direction); } bool isDirectionExplicit() const LLVM_READONLY { return ParamCommandCommentBits.IsDirectionExplicit; } void setDirection(PassDirection Direction, bool Explicit) { ParamCommandCommentBits.Direction = Direction; ParamCommandCommentBits.IsDirectionExplicit = Explicit; } bool hasParamName() const { return getNumArgs() > 0; } StringRef getParamName() const { return Args[0].Text; } SourceRange getParamNameRange() const { return Args[0].Range; } bool isParamIndexValid() const LLVM_READONLY { return ParamIndex != InvalidParamIndex; } unsigned getParamIndex() const LLVM_READONLY { return ParamIndex; } void setParamIndex(unsigned Index) { ParamIndex = Index; assert(isParamIndexValid()); } }; /// A line of text contained in a verbatim block. class VerbatimBlockLineComment : public Comment { StringRef Text; public: VerbatimBlockLineComment(SourceLocation LocBegin, StringRef Text) : Comment(VerbatimBlockLineCommentKind, LocBegin, LocBegin.getLocWithOffset(Text.size())), Text(Text) { } static bool classof(const Comment *C) { return C->getCommentKind() == VerbatimBlockLineCommentKind; } static bool classof(const VerbatimBlockLineComment *) { return true; } child_iterator child_begin() const { return NULL; } child_iterator child_end() const { return NULL; } StringRef getText() const LLVM_READONLY { return Text; } }; /// A verbatim block command (e. g., preformatted code). Verbatim block has an /// opening and a closing command and contains multiple lines of text /// (VerbatimBlockLineComment nodes). class VerbatimBlockComment : public BlockCommandComment { protected: StringRef CloseName; SourceLocation CloseNameLocBegin; llvm::ArrayRef<VerbatimBlockLineComment *> Lines; public: VerbatimBlockComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Name) : BlockCommandComment(VerbatimBlockCommentKind, LocBegin, LocEnd, Name) { } static bool classof(const Comment *C) { return C->getCommentKind() == VerbatimBlockCommentKind; } static bool classof(const VerbatimBlockComment *) { return true; } child_iterator child_begin() const { return reinterpret_cast<child_iterator>(Lines.begin()); } child_iterator child_end() const { return reinterpret_cast<child_iterator>(Lines.end()); } void setCloseName(StringRef Name, SourceLocation LocBegin) { CloseName = Name; CloseNameLocBegin = LocBegin; } void setLines(llvm::ArrayRef<VerbatimBlockLineComment *> L) { Lines = L; } StringRef getCloseName() const { return CloseName; } unsigned getNumLines() const { return Lines.size(); } StringRef getText(unsigned LineIdx) const { return Lines[LineIdx]->getText(); } }; /// A verbatim line command. Verbatim line has an opening command, a single /// line of text (up to the newline after the opening command) and has no /// closing command. class VerbatimLineComment : public BlockCommandComment { protected: StringRef Text; SourceLocation TextBegin; public: VerbatimLineComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Name, SourceLocation TextBegin, StringRef Text) : BlockCommandComment(VerbatimLineCommentKind, LocBegin, LocEnd, Name), Text(Text), TextBegin(TextBegin) { } static bool classof(const Comment *C) { return C->getCommentKind() == VerbatimLineCommentKind; } static bool classof(const VerbatimLineComment *) { return true; } child_iterator child_begin() const { return NULL; } child_iterator child_end() const { return NULL; } StringRef getText() const { return Text; } SourceRange getTextRange() const { return SourceRange(TextBegin, getLocEnd()); } }; /// A full comment attached to a declaration, contains block content. class FullComment : public Comment { llvm::ArrayRef<BlockContentComment *> Blocks; public: FullComment(llvm::ArrayRef<BlockContentComment *> Blocks) : Comment(FullCommentKind, SourceLocation(), SourceLocation()), Blocks(Blocks) { if (Blocks.empty()) return; setSourceRange(SourceRange(Blocks.front()->getLocStart(), Blocks.back()->getLocEnd())); setLocation(Blocks.front()->getLocStart()); } static bool classof(const Comment *C) { return C->getCommentKind() == FullCommentKind; } static bool classof(const FullComment *) { return true; } child_iterator child_begin() const { return reinterpret_cast<child_iterator>(Blocks.begin()); } child_iterator child_end() const { return reinterpret_cast<child_iterator>(Blocks.end()); } }; } // end namespace comments } // end namespace clang #endif
[ "gribozavr@gmail.com" ]
gribozavr@gmail.com
1fe07fadc2f710796a69d6cd6a4017502c7a8255
3a4dc86b060878e9feb2cfb6f4f97af363d43cee
/cocos2dx/CCDirector.h
2d588b773de0221ff36b95a1c75329f5ef227911
[ "MIT" ]
permissive
morph85/cocos2d-x-v2.x-private
18c3f60d491c0b147beb5bc14c4c0e649f448423
4acedacec5552ed881865db0096116f9acdef397
refs/heads/master
2020-05-20T05:59:10.996166
2015-08-08T15:39:31
2015-08-08T15:39:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,410
h
/**************************************************************************** Copyright (c) 2010-2012 cocos2d-x.org Copyright (c) 2008-2010 Ricardo Quesada Copyright (c) 2011 Zynga Inc. http://www.cocos2d-x.org 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 __CCDIRECTOR_H__ #define __CCDIRECTOR_H__ #include "platform/CCPlatformMacros.h" #include "cocoa/CCObject.h" #include "ccTypes.h" #include "cocoa/CCGeometry.h" #include "cocoa/CCArray.h" #include "CCGL.h" #include "kazmath/mat4.h" #include "label_nodes/CCLabelAtlas.h" #include "ccTypeInfo.h" NS_CC_BEGIN /** * @addtogroup base_nodes * @{ */ /** @typedef ccDirectorProjection Possible OpenGL projections used by director */ typedef enum { /// sets a 2D projection (orthogonal projection) kCCDirectorProjection2D, /// sets a 3D projection with a fovy=60, znear=0.5f and zfar=1500. kCCDirectorProjection3D, /// it calls "updateProjection" on the projection delegate. kCCDirectorProjectionCustom, /// Default projection is 3D projection kCCDirectorProjectionDefault = kCCDirectorProjection3D, } ccDirectorProjection; /* Forward declarations. */ class CCLabelAtlas; class CCScene; class CCEGLView; class CCDirectorDelegate; class CCNode; class CCScheduler; class CCActionManager; class CCTouchDispatcher; class CCKeypadDispatcher; class CCAccelerometer; /** @brief Class that creates and handle the main Window and manages how and when to execute the Scenes. The CCDirector is also responsible for: - initializing the OpenGL context - setting the OpenGL pixel format (default on is RGB565) - setting the OpenGL buffer depth (default one is 0-bit) - setting the projection (default one is 3D) - setting the orientation (default one is Portrait) Since the CCDirector is a singleton, the standard way to use it is by calling: _ CCDirector::sharedDirector()->methodName(); The CCDirector also sets the default OpenGL context: - GL_TEXTURE_2D is enabled - GL_VERTEX_ARRAY is enabled - GL_COLOR_ARRAY is enabled - GL_TEXTURE_COORD_ARRAY is enabled */ class CC_DLL CCDirector : public CCObject, public TypeInfo { public: /** * @js ctor */ CCDirector(void); /** * @js NA * @lua NA */ virtual ~CCDirector(void); virtual bool init(void); /** * @js NA * @lua NA */ virtual long getClassTypeInfo() { static const long id = cocos2d::getHashCodeByString(typeid(cocos2d::CCDirector).name()); return id; } // attribute /** Get current running Scene. Director can only run one Scene at the time */ inline CCScene* getRunningScene(void) { return m_pRunningScene; } /** Get the FPS value */ inline double getAnimationInterval(void) { return m_dAnimationInterval; } /** Set the FPS value. */ virtual void setAnimationInterval(double dValue) = 0; /** Whether or not to display the FPS on the bottom-left corner */ inline bool isDisplayStats(void) { return m_bDisplayStats; } /** Display the FPS on the bottom-left corner */ inline void setDisplayStats(bool bDisplayStats) { m_bDisplayStats = bDisplayStats; } /** seconds per frame */ inline float getSecondsPerFrame() { return m_fSecondsPerFrame; } /** Get the CCEGLView, where everything is rendered * @js NA */ inline CCEGLView* getOpenGLView(void) { return m_pobOpenGLView; } void setOpenGLView(CCEGLView *pobOpenGLView); inline bool isNextDeltaTimeZero(void) { return m_bNextDeltaTimeZero; } void setNextDeltaTimeZero(bool bNextDeltaTimeZero); /** Whether or not the Director is paused */ inline bool isPaused(void) { return m_bPaused; } /** How many frames were called since the director started */ inline unsigned int getTotalFrames(void) { return m_uTotalFrames; } /** Sets an OpenGL projection @since v0.8.2 @js NA */ inline ccDirectorProjection getProjection(void) { return m_eProjection; } void setProjection(ccDirectorProjection kProjection); /** reshape projection matrix when canvas has been change"*/ void reshapeProjection(const CCSize& newWindowSize); /** Sets the glViewport*/ void setViewport(); /** How many frames were called since the director started */ /** Whether or not the replaced scene will receive the cleanup message. If the new scene is pushed, then the old scene won't receive the "cleanup" message. If the new scene replaces the old one, the it will receive the "cleanup" message. @since v0.99.0 */ inline bool isSendCleanupToScene(void) { return m_bSendCleanupToScene; } /** This object will be visited after the main scene is visited. This object MUST implement the "visit" selector. Useful to hook a notification object, like CCNotifications (http://github.com/manucorporat/CCNotifications) @since v0.99.5 */ CCNode* getNotificationNode(); void setNotificationNode(CCNode *node); /** CCDirector delegate. It shall implemente the CCDirectorDelegate protocol @since v0.99.5 */ CCDirectorDelegate* getDelegate() const; void setDelegate(CCDirectorDelegate* pDelegate); // window size /** returns the size of the OpenGL view in points. */ CCSize getWinSize(void); /** returns the size of the OpenGL view in pixels. */ CCSize getWinSizeInPixels(void); /** returns visible size of the OpenGL view in points. * the value is equal to getWinSize if don't invoke * CCEGLView::setDesignResolutionSize() */ CCSize getVisibleSize(); /** returns visible origin of the OpenGL view in points. */ CCPoint getVisibleOrigin(); /** converts a UIKit coordinate to an OpenGL coordinate Useful to convert (multi) touch coordinates to the current layout (portrait or landscape) */ CCPoint convertToGL(const CCPoint& obPoint); /** converts an OpenGL coordinate to a UIKit coordinate Useful to convert node points to window points for calls such as glScissor */ CCPoint convertToUI(const CCPoint& obPoint); /// XXX: missing description float getZEye(void); // Scene Management /** Enters the Director's main loop with the given Scene. * Call it to run only your FIRST scene. * Don't call it if there is already a running scene. * * It will call pushScene: and then it will call startAnimation */ void runWithScene(CCScene *pScene); /** Suspends the execution of the running scene, pushing it on the stack of suspended scenes. * The new scene will be executed. * Try to avoid big stacks of pushed scenes to reduce memory allocation. * ONLY call it if there is a running scene. */ void pushScene(CCScene *pScene); /** Pops out a scene from the queue. * This scene will replace the running one. * The running scene will be deleted. If there are no more scenes in the stack the execution is terminated. * ONLY call it if there is a running scene. */ void popScene(void); /** Pops out all scenes from the queue until the root scene in the queue. * This scene will replace the running one. * Internally it will call `popToSceneStackLevel(1)` */ void popToRootScene(void); /** Pops out all scenes from the queue until it reaches `level`. If level is 0, it will end the director. If level is 1, it will pop all scenes until it reaches to root scene. If level is <= than the current stack level, it won't do anything. */ void popToSceneStackLevel(int level); // -- custom extension start -- void popToIosScene(void); // for iOS only, stub function for Android and other platforms void callbackNativeActivityOrViewController(int contextId); void callbackPerformActionWithFilePath(int eventId, int actionId, const char *folderPath); void callbackPerformActionWithFolderPath(int eventId, int actionId, const char *folderPath); std::string callbackJsonEvent(std::string callbackJson); // -- custom extension end -- /** Replaces the running scene with a new one. The running scene is terminated. * ONLY call it if there is a running scene. */ void replaceScene(CCScene *pScene); /** Ends the execution, releases the running scene. It doesn't remove the OpenGL view from its parent. You have to do it manually. */ void end(void); /** Pauses the running scene. The running scene will be _drawed_ but all scheduled timers will be paused While paused, the draw rate will be 4 FPS to reduce CPU consumption */ void pause(void); /** Resumes the paused scene The scheduled timers will be activated again. The "delta time" will be 0 (as if the game wasn't paused) */ void resume(void); /** Stops the animation. Nothing will be drawn. The main loop won't be triggered anymore. If you don't want to pause your animation call [pause] instead. */ virtual void stopAnimation(void) = 0; /** The main loop is triggered again. Call this function only if [stopAnimation] was called earlier @warning Don't call this function to start the main loop. To run the main loop call runWithScene */ virtual void startAnimation(void) = 0; /** Draw the scene. This method is called every frame. Don't call it manually. */ void drawScene(void); // Memory Helper /** Removes cached all cocos2d cached data. It will purge the CCTextureCache, CCSpriteFrameCache, CCLabelBMFont cache @since v0.99.3 */ void purgeCachedData(void); /** sets the default values based on the CCConfiguration info */ void setDefaultValues(void); // OpenGL Helper /** sets the OpenGL default values */ void setGLDefaultValues(void); /** enables/disables OpenGL alpha blending */ void setAlphaBlending(bool bOn); /** enables/disables OpenGL depth test */ void setDepthTest(bool bOn); virtual void mainLoop(void) = 0; /** The size in pixels of the surface. It could be different than the screen size. High-res devices might have a higher surface size than the screen size. Only available when compiled using SDK >= 4.0. @since v0.99.4 */ void setContentScaleFactor(float scaleFactor); float getContentScaleFactor(void); public: /** CCScheduler associated with this director @since v2.0 */ CC_PROPERTY(CCScheduler*, m_pScheduler, Scheduler); /** CCActionManager associated with this director @since v2.0 */ CC_PROPERTY(CCActionManager*, m_pActionManager, ActionManager); /** CCTouchDispatcher associated with this director @since v2.0 */ CC_PROPERTY(CCTouchDispatcher*, m_pTouchDispatcher, TouchDispatcher); /** CCKeypadDispatcher associated with this director @since v2.0 */ CC_PROPERTY(CCKeypadDispatcher*, m_pKeypadDispatcher, KeypadDispatcher); /** CCAccelerometer associated with this director @since v2.0 @js NA @lua NA */ CC_PROPERTY(CCAccelerometer*, m_pAccelerometer, Accelerometer); /* delta time since last tick to main loop */ CC_PROPERTY_READONLY(float, m_fDeltaTime, DeltaTime); public: /** returns a shared instance of the director * @js getInstance */ static CCDirector* sharedDirector(void); protected: void purgeDirector(); bool m_bPurgeDirecotorInNextLoop; // this flag will be set to true in end() void setNextScene(void); void showStats(); void createStatsLabel(); void calculateMPF(); void getFPSImageData(unsigned char** datapointer, unsigned int* length); /** calculates delta time since last time it was called */ void calculateDeltaTime(); protected: /* The CCEGLView, where everything is rendered */ CCEGLView *m_pobOpenGLView; double m_dAnimationInterval; double m_dOldAnimationInterval; /* landscape mode ? */ bool m_bLandscape; bool m_bDisplayStats; float m_fAccumDt; float m_fFrameRate; CCLabelAtlas *m_pFPSLabel; CCLabelAtlas *m_pSPFLabel; CCLabelAtlas *m_pDrawsLabel; /** Whether or not the Director is paused */ bool m_bPaused; /* How many frames were called since the director started */ unsigned int m_uTotalFrames; unsigned int m_uFrames; float m_fSecondsPerFrame; /* The running scene */ CCScene *m_pRunningScene; /* will be the next 'runningScene' in the next frame nextScene is a weak reference. */ CCScene *m_pNextScene; /* If YES, then "old" scene will receive the cleanup message */ bool m_bSendCleanupToScene; /* scheduled scenes */ CCArray* m_pobScenesStack; /* last time the main loop was updated */ struct cc_timeval *m_pLastUpdate; /* whether or not the next delta time will be zero */ bool m_bNextDeltaTimeZero; /* projection used */ ccDirectorProjection m_eProjection; /* window size in points */ CCSize m_obWinSizeInPoints; /* content scale factor */ float m_fContentScaleFactor; /* store the fps string */ char *m_pszFPS; /* This object will be visited after the scene. Useful to hook a notification node */ CCNode *m_pNotificationNode; /* Projection protocol delegate */ CCDirectorDelegate *m_pProjectionDelegate; // CCEGLViewProtocol will recreate stats labels to fit visible rect friend class CCEGLViewProtocol; }; /** @brief DisplayLinkDirector is a Director that synchronizes timers with the refresh rate of the display. Features and Limitations: - Scheduled timers & drawing are synchronizes with the refresh rate of the display - Only supports animation intervals of 1/60 1/30 & 1/15 @since v0.8.2 @js NA @lua NA */ class CCDisplayLinkDirector : public CCDirector { public: CCDisplayLinkDirector(void) : m_bInvalid(false) {} virtual void mainLoop(void); virtual void setAnimationInterval(double dValue); virtual void startAnimation(void); virtual void stopAnimation(); protected: bool m_bInvalid; }; // end of base_node group /// @} NS_CC_END #endif // __CCDIRECTOR_H__
[ "mononoctorus@gmail.com" ]
mononoctorus@gmail.com
4c8a94161d996fc0652fd894bb5f1be0b751e810
f634b36e9bfcd49dccbfc83483b4faceadfeed38
/src/08-stack/ListStack.h
f509542d0ebe33e768f17451e2ca0a922e4d8e31
[ "MIT" ]
permissive
MichaelZalla/data-structures-review
3a589aaf18bc281ace3b64060766178afaea4387
4ef1a70cf28031160eafc81fe3557791c58aed32
refs/heads/master
2021-08-15T00:49:49.804839
2017-11-17T03:48:02
2017-11-17T03:48:02
106,978,844
1
0
null
null
null
null
UTF-8
C++
false
false
850
h
#ifndef LIST_STACK_H #define LIST_STACK_H #include "../03-singly-linked-list/SinglyLinkedList.h" #include "./StackException.h" template <typename T> class ListStack { public: ListStack<T>() : list(), stackSize(0) {} int size() const { return this->stackSize; } bool isEmpty() const { return this->list.isEmpty(); } const T& top() const throw(StackEmptyException) { if(this->isEmpty()) { throw StackEmptyException("Called top() on empty stack!"); } return this->list.front(); } void push(const T& e) { this->list.addFront(e); this->stackSize++; } void pop() throw(StackEmptyException) { if(this->isEmpty()) { throw StackEmptyException("Called pop() on empty stack!"); } this->list.removeFront(); this->stackSize--; } private: SinglyLinkedList<T> list; int stackSize; }; #endif
[ "michael@zalla.io" ]
michael@zalla.io
d473bd2d66cc0545e174931a50afb9e339dcfc7e
9e96debaf9c430056586e0dc3c9ac363f1eb3810
/compendium/test_bundles/TestBundleDSCA12/src/ServiceImpl.cpp
433a82049d92d3a8f2ede4de89a04bf45b24787a
[ "Apache-2.0" ]
permissive
sunfirefox/CppMicroServices
b2f73be5c75efb5ffcedeed0deb82e37bac66272
55dda3b59ce471b3b7baaa6bf449bc0efe930956
refs/heads/master
2023-05-24T20:28:38.076412
2023-04-28T15:09:27
2023-04-28T15:09:27
14,852,197
0
0
null
null
null
null
UTF-8
C++
false
false
551
cpp
#include "ServiceImpl.hpp" #include <iostream> namespace sample { void ServiceComponentCA12::Modified(std::shared_ptr<ComponentContext> const&, std::shared_ptr<cppmicroservices::AnyMap> const& configuration) { std::lock_guard<std::mutex> lock(propertiesLock); properties = configuration; } cppmicroservices::AnyMap ServiceComponentCA12::GetProperties() { std::lock_guard<std::mutex> lock(propertiesLock); return *properties; } } // namespace sample
[ "noreply@github.com" ]
noreply@github.com
87b61ef0e5724877241fc7ad80ce8a3c3d5af292
10b69878551b74684c388e7dcc08b280e459d7c6
/projecteuler/9.cpp
70ef31065efdc127d7710c0e19bbe53daeea4e47
[ "MIT" ]
permissive
diofeher/ctf-writeups
4cb4d12ee04195c7084e3b8169066c95e531b0b1
b82eaae064fe5339c69892dd084e0f1915ca8bb5
refs/heads/master
2021-06-26T17:43:48.826375
2019-06-04T13:43:13
2019-06-04T13:43:13
113,044,948
8
2
null
null
null
null
UTF-8
C++
false
false
545
cpp
#include <iostream> #include <math.h> using namespace std; bool is_pythagorean(int a, int b, int c); int main(){ // TODO FIX THIS DUMB WAY AND BRUTAL FORCE :( for(int x=100; x<500; x++) { for(int y=x; y<500; y++) for(int z=y; z<500; z++) if (is_pythagorean(x,y,z)) if (x+y+z ==1000) { cout << x*y*z << "\n"; break; } } } bool is_pythagorean(int a, int b, int c) { return pow(a, 2) + pow(b, 2)==pow(c,2); }
[ "diofeher@gmail.com" ]
diofeher@gmail.com
bdfb2c392f643655e37a647746388e3c9967dcfb
f0b7bcc41298354b471a72a7eeafe349aa8655bf
/codebase/apps/mdv_utils/src/MdvInterpMissing/Args.cc
15c2408279fe606ca28beacac73afc089732441e
[ "BSD-3-Clause" ]
permissive
NCAR/lrose-core
23abeb4e4f1b287725dc659fb566a293aba70069
be0d059240ca442883ae2993b6aa112011755688
refs/heads/master
2023-09-01T04:01:36.030960
2023-08-25T00:41:16
2023-08-25T00:41:16
51,408,988
90
53
NOASSERTION
2023-08-18T21:59:40
2016-02-09T23:36:25
C++
UTF-8
C++
false
false
7,050
cc
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* // ** Copyright UCAR (c) 1990 - 2016 // ** University Corporation for Atmospheric Research (UCAR) // ** National Center for Atmospheric Research (NCAR) // ** Boulder, Colorado, USA // ** BSD licence applies - redistribution and use in source and binary // ** forms, with or without modification, are permitted provided that // ** the following conditions are met: // ** 1) If the software is modified to produce derivative works, // ** such modified software should be clearly marked, so as not // ** to confuse it with the version available from UCAR. // ** 2) Redistributions of source code must retain the above copyright // ** notice, this list of conditions and the following disclaimer. // ** 3) 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. // ** 4) Neither the name of UCAR nor the names of its contributors, // ** if any, may be used to endorse or promote products derived from // ** this software without specific prior written permission. // ** DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS // ** OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED // ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* /*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/ // RCS info // $Author: dixon $ // $Locker: $ // $Date: 2016/03/04 02:22:11 $ // $Id: Args.cc,v 1.3 2016/03/04 02:22:11 dixon Exp $ // $Revision: 1.3 $ // $State: Exp $ /**-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-**/ /********************************************************************* * Args.cc: class controlling the command line arguments for the * program. * * RAP, NCAR, Boulder CO * * July 2007 * * Nancy Rehak * *********************************************************************/ #include <iostream> #include <string> #include <string.h> #include <toolsa/os_config.h> #include <tdrp/tdrp.h> #include <toolsa/DateTime.hh> #include <toolsa/str.h> #include <toolsa/umisc.h> #include "Args.hh" using namespace std; /********************************************************************** * Constructor */ Args::Args (int argc, char **argv, char *prog_name) : _progName(prog_name) { string tmp_str; DateTime start_time(DateTime::NEVER); DateTime end_time(DateTime::NEVER); string mode; string url_string = ""; // Intialize bool okay = true; TDRP_init_override(&override); // search for command options for (int i = 1; i < argc; i++) { if (STRequal_exact(argv[i], "--") || STRequal_exact(argv[i], "-help") || STRequal_exact(argv[i], "-man")) { _usage(stdout); exit(0); } else if (STRequal_exact(argv[i], "-debug")) { tmp_str = "debug = true;"; TDRP_add_override(&override, tmp_str.c_str()); } else if (STRequal_exact(argv[i], "-end") || STRequal_exact(argv[i], "-endtime")) { if (i < argc - 1) { if (end_time.set(argv[++i]) == DateTime::NEVER) { cerr << "*** Invalid end time string entered: " << argv[i] << endl << endl; okay = false; } mode = "TIME_LIST"; tmp_str = "trigger_mode = " + mode + ";"; TDRP_add_override(&override, tmp_str.c_str()); } else { okay = false; } } else if (STRequal_exact(argv[i], "-mode")) { if (i < argc - 1) { mode = argv[++i]; tmp_str = "trigger_mode = " + mode + ";"; TDRP_add_override(&override, tmp_str.c_str()); } else { okay = false; } } else if (STRequal_exact(argv[i], "-start") || STRequal_exact(argv[i], "-starttime")) { if (i < argc - 1) { if (start_time.set(argv[++i]) == DateTime::NEVER) { cerr << "*** Invalid start time string entered: " << argv[i] << endl << endl; okay = false; } mode = "TIME_LIST"; tmp_str = "trigger_mode = " + mode + ";"; TDRP_add_override(&override, tmp_str.c_str()); } else { okay = false; } } else if (STRequal_exact(argv[i], "-url")) { if (i < argc - 1) { tmp_str = "input_url = \"" + string(argv[++i]) + "\";"; TDRP_add_override(&override, tmp_str.c_str()); } else { okay = false; } } } /* i */ if (!okay) { _usage(stderr); exit(-1); } // If a mode was entered on the command line, make sure that // the other appropriate information was also entered. if (mode == "TIME_LIST") { if (start_time == DateTime::NEVER) { cerr << "*** Must include -start in command line when using TIME_LIST mode" << endl << endl; _usage(stderr); exit(-1); } if (end_time == DateTime::NEVER) { cerr << "*** Must include -end in command line when using TIME_LIST mode" << endl << endl; _usage(stderr); exit(-1); } tmp_str = "time_list_trigger = { \"" + string(start_time.dtime()) + "\", \"" + end_time.dtime() + "\" };"; TDRP_add_override(&override, tmp_str.c_str()); } } /********************************************************************** * Destructor */ Args::~Args(void) { TDRP_free_override(&override); } /********************************************************************** * Private Member Functions * **********************************************************************/ /********************************************************************** * _usage() - Print the usage for this program. */ void Args::_usage(FILE *stream) { fprintf(stream, "%s%s%s", "This program fills in missing data by interpolating the data\n" "in surrounding grid squares. Missing data will only be filled in\n" "where a given percentage of surrounding grid squares are non-missing.\n" "\n" "Usage:\n\n", _progName.c_str(), " [options] as below:\n\n" " [ --, -help, -man ] produce this list.\n" " [ -debug ] debugging on\n" " [ -end yyyy/mm/dd_hh:mm:ss ] end time (TIME_LIST mode)\n" " [ -mode ?] LATEST_DATA or TIME_LIST\n" " [ -start yyyy/mm/dd_hh:mm:ss ] start time (TIME_LIST mode)\n" " [ -url url ] trigger url\n" "\n" "When specifying a mode on the command line, the following must also\n" "be specified:\n" "\n" " LATEST_DATA mode:\n" " no requirements\n" " TIME_LIST mode:\n" " -start, -end\n" "\n" ); TDRP_usage(stream); }
[ "dixon@ucar.edu" ]
dixon@ucar.edu
129882370c6ab431b3257374eec3c3019ee40a9f
5f2c1792902470aac75db8a46e643a93d8a75cd4
/core/bitmap.cpp
aac601d35648465e809c14d60f5ed4199d69ee6f
[]
no_license
irqlevel/kstor
055d6a0e3b280e9b812fcccb33d05ac473c4dd30
41fdf43f6981e455d3c058947d2a4e879370bbce
refs/heads/master
2018-03-11T07:05:44.358556
2017-03-24T22:02:57
2017-03-24T22:02:57
60,274,460
4
1
null
null
null
null
UTF-8
C++
false
false
2,516
cpp
#include "bitmap.h" #include "memory.h" #include "bitops.h" #include "new.h" namespace Core { Bitmap::Bitmap(void *buf, size_t size) : Buf(buf) , Size(size) { BitSize = 8 * size; } Bitmap::~Bitmap() { } Error Bitmap::SetBit(size_t bit) { if (bit >= BitSize) return MakeError(Error::Overflow); BitOps::SetBit(bit, static_cast<unsigned long *>(Buf)); return MakeError(Error::Success); } Error Bitmap::ClearBit(size_t bit) { if (bit >= BitSize) return MakeError(Error::Overflow); BitOps::ClearBit(bit, static_cast<unsigned long *>(Buf)); return MakeError(Error::Success); } Error Bitmap::TestAndSetBit(size_t bit, bool& oldValue) { if (bit >= BitSize) return MakeError(Error::Overflow); oldValue = BitOps::TestAndSetBit(bit, static_cast<unsigned long *>(Buf)); return MakeError(Error::Success); } Error Bitmap::TestAndClearBit(size_t bit, bool& oldValue) { if (bit >= BitSize) return MakeError(Error::Overflow); oldValue = BitOps::TestAndClearBit(bit, static_cast<unsigned long *>(Buf)); return MakeError(Error::Success); } Error Bitmap::FindSetZeroBit(unsigned long* value, size_t maxBits, size_t& bit) { if (maxBits > Memory::SizeOfInBits<unsigned long>()) return MakeError(Error::Overflow); if (*value == ~(static_cast<unsigned long>(0))) return MakeError(Error::NotFound); for (size_t i = 0; i < maxBits; i++) { if (BitOps::TestAndSetBit(i, value) == false) { bit = i; return MakeError(Error::Success); } } return MakeError(Error::NotFound); } Error Bitmap::FindSetZeroBit(size_t& bit) { size_t i, foundBit, restBits = BitSize % Memory::SizeOfInBits<unsigned long>(); unsigned long *ulongPtr = static_cast<unsigned long *>(Buf); for (i = 0; i < BitSize / Memory::SizeOfInBits<unsigned long>(); i++, ulongPtr++) { auto err = FindSetZeroBit(ulongPtr, Memory::SizeOfInBits<unsigned long>(), foundBit); if (err == Error::NotFound) { continue; } if (!err.Ok()) return err; bit = i * Memory::SizeOfInBits<unsigned long>() + foundBit; return MakeError(Error::Success); } auto err = FindSetZeroBit(ulongPtr, restBits, foundBit); if (!err.Ok()) return err; bit = i * Memory::SizeOfInBits<unsigned long>() + foundBit; return MakeError(Error::Success); } void* Bitmap::GetBuf() { return Buf; } }
[ "irqlevel@gmail.com" ]
irqlevel@gmail.com
394cdb5ae2aeb9be779de61915e230ba046a948e
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/2.86/phi
1cc8c1692643c2bb188aa2228ea54005adaebb0f
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
373,204
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "2.86"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; oriented oriented; internalField nonuniform List<scalar> 25162 ( 0.0004796617118 0.9161703383 0.00063743615 0.9165422256 0.0008092043847 0.9164782318 0.0004008032249 0.9164649808 0.0005934203594 0.4583357084 0.000415094842 0.4582808625 0.0005337610507 -0.0005146235108 -0.0006695081312 0.4582455529 0.0007739552312 -0.000877205023 0.4581877982 0.001024406861 -0.001183061941 0.4581617448 0.001351317174 -0.001534463299 0.4581484194 0.001721043843 -0.001897101171 0.4581734221 0.002058679051 -0.002199531554 0.45823943 0.002291601565 -0.002339418007 0.4583372956 0.002335622434 -0.002279254535 0.458435424 0.002178830498 -0.002044995976 0.4584907379 0.001884258112 -0.001717540686 0.4585056459 0.001546894765 -0.001369744983 0.4584925813 0.001212163663 -0.001061996899 0.458484432 0.0008925648476 -0.0008249266158 0.458450055 0.0007248716554 -0.0005918024058 0.4584591735 0.0004826288986 -0.001818282336 0.9186040003 0.0002918156823 -0.0004275336271 -0.001138017785 0.9186697354 -3.132484267e-05 0.9157433071 0.9137686752 0.001324207675 0.9148461306 0.002181134646 0.9156852986 0.002666684265 0.9159926821 0.0009943032133 0.916631861 0.001505500851 0.457914159 0.001198519338 -0.4581183751 -0.4580693106 -0.001478787488 0.4577220534 0.001826044675 -0.4578782768 -0.002249376278 0.4573765131 0.001287531998 0.001463607916 -0.2288609581 -0.001542844524 0.228733349 0.00167045356 -0.002190284862 -0.2287920855 0.2286291999 0.002353170507 -0.00296323034 -0.2287616186 0.2285681937 0.003156655212 -0.003768485409 -0.2288132651 0.2286261574 0.003955593161 -0.004415801956 -0.2289550405 0.2288124571 0.004558310436 -0.004702592179 -0.2291635651 0.2291087978 0.004757484495 -0.004609937532 -0.2293361651 0.2294108946 0.004535208003 -0.004098200401 -0.2294361766 0.2296006202 0.003933756843 -0.003379234018 -0.2294693183 0.229673158 0.003175394369 -0.002619403505 -0.2294450746 0.2296403499 0.002424128127 -0.001949494856 -0.2293909857 0.2295524914 0.001787989125 -0.458852727 -0.002621256672 0.4602509932 0.0012229905 4.75165211e-05 0.4608803489 -0.001698339684 -0.4592295257 -0.002022017096 0.9179681852 0.0007559933189 0.001901838859 -0.001247028519 0.9178947469 0.0002301017267 0.9142661768 0.9139987769 0.001702758838 0.9131433718 0.004482006752 0.9129060507 0.007624871238 0.9128498177 0.003409989346 0.9139166937 0.006930049219 -0.457737634 0.4574015156 0.003746107775 -0.4573476166 -0.003931293578 0.457753596 0.003525314203 -0.4566866031 -0.003896599484 0.456116265 0.002155589703 0.002311347864 -0.2281095529 -0.002640117097 0.2278351272 0.002914542714 -0.227827832 -0.00387375366 0.2274672262 0.004234359479 -0.2276708615 -0.005438407621 0.2270996938 0.006002753863 -0.2276528225 -0.0080847744 0.2269012807 0.008806290478 -0.2281042948 -0.01078156392 0.2275676497 0.0112967925 -0.2290328061 -0.01222397888 0.2289907033 0.01227065132 -0.2300550606 -0.0116116703 0.2305677808 0.01112625208 -0.2305948025 -0.009163838711 0.23137718 0.008409087305 -0.230548943 -0.006300199596 0.2309919959 0.005858503824 -0.2304523062 -0.004742758602 0.2308112373 0.004383827569 -0.003132620313 -0.2302689213 0.2309361668 0.002465374883 -0.4628282221 0.0007546311761 0.4615893551 0.0004842357436 -0.4599227629 -0.0006959082415 0.4598427448 0.0007759262752 -0.0004593755346 0.9194646727 -0.0006407205842 -0.0003963914339 0.001221896044 0.9162134753 0.0005611539362 0.9149269189 0.9145599308 0.0007206469987 0.9124227248 0.00160088814 0.9120258095 0.003216873785 0.911233832 0.003886909595 0.9103667324 0.002879925464 -0.4564396507 0.4557900234 0.004536536865 -0.4590126147 -0.006012315238 0.4556443445 0.009380585484 -0.4571717758 -0.01102206426 0.4582688314 0.003270689537 0.006654319114 -0.2268134417 -0.003519328072 0.2264581793 0.003874590505 -0.2258718707 -0.005488450878 0.2245065973 0.006837021682 -0.2234036494 -0.01170589046 0.221561988 0.0134736896 -0.2231022598 -0.01875174974 0.2213667586 0.02041104365 -0.2249673103 -0.02473014833 0.2237933748 0.02586529716 -0.2286722676 -0.02802247239 0.2284672206 0.02824029558 -0.2329054536 -0.02721244424 0.2338928358 0.0262853747 -0.2354918109 -0.02199788489 0.2373984767 0.02017644387 -0.2349183862 -0.01416764892 0.2370065503 0.01214519686 -0.2344485742 -0.002041432128 0.2387045245 -0.002211725699 -0.00307860326 -0.2317712396 0.2317687925 0.003081050368 -0.461486312 -0.00450926515 0.4625748065 0.003420770577 -0.4604823188 -0.002325074893 0.4613634431 0.001443950609 0.002152375853 0.9190973702 -0.0009651498938 -0.0008199233643 0.001556246495 0.9168096047 0.000707798788 0.9157753666 0.9152677296 0.0002971721673 0.9121255526 0.0007184744355 0.9116045073 0.00144951882 0.9105027876 0.002029873131 0.9086475648 0.00113881333 -0.4552852857 0.4542744421 0.003040716743 -0.4538634017 -0.003758042806 0.452863588 0.004757856503 -0.4516524176 -0.006084077737 0.4503141321 0.003846825571 0.00357553771 -0.2265841414 -0.00603530965 0.2243897542 0.008228667898 -0.2193531866 -0.01596346216 0.2190672969 0.01615925551 -0.2146429174 -0.02012667003 0.2120910245 0.02254908265 -0.2152290011 -0.02952455947 0.2130244739 0.03162895869 -0.2195473703 -0.03714138498 0.2179570209 0.03869093119 -0.2273449418 -0.04213669697 0.2267433834 0.04275357818 -0.2370356001 -0.04239226491 0.2382020484 0.04129801598 -0.2443105095 -0.03477780176 0.2470458326 0.03216629703 -0.2517288341 -0.0170328655 0.2513864811 0.017503868 -0.2390503773 -0.01257175384 0.2417305705 0.009963135518 -0.004510338201 -0.2330685615 0.2335662729 0.004012626822 -0.4640842387 -0.00506985448 0.4654963187 0.003657774466 -0.4621657786 -0.0026895955 0.4629739526 0.001881421547 0.002735548863 0.9205347307 -0.00242454517 -0.001748364195 0.001430531504 0.918114622 0.0006320832384 0.9165738149 0.9158998128 -8.182022993e-05 0.9122073728 5.290693795e-06 0.9115173964 0.0004742657816 0.9100338125 0.0007637627367 0.9076972146 0.0006608532582 -0.4531745569 0.4526175366 0.001320783091 -0.4519794449 -0.002571467035 0.4508517278 0.003699184172 -0.448911347 -0.004710798689 0.4473248388 0.003153780752 0.003143526123 -0.218850227 -0.005178108187 0.2167556788 0.007225663352 -0.207478804 -0.01478307284 0.2045501575 0.01756663137 -0.2062032284 -0.02789409753 0.2019666075 0.03197392693 -0.2089003996 -0.03857585739 0.2082475502 0.03913959178 -0.2133415202 -0.04241112468 0.2131314618 0.04260120909 -0.2239452243 -0.04739976162 0.2227342073 0.04861374781 -0.2425958319 -0.04696023781 0.2427199812 0.04687684515 -0.2609410516 -0.03680453871 0.2590875433 0.03878138074 -0.2581753195 -0.03251391448 0.2618743668 0.02898073716 -0.2514109609 -0.01819573472 0.2550313894 0.01470836104 -0.005062106847 -0.2369149553 0.2385894527 0.00340578603 -0.4666710384 -0.004981731978 0.4678232595 0.003829510834 -0.4633738082 -0.003008075837 0.4637081467 0.002673737354 0.001971707321 0.9222774572 -0.001744303063 -0.001970130787 0.0009931731201 0.9190931562 0.0003629343822 0.9172040536 0.9162627472 -0.0006529260246 0.9128602989 -0.001116992207 0.9119814625 -0.001313806727 0.9102306271 8.469697268e-05 0.9071194773 -0.0008207664535 -0.4523182245 0.4518287013 0.0005742201165 -0.4494759829 -0.001026333701 0.4488255855 0.001676731168 -0.4464537917 -0.002983805369 0.4455281506 0.001902362038 0.002006639262 -0.2104902543 -0.005146053223 0.2083223456 0.007226570606 -0.1951051881 -0.01454763704 0.1940659795 0.01540481928 -0.1941690178 -0.02243291195 0.1921933522 0.02425159345 -0.2008055195 -0.02938293308 0.1987805962 0.03135501112 -0.2052541245 -0.04710345134 0.1039317136 0.0980602544 0.02301324023 0.02735236764 -0.03358168134 -0.1086977843 0.1081339359 0.03414552973 -0.0271170625 -0.251844183 0.05115331621 -0.02749263343 0.1272617469 0.1280388158 -0.04412231029 -0.2638662842 0.2668677856 0.04120146261 -0.2732786096 -0.03000446761 0.2756946064 0.02776280238 -0.2650800555 -0.02013051308 0.2686994311 0.01667878036 -0.007554862239 -0.2457701945 0.2482444672 0.00514488733 -0.4689332923 -0.00382512942 0.4694814177 0.003277004035 -0.4644782968 -0.002343953155 0.4652247534 0.001597496539 0.0005972495368 0.9233506644 -0.0007081902741 -0.0009622664327 8.551811505e-05 0.9196048876 -5.518084265e-05 0.9173447526 0.9162075664 -0.001289549852 0.9141498487 -0.002485589947 0.9131775026 -0.003412756713 0.9111577938 -0.001680785229 0.9078453642 -0.002457858387 -0.4517273859 0.4516498489 -0.001603248216 -0.4484569067 0.001568501027 0.4482433973 -0.00135499159 -0.4435438751 0.001056990588 0.4424075918 -3.618226078e-05 0.0001064532485 -0.2028379867 -0.002016739257 0.201516484 0.003229351586 -0.1869971668 -0.007781370734 0.1852618846 0.009325985068 -0.1875423455 -0.01396794618 0.1860479139 0.01531130941 -0.1961194945 -0.01796170353 0.195803069 0.01826027844 -0.08903149103 -0.01171327671 0.08875802593 0.01198674181 -0.03379331885 -0.1415656977 0.1445478441 0.03081117245 -0.03770319494 -0.2755663681 0.2786518503 0.03465972549 -0.2857854432 -0.02568930957 0.2889203135 0.02272033797 -0.2788528133 -0.01418648694 0.2816766911 0.01154958481 -0.007096801011 -0.2547539306 0.2569621981 0.004980765759 -0.4703901093 -0.00165221025 0.4710882692 0.0009540503201 -0.4657871915 -0.0004938869967 0.4662229807 5.809784332e-05 -0.001469636972 0.9235787582 0.0008845658058 0.0003569773096 -0.001180691235 0.9193159419 -0.000634513333 0.9167985747 0.9155730531 -0.001946791249 0.91609664 -0.003805512994 0.9150362244 -0.00571067275 0.9130629536 -0.003313687116 0.909557195 -0.004108816413 -0.451902818 0.4521495338 -0.003560402879 -0.4483072552 0.003861398888 0.4486066652 -0.004160808857 -0.4417816967 0.00446124323 0.4414657308 -0.001883413542 -0.002282063071 -0.1976334159 0.0005992905333 0.1964813371 0.000433681834 -0.1803390611 -0.004151958144 0.1788890402 0.00540751073 -0.1833445891 -0.008354710754 0.1826775574 0.008876120739 -0.1971410345 -0.008368623876 0.1980431792 0.007458671526 -0.09254451181 -0.001608077511 0.0932520182 0.0009005711133 -0.01495297327 -0.1577259636 0.1582170924 0.01446184447 -0.02096674373 -0.2848121606 0.2857046087 0.02009772198 -0.2957840756 -0.01643010637 0.2974604628 0.01491244848 -0.2888072169 -0.009673042916 0.2907218482 0.007951666106 -0.003060366855 -0.2617720015 0.263214503 0.00172255133 -0.4720336019 0.001223228774 0.4727773188 -0.001966945658 -0.4663586153 0.002216247373 0.4663686574 -0.002226289481 -0.003907339785 0.9225513485 0.002692002635 0.002242746917 -0.002696402594 0.9181050047 -0.001381076042 0.9154832481 0.914191977 -0.002571418639 0.9186680586 -0.005260813677 0.9177256194 -0.007910891359 0.9157130313 -0.004961055964 0.9123711379 -0.00576377832 -0.4527333437 0.4533193777 -0.005547089901 -0.4490916398 0.006242085179 0.4498992406 -0.007049685981 -0.4414072565 0.007879068855 0.4414793821 -0.003760077024 -0.004221322088 -0.1934004959 0.002702538834 0.1923807792 -0.00180793429 -0.1749847028 -0.001318693366 0.1738018221 0.002304941885 -0.1812654831 -0.0042312941 0.1810177554 0.004336494381 -0.2013034713 -0.00246725449 0.2025014363 0.001264914462 -0.0969941186 0.001310353654 0.09740811955 -0.0008421471391 -0.0008822074659 0.003674336246 -0.1551678741 0.154102613 -0.002609075151 -0.002216253909 -0.2862955552 0.2856895643 0.002847076167 -0.3013868117 -0.002843203262 0.3020423209 0.002346331353 -0.2951014272 -0.0001794264753 0.2960683167 -0.0005947230499 0.002337643119 -0.2651722956 0.2655671202 -0.002628455694 -0.472576023 0.005221287668 0.4719477596 -0.004593024306 -0.4660384286 0.00432347968 0.4662348103 -0.004519861388 -0.006551707875 0.9202419733 0.00472255625 0.004138526782 -0.004308347997 0.9158616448 -0.002173338931 0.9133482391 0.9120186381 -0.003262791149 0.9219308498 -0.006541750507 0.9210045788 -0.01002186835 0.9191931491 -0.006528986862 0.916172171 -0.007293914592 -0.4542147775 0.4551132674 -0.007427476719 -0.4508655841 0.008523925908 0.4519706186 -0.009628960348 -0.4418537496 0.01090738861 0.4423317684 -0.005569935879 -0.005859843688 -0.1894327923 0.004356828627 0.1884659736 -0.003522122196 -0.1705101063 0.0007151609485 0.1694822459 0.0001135495122 -0.1806710792 -0.001400072209 0.18067245 0.001259774126 -0.2061083386 0.001306922822 0.2072988604 -0.002499074737 -0.09985901736 0.002891078641 0.1001492829 -0.001575330477 -0.001606013681 0.01354642437 -0.1449756409 0.1435555363 -0.0121263198 0.01212059556 -0.2833865969 0.2828684335 -0.01156016745 -0.3039240883 0.01261071841 0.3014116549 -0.00993641377 -0.2976015518 0.00911919406 0.2974175997 -0.008746085985 0.007250085956 -0.2639123085 0.2633132105 -0.006559537911 -0.4710098032 0.008989554521 0.46980113 -0.007780881332 -0.4663160795 0.006684046641 0.4653087661 -0.005676733245 -0.008978801528 0.9168622671 0.006377310186 0.005981197581 -0.00586008813 0.9127429315 -0.00288923084 0.9103773818 0.9091294073 -0.003876246001 0.9258070958 -0.007812099364 0.9249404322 -0.01195512289 0.9233361727 -0.007908137181 0.9204826044 -0.008357419028 -0.4562551736 0.4573878898 -0.009040853376 -0.4533377296 0.01037277709 0.4547972558 -0.01183230331 -0.4425234225 0.0134472326 0.4436543746 -0.006650375234 -0.00798941048 -0.1855288704 0.005238798168 0.1844946607 -0.004344148476 -0.1665615935 0.001578078934 0.1656374381 -0.0008552123489 -0.1810186556 0.0001143749757 0.1812787401 -0.0005088215962 -0.2108665701 0.003957313919 0.2120687783 -0.005159665558 -0.102055739 0.004276783893 0.1023357037 -0.002257806531 -0.002298942111 0.01683654659 -0.1340117172 0.1326518445 -0.01547667392 0.02071813294 -0.2809895434 0.2809649041 -0.02062375232 -0.3010062111 0.01639959899 0.3050049059 -0.02022546504 -0.2958641102 0.02069388812 0.2950602941 -0.01971041122 0.0115704902 -0.2585010463 0.2564617663 -0.00946091024 -0.4683659117 0.01213641443 0.4667068397 -0.01047734238 -0.4642513782 0.009004764 0.4629677464 -0.007721132173 -0.01115160494 0.9142001455 0.007130776965 0.006682949627 -0.007214840561 0.9088061671 -0.00351521797 0.9066777592 0.9056141893 -0.00809711129 0.9339042071 -0.01640938907 0.93325271 -0.02490039979 0.9318271834 -0.00924967148 0.929554152 -0.02472227597 -0.4587965116 0.460179543 -0.01063270288 -0.4563262631 0.01218132185 0.458067367 -0.01392242569 -0.4415703717 0.01571093281 0.4386882115 -0.006079873838 -0.006849578456 -0.181960049 0.002699073912 0.1798915293 -0.0007781964164 -0.1629751049 0.0004158126768 0.1628299498 -0.000472448622 -0.1825018978 0.002370071406 0.1811649669 -0.001164137653 -0.2157405141 0.005524264867 0.2170092162 -0.003390090512 -0.003402876421 -0.0523944743 0.002782416301 0.0524866722 -0.002874614191 -0.05834710499 0.006282738235 0.05785317086 -0.01220583138 0.006417027275 0.01504244676 -0.1246456848 0.2456043557 -0.02600285481 0.01459902798 -0.1245972909 -0.2805159419 0.02652415734 0.2831315102 -0.02903922874 -0.3043900317 0.02670585819 0.3032971106 -0.02542613707 -0.2912264021 0.02056241534 0.2894010657 -0.01857158579 0.01188642859 -0.2473831138 0.245041372 -0.009506740341 -0.4647346411 0.01428457853 0.4627649948 -0.01231493224 -0.4616384186 0.01078734425 0.4602102322 -0.00935915785 -0.01288697872 0.9103493135 0.008595994988 0.008141815753 -0.008327876769 0.9042470652 -0.004105191285 0.9024550738 0.901508998 -0.004621315211 0.9385255223 -0.009381952084 0.9380133469 -0.01442937949 0.9368746108 -0.009856498969 0.9350664838 -0.01008521224 -0.4636203064 0.4650904982 -0.01132669068 -0.4615900177 0.01297110161 0.4633676728 -0.01474875667 -0.4377278664 0.01669310838 0.4426678202 -0.01031800566 -0.01143269012 -0.1759149262 0.01158369566 0.1760459898 -0.01187055138 -0.1598566497 0.01146913835 0.1591850937 -0.01100070676 -0.1855505777 0.008994247079 0.184625456 -0.008190747185 -0.2212813709 0.006057197383 0.2225416836 -0.003657862917 -0.00365964717 -0.05470964888 0.005942728077 0.1098323278 -0.05468020246 -0.003186360829 -0.003198843695 -0.1123084514 0.008235635071 0.112163186 -0.01608147178 0.007991102073 0.02510910567 -0.2389312876 0.2389454794 -0.02511894764 -0.2844257958 0.02705621164 0.2851730573 -0.0276738353 -0.2993543578 0.02674673123 0.3050644455 -0.0322704587 -0.2831453336 0.02814665384 0.2764335886 -0.02130060232 0.01122366906 -0.2347114253 0.2327007833 -0.00920740245 -0.4610411201 0.01517252674 0.4594942536 -0.01362566023 -0.4587663672 0.01210256362 0.4570785307 -0.01041472705 -0.01238445381 0.9056566815 0.008475368902 0.008601716911 -0.009046913748 0.9009095251 -0.004435883352 0.8978440434 0.8970731147 -0.004819983203 0.9433455055 -0.009773469928 0.9429668336 -0.01499725354 0.9420983944 -0.01025408203 0.9407168584 -0.01039354613 -0.4666531581 0.4682022031 -0.01180312708 -0.4651541203 0.01347955775 0.4669352939 -0.01526073133 -0.451105526 0.01717898973 0.4606791634 -0.01345954053 -0.01333752372 -0.1805758291 0.02063297368 0.183608581 -0.02379763428 -0.1589915028 0.03051369192 0.1598526456 -0.0315686166 -0.1789863377 0.03035647083 0.1768456378 -0.02835832588 -0.2188996577 0.01734058485 0.2136579381 -0.01212924453 -0.1129805985 0.01003743052 0.2259418854 -0.01009085863 -0.1129078588 -0.2266115087 0.01658003703 0.2271744867 -0.017143015 -0.2487697621 0.02766328197 0.253594326 -0.03243795618 -0.2908647411 0.0401226994 0.2915135252 -0.04061629493 -0.3014812906 0.03710699347 0.2991757168 -0.03461415197 -0.2655976684 0.0246388086 0.2658936721 -0.02483627243 0.01139195401 -0.230955096 0.2286491289 -0.009085986945 -0.4581168727 0.01696450727 0.4550616948 -0.01390932934 -0.4553588839 0.01248498286 0.4533809345 -0.01050703352 -0.01281813368 0.9010313518 0.008803770756 0.008639692644 -0.009131035022 0.8972224265 -0.004654725878 0.8933677343 0.8924183888 -0.004889502452 0.948235008 -0.009896805141 0.9479741363 -0.0151378739 0.9473394632 -0.01036333148 0.946330068 -0.01038775204 -0.4697434835 0.4712859283 -0.01190577631 -0.4686879421 0.01354587207 0.4704042957 -0.01526222574 -0.4673208387 0.01707677796 0.4693760367 -0.00965885582 -0.009473255725 -0.1976383436 0.02210210686 0.2039416298 -0.02848544582 -0.1667423155 0.04509581336 0.1707756749 -0.04928908272 -0.1730272726 0.05639569022 0.1732883853 -0.0568079677 -0.200973957 0.05283056959 0.1983900887 -0.050330643 -0.2177360942 0.04241603666 0.2132529421 -0.03795496609 -0.2379699373 0.04557230146 0.2409708597 -0.04855175947 -0.2656300136 0.05796091958 0.268021828 -0.06026523899 -0.2910364473 0.06143816785 0.2894476529 -0.0596978427 -0.2883472225 0.0486390377 0.2832452434 -0.0433892448 -0.2506732676 0.02510009849 0.2443297339 -0.01870373143 0.01095975833 -0.2267717488 0.2261830344 -0.01037104392 -0.4543729573 0.01743386703 0.4517260227 -0.01478693243 -0.450569827 0.01142782239 0.4490166526 -0.009874648038 -0.01207312247 0.894910131 0.009371805313 0.00882253801 -0.006765076626 0.8919143807 -0.004725449251 0.8913281069 0.8876929396 -0.004846209478 0.9530812175 -0.009790558342 0.9529184852 -0.01492508854 0.9524739934 -0.01022749415 0.9517684865 -0.01013601286 -0.4727773287 0.4742537528 -0.0117039182 -0.4720651587 0.01325526369 0.4736663089 -0.0148564139 -0.4712186059 0.0165224015 0.4729600458 -0.009188560911 -0.009075280546 -0.2269727521 0.0102394108 0.2340361411 -0.01731350422 -0.1885604145 0.04302527653 0.1962510429 -0.0508123539 -0.1802229107 0.0697244025 0.184659795 -0.07428200089 -0.1968014232 0.08298942031 0.1981071681 -0.08438379342 -0.2037027289 0.07927561376 0.2040102801 -0.07961479226 -0.2452391944 0.08642264689 0.2452710795 -0.08642460646 -0.268671438 0.08417820388 0.266748798 -0.08216737725 -0.2790005285 0.07103642091 0.2736250527 -0.06554397749 -0.2634054619 0.04461887431 0.2554706036 -0.03660198196 -0.2257169535 0.01272488249 0.2247938075 -0.01180125788 0.01026217881 -0.2245817892 0.2240869331 -0.009767322654 -0.4480729973 0.01663555097 0.4463609435 -0.0149234972 -0.447466542 0.01328920902 0.4458857402 -0.01170840723 -0.01132246948 0.8878740302 0.01008138304 0.008277187259 -0.00640918818 0.8870010994 -0.004378644562 0.8892975633 0.883314295 -0.004713277923 0.9577944954 -0.009502986283 0.9577081935 -0.01443401877 0.9574050259 -0.009884894683 0.9569266241 -0.009707261691 -0.4756639173 0.4770437169 -0.01126469425 -0.4751945632 0.01269693788 0.4766516206 -0.01415399526 -0.4745950593 0.0156455621 0.476124355 -0.00865925741 -0.008515600407 -0.2367494408 0.009450358755 0.2371498414 -0.009850759324 -0.2230309283 0.0155418521 0.2325882601 -0.02511647232 -0.2034889551 0.05173995082 0.2111369594 -0.05944727217 -0.2043139546 0.07689352343 0.2067215505 -0.07935648584 -0.2137932059 0.08548379481 0.2176418112 -0.0893526406 -0.2421609262 0.0893733379 0.240299994 -0.08748770456 -0.2556210152 0.07702254198 0.2505603138 -0.07190433811 -0.2529840745 0.05193637571 0.2450905399 -0.04398846533 -0.2293323363 0.01786108887 0.2238618239 -0.01238460344 -0.2233797761 0.01109656306 0.2229636176 -0.01068040458 0.009442068503 -0.2227539546 0.2223442472 -0.009032361184 -0.4447556632 0.01555367488 0.4432568991 -0.01405491074 -0.4444113253 0.01259588409 0.4429771524 -0.01116171111 -0.01421265896 0.8827431978 0.009570377116 0.009773114184 -0.00933777138 0.8821262118 -0.001814690169 0.8817744821 0.8814996049 -0.00451265206 0.9623071475 -0.009079801571 0.9622753431 -0.01374035005 0.9620655744 -0.009393132984 0.9617397528 -0.009160345775 -0.4783508111 0.4796200238 -0.0106623457 -0.4780295927 0.0119633557 0.479334159 -0.01326792198 -0.4775497653 0.0145815999 0.4788724878 -0.008024248322 -0.007880074109 -0.2382450258 0.008703006048 0.2385782549 -0.0090362351 -0.2371882205 0.01001925383 0.237508764 -0.01033979733 -0.235184355 0.01128388206 0.2362469372 -0.01234726429 -0.2164276583 0.02788568677 0.2206376679 -0.0321071865 -0.2260965503 0.04388536434 0.228065207 -0.04585935833 -0.2334525189 0.04433409855 0.2310580694 -0.04193114106 -0.2335558336 0.02945760784 0.2278738541 -0.02376530199 -0.2241780315 0.01222145876 0.2239362003 -0.01197962757 -0.2228135298 0.01115810089 0.2225139691 -0.01085854015 -0.2218550695 0.00990851443 0.2215268678 -0.009580312676 0.008580723686 -0.2212436611 0.2209045704 -0.008241632949 -0.4418603686 0.01432653579 0.4405627733 -0.01302894053 -0.4416522544 0.01174380825 0.4403702574 -0.01046181123 -0.0134224554 0.8780136274 0.008948703324 0.009203322506 -0.008856990743 0.8775607471 -0.004397257673 0.8773147491 0.8771023472 -0.004265502742 0.9665726503 -0.008565617267 0.9665754576 -0.0129166009 0.966416558 -0.008806265335 0.966176064 -0.0085466467 -0.4808137234 0.4819705342 -0.009963076115 -0.4805610273 0.01113295498 0.4817182024 -0.01229013007 -0.4800986042 0.01343815218 0.4812341393 -0.007348934703 -0.007224752536 -0.2394895303 0.007935497412 0.2397672919 -0.008213258984 -0.2383720211 0.009017220995 0.2386302253 -0.009275425188 -0.2369767821 0.01001053201 0.2371786727 -0.0102124226 -0.2232976277 0.01023375114 0.2232513618 -0.01018748522 -0.230534201 0.01132948797 0.2306273331 -0.01142262011 -0.2281220192 0.01143599482 0.2280913008 -0.0114052764 -0.2254594299 0.01117583585 0.2253425836 -0.01105898957 -0.2233058378 0.0106034983 0.2231225795 -0.01042023995 -0.2217241321 0.0097915229 0.2214920826 -0.009559473422 -0.220646814 0.008811996773 0.2203842239 -0.008549406715 0.007734599446 -0.2199940133 0.2197108018 -0.007451387925 -0.4393579604 0.01306155027 0.4382400358 -0.01194362567 -0.4391926084 0.01081936025 0.4380557033 -0.009682455141 -0.01251311273 0.8737021747 0.00827331429 0.008551251168 -0.00829067553 0.87333831 -0.004125785001 0.8731498585 0.8729765622 -0.003991139422 0.9705637897 -0.008000098807 0.970584417 -0.01202542255 0.9704418818 -0.008174912497 0.9702314055 -0.007905851631 -0.4830496885 0.4840969193 -0.009222143301 -0.4828033388 0.01026791107 0.4838253194 -0.0112898917 -0.4822853314 0.01229072412 0.4832576211 -0.006682743019 -0.006580270847 -0.2405282082 0.007191294986 0.2407609598 -0.007424046639 -0.2393288113 0.008087961917 0.23953919 -0.00829834056 -0.2376928676 0.008878243765 0.2378383252 -0.009023701358 -0.2231985491 0.008969391773 0.2232046352 -0.008975477864 -0.2308176063 0.009887408566 0.2308602609 -0.009930063088 -0.2280007462 0.009916953929 0.2279706378 -0.009886845525 -0.225031768 0.009697409697 0.2249391116 -0.009604753313 -0.2226372097 0.009247554844 0.2224937251 -0.009104070158 -0.2208728564 0.008609204545 0.2206887244 -0.008425072555 -0.219674704 0.007825216638 0.2194613126 -0.007611825266 0.006939914344 -0.2189532269 0.2187148455 -0.006701532939 -0.4372019193 0.01183081122 0.4362377881 -0.01086668003 -0.4370149224 0.009884893372 0.4360100271 -0.008879998012 -0.011552653 0.8698019841 0.007585981424 0.007866862075 -0.007681784781 0.8694674417 -0.003830684994 0.8692987588 0.8691458772 -0.003704682672 0.9742684724 -0.00741365821 0.9742933925 -0.01111262191 0.9741408455 -0.007531889624 0.9739178805 -0.007267207232 -0.48506692 0.4860104128 -0.008475382361 -0.4847826508 0.009407429475 0.4856840506 -0.01030882922 -0.4841600383 0.01118289296 0.4849986471 -0.006057970702 -0.005963530992 -0.2414002469 0.006492492148 0.2415964131 -0.006688658378 -0.2401127546 0.007243174164 0.2402868116 -0.007417231169 -0.2382110206 0.007882943261 0.2383166682 -0.007988590813 -0.2232835355 0.007898571959 0.223328153 -0.007943189441 -0.2309469167 0.008677492907 0.2309654456 -0.008696021764 -0.2278804327 0.008662396185 0.2278503923 -0.008632355841 -0.2246871188 0.008468915938 0.2246105375 -0.008392334551 -0.2221078262 0.008102163485 0.2219920581 -0.007986395383 -0.2201918878 0.007586797467 0.2200425685 -0.007437478176 -0.2188803756 0.006947286566 0.2187044051 -0.006771316072 0.006211230689 -0.2180794222 0.2178780601 -0.006009868574 -0.4353411198 0.01067072229 0.4345061641 -0.009835766599 -0.4350921007 0.008977599107 0.4342048724 -0.008090370847 -0.01058897431 0.866289688 0.006915288205 0.007185982284 -0.00706269065 0.8659411581 -0.003528379106 0.8657644472 0.8656174981 -0.003418930807 0.9776874032 -0.006831699458 0.9777061612 -0.01021527223 0.9775244183 -0.006904238218 0.9772579762 -0.006651129701 -0.4868799151 0.4877280871 -0.007752410222 -0.4865285752 0.008582674289 0.4873242277 -0.009378326801 -0.4857787545 0.01014273489 0.4865053319 -0.005478284265 -0.005391028081 -0.2421377686 0.005852020859 0.2423047705 -0.006019022723 -0.2407651747 0.006488357977 0.2409114687 -0.00663465192 -0.2385868338 0.007013347842 0.2386629513 -0.007089465306 -0.2235095542 0.006992478165 0.2235840503 -0.007066974256 -0.2309994827 0.007656349376 0.2310051932 -0.007662059908 -0.2277605054 0.007614910123 0.2277306739 -0.007585078579 -0.2243989087 0.007440185946 0.2243336694 -0.00737494669 -0.221676491 0.007132364181 0.2215806164 -0.007036489505 -0.2196355619 0.006706347577 0.2195120453 -0.006582831043 -0.2182218881 0.00617540164 0.2180746944 -0.006028207978 0.005555950765 -0.2173411911 0.217169804 -0.005384563649 -0.4337277262 0.00960329688 0.4330017577 -0.008877328308 -0.4333948611 0.008125088405 0.432610577 -0.007340804333 -0.009658324604 0.8631338983 0.00627987817 0.006534236068 -0.006458747645 0.8627415811 -0.003231822933 0.8625375225 0.8623856752 -0.003142417529 0.9808298207 -0.006270934085 0.9808346778 -0.009357077185 0.9806105613 -0.006307325379 0.9802793507 -0.006071126327 -0.488506801 0.4892688 -0.0070693244 -0.4880702872 0.007809464016 0.488774088 -0.008513264763 -0.487183072 0.009184048837 0.4878161105 -0.00494931124 -0.00486777613 -0.2427680095 0.00527333426 0.2429117585 -0.005417083265 -0.2413162164 0.005819703915 0.2414407701 -0.005944257594 -0.2388554703 0.006254210894 0.2389089155 -0.006307656081 -0.2238420396 0.006223142187 0.2239376577 -0.00631876027 -0.2310100021 0.006789620545 0.2310082581 -0.0067878765 -0.2276416985 0.006731821781 0.2276122461 -0.006702369394 -0.224151253 0.006571484291 0.2240943972 -0.00651462852 -0.2213163918 0.006307143782 0.2212352559 -0.006226007891 -0.2191724193 0.005947852675 0.2190684477 -0.005843881016 -0.2176684168 0.005500009305 0.2175436402 -0.005375232791 0.004972453501 -0.2167113909 0.2165641168 -0.004825179335 -0.4323234913 0.008634974387 0.4316893728 -0.008000855902 -0.4318945139 0.007339106816 0.431199788 -0.006644380941 -0.008782210634 0.8603004448 0.005690934825 0.005924729357 -0.00588569084 0.8598450613 -0.002949175106 0.8596010068 0.8594365001 -0.002881391308 0.983711212 -0.005743425631 0.9836967121 -0.008554689056 0.9834218248 -0.00575152689 0.9830122016 -0.005536013025 -0.4899665847 0.4906516312 -0.006436573332 -0.4894349406 0.007097611855 0.4900594498 -0.007722121069 -0.4884084004 0.008313466864 0.4889634036 -0.00447077593 -0.004397694172 -0.2433125172 0.004753887292 0.2434375815 -0.004878951598 -0.2417868738 0.005228277017 0.2418938139 -0.005335217195 -0.2390416758 0.005589321924 0.2390777609 -0.005625406972 -0.2242460202 0.00556496207 0.2243544247 -0.005673366614 -0.2309952769 0.006048180974 0.2309887648 -0.006041668921 -0.2275246461 0.005979924147 0.2274957178 -0.005950995833 -0.2239340264 0.005831182015 0.2238836191 -0.005780774755 -0.221009682 0.005600095395 0.2209398078 -0.005530221204 -0.2187804615 0.00529202374 0.2186916335 -0.005203195719 -0.2171972686 0.004909091093 0.2170902476 -0.004802070163 0.004455007206 -0.2161689543 0.2160412995 -0.004327352421 -0.4310953102 0.007767480871 0.4305383434 -0.007210514092 -0.4305650474 0.006625862316 0.4299478013 -0.00600861621 -0.007974478441 0.857754465 0.005155006268 0.005365451953 -0.005354036154 0.8572246191 -0.002685997455 0.8569329681 0.8567505026 -0.00263932312 0.9863505352 -0.005255639454 0.9863130284 -0.007816364272 0.9859825496 -0.005242561066 0.9854865571 -0.005048158781 -0.4912779999 0.491895001 -0.005859562249 -0.4906469751 0.006451625836 0.4912032961 -0.007007946855 -0.4894844673 0.007532005559 0.4899743193 -0.004042397698 -0.003979459905 -0.2437880091 0.004291610771 0.2438978702 -0.0044014719 -0.2421918599 0.004707182806 0.24228415 -0.004799472943 -0.2391655592 0.00500770273 0.2391889306 -0.005031074199 -0.2246906331 0.004999503888 0.2248051915 -0.00511406233 -0.2309639398 0.005412288907 0.2309541359 -0.005402484931 -0.2274098862 0.005337445762 0.2273816218 -0.005309181374 -0.2237404131 0.005198448811 0.2236951186 -0.00515315429 -0.2207440412 0.004993494774 0.2206829742 -0.004932427748 -0.2184439098 0.004725565619 0.2183670185 -0.004648674376 -0.2167915016 0.004394114358 0.2166987185 -0.00430133132 0.003999405968 -0.2156975235 0.2155859741 -0.003887856589 -0.4300149533 0.006998040669 0.429522817 -0.006505904351 -0.4293830901 0.0059868615 0.4288326038 -0.0054363752 -0.007240765994 0.8554626118 0.004672590758 0.004860028393 -0.004868667802 0.8548525209 -0.002445021295 0.8545093216 0.8543054813 -0.002419057512 0.9887695927 -0.004812812722 0.9887067836 -0.007148702287 0.9883184392 -0.004783089722 0.9877321298 -0.004611185183 -0.4924585798 0.4930159364 -0.005340446338 -0.4917277439 0.005872700725 0.49222561 -0.006370566838 -0.4904357463 0.006837664388 0.4908711086 -0.00366410575 -0.003608920931 -0.2442071149 0.003885127379 0.2443044822 -0.003982494658 -0.2425419669 0.004251992712 0.2426219721 -0.004331997875 -0.2392449153 0.004503062958 0.2392596051 -0.004517752768 -0.2251523679 0.004515277389 0.2252684374 -0.00463134689 -0.2309209117 0.004868975638 0.2309087222 -0.004856786191 -0.2272979323 0.004790065393 0.2272704286 -0.004762561692 -0.2235656788 0.004659457653 0.223524523 -0.004618301832 -0.220510718 0.004475422932 0.2204566447 -0.004421349644 -0.2181512288 0.004239380621 0.2180838484 -0.004172000295 -0.2164383214 0.003949136485 0.2163570317 -0.003867846747 0.003602664425 -0.2152843498 0.2151860602 -0.003504374769 -0.4290589517 0.006321768671 0.4286213318 -0.005884148782 -0.4283281539 0.005420846954 0.4278349564 -0.004927649428 -0.006585056776 0.8533929879 0.004245437853 0.004409242777 -0.004433179122 0.8527006432 -0.002228298614 0.8523044411 0.8520771827 -0.002221578866 0.9909911715 -0.004416530151 0.9909017349 -0.006553059238 0.9904549682 -0.004373660948 0.9897771318 -0.004224400371 -0.4935248206 0.494030314 -0.004879154394 -0.4926961314 0.005359827371 0.4931440567 -0.005807752741 -0.4912826834 0.006226688504 0.4916724418 -0.003332918082 -0.003283528725 -0.2445796519 0.003530369473 0.2446666564 -0.003617373979 -0.2428459745 0.003856554662 0.242915675 -0.003926255213 -0.239294496 0.0040676436 0.2393036254 -0.004076773005 -0.2256151383 0.00410145538 0.2257296985 -0.004216015567 -0.2308693405 0.004405580298 0.2308553869 -0.004391626725 -0.2271891133 0.004324226631 0.2271624137 -0.004297527109 -0.2234063658 0.004200945156 0.2233686233 -0.004163202589 -0.2203032381 0.004033947879 0.2202548007 -0.0039855105 -0.2178936931 0.003823568445 0.2178339733 -0.003763848692 -0.2161277656 0.003566619296 0.2160558204 -0.003494674123 0.003259568851 -0.2149191767 0.2148318472 -0.003172239284 -0.428207477 0.005732650966 0.4278156948 -0.00534086875 -0.4273820182 0.004924815844 0.426937767 -0.00448056468 -0.006006523266 0.8515160418 0.003871431124 0.00401203824 -0.004047747133 0.8507418671 -0.00203612505 0.850292819 0.8500410577 -0.002047254997 0.9930384265 -0.004067211014 0.992921691 -0.006029276908 0.9924170341 -0.004013557756 0.9916481634 -0.003886750722 -0.494491798 0.4949526188 -0.004474378572 -0.4935686122 0.004910871705 0.4939740877 -0.005316347212 -0.4920422925 0.005694643586 0.4923938266 -0.003044299717 -0.00300187803 -0.2449134321 0.003221947214 0.24499178 -0.003300295115 -0.2431113001 0.003513951933 0.243172362 -0.003575013784 -0.2393255154 0.003692963274 0.2393313879 -0.003698835779 -0.2260686869 0.00374772672 0.2261798771 -0.003858916952 -0.2308114666 0.004010216272 0.2307962217 -0.003994971399 -0.2270835517 0.003927549963 0.2270576655 -0.0039016637 -0.2232598613 0.003810735364 0.22322498 -0.003775854015 -0.2201167079 0.003657835264 0.2200728769 -0.00361400429 -0.2176645966 0.00346837598 0.2176111146 -0.003414893996 -0.2158519819 0.003238588155 0.2157876912 -0.003174297395 0.002963947766 -0.2145936743 0.2145154367 -0.002885710173 -0.4274438646 0.005224480532 0.4270905681 -0.004871184071 -0.4265287017 0.004495016605 0.4261260137 -0.004092328622 -0.005503096133 0.8498044909 0.003548287788 0.00366635928 -0.003711533882 0.8489503048 -0.001868245641 0.8484495308 0.848172812 -0.001896032995 0.9949344595 -0.003764514633 0.9947901726 -0.005576207753 0.9942287272 -0.003701955897 0.9933706096 -0.003596698032 -0.4953733691 0.4957960737 -0.004124660486 -0.4943597273 0.004523694785 0.4947295096 -0.00489347711 -0.4927283127 0.005237918445 0.4930475558 -0.002796952551 -0.002760208929 -0.2452149259 0.002957439431 0.2452860291 -0.00302854259 -0.2433443112 0.003220742199 0.2433981776 -0.003274608627 -0.2393461813 0.003374308039 0.2393504672 -0.003378593927 -0.2265071263 0.003448322785 0.2266140163 -0.003555212776 -0.2307490068 0.003676113397 0.2307328361 -0.003659942643 -0.2269812117 0.003592928188 0.2269561137 -0.003567830224 -0.2231240867 0.003481793363 0.2230916086 -0.003449315213 -0.2199472995 0.003340589444 0.2199072433 -0.003300533208 -0.2174586435 0.003168218078 0.2174102461 -0.00311982073 -0.2156046392 0.002960597866 0.2155466148 -0.002902573383 0.002712552215 -0.2143008209 0.2142301043 -0.002641835628 -0.4267539691 0.004792055896 0.4264326943 -0.004470781193 -0.4257540635 0.004127960775 0.425386331 -0.00376022825 -0.005072014138 0.8482328534 0.003273435742 0.00337021584 -0.003423103666 0.8473013943 -0.001724059473 0.8467504866 0.8464487526 -0.00176722776 0.9967016873 -0.003506793412 0.9965297382 -0.005190853713 0.9959127875 -0.003435183305 0.9949670918 -0.003352152658 -0.4961820882 0.4965730259 -0.003826121056 -0.4950826301 0.004193841729 0.4954227231 -0.004533934687 -0.4933531904 0.004850662713 0.4936466456 -0.002589497688 -0.002554620205 -0.245489287 0.002733337138 0.2455542384 -0.002798288532 -0.2435504739 0.002972398443 0.2435983798 -0.003020304326 -0.2393624426 0.003106043355 0.2393663546 -0.003109955328 -0.2269277621 0.003197177708 0.2270300085 -0.003299424144 -0.2306832765 0.003396156995 0.2306664585 -0.003379339003 -0.2268819601 0.003313018255 0.2268576136 -0.003288671755 -0.2229973185 0.003206875828 0.2229668638 -0.003176421163 -0.2197919137 0.003075397948 0.219754955 -0.003038439288 -0.2172715397 0.002916995084 0.2172272876 -0.002872742963 -0.2153805796 0.002727476312 0.2153276982 -0.002674594953 0.002501442216 -0.2140349166 0.2139707997 -0.002437325316 -0.4261250214 0.004428792789 0.4258298049 -0.004133576315 -0.4250454125 0.00381832492 0.4247067001 -0.00347961258 -0.004709021565 0.8467784733 0.003043985882 0.003119415728 -0.003179934225 0.845772307 -0.001602437324 0.8451729897 0.8448463152 -0.001660394373 0.9983620817 -0.003293253843 0.9981625977 -0.004871483618 0.9974910173 -0.003214218478 0.9964619942 -0.003152167507 -0.4969300762 0.4972940086 -0.00357815087 -0.4957490127 0.003919912982 0.496064769 -0.004235669218 -0.4939295386 0.004529866799 0.494204151 -0.002419185655 -0.002385293553 -0.2457407582 0.002547969158 0.2458005833 -0.002607794329 -0.2437345431 0.002766979215 0.2437776242 -0.00281006032 -0.2393786248 0.002885512093 0.2393830489 -0.002889936162 -0.2273298925 0.00299167188 0.2274275772 -0.003089356597 -0.2306152815 0.003166962764 0.2305980274 -0.003149708674 -0.2267856134 0.003084216466 0.226761953 -0.003060555993 -0.2228781001 0.002982359545 0.2228493206 -0.002953580071 -0.219647986 0.002858839828 0.2196135287 -0.002824382588 -0.2170997291 0.002711666989 0.2170587965 -0.002670734359 -0.2151755285 0.002536648508 0.2151267776 -0.002487897657 0.002328395666 -0.2137916662 0.2137330687 -0.002269798126 -0.4255455874 0.004130597653 0.4252715661 -0.003856576278 -0.424391367 0.003563774028 0.4240765025 -0.003248909587 -0.004411253425 0.8454176005 0.002858296099 0.002913830122 -0.002980426778 0.8443414803 -0.001502534772 0.8436950976 0.8433437805 -0.001575772618 0.9999378543 -0.003123418261 0.9997102434 -0.004617071864 0.9989846709 -0.003029023126 0.9978656578 -0.002991712403 -0.4976260236 0.4979731777 -0.003376177264 -0.4963692535 0.003698355717 0.4966655901 -0.003994692426 -0.4944687955 0.004270032417 0.4947253288 -0.002276117412 -0.002250448402 -0.2459736958 0.002398082549 0.2460296457 -0.002454032435 -0.2439009032 0.002601449843 0.2439402063 -0.002640752949 -0.2393978905 0.002709065355 0.2394034755 -0.002714650422 -0.2277141479 0.002828328772 0.2278075804 -0.002921761203 -0.2305458224 0.002984364036 0.2305283098 -0.002966851394 -0.2266919011 0.002902246398 0.2266688447 -0.002879190036 -0.2227651077 0.00280397287 0.2227376847 -0.002776549887 -0.2195132694 0.002686824675 0.2194807879 -0.002654343144 -0.2169400922 0.002548473713 0.2169017517 -0.002510133192 -0.2149855789 0.002384748615 0.2149400264 -0.002339196181 0.002190033043 -0.213566359 0.2135113149 -0.00213498892 -0.4250068846 0.003891840112 0.4247502914 -0.003635246887 -0.4237816245 0.003360177924 0.4234845689 -0.003063122353 -0.004176161951 0.8441393317 0.00271082535 0.002743605389 -0.00282319643 0.8429885148 -0.001424129836 0.842296031 0.8419196506 -0.001510204763 1.001448059 -0.002993330341 1.001193369 -0.004423333828 1.000414674 -0.002898255694 0.9992165013 -0.002875921575 -0.4982884266 0.4986154994 -0.003225328448 -0.4969527127 0.003529086108 0.4972333144 -0.003809687854 -0.4949747846 0.004070797753 0.49521797 -0.002166057577 -0.00214792558 -0.2461921993 0.002281485478 0.2462450084 -0.00233429456 -0.2440535026 0.002472400959 0.2440899216 -0.002508819921 -0.239422551 0.002572628209 0.2394297719 -0.002579849178 -0.2280819203 0.002703222953 0.2281715055 -0.00279280809 -0.2304755896 0.002843830374 0.2304579799 -0.00282622062 -0.226600495 0.002762539514 0.2265779575 -0.002740002 -0.2226571222 0.00266718824 0.222630769 -0.002640835023 -0.2193857723 0.002555004364 0.2193548074 -0.002524039509 -0.216789885 0.002423385782 0.2167535112 -0.002387011989 -0.2148072725 0.002268230086 0.2147641552 -0.002225112786 0.002083928648 -0.2133544106 0.2133023067 -0.002031824784 -0.4245005518 0.003711243164 0.4242569626 -0.003467654013 -0.4232061048 0.003206735898 0.4229254302 -0.002926061247 -0.003999689028 0.8429089494 0.00260525945 0.002624811892 -0.002704304719 0.8416931305 -0.001364038475 0.8409557648 0.8405556121 -0.001473539071 1.002921598 -0.002913556162 1.002633386 -0.004303108011 1.001804226 -0.002816377996 1.000518726 -0.00278895496 -0.4989158199 0.4992152207 -0.003115778787 -0.4975073136 0.003408374318 0.4977770691 -0.003678129858 -0.4954560931 0.00392890299 0.4956891103 -0.002085793926 -0.002076126277 -0.2463993295 0.00219655141 0.246449762 -0.002246983914 -0.2441958515 0.002378120167 0.244230226 -0.002412494692 -0.2394543432 0.002474186268 0.2394635805 -0.002483423608 -0.2284350392 0.002614659653 0.2285212388 -0.002700859247 -0.2304051612 0.002743153779 0.2303875788 -0.002725571418 -0.2265110049 0.002662774875 0.2264888844 -0.002640654412 -0.2225529842 0.002569661615 0.2225274244 -0.002544101838 -0.2192636803 0.002461115507 0.2192338096 -0.002431244781 -0.2166466591 0.002334322055 0.216611686 -0.002299348933 -0.2146376183 0.002185269845 0.2145962382 -0.00214388977 0.002008385364 -0.2131527173 0.213102658 -0.001958326111 -0.4240182476 0.003585261416 0.4237838062 -0.003350819997 -0.4226587954 0.003099354545 0.4223880768 -0.002828635907 -0.003890414247 0.8417215069 0.002523990955 0.002553865729 -0.002631494999 0.8404342112 -0.001330918335 0.8396551881 0.8392246938 -0.00143078332 -0.002843368743 -0.004203387016 -0.002766182691 -0.002695533109 -0.4995181153 0.4998133107 -0.003061378153 -0.4980406015 0.003339043735 0.4983018888 -0.003600331073 -0.495919657 0.003843957213 0.4961445203 -0.002039347307 -0.002029473222 -0.246597922 0.002143001194 0.2466466171 -0.002191696296 -0.2443313373 0.002318077539 0.2443645611 -0.002351301333 -0.2394947753 0.002413499885 0.2395064029 -0.002425127501 -0.2287754347 0.002562929426 0.2288589813 -0.002646476031 -0.2303349344 0.002682183124 0.2303173947 -0.002664643477 -0.2264229787 0.002602528654 0.2264011374 -0.002580687402 -0.222451579 0.002510855701 0.2224265225 -0.002485799196 -0.2191453319 0.002404607978 0.2191161461 -0.00237542224 -0.2165082009 0.002280810075 0.2164740876 -0.002246696707 -0.2144738931 0.002135500341 0.2144335882 -0.002095195465 0.001963314623 -0.212957915 0.2129093924 -0.001914791995 -0.4235526555 0.003513086792 0.4233237168 -0.003284148182 -0.4221311747 0.003040024186 0.4218743844 -0.002783233887 -0.003804597491 0.002441209276 0.002514943788 -0.002569913371 -0.001291928319 -0.002255759006 0.001508045841 -0.09179679864 0.1610799333 0.01776038538 -0.1602870993 -0.008973561427 -0.009579657952 -0.1428119406 -0.03728038766 0.1462990094 0.001060233676 -0.09656022232 -0.0007262070599 -0.0007679228917 0.157433774 -0.001783575324 -0.1585891021 0.001658962837 0.001279940658 0.1614928895 -0.007397683651 -0.007968245759 0.002721156041 -0.0995536261 -0.001501017883 -0.001525529422 0.146121066 -0.01282790967 -0.1476236924 0.0072356448 0.007094891344 0.1562006396 0.002641185757 0.002266284853 0.00409874569 -0.1017812785 -0.00216726815 -0.00220593799 0.134469292 -0.01664182964 -0.135813351 0.01798588865 0.01505817793 0.1446093124 0.002739974946 -0.002844451792 -0.05228999745 -0.006508791788 0.02901962454 -0.02916490927 0.006654076509 0.006533255604 -0.01256043333 -0.05882871905 0.1240817444 -0.01556847724 -0.1251942825 0.01668101535 0.01842019041 0.1328856482 0.002967009498 -0.003073002385 -0.05460365599 -0.008769276442 0.05540476523 -0.05538946859 0.008753979804 0.006502070302 0.02880029248 -0.01747001462 0.0007608272835 -0.05217211489 -0.05219642563 0.2331096459 -0.02089561505 0.01287791801 0.01248890443 -0.1189690565 -0.1186117967 0.01606790432 0.1230562868 -0.01365513748 0.01437473717 -0.08975109072 -0.1050651054 -0.03221325306 0.1036966771 0.03438934705 -0.1391064401 -0.03809484754 -0.1238946102 -0.0288349577 0.1256125054 0.04359670717 0.009883644811 -0.04328832536 -0.01019202662 0.02736688406 -0.07303325732 -0.02972187629 0.07538824955 0.01696745769 -0.1569330359 0.2851869081 0.02576113073 -0.282803126 -0.02814440108 -0.2721591668 -0.04148741773 0.2759506274 -0.003647346129 0.002494093641 -0.2001553837 0.09749077115 -0.09707301459 0.0006424771211 -0.0934676195 -0.002206396387 0.09406593838 0.04940547692 0.0008866396718 -0.04950555615 -0.0007865604485 -0.04628587716 0.003688444296 -0.003041941884 0.04563937474 -0.0008482472135 -0.1561032022 0.2857329162 0.006653711942 -0.2868107017 -0.005575821954 -0.02241090776 0.2866312485 0.0004969972829 -0.001690035963 -0.204917499 0.1002918929 -0.09998354514 0.002412808243 0.0009137767947 0.09788734801 0.09854782338 0.001979495705 -0.09818861216 -0.001156542078 -0.001182164849 0.04886154671 -0.000966165423 -0.04859347348 0.00173661717 -0.001038524969 -0.04782552813 -0.0007271810261 0.001362106866 0.04790776623 -0.0007171639403 0.03950410488 -0.004226646952 -0.03987012544 0.004592667514 -0.04278189278 -0.001650212818 0.001199740431 0.04323236517 -0.01140395947 -0.1463995911 0.2772948434 -0.008884660295 -0.2796546183 0.01124817624 -0.0005502407915 0.2840672417 0.003327895817 -0.004572901801 -0.2096219999 0.1025414458 -0.1022600364 0.003817336276 0.002597220126 0.1005857515 0.1009805423 0.003399197078 -0.1007079733 -0.001818646689 -0.001853119361 0.02504370412 -0.0009750788514 -0.02510300624 0.00103438097 -0.0491050217 -0.0009395823158 0.001919964062 0.04914272333 -0.001018083373 0.07081247031 -0.01091656931 -0.07133109401 0.01143519302 -0.07471229726 -0.0100518615 0.07421881822 0.005344166295 0.005201174246 0.005251973724 -0.2144904871 -0.003219535839 -0.003282464899 0.1051969933 -0.002727509446 -0.1047781969 0.005048687961 0.003986238402 0.1028319913 0.05168305872 0.002425888493 -0.002512202804 -0.05159674441 0.02695828857 -0.001999621756 -0.02670642039 0.00174775357 -0.02606777897 -0.0009873674724 0.00114059765 0.0259145488 0.007922727609 0.03053946558 -0.007704581269 -0.03075761192 0.06408764216 -0.01113438303 -0.06452423873 0.0115709796 -0.06732496623 -0.01143545994 0.01182342515 0.06693700102 0.0218977291 -0.2197588755 -0.01975941236 -0.003660812089 0.1095405842 -0.002964055106 -0.1091239448 0.005514425257 -0.002789856795 0.005177431531 0.1055918349 0.0532376915 0.002892602314 -0.003005510635 -0.05312478318 0.02631136268 -0.0002931647447 -0.02685103716 0.0008328392254 -0.02767209146 -0.0008157460733 0.001197847081 0.02728999045 0.005406958423 -0.005794581048 -0.1125929758 -0.009276124419 0.1122866875 -0.1119160294 0.008905466306 0.008310454076 0.05532994622 -0.04127184888 -0.0001672573666 0.0419468197 -0.0002475040957 -0.0002602093621 0.04535035604 0.0009616723726 -0.04490118098 -0.0007633195872 -0.0006475278421 -0.007272788942 -0.03803020233 0.03790175166 0.007401239613 -0.0005830291139 -7.960140244e-05 -0.04060921836 0.004264401717 -0.04668319294 -0.003867085937 0.009463331965 -0.00967097232 0.04380434753 -0.1553692138 0.02605416565 0.1574694827 -0.01380985935 -0.01434457513 -0.08514545803 -0.009036719043 0.08583807689 0.01780743215 0.04512100564 0.004458576647 -0.04531518057 -0.0006900876898 -0.04773589357 0.001311604153 -0.0007111510182 -0.001144382759 -0.04675778451 0.00101288285 0.04688928441 -0.09507863876 0.0001577979726 0.09560141744 -0.0006805766477 -0.04656955427 0.04665825747 -0.000584349381 -0.0006487365806 0.02398842697 -0.000707302097 -0.02397121256 0.0009630744367 0.04564232259 -0.0006973514456 -0.0005576895466 0.001098936406 -0.0464786626 -0.0005780519156 -0.0006117761592 -0.001465959271 -0.04231581992 0.000999886409 0.0002199308663 -6.106201786e-05 0.04924660808 -0.08009628181 0.002539809688 -0.002469707868 0.08002617999 -0.04784862362 0.04764904994 0.0004195045491 0.04212057372 -0.001697696933 -0.04188883606 0.04476568806 0.004043761871 0.0009038692095 -0.04786585316 0.003277525512 -0.08026534726 -0.003108460058 -0.0009426548764 -0.04910994225 0.001864305285 -0.0009167298527 -0.001027511582 0.001729705113 0.04902540448 -0.0008660512992 0.002175601979 0.09890151076 -0.001251590527 -0.001277698836 -0.02476569053 0.02483337287 -0.001095193923 0.02436751008 -0.0008913572782 -0.02441880768 0.02398139975 -0.0007201538093 -0.001179865858 -0.02455199009 -0.009867072494 -0.07523761622 0.005216345083 0.005176046373 -0.004091729476 0.004281597801 0.03931423656 -0.152081269 -0.009678003023 0.1505966189 0.005701198478 0.005461454617 -0.07853617131 0.004077151556 0.07798594858 -0.007618658306 0.07449053293 -0.009387289408 -0.07497031601 0.04233550503 -0.001865144122 0.00406752027 -0.007348110815 -0.03986774901 -0.03961447871 -0.008439208289 -0.1534508005 0.00502517721 0.004783562521 -0.001027077394 -0.02619197589 0.001151274307 -0.0009847691449 0.001052293386 0.02497617988 0.003571060872 0.1012487585 -0.001899941543 -0.001939335588 -0.02523508782 0.02509823738 -0.0008479186992 0.02667262362 -0.0007985796922 -0.02690112132 0.02434828203 -0.0009203542599 -0.0008397165565 -0.02537045012 -0.01135773755 -0.06779613216 0.01182890348 -0.01114474524 0.01155887629 0.07039833926 -0.001348186504 -0.0278966275 0.001572722543 -0.001440906725 0.001487207042 0.02691198826 0.002478931431 0.05176083068 -0.002556703384 -0.02882699811 -0.007275250968 0.006763439379 0.02933880969 -0.02748052119 0.02729544904 -0.001255834575 0.02711722904 -0.0008543393914 -0.02761107615 0.02641333289 -0.0007280767474 -0.002248245083 -0.02723189787 -0.02907401016 0.008169739666 0.1223965291 -0.02020093702 -0.1236415929 0.01062405038 0.01082195039 -0.01096686194 0.01136709656 0.06368740754 0.03057921133 -0.007314996718 -0.002467228038 0.04746592439 0.00365431077 -0.02573195024 -0.02292105688 -0.0002136746148 0.0006407119481 0.02588432535 0.002902598541 0.05334492948 -0.003009836527 -0.05417434056 -0.009185960856 0.009534419292 0.05382588212 -0.02246547564 0.0223089574 -5.715637757e-05 0.0236951541 -0.004446404762 -0.01192737396 -0.009788603415 0.0266421229 -0.0003406399373 -0.02284157307 8.293267996e-05 -0.009486817682 -0.05462589563 0.009938372759 -0.0104184951 0.00967897805 -0.1964107199 -0.09285971469 -0.002863663812 -0.09109126295 -0.01135707284 0.09073505908 0.08960595744 -0.006385979404 0.005812948563 -0.0890329266 0.0417582906 -0.04120438489 -0.00113693482 -0.03912312379 -0.007169603902 0.03901993875 0.03220619172 0.01395917723 -0.04591101136 -0.0002543575875 0.02137232944 -0.0374089281 -0.02356903297 0.03960563163 -0.0001990381421 -0.000363602921 -0.0945159977 -0.04663362875 0.0009747806473 -0.04524436854 0.0006716368808 0.0455358061 0.04497023885 -0.007665415709 -0.03712584525 -0.0001789778924 -0.01536369387 -0.1352898529 0.2711698501 -0.01887603157 -0.272151708 0.0198817542 0.01413130699 0.2752909642 0.03757009345 -0.007197304348 -0.03015729618 -0.0002154929195 0.06523573858 -0.01310260497 -0.06585089103 0.006891335698 0.006826421731 -0.03358359909 -0.006585265987 0.006684768635 0.03348409644 0.05532447826 -0.009195558686 -0.05561573726 0.11918235 -0.0167130332 -0.1195586218 0.01708930499 -0.0194382547 0.1211992879 0.01021681724 0.01041867868 -0.04489344184 0.0006107456641 -0.0007030301257 0.04229406335 -0.004994292211 0.09028307694 0.004317172711 -0.019366701 -0.0001231380939 0.019299197 0.000190642089 -0.004853114733 -0.01486042629 0.01458584737 0.00512769366 0.0005483920031 0.01701053079 -0.000825982849 -0.01673293994 -0.07288652226 0.07481013392 0.0254432724 -0.01020334718 0.01911750844 -0.08417597448 0.02853471789 -0.1527538027 -0.0153622298 -0.01578789928 -0.006633764774 -0.03373834267 0.006788508354 -0.03577857033 -0.006837897117 0.007297348775 0.03531911867 -0.1401940958 -0.01585977489 0.01734137483 0.1387124959 -0.0708628014 0.07037094158 -0.01065288542 0.06738976291 -0.01091363454 -0.06783386592 0.07403152497 -0.00959285355 -0.01052035559 -0.07125901512 -0.0154155945 -0.1416820181 0.01690351675 -0.03038968232 -0.00709241138 0.00741195155 0.03007014215 0.004962381313 0.02413863975 -0.005435414005 -0.02366560706 0.05576165367 -0.01144745371 -0.05619446963 0.005914416924 0.005965852756 0.02343778318 -0.05196631389 -0.02211247154 0.05064100224 -0.03422948812 -0.09290757494 0.04522955124 0.0437338666 0.01903594077 0.01913770445 -0.00840170463 0.009392683288 -0.03902118099 0.02744773637 -0.07076497038 -0.02971602332 0.04305393061 -0.1238300919 -0.02258339971 -0.02371165223 0.0630031525 0.06406806071 -0.05585077583 0.05484802012 0.0244405389 0.03328616223 -0.001079970509 -0.081697688 0.02419272386 0.08356026207 -0.01288265442 -0.01317264351 -0.04385097302 0.06005457125 0.017082564 -0.03712582395 0.03889148042 0.01960667297 0.01588612658 -0.04577792237 0.02535492006 -0.07974933957 -0.0135198922 -0.01378337629 -0.04161824714 0.002680655238 -0.002662669104 0.04160026101 0.002361670579 -0.04194242952 -0.002037488201 -0.04023893861 -0.00319791802 0.003119106351 0.04031775028 -0.003436641135 -0.04055858777 0.003756290298 -0.006171794287 0.03662988286 -0.03565064799 0.005192559414 -0.009660236668 0.02175109081 0.03287938472 -0.07272832747 -0.01066266308 0.01107331518 0.07231767537 -0.03848489517 0.03669628478 -0.007871626281 0.03674134202 -0.006380379136 -0.03653275718 -0.0339071856 0.03792353727 -0.003781988822 -0.0002343628415 -0.006899871742 -0.03925043914 -0.01051344423 -0.07318199773 0.005517139082 0.005449975415 -0.001110960704 -0.02476283174 0.001253344033 0.02462044841 -0.05076650305 0.002583988879 0.05082437561 -0.002641861432 0.05104462251 0.002735690944 -0.002808188083 -0.05097212537 0.06318915892 -0.01272992686 -0.06370902914 0.01324979708 -0.01304796018 0.06466870876 0.006816237054 0.006798752941 0.01826205848 0.02808850617 -0.008780471203 -0.02417788066 -0.001198577862 0.001617335705 0.02375912281 -0.05190760213 0.003302857087 0.05203821604 -0.003433470993 0.05239757262 0.003334888034 -0.05230137429 -0.001742017726 -0.001689068633 -0.05168910114 0.003144363751 0.05174270198 -0.00319796459 0.003258502559 -0.003329627804 -0.05183647688 -0.0007621383981 -0.02463359263 0.001217850375 0.00450818013 -0.01834632237 0.02595557102 -0.01211742878 -0.0001946587185 -0.01941030982 0.0002382675381 0.04350840065 0.0005184620155 -0.04304962264 -0.000487867406 -0.000489372617 0.02141337953 -0.02167381185 6.577359971e-05 -0.02012484762 0.002901343874 0.02173168387 0.02193006903 -0.02388615073 0.001923686137 3.239556054e-05 0.0001461636365 0.0211440778 0.0006640836249 0.04393507539 -0.0005290017332 -0.0005617566292 0.03863321727 -0.0036331519 0.00308746721 -0.03808753258 0.01757432559 -0.01711709844 9.116484444e-05 -0.0161030266 -0.004287376311 0.01553728818 -0.003006112338 -0.01937504451 0.002256309234 -0.001269542961 0.0006131880651 0.01823068049 -0.002572113408 0.0392717216 0.00193360907 0.01761964063 -0.001878652799 -0.003019448277 -0.01833298643 -0.04474219413 0.006495090122 -0.006235016389 0.0444821204 0.006941537289 -0.04480687 -0.006876861416 0.02381964502 0.0006514101801 -0.0007581416188 -0.02371291358 -0.02042204991 4.461576395e-05 0.02036786343 9.570725004e-06 0.0006902365359 0.02387043308 -0.0007410245986 0.04614545068 0.00100581827 -0.04600492139 -0.0005962258157 -0.0005501217473 0.02076687944 -0.02078599779 2.703274268e-05 -7.914397738e-06 0.0005801425633 0.02126931646 8.061000374e-05 -0.02046825335 4.451446883e-05 1.688969805e-06 3.375731544e-05 0.02072481178 8.310342679e-06 0.001027213582 0.04627242621 -0.000590869169 -0.0005633199449 -0.0400933181 -0.0009278520578 0.0008251659237 0.04019600423 -0.001287845306 -0.0402867871 0.001481314308 0.04089018852 -0.0009936911946 -0.04118434263 0.08215141747 -7.384017396e-05 -0.08247925561 0.0004016783166 -0.08330728718 0.001930035083 -0.001695805455 0.08307305755 0.08078894366 -0.002380690096 -0.08114961142 0.002741357855 -0.0006849824924 0.001009203457 0.0818271965 0.04086698808 -0.0009046516129 0.04232528998 0.002523578299 -0.0424871977 0.08383958316 0.005728024044 -0.08391511418 -0.005652493026 -0.08390311792 0.008255702043 -0.008311247414 0.08395866329 0.00264807101 -0.08350540931 -0.002449948877 0.004933984372 -0.004848504237 0.08375410303 0.04243660923 0.002569335992 0.02474677384 0.000840502657 -0.0008286202392 -0.02475865625 0.0009114710647 0.02467571893 -0.0008404161584 0.02399599127 0.0007972905541 -0.0007995625573 -0.02399371926 0.0008069510382 0.0240018751 -0.0008128348703 -0.03848520165 -0.004618144517 0.004807482635 0.03829586353 -0.001847070833 -0.03197920293 -8.091183653e-05 -0.004648150682 -0.03871575316 0.004878702192 0.02441627706 0.001295190236 -0.001360689474 -0.02435077782 0.001544385804 0.02473167257 -0.001859781316 0.02597703967 0.001199847889 -0.001417593345 -0.02575929422 0.001094515912 0.02603488347 -0.001152359705 0.006164077622 0.03690200916 -0.006324744753 0.006936140767 0.03524942934 -0.006613235741 -0.03557233436 0.06906493168 -0.01127918638 -0.06950918466 0.01172343936 -0.03627997222 0.007437542655 0.005465331635 0.03732862885 -0.02486469692 -0.001116181656 0.001376932845 0.02460394573 -0.05128629494 0.002976095555 0.05136665233 -0.003056452939 0.003123250384 -0.003216909429 -0.05159544209 0.002778756267 0.05110935093 -0.002843484686 0.002923674709 -0.00298956964 -0.05122040001 -0.0009324627226 -0.02517488798 0.001242653787 -0.007148456348 -0.0306378575 0.00739663153 0.02455764367 -0.0005102594535 -0.02497984694 0.02413347635 -0.0006920143396 0.02449881186 0.001057045806 -0.0007852570426 -0.02477060062 0.0242464135 -0.0008585623457 0.01851055908 -0.0002485005963 0.03039106826 -0.0069497797 -0.0305897449 0.06145712701 -0.01214999035 -0.0618668534 0.01255971674 -0.01262443628 0.01299836669 0.06281522852 0.003329188088 0.05246764855 -0.001718122498 -0.00168114152 0.0529168492 0.0136627073 -0.05270981311 -0.005196861424 -0.008672881954 -0.01230271864 0.02554590131 -0.02471021113 0.01146702846 0.01221752409 -0.01569505032 -0.008825192411 -0.00484390277 0.02368546449 -0.02358943098 0.004747869258 -0.02339884119 -0.005417291038 0.005294676079 0.02352145615 0.02371535751 -0.0002437788271 -0.02423371708 0.02664790531 -0.02120332589 -0.0004821981024 -0.005522281417 -0.02332696538 0.005450405612 -0.006288407183 0.01239122257 0.02054508992 0.02300023988 -0.0004834602361 -0.01111670242 0.01144931976 0.05542903633 0.02406730649 -0.006217073928 0.0245616481 -0.005497097264 -0.02458683225 0.03915010893 -0.0407737675 0.001623658566 0.03444667187 -0.006946497979 -0.03446589297 0.006965719087 -0.03189622897 -0.006899265612 0.00650515523 0.03229033935 0.01150717193 -0.007202223709 -0.2232179045 0.2255635064 0.009325280981 -0.005430473961 -0.112018153 -0.1120332021 0.005519569049 0.1099637432 0.1112250204 0.005819215007 -0.006302233026 -0.1107420024 -0.00595892803 0.09443565703 -0.09524739929 0.0067706703 -0.002397705178 0.003715363496 0.04614826607 -0.01965904968 0.009761977302 -0.1127540095 -0.1132365513 -0.02350076572 0.2377153697 -0.2334216331 0.01921676376 0.2348735124 0.01330424324 0.01004099591 -0.006831629455 -0.01014574161 0.00937673668 0.007600634386 -0.007599159058 -0.03275629745 0.008459227534 -0.02978255595 -0.007577164369 0.006251315347 0.03110840497 0.05981603997 -0.01132795345 -0.06021501548 0.01172692897 -0.01200162833 0.01242594193 0.06103281341 0.03017596146 -0.006877304587 0.1161413177 -0.01100334272 -0.1161825084 0.01104453339 -0.01584665107 0.01574822481 0.1192807763 0.05490784889 -0.008769331488 0.0309545047 -0.0472680234 -0.02904465408 0.02222013131 0.02313804148 -0.04167489006 -0.02116849875 0.03734936773 0.02549402109 -0.00614341601 0.006398554978 -0.01511556526 0.02080828037 -0.03546092784 -0.02275628064 0.03136298813 -0.0592618485 -0.03334758769 0.06124644806 -0.05219056011 0.03361559751 0.02418491379 0.0253445535 -0.04656985731 0.003993783099 -0.005941227624 0.04851730183 -0.04223030294 0.04144575802 0.0009177159738 -0.0001331710591 0.04026096556 0.0006263762436 -0.04053164173 -0.0003557000663 0.04357269417 0.00278280893 -0.0442235608 -0.002131942303 -0.0409690449 -0.003667357932 0.003820563638 0.0408158392 -0.04310060206 0.003524946871 0.04349443153 -0.003918776345 0.03831585184 0.006986218402 -0.006029261197 -0.03927280905 -0.03785502245 0.03796120524 3.237820087e-05 -0.0001385609952 0.04361654304 -0.003563382218 -0.03982083405 -0.0002323267728 0.04339126751 -0.002950872937 -0.04373768214 0.003297287567 -0.02535238952 0.001054298365 0.02539260707 -0.04983853997 0.00186107165 0.04990293185 -0.001925463527 0.050076903 0.001980039779 -0.002037230501 -0.05001971228 -0.04956393107 0.001717036103 0.0496351969 -0.001788301927 0.001829931043 -0.00189603982 -0.04977243119 -0.02523132307 0.001078781436 -0.05056722316 0.002380854515 0.05061847246 -0.002432103821 0.002526856719 -0.002575231177 -0.0507181286 -0.02492104002 0.001215254087 -0.004751602544 -0.02634202079 0.00366396684 0.02742965649 -0.02631384822 0.001961907246 0.02663594697 -0.002284005995 0.02662972728 0.001660739741 -0.00152443627 -0.02676603075 0.02555988294 -0.004262434022 0.07858068844 -0.009729340775 -0.0748102757 -0.012457019 0.1110563521 -0.1107587253 0.01215939221 -0.0449693 0.006224785472 -0.007142724683 0.04588723921 -0.04105087534 -0.02873244888 0.05797882197 0.01180450225 0.001915096112 -0.04397049455 -0.0001749045024 0.04402330233 0.006888090547 -0.04396985559 0.08301466876 0.01288771288 -0.08262759422 -0.01327478741 -0.08090509478 0.01570612566 -0.01637298801 0.08157195712 0.009151729882 -0.08378549795 -0.009269349852 0.01192927819 -0.01225193105 0.08333732161 0.04397086511 0.006547527344 -0.04107768536 -0.001088009294 0.0007064234963 0.04145927116 -0.03748281874 0.03755183483 0.0002020002045 -0.0002710162959 0.0001677836696 -0.03773274661 -0.0002900595053 0.04575665434 -0.002713409292 -0.04784744094 0.004804195889 -0.04910657644 -0.0008637328768 0.001772497266 0.04910928312 -0.0492624755 0.001568333238 0.04934231943 -0.001648177166 0.001677668309 -0.001750750631 -0.04949084875 0.02354103853 -0.0003100302622 -0.02380528944 0.0005742811654 -0.0002972623443 -0.02455874185 0.0005453925607 0.02431061163 -0.02455623116 0.0009140817243 0.02450463675 -0.0008624873094 0.003683647924 0.03898806615 -0.004355862235 0.002566603827 0.04222968243 -0.003504578362 -0.0412917079 0.03935249137 -0.004217200307 -0.03931740698 0.004182115912 0.07644443423 0.004537156376 -0.008529226297 -0.07710051499 -0.007128243144 0.07560900689 -0.07605116924 0.007570405485 -0.077375615 -0.006238551129 0.006676953675 0.07693721245 0.0402781572 -0.003169860513 -0.04054493782 0.07913457626 -0.004344094606 -0.07959340182 0.004802920159 -0.00290932955 0.003279979219 0.08041829399 -0.005875394286 -0.07783302085 0.006332800136 -0.004760905775 0.00517944112 0.07871604092 0.04022812637 -0.003147887194 -0.02471991936 0.001343620196 0.02492068497 -0.05030538805 0.002220089114 0.05035910665 -0.002273807711 0.002335559494 -0.002390922647 -0.05051186 0.002022169669 0.05013369308 -0.002078959754 0.002155286003 -0.00221315976 -0.0502475143 -0.02465516471 0.00123043558 0.02467729094 0.001010653097 -0.0008680761592 -0.02481986787 0.02415039279 -7.055286904e-05 -0.02441407018 0.0003342302654 -0.02510766759 -0.000118892034 0.0003516491269 0.0248749105 0.02262680843 -0.02277015321 0.0001480938984 -4.749111271e-06 -0.02608190329 0.002215080303 0.02383831358 2.850940641e-05 -0.02676697823 0.001587345467 0.02705962019 -0.001879987424 0.02460299752 0.001199069724 -0.00138999124 -0.02441207601 0.02281301289 -0.00211549677 -0.02276114847 0.002063632359 -0.0003674811446 0.0006403280626 0.02326819162 -0.0001111349407 -0.02534179851 0.0003452658611 -9.544328132e-05 -0.02604796347 0.000333826026 0.02580958072 -0.02576898599 0.0009547239893 0.02563818797 -0.0008239259653 -0.01131243194 0.01169473747 0.06868262615 0.03497489084 -0.006563358619 0.06709356745 0.006634626074 -0.01276813234 -0.06759382596 0.0168690482 -0.01636221415 -0.0005068340498 0.03026172875 -0.007167729394 -0.03040472061 0.007310721256 0.02620311392 0.0008731399357 -0.0004919434805 -0.02658431037 -0.02463938261 0.004222494846 0.02653134523 -0.006114457462 0.02559656856 0.0009884157721 -0.0007143068881 -0.02587067745 0.02216355625 -0.02227373841 8.501357586e-05 2.516858923e-05 8.255517296e-05 0.02249269243 5.15608209e-05 -0.01934650991 0.004389563815 0.01490064135 5.630474631e-05 -0.02423130566 0.002530376313 0.02511678805 -0.003415858706 -0.03676075375 -0.009172401261 0.01831038518 0.02762276983 -0.03220899049 0.02378870463 0.03396618718 0.0238030108 0.05423832726 -0.01887000128 -0.006254487575 0.003383236514 0.05442095129 -0.003468901987 -0.05433528581 0.00161199906 0.02644796316 -0.001430234941 0.02591253292 0.00170788549 -0.001568498062 -0.02605192035 -0.0004217789277 0.02450700985 -0.02496765276 0.000882421834 0.02449260713 -0.005348250069 0.04882014656 0.003558768215 -0.00825809161 -0.04896472593 0.05214190295 -0.007692266136 -0.05290165222 0.008452015401 0.02159868654 -0.02185968068 -0.000160784789 0.0193915214 -0.003661990879 -0.01489401613 -0.0008355143863 -0.008454152925 0.0491716004 -0.04864198773 0.007924540259 -0.002396129073 0.002375967632 0.02370562594 -0.01999146639 0.02538442055 0.0004865781424 -0.0001051123884 -0.0257658863 -0.03079535647 0.02598113128 6.26226533e-05 -0.04332377536 0.02063452199 -0.02104075474 0.04373000811 -0.03320096261 0.04384385269 0.02850721884 0.02100110835 -0.04247120096 -0.02185368275 -0.0286732948 -0.002244377881 0.03110822408 -0.0001905514013 -0.006088201077 -0.02235685047 -0.0002282432464 0.03362221948 -0.007257439419 -0.03377310692 0.007408326861 -0.007444093453 0.007946057579 0.03394470774 0.01905822967 -0.01878379364 -0.000274436035 0.01757701974 0.001122952823 -0.01885447187 0.0001544993058 0.003843239178 0.01359268008 0.0001411004779 0.01503796573 -0.002017362571 0.00171625332 -0.01473685647 0.0118440145 -0.01371427577 -0.0009524306123 0.002822691876 -0.01164299809 -0.005891408569 0.01070277721 -1.563345079e-05 0.009430998241 0.002428649715 -0.001231525618 0.01554755797 0.0007219333789 0.006494905027 -0.03110935082 0.03246670602 -0.007852260227 0.009160115547 0.0331621865 -0.008112170897 -0.03421013115 0.03441566636 -0.006748349364 -0.03474480593 0.007077488935 -0.04035552226 0.01973308186 -0.02061329341 0.02728862324 -0.0001804248005 0.006580882407 -0.02512322361 0.02625872349 -0.007716382287 0.006101072291 0.02736137826 -0.006739616568 -0.02672283398 0.02951998485 -0.006833460992 -0.02956769429 0.006881170426 0.0249704132 -0.02341630155 0.004546960642 -0.01692320194 0.02391082365 -0.0004067393018 0.02688981703 -0.007270532893 -0.02681881394 0.007199529802 -0.005437479453 0.003694701445 0.0267131912 0.02723440715 -0.005857475716 -0.02091922794 -0.0004577034943 0.02684232642 -0.006657002103 -0.02682198598 0.006636661664 -0.007120986427 0.006964650026 0.02704615343 0.02715528128 -0.006027569464 -0.02715871504 0.006031003225 -0.006462279825 0.00643865726 0.02686594899 0.01270475473 0.02059531105 -0.006065658625 0.03322062066 -0.0322317504 -0.0009888702623 0.0472627299 0.01353677066 -0.04618209399 -0.01461740657 -0.04376934271 0.01449385349 -0.01530093615 0.04457642537 0.04894211231 0.01228324409 -0.04685366312 -0.01437169328 0.01264850364 -0.01292379251 0.04753801877 0.0147701339 -0.04306156095 -0.01547791566 -0.04034963366 0.01582559098 -0.01674534933 0.041269392 -0.04344459897 0.04476437958 0.01931474137 -0.03876048991 0.03784900945 0.001234453831 -0.0003229733714 0.02694839995 -0.02684840432 -9.999563001e-05 0.004533261913 -0.04411777171 -0.006985347504 0.00259190071 -0.00198423901 0.04296503247 0.03993195261 0.0005564299895 -0.0002274170409 0.000682721785 -0.03926747951 -0.0001757321854 0.0003956442121 -0.038268629 0.03968069788 -0.001807713091 0.00104462161 -0.002184512416 -0.04196071125 -0.003422104733 -0.04082951478 0.003282574609 0.03794733842 -0.03654278302 -0.0003599337886 -0.03456878115 0.0355315761 -0.000567150744 0.03605301762 -0.03560604188 0.006539242667 0.04187106862 -0.0003987833256 -0.002163321096 -0.03225405997 -0.0001514000772 -0.003509939723 0.004405902397 0.04249530483 0.05159346937 -0.007752495999 -0.0002244303292 -0.003604374816 -0.03682757528 -0.0377096901 -0.00702403183 0.007536265457 0.03719745648 -0.005454392889 -0.03623054036 0.003975243142 0.03803314069 -0.006085821536 -0.03740171205 0.03633726092 -0.005965847445 -0.0364510738 0.006079660331 -0.03737226668 -0.005846560598 0.006289456312 0.03692937096 0.034018351 -0.006919501492 -0.03318705059 0.03751385601 -0.005859101806 -0.03787605873 0.006221304529 -0.03866755694 -0.005360872017 0.005229860535 0.03879856842 -0.005800270296 -0.03762107695 0.00604908057 -0.00565590277 0.005662860229 0.03750689855 0.03611900633 -0.004345033207 0.007147118351 0.03183113146 -0.007442015126 -0.03153623468 0.03260249341 -0.007052144066 -0.03284861243 0.00729826309 -0.007297483746 0.007632937817 0.03328676541 -0.02547035952 0.001753300672 0.02549821289 -0.001781154041 0.001932804006 -0.002344423741 -0.02590222848 -0.005985383704 -0.024543376 0.00418673892 -0.0005142682273 -0.02594541064 0.0009505207285 0.02550915814 -0.02577770498 0.001614839826 0.02567082106 -0.001507955906 0.001690308152 -0.001636738582 -0.02552392909 0.0196416829 0.0003426648024 -0.02023370931 0.000249361611 -4.669117976e-05 0.01948548391 0.0002028901668 -0.02252037085 0.0002781918911 0.02219548778 -0.02183384704 0.000623831518 0.02184470713 -0.0006346916041 0.02168307962 0.000626360193 -0.0005628084265 -0.02174663139 -0.02064935515 0.0007274701567 0.02109447001 -0.001172585017 0.0006653692825 -0.0007709268558 -0.02172828947 -0.02286282696 0.0006851209128 -0.0197319444 0.003805333751 0.01976984983 -0.02207639385 0.001294824368 0.02268235386 -0.001900784373 0.02441610235 0.001092632316 -0.001432297962 -0.0240764367 0.0006605152877 0.02163577535 -0.0006132110208 0.001076362458 -0.001405026239 -0.02174773007 -0.02035538824 0.001746396661 -0.0002997887246 -0.01992199797 0.0004971401376 0.01972464656 -0.01952982061 0.0001519334524 0.01970161259 -0.0003237254298 0.0005799228838 -0.001020511002 -0.02020876704 0.01990622074 0.0008402206059 -0.0008363932293 -0.01991004812 0.01949036265 0.0001160693635 -0.002327663943 -0.0476711256 0.04571482484 0.004283964703 -0.008567747802 0.00901544327 -0.04149857081 0.006343933211 -0.04436312154 -0.00695011167 0.02870818768 -0.03705172144 -0.0002242140345 -0.04388833733 0.04168107502 -0.0001204016321 -2.426120374e-05 0.04267431522 0.006444956671 -0.04545258812 -0.003666683768 0.01056208085 -0.01138179517 0.04976182663 0.005255376754 -0.04897309178 -0.0001706223027 0.009523529646 -0.008586122423 0.041736908 -0.04396329666 0.008136138034 -0.008394641184 0.04422179981 -0.04426994535 0.04463255552 0.009160919477 0.006178185644 -0.04859393449 -0.01969472879 0.001346201079 0.01832581704 2.271067818e-05 -0.02218923877 0.001423301755 0.02258421502 -0.001818278002 0.02590044798 0.002015785013 -0.003018064319 -0.02489816868 -0.02246556671 0.0005268721911 0.02233053151 -0.0003918369889 0.0009515466117 -0.001010197656 -0.02213058773 -0.02013095854 0.0003732477229 6.298202038e-05 -0.025947383 0.0004439017617 0.02575655151 -0.0002530702674 0.02517390816 0.0004247797556 -0.000226219942 -0.02537246797 0.001480633739 0.02629586701 -0.001876052764 0.0005000376578 -0.0003137491215 -0.02613367154 -0.02092643429 7.200461925e-06 0.02090090601 1.832781077e-05 -0.02416661432 0.0005045621524 0.02402124443 -0.0003591922616 0.02358563313 0.0004959986073 -0.0003552178429 -0.02372641389 0.0008388352173 0.02449288631 -0.0009156191793 0.0005203914211 -0.0003808140628 -0.02430619167 -0.02096943192 7.266342248e-06 3.573128824e-05 -0.02060169716 -7.282284491e-06 0.0205388059 7.017355251e-05 -0.02302596092 0.0004938645406 0.02288183334 -0.000349736953 0.0005108080016 -0.0003735899871 -0.02260278472 0.0004981635757 0.02344707108 -0.0003596015337 0.0004937326043 -0.0003505047425 -0.02316918878 -0.02065813152 -1.608743393e-06 5.804309635e-05 -0.03695130529 0.0372409294 4.46214616e-05 -0.0003342455725 0.0002748208486 -0.03732531433 -0.0004323252582 -0.0009681043124 -0.0407337828 0.0006242017564 -0.00321766782 0.005820427391 0.04315389477 0.02601771245 -0.02568729467 -0.00033041778 -0.0005538028374 -0.03631779378 -7.970866819e-05 -0.02601615342 0.0003101054089 0.0257975663 -9.151829174e-05 0.02515748383 0.0002623616654 -4.74173087e-05 -0.02537242819 -0.02682646334 0.001996921299 0.02692754158 -0.002097999545 0.0003803732475 -0.0001275332761 -0.02626899339 -0.02431007744 0.02410149921 -8.868411226e-05 0.02343545434 -7.169322766e-05 -0.02367379137 0.0002636303549 0.02494166147 -4.780799444e-05 0.0002928693727 -8.54183044e-05 -0.0245175285 -0.0242816335 0.0004384584123 0.02405097504 -0.0002077999481 0.02334525678 0.0004678819485 -0.0002292064061 -0.02358393232 0.0004180706373 0.02495657603 -0.0002007385077 0.0004305977671 -0.000202903051 -0.02450932822 -0.02238173185 0.001967629206 0.02244750028 -0.002033397633 0.003193082847 -0.004445714351 -0.02557383183 0.0004941292964 0.02310258745 -0.0002514599636 0.001147759739 -0.0009351127579 -0.02259437883 0.0398171643 -0.00590873815 -0.04055530683 0.006646880675 -0.03844934024 -0.005178653771 0.004382407696 0.03924558632 -0.005194013106 -0.03826396763 0.004790423801 -0.006293334309 0.007462616915 0.0386478817 0.02293149748 -0.02256183243 -0.0003696650465 0.04217098475 -0.04078319748 0.001178816559 0.001958762831 0.03777790271 -0.006612984122 -0.03913965733 0.007303301207 -0.004286909165 0.003652447927 0.04280544599 -0.0004730729172 0.02257939863 -0.02316617185 0.00105984614 -6.817775659e-05 0.0003445558298 0.02387401472 0.001026818596 0.02453925869 -0.0008887863458 -0.02172201526 0.02161164879 4.218870741e-05 0.02078103423 -0.02127122167 1.711452448e-05 -0.02209400526 0.02199991429 -2.480105832e-05 -0.02183944794 4.687981262e-05 0.001468887718 0.01930886521 3.28130507e-06 0.001843850753 -0.002474850015 -0.02613597897 -0.03072261272 0.004649658696 -8.949261266e-06 0.002193171475 0.02185511487 -0.002172698002 0.02729751274 -0.02720913254 0.002084317797 -0.004385550163 0.003244545438 0.02395401761 0.001334343895 0.02490565254 -0.001636998914 -0.02157691895 0.02159078055 -0.004399411762 0.02372618972 -0.02591073756 1.184984112e-05 0.02316397127 -9.599808004e-05 -0.001433400756 -0.02225901497 -0.02246499713 0.02237061069 -1.056844504e-06 -0.02218711517 -1.802503392e-05 0.000745941525 0.02297251469 7.733505317e-06 0.0001017126425 -0.02256727543 5.656594325e-07 0.0009552270103 -0.0008339082975 -0.02589030471 -0.02629859602 0.0003523451955 0.001108608884 0.02693484538 -0.02033300058 -0.0002802928265 -0.03605581432 -0.006536873225 0.006277647258 0.03631504029 -0.02689745325 0.02997658028 -0.002948602031 -0.0001305249985 -0.009521522959 -0.04192082844 -0.005907204344 -0.02083068246 -0.0001595664483 -0.006935947517 -0.03633058386 0.007210717056 -0.01645808053 -0.0004651214097 -0.007039466211 0.006944472213 0.03035672275 0.02215805019 -0.004977902595 -0.0003110994005 -0.008247849739 -0.0333334544 0.0008411934428 0.02580536126 -0.0004434407824 0.003599650667 -0.004584290645 -0.02365474263 0.02169624728 -0.02182158344 0.0001345519151 -9.215753404e-06 9.592475634e-05 0.02205508992 1.254157144e-05 0.0009999487246 0.02532096639 -0.0007243465569 0.001986685905 -0.00224645179 -0.02397153978 -0.02085267755 0.001424134338 8.203330014e-05 0.0001725240724 0.02154972531 -2.600210655e-05 -0.02936851291 -0.0002451224883 -0.001184703772 0.001595197276 0.02409651635 0.002027775833 0.02586724116 -0.001982484071 0.02678866824 0.009220705907 -0.009719732831 -0.02628964131 -0.001884219451 0.02412572814 -0.01928573271 -0.00295577598 -0.004214598759 0.008005069073 0.01560105109 0.0207503902 -0.0003364074236 -0.01627796691 0.02126132289 -0.004258233952 -0.0007251220352 0.01860803681 -0.004345039367 -0.01792498832 0.02358441226 -0.004918342478 -0.02362535964 0.004959289863 0.02501395534 -0.0001438030158 0.01360513036 -0.0009003756292 -0.0225959101 -0.005923929089 0.005628450963 0.02289138823 -0.003938559031 -0.01162485403 -0.000714553846 -0.006134012927 -0.02241625038 0.005954353214 -0.0147349936 -0.02204574657 0.03127232033 -0.138448671 0.04057386145 -0.2691045995 -0.04361340969 -0.2597192325 -0.04669131886 0.2623376168 -0.02469282745 0.02753411751 -0.002595526893 -0.0002457631672 -0.01923152676 -0.005270251275 -0.0001910494197 -0.01463368839 -0.1255804736 -0.02458268178 0.2701374844 -0.2698489528 0.02434968604 0.02128728511 0.270632523 -0.01892348667 -0.0003080400832 -0.00660508449 0.006770684383 0.02935438496 0.02830182098 -0.006377922166 0.02820462846 -0.007065731278 -0.02840943008 0.06700383084 -0.01104952788 0.1286169636 -0.02077549258 -0.1301058036 0.0111299496 -0.01668808211 0.1288764954 -0.1301884094 0.01799999615 0.0208446802 -0.01970485967 -0.01977795774 0.01863813721 -0.01892322794 -0.01240015226 0.01697440451 0.01434897569 -0.009301928411 0.01064192145 -0.01148573464 0.02756034221 -0.03059600436 -0.03773810534 0.02215548742 -0.02755168086 -0.02317249857 0.02856869201 -0.02256302234 0.02113043584 0.02227726671 -0.1303593184 0.0336808351 -0.03605281381 0.1327312971 -0.126918664 0.1290393681 0.04093322651 0.02548045223 -0.07091923812 0.01088890168 -0.04233873468 -0.01120054888 0.04265038188 -0.04569705596 0.04616935718 0.01217620242 0.04787316999 0.01123756171 -0.04682748761 -0.04815879174 -0.0008341357442 0.001550913893 0.04824896463 -0.04852395648 0.001250418373 0.04862320356 -0.001349665457 0.04892186618 0.001379861091 -0.001477273666 -0.0488244536 0.001045402369 -0.04810245554 0.04821145898 -0.001154405809 0.00119858192 -0.001304198275 -0.04841834012 -0.0007900521453 -0.04807564234 0.001504193307 0.03145784894 -0.006928835601 -0.0316741987 0.007145185362 -0.006988026165 0.007383976876 0.0322065427 0.03102440155 -0.008365671351 0.006556173038 0.06658586736 -0.01263373893 0.06526643501 -0.01260173178 -0.0657673082 0.06569553783 -0.01134237985 -0.06613252797 0.01177936999 -0.0260803161 0.001659812478 0.02599106982 -0.001570566207 0.001554910558 -0.001493002901 -0.02583961264 -0.02638795184 0.0009291193373 0.04828514463 0.01015010622 0.007844839762 -0.04566982844 0.008394251074 -0.04390320589 -0.008454341847 0.001420289045 0.04901655189 -0.001514974756 0.001536566473 -0.001614458201 -0.04918458377 -0.0009132369636 -0.04909730942 0.001744472596 0.02491671468 0.0008156836949 -0.0008453167767 -0.0248870816 0.02655140685 -0.02678787832 0.0006168447163 -0.02670079478 0.001644318222 0.02705339786 -0.02571824647 0.002210534538 -0.02308271347 0.001608666689 0.02344167599 -0.02408707139 0.0009327324882 0.02420168747 -0.001047348572 -0.02559179193 0.003010164204 0.02680412257 -0.02564554948 0.001737992144 0.02579819003 -0.001890632699 0.001579896313 -0.0016404612 -0.02601975121 0.02714105945 -0.02562593364 0.005248313563 -0.005949134659 0.00421963912 0.02887055499 -0.006790488719 0.03018016376 -0.02386442489 0.02303487302 -2.478752941e-05 0.002324491863 -0.02619001583 1.099080412e-06 -0.02766122032 0.002374636027 0.007658997923 -0.02870653229 -0.008026475796 0.03441307591 -0.02646561774 -0.0002884602488 0.01695688194 0.03077438523 -0.007056527441 -0.03088558718 0.03092906267 -0.006683908914 -0.03102249238 0.006777338623 -0.006839786894 0.006974572908 0.03132306293 0.02209750409 0.0001097473397 0.0001017059777 -0.0001081487197 0.02618870147 0.0005615701589 -0.02273725939 0.02250142333 0.000127687348 -4.302630525e-05 -0.02371149986 0.0008262228362 4.370396274e-05 -0.06105005707 0.01603337893 -0.0008943332173 -0.03310974548 -0.003775776811 -0.0002403229574 -0.03226599925 0.03248443194 -0.007415737036 0.004662201656 -0.03043070064 -0.006497500264 -0.02522071699 -0.0002743775294 -0.0333674399 0.03340580051 -0.006937626223 0.03422860972 -0.006891467713 -0.03428363999 0.03317619251 -0.006552304441 -0.03328087637 0.006656988301 4.275882954e-05 0.01923370624 2.273192818e-05 0.01661668219 -0.08012572171 -0.01739605526 -0.0771972337 0.01908683475 -0.02016576037 0.07827615931 -0.08024266801 0.08177439179 0.02266100007 -0.006654804662 0.006976175476 0.03409429555 0.03324383684 -0.007658814702 -0.007235410766 -0.03373118819 -0.01565640491 0.02208678825 -0.006026889958 -0.0004034933737 -0.01503807788 -0.0006183270308 -0.01422134614 0.01485865681 -0.0006373106694 -0.02890601836 0.02192914199 -0.007244469773 -0.006405424744 -0.0004138053668 -0.06558516099 0.02590616014 -0.02714010224 0.06681910309 -0.06186339702 0.06307208334 0.03015430181 0.01932051389 -0.03563805747 0.01498847993 0.04584267191 -0.0007765805775 -0.04629329572 0.04596220439 0.01531957126 -0.04531186904 0.01610113731 -0.03093523947 0.031217763 -0.0002825235302 0.01033486122 -0.04094332289 -0.0003267778027 0.007144376019 -0.03565743362 -0.007137590389 0.03312314976 -0.03199062296 0.006011849227 0.002925965305 0.03538974386 0.02188008724 -0.0001289964357 -0.006323875744 0.02827620017 -7.223718058e-05 0.03395284008 -0.007397331104 -0.00601040815 0.03560065317 -0.0357360749 0.006145829884 -0.005918492006 0.006127703776 0.03612804915 0.03765937538 -0.006650266515 -0.007544182369 0.04581785143 -0.0003501317943 -0.03957879273 0.03866543516 -0.006630824803 -0.03859572377 -0.004765057782 -0.007255246631 0.005692991623 0.02965076117 -0.03175093326 0.03211240189 -0.007616715255 -0.008046972527 0.02208155024 0.003613603901 0.0002604168732 -0.01263903814 0.0005216093639 -0.0002074768299 -0.01946461293 0.0002617799429 5.640002786e-05 -0.02193768871 0.02186165341 -0.02216227655 0.0003570231647 0.02156260696 0.0003648200482 0.004112147397 -0.02803227358 3.397545256e-05 0.0248798334 -0.02367074141 0.002903055408 0.02501558206 0.001787937476 0.02127476855 0.0004340020543 -0.0003409932562 0.021007596 0.0006081657974 0.02084584338 -0.01837684162 -0.0006147105381 0.01864185694 0.0003496952186 -7.484089396e-05 -0.0002050147334 -0.01924996498 -0.01976851346 0.0006867361002 -0.003176081779 0.01894710725 0.001848615154 -0.01613768795 0.02276480766 -0.009803201479 -0.001891226287 -0.01612511447 -0.01604669208 0.0003882056588 0.0005814883244 -0.01706578471 0.0004376043077 -0.01894992832 0.001198430209 0.01414079734 -0.01411164371 -2.915362577e-05 0.02917490689 -0.02055827381 0.005524164261 0.02487433662 0.004290179016 1.039124695e-05 0.02202635706 -0.02218967894 0.0002079376401 -6.057162074e-05 0.02183085156 0.0002560771155 0.02030159079 5.701018258e-06 0.02163926574 -0.02168978088 7.703166476e-05 -2.651652193e-05 0.02160690003 6.849813084e-05 -3.613241826e-05 0.02283566814 0.002031550661 7.117818483e-06 0.0221521123 0.0006808173063 2.73854317e-06 -2.256772992e-05 -0.02085250213 8.90720759e-05 0.02353862735 -0.02371162814 0.0001504330594 0.02339387475 0.0001717853426 0.02471931969 0.0008764049268 -0.000127449123 0.02443062737 0.0004161414455 0.02105697838 8.488895971e-05 4.643403239e-05 -0.02050291037 -1.177701871e-05 0.02233916127 -0.02248148623 0.0001887589942 0.0001939968059 0.02324792071 0.0001797113547 -3.854600554e-05 0.02310457312 0.0001818935887 0.02068936603 -3.100253508e-06 0.02556111901 -0.02581388818 0.0005151308395 0.0005520914421 0.02630942082 0.0009219734159 0.02483508564 -0.0008403443762 0.000889873706 -0.0008545514356 -0.02459155343 -0.02480593653 0.0005400640484 0.0005172556354 0.02530749373 0.02353654728 -0.0237230236 0.0006543582706 -0.02427627571 0.0006211093353 0.02409362479 -0.02399552786 0.0007713275559 0.02399024137 -0.0007660410645 0.02116669493 -0.02122814483 2.479011993e-05 3.665978266e-05 0.02109951036 2.77544923e-05 3.943007915e-05 0.02151963229 7.492034613e-06 7.977570137e-05 0.02146009007 8.555725021e-06 5.098649192e-05 -0.01455459879 0.01450125374 5.334505324e-05 0.02102730428 3.807155164e-05 3.413452623e-05 6.476132711e-05 0.02093334288 2.920007052e-05 0.0008904910424 -0.0009444197969 -0.02403314263 -0.02306357319 0.001128619458 0.0006774535504 0.02335322303 -0.03303521044 0.03505327765 -0.001781775712 -0.0002362914985 -0.03039455838 -0.002321599007 -0.0003190530566 -0.03672337805 -0.003719416558 0.002356918597 -0.03469574156 -0.004384555079 -0.02946625921 -0.0001560251321 -0.02354511996 -0.006558508709 -0.0002909297086 -0.02334756865 -0.000197551307 -0.00426272089 0.00441601909 0.03919919317 0.04243162026 -0.00448884699 0.03938787809 -0.005879419293 -0.04012144292 -0.02537480024 0.001536294932 0.02537725214 -0.001538746831 0.001682152665 -0.001838257298 -0.02548944484 -0.02472292887 0.002730787607 -0.02614446463 0.001160746583 0.02582491149 -0.02548478522 0.001481043837 0.0254498528 -0.00144611141 0.001512703309 -0.001494891339 -0.02539261221 -0.02461578674 0.02421899472 -0.0001134674356 0.0004425128746 -7.638609922e-05 -0.02498191352 0.000858265516 -0.02539559958 -0.001163977874 0.02374965715 0.001547797069 -0.02373018693 0.02305185087 -0.0004856418138 -0.0002032065439 0.02452559366 -0.0003220429537 0.006807104957 -0.007364245868 -0.02415307022 0.02562394375 -0.02509349597 0.00627665717 0.02662727838 0.01046369383 0.000198731917 0.003937637254 -0.004136369169 -0.01868639304 -0.004372903143 -0.004885626094 0.00485798355 0.0236120548 0.01893079147 -0.004537353424 0.02021339704 -0.002108254171 -0.01998936231 -0.02169994495 0.02142669452 2.94716092e-05 0.0002061839842 -0.02186416695 -4.196198543e-05 -0.02463702897 0.00060949587 -0.01775733465 -0.002943561962 -0.0005024292762 0.01343474302 -0.001043520449 -0.004794199748 0.01885737404 -0.0006284312633 0.02176915636 -0.006018266191 -0.001467918267 0.02216928465 0.002298873504 -0.02086902925 0.01938896829 1.214269476e-05 7.420503326e-05 0.02456440965 -0.006148136418 -0.02455028615 -0.005779668882 0.02663193595 -0.02670030883 0.005848041763 -0.005906148716 0.006112951478 0.02694847852 -0.03152290346 0.03881001663 -0.007033338245 -0.000253774931 -0.003669824694 -0.000318961249 0.02979446607 -0.02855956211 -0.004864985069 0.03206392424 0.03353174296 -0.006106388672 0.007667270603 -0.003687629863 0.005397095943 -0.006485432576 0.01408606696 0.0009490386534 0.006718231951 0.007265317375 -0.03278084869 -0.007240766129 0.03902382125 -0.03146263156 -0.0002958723186 0.0264181473 -0.01999802734 -0.0001688046182 -0.004870034031 -0.0001744502229 -0.006542477756 -0.03182261334 0.01881274573 -0.01958090483 0.03259077243 -0.02975416057 0.03069385073 0.02121579727 0.02676540294 -0.03240602333 -0.04714925756 0.04325532288 0.00408682642 -0.0001928917449 -0.05527826518 0.008461012061 -0.0003320044392 -0.04196848804 0.04157146293 0.000485352878 -8.83277688e-05 0.001475111747 -0.0001882769005 0.0006640344671 0.04097673676 -0.0001950132038 -0.04638794567 0.04543542574 0.001616554397 -0.0475441762 0.002073946509 -0.04459188334 0.04389409592 0.001324163665 -0.000562866226 0.001406408618 -0.0001177711989 -6.075410189e-05 0.03848795487 -0.0004659955224 -0.04357923622 0.04441593782 -0.0008974557089 -0.04298973263 -0.0005571253895 -0.04527519784 0.04532866693 -0.003616851309 0.0009556888619 -0.00181494888 -0.0003771903206 0.009425808817 0.04852901585 2.399730062e-05 -0.04734325379 0.04912893969 0.007640122919 -0.04435169023 0.008812938693 -0.04875966047 0.003130580383 -0.004781222396 0.005150501618 -0.0002227010959 0.0001267961324 0.037534427 -0.0001093883034 -0.04150926673 0.04190623656 -0.0002701737001 -0.04109965317 -0.000207613356 -0.04244676787 -0.00037518109 -0.0002660626632 -0.0002744686389 -0.0004643822748 -0.04165261117 0.04278168317 -0.0007439481658 -0.0003851238299 5.204095611e-05 -0.0001331891988 -0.04625159412 0.05398216892 -0.007406649964 -0.0003239248334 -0.003309248727 -0.0001606622242 0.0003520424069 -0.000122115168 -0.02464399742 0.02466452173 0.0006331225343 -0.02494560185 0.02436729297 0.0006314590246 0.0002822889407 -0.02305523595 2.793793546e-06 0.02669509884 -0.02709236289 0.0006795529961 0.02636872448 0.0004744682582 0.02750535941 -0.02746934564 0.002179066533 -0.000768096575 0.001181093092 1.498105716e-05 -0.02279989334 0.02725204527 -0.000232512802 -0.01731294288 -0.0002386369018 -0.03403134048 0.02537719476 -0.00770806842 -0.006518251196 -0.000261044022 0.0224741206 -0.02264754618 0.0001978396416 -2.44140612e-05 0.02235407263 0.000160562314 -4.051433564e-05 0.02295955161 -0.02377272044 0.0007967744001 1.639443196e-05 0.00031774382 -5.738393813e-06 0.01497305916 -0.01498244823 9.38906992e-06 -0.004781783842 0.003651908757 -0.03097703878 5.239108471e-06 -0.02211843708 7.779333844e-05 -0.02238166368 3.013193381e-05 0.02547723619 -0.02576666111 0.0003672182581 0.02518849166 0.0003737581064 0.02606056636 0.000390713293 -7.461671479e-05 0.0003685219626 3.641203345e-05 0.02604491684 -0.03073492879 0.004670642028 1.936992965e-05 0.002250278332 2.191806275e-05 0.02181497021 -0.02187259319 0.004447186791 -0.01484980903 0.005929850452 5.083231597e-05 0.01872226154 -0.0004118763617 -0.007432125177 -0.0003112310192 -0.008515887632 -0.000356060937 0.01988655074 0.02754682162 -0.02064470412 0.02710101192 0.001516121406 -0.001402199728 -0.0272149336 -8.622288991e-05 0.023265104 -0.0240212634 0.000842382291 0.000610078007 -0.000144067249 -0.02543366351 0.02564921176 -0.02611262189 0.001073488134 0.02523519656 0.001296437029 9.375615887e-05 -0.0106535392 -0.003314445106 -0.0009260318273 -0.009349242283 -0.001304296912 0.01188396566 -0.001461883735 -0.01050830481 0.01628113969 -0.004137564388 -0.01611185306 0.003968277762 0.002977135849 0.00349866271 0.01764992958 -0.02230860367 0.0221645468 3.894448e-05 5.657605264e-05 0.0001362436045 0.0004793912154 0.002380898416 -0.0001112670021 0.03624766219 -0.05657853651 -0.000709880421 0.03785475786 -0.001607095663 0.0205347089 0.04466989186 -0.0008260391683 -0.03821216075 0.05690510259 0.02597695003 0.02614321276 -0.03584815467 -0.03592963716 0.03663025034 -0.000700613178 0.02153819188 -0.000562726454 -0.001740635074 -0.0002608863314 -0.02197009259 -0.0003867578826 -0.00590288582 -0.0002596015004 -0.02894556981 -0.007388016656 -0.00891934681 0.0002609915103 0.0001182428683 0.01348582982 0.0001068502579 -0.001931957321 -0.01083327979 0.01277118332 -0.002387066637 -0.012316074 0.01316084551 -0.001342092803 0.01595412317 -0.01859669681 0.001230211072 0.001412362561 0.01412301492 0.0006893630812 0.001141745177 0.01336739637 -0.0002221843126 -0.00634164924 0.001112348806 0.003089349001 -0.03252155068 -0.007566618698 -0.0002673528762 -0.0002649454788 -0.005038451371 -0.0001944760759 0.01507118678 -0.03115737902 -0.007330109312 0.01559927546 -0.000528088671 0.02049062406 -0.0003443879631 -0.006862564943 -0.0003839904281 0.007594746435 -0.02716391624 -0.007249644132 0.02342918228 -0.03087251372 0.02460182212 0.02453001268 -0.0003446871708 -0.005928500861 -0.0004140001836 -0.006379225896 -0.02310134561 0.02360216195 -0.006358292051 0.005594243102 -0.006766446722 -0.0004663280251 -0.005075085036 0.003594259667 0.02207613642 -0.02382749658 0.02450431914 -0.005751907594 -0.006290993257 -0.04459103575 0.06139344127 0.01641821514 -0.01394409512 0.01531526377 -0.0003331736146 -0.01211054103 -0.04681214054 0.01206901845 0.0441912097 -0.0459668895 0.06103727942 -0.04905998176 0.00864333855 -0.000526679681 0.01300200277 -0.0006685432666 0.00296891032 0.03505577491 -0.0001756757765 -0.04015211658 0.03893579033 0.004185236568 -0.04115691783 0.002239255084 -0.03907137953 0.01074151429 -0.008415029746 0.008279440551 -0.0002076591569 0.000510975829 0.03958082413 -0.0001598473544 -0.04322056606 0.04256217896 0.001169362926 0.001229959852 -0.04192413961 0.001449943561 -0.0005737598345 0.001211799187 -0.0002604152055 -0.001245865909 8.647726784e-05 0.04084008652 -0.04018291505 -0.002263584659 0.0412006338 -0.03926419227 -0.002726435871 -0.03600904595 -0.0002657862994 -0.0002679507764 -0.0003909925772 0.02389973624 -0.04984645458 -0.009659323541 0.0241491994 -0.0002494631584 0.03113555403 -0.0004471119629 -0.00770583288 -0.0002695530824 -0.02505921117 -0.007063936171 -0.0001309126328 -0.02469329708 -0.000365914091 -0.00978811169 0.03668828398 -0.04338173723 0.04035161129 -0.006757985753 -0.005805566292 -0.03891695755 -0.003951609535 0.007203227465 -0.00576857373 0.04369434575 -0.03588823138 -0.0002698489158 -0.009347123778 0.02105084656 -0.007807100916 0.02135225692 -0.0003014103576 -0.02755419878 0.03069072732 -0.0002105632354 -0.0001900926336 0.00297865364 -0.005256353922 0.03154907817 -0.0002942243602 -0.0003639100658 -0.03679220135 -0.006641452431 0.03651415229 0.009339291745 -0.007466057933 0.001576818045 0.0002710228878 -0.0001374722184 0.0001583432034 0.02182452852 -0.02080800206 0.00278880729 -0.005223406077 0.003377193189 0.000751446647 0.02077999119 0.0009790514594 0.001718385795 -0.0195239014 0.0178905411 0.0007969670737 0.002614843188 0.000626063064 0.001651902322 0.01119534119 0.001036447443 0.001392139707 0.000152563559 0.0003878707767 -0.01737476359 0.0004615424379 0.0006318468773 0.003940069629 0.04350862279 -0.001733867572 -0.04546110294 0.04404523999 0.005355932586 0.005569571384 -0.04674670962 -0.04323572183 0.007899474863 -0.005422978577 0.006232496737 -0.003412926597 -0.03991226349 -0.0005523845514 3.494395804e-05 -0.003245178315 -0.04815696109 0.005949551285 0.04137622335 -0.04420460399 -0.0004167976678 0.03789804648 -0.0001885069047 0.04991869125 -0.000263207003 0.006081173935 -0.0003670866779 0.007686039474 -0.05897884718 0.01026501294 -0.000259257547 0.02936807254 -5.614847758e-05 0.02974094545 -0.0003728729107 0.01249900627 0.02046362934 -0.02105488219 0.001937453934 -0.004236099846 0.004141455369 -2.192651841e-05 0.0001082843345 6.234791853e-05 0.02153180432 0.0004073315835 0.0008501698489 0.02175040717 -0.02181968648 7.528472069e-05 -6.005407487e-06 7.292384137e-05 -1.229755628e-05 0.02192355492 0.0002206909215 7.866454249e-06 0.0001024716229 1.396817017e-06 0.02387950356 -0.02403708358 0.0001647804842 1.688550556e-05 0.0001509899195 6.528938623e-05 1.933670163e-05 6.82097655e-05 0.02421200716 0.0002379569105 0.0001821899213 0.02262963571 -0.02279643637 0.0001595183801 -2.737483644e-05 0.0001755243082 8.520692314e-06 3.084732036e-05 3.871963988e-07 0.0229594916 0.0001759288464 0.000161446486 0.000165452848 0.03735578026 -0.0002803037061 -0.03996176243 0.04035323117 -0.0002260158897 -0.03943390563 -0.0004832353424 -0.04067117144 -0.0001536608778 -0.0001336892064 -0.0001842510674 -0.000103223279 -0.007567458788 0.03381070837 -0.0002255371288 -0.03801389004 0.0377033238 -0.007256892554 -0.009719015791 -0.03868994714 -0.001297761328 0.002243266459 -0.003229889793 -0.0002638189547 -7.353882563e-05 0.02558875478 0.0002823503482 -0.02225808171 0.02218667299 -2.130112042e-06 -0.02234212398 -7.476019386e-06 -0.02210291425 0.02202658701 2.890993305e-05 4.97828204e-05 3.397592341e-05 0.0002661094105 -0.0007040168727 0.02658726456 0.001044293894 -0.02343715673 0.02270230014 3.08397192e-05 -0.02558050872 4.535244832e-05 -0.0224631131 -6.544153249e-06 0.0002527406815 -1.355364817e-05 0.0005710118536 -8.970791248e-05 0.02389141222 0.0002997948966 -0.02164269216 0.02156810644 -1.512218613e-05 -0.0217210262 -1.035007453e-05 -0.02148856223 0.02139037698 2.649202127e-05 8.198731414e-05 -2.443106491e-06 0.0002996081642 -5.315909076e-05 0.02472432353 0.0002704970328 -0.02195062758 0.02186620187 3.126662837e-05 2.815142995e-05 -0.02179690015 -9.544359135e-06 7.768803421e-05 -8.386315036e-06 0.0002844830626 0.02128617705 1.658788425e-05 -0.02134636253 4.359760001e-05 2.294231076e-05 3.508990706e-05 -0.0002144817221 0.02381889631 0.0004465604552 -0.02381416152 0.02362262211 -0.02400537359 -0.02342703094 0.02322557903 0.0002203812884 0.0004553452727 0.02140761922 1.491899352e-05 3.755186284e-05 1.197048317e-05 4.928620538e-05 0.01889111598 0.001378356585 -0.02030342125 3.394868338e-05 0.004302631831 3.388535568e-05 -0.004269529262 0.02358570562 0.003131323922 -0.02124835119 0.02128145376 -0.02190339224 -0.03006100888 3.478581243e-05 0.005721698618 0.003733572401 -0.0003115801724 0.02285155751 0.0005626101099 -0.02301219062 0.02276537177 -0.02242538998 -0.0004131150168 0.0004806570481 -0.0001406752535 0.0007378357308 0.02075321195 3.945568062e-05 3.667568552e-05 -0.03907861995 0.04696191076 -0.007781082141 -0.0001022086713 -0.003865697631 -0.00015964466 -0.006324477152 -0.0002102845732 -0.03393502928 -0.00708518944 -0.009534950951 0.0004979993325 -0.03935746281 -0.001923734002 0.03513318849 -0.03441878289 -0.0002164062729 0.03665250341 -0.0003404983535 0.03349721336 -0.0004028965004 -0.000620925141 -0.0003006443875 -0.002200485244 0.009916778037 -0.04151672208 -0.007539713286 0.03521206507 -0.04864285568 0.03595685756 0.04061097369 -0.0003060223547 -0.007811231529 -0.0002206504673 -0.006522507619 0.000585861009 -0.0235658089 -0.0001862239593 0.02342362887 -0.02374345285 0.0009056849946 0.02315040614 0.001333068873 0.02405962455 0.0006522242487 -0.000406036638 0.0007222083325 -9.78308226e-05 0.02148365799 3.015997831e-05 2.621236519e-05 0.02191098847 0.0001245219631 -3.559614333e-05 -5.057463783e-05 0.01484537973 0.004460249391 3.236088448e-06 0.01487347723 -2.809749911e-05 0.005980140639 -0.02182927613 0.02624911272 -0.02426731085 0.003998338771 0.003429425774 0.02316193324 0.002181644366 -0.004486088131 0.003380710528 -0.01473341581 0.03047554173 0.005848654633 -0.01474414753 1.073172292e-05 -0.01916417221 2.061291593e-05 0.004555638588 9.165578582e-06 -0.0001801485399 0.02280412636 0.0005399934496 -0.02127683294 0.02108231357 1.437082874e-05 1.754596624e-05 -0.02061396358 1.639061233e-05 0.0004570155323 1.133446275e-05 0.00100212693 0.02227897092 9.805666267e-05 -6.416887656e-06 0.0001056468394 -1.379109162e-05 0.02270532854 0.0002636530856 3.53306171e-06 0.0001357298987 2.323215767e-06 -0.003990228778 0.03418974119 -0.00022293213 -0.03482947966 0.03639769034 -0.005558439457 -0.03253756113 -0.005240520558 -0.03613875172 -0.008185118031 0.03480234679 0.007459466315 -0.007200527696 -0.0002716209344 -0.03495440544 0.04266066228 -0.007471074761 -0.000235182082 -0.003956274702 -0.0003074034147 -0.03134047186 -0.007104293617 0.02058962337 -0.009269432944 -0.0002410590943 -0.004010670576 0.02654368253 -0.0003749617582 -0.02684963907 0.02863739875 -0.005798430261 -0.006450346905 -0.0290041878 -0.007727771322 0.02848410939 0.006426015883 -0.006792804933 -0.0003637559866 0.02191752459 -0.02206001413 6.610344058e-05 0.02175609184 4.796531636e-05 0.02220906955 9.600998598e-05 4.899308824e-05 6.557804568e-05 8.347737702e-05 -0.02223307338 -0.004469654343 0.002295361414 -0.001476583926 0.002390275935 0.01948045539 -0.02098416369 2.712437065e-05 2.83528163e-05 0.02151036731 4.251797942e-05 4.056181461e-05 0.0001129281198 -0.02194146645 6.954894504e-06 0.02431272475 -0.02460917697 0.0004093803446 0.02400783031 0.0004394463462 0.02490011469 0.0003843017316 -0.0001033808456 0.0003943185606 1.024262411e-05 0.0005238197584 -0.02132709826 -4.939904692e-05 0.02264780351 -0.02325113249 0.001127148736 0.002199344664 0.02367209266 0.0005082617291 -0.0002597801463 0.0006807403175 -3.715308996e-05 -0.004541896578 -0.0003010226794 0.02497823826 0.00185215558 -0.00341588213 0.003300624426 -0.003472435999 0.0007712294518 -0.01632963054 -0.003727331615 0.01568438735 -0.01283081563 -0.002082342271 0.01292734329 0.009464116915 -0.00145904784 -0.002098681426 -0.001268017289 -0.002827260881 -0.001408438842 -0.004779435023 0.01669151564 -0.01977918893 -0.005108679376 0.02010843328 -0.01912768675 -0.004909736134 -0.0001715825702 0.000548508942 -0.02201932998 -1.641953936e-05 1.413802921e-06 -0.0005579446197 -0.01758544857 0.02301060418 -0.004706253801 -0.0007189018085 -0.01251790414 -0.00435519216 -0.0007123522727 -0.01792041704 -0.005145828733 0.0104902919 -0.005400104756 -0.00113456213 -0.01147572442 -0.00104217972 0.005204949119 -0.005852043141 0.02465663986 -0.0005943167069 0.01913526866 -0.01499560294 0.0002606093345 0.004404521794 -1.115644119e-05 0.004528059871 -0.00237767339 0.002622646025 -0.2283545255 0.003472416503 0.2279097876 -0.2282154404 -0.00316676366 -0.2288955084 -0.001992451549 0.2286976751 0.003785165048 -0.2281405805 0.004816462696 0.227707893 -0.2280715876 -0.004452768082 -0.2288463424 -0.002750183522 0.2286332956 0.005162351338 -0.228016853 0.006447288136 0.2276423352 -0.2281316462 -0.005971190963 -0.228856362 -0.003568707169 0.2286565838 0.006908801689 -0.228131579 0.008277789018 0.2279727906 -0.2284210085 -0.007847742036 -0.2289351527 -0.004291235523 0.2288105863 0.008635054586 -0.2284770153 0.009307211792 0.2288032197 -0.2289515093 -0.009161060813 -0.2290870672 -0.004704663618 0.2290890074 0.009331541367 -0.2290541513 0.00887362874 0.2298505618 -0.2296004758 -0.009107681486 -0.229291672 -0.004710548845 0.2293923629 0.008526191201 -0.2296890121 0.007214116142 0.2305545862 -0.2300735257 -0.007677783923 -0.2294633543 -0.004260340168 0.2296254941 0.006718041144 -0.2300853812 0.005542827073 0.2305604306 -0.2302392215 -0.005863908383 -0.229537669 -0.00356392605 0.229722361 0.00520015536 -0.2302062713 0.004223360309 0.2305192358 -0.2302073012 -0.004535294899 -0.2295367393 -0.002790625383 0.2297079612 0.003906598729 -0.2301355447 0.2303150392 0.00305433951 -0.2300394871 -0.003329891623 -0.2294877412 -0.002086989865 0.2296252362 -0.00328869053 0.003658818507 -0.2271835697 0.004961912012 0.2262958347 -0.2267554853 -0.004502261458 -0.003533351024 0.2275693849 0.005707742084 -0.2266214266 0.009676778342 0.2238362734 -0.2253139861 -0.008245760241 -0.005002320627 0.2272705446 0.01116451713 -0.2249483977 0.01572266981 0.2229723392 -0.2245502656 -0.01421312132 -0.007361686422 0.2268919401 0.0171696247 -0.2246153321 0.0209627852 0.2243073699 -0.2255019051 -0.01981396913 -0.01017195473 0.2273371986 0.0219573217 -0.2259975466 0.02378984626 0.2276262064 -0.2280274744 -0.02338977911 -0.0120304632 0.2286072772 0.0239480188 -0.2288197109 0.0229279104 0.2319193275 -0.2312743594 -0.02352903028 -0.01196587455 0.2302277983 0.02207936885 -0.2320038999 0.01828252764 0.2351135821 -0.2335929354 -0.01973287339 -0.009879845687 0.2313011104 0.01669254183 -0.2338302906 0.01161088459 0.2353745049 -0.2336139984 -0.01331341061 -0.006931180232 0.2311983863 0.009969319213 -0.2332294951 0.005201615262 0.2335224358 -0.2318130097 -0.006907091239 -0.005103715823 0.230880193 0.002742750648 -0.2319897096 0.2339093158 0.000756187989 -0.235933831 0.00126832718 -0.003673983303 0.2308564022 -0.0108389633 0.01223099328 -0.2279761714 0.01012802938 0.2228881799 -0.2227402171 -0.01032615544 -0.004762340624 0.225567008 0.01159244187 -0.2208896127 0.01814190371 0.2152031881 -0.2176826198 -0.01577568212 -0.00998575684 0.2220515195 0.02052205275 -0.2171409159 0.02729813101 0.2147076534 -0.2169873113 -0.02512551118 -0.01702795353 0.2211681801 0.02935627126 -0.2173841037 0.03473704638 0.2181392046 -0.2198368482 -0.03309614981 -0.02342275153 0.2229495962 0.03621211094 -0.2210644315 0.03932978733 0.2250965871 -0.2258845155 -0.03854018099 -0.02753675983 0.2271401577 0.03981932439 -0.2278185585 0.03920031408 0.2346310618 -0.2339919128 -0.03978085917 -0.02784905064 0.2326056308 0.0382291331 -0.2359918224 0.03293592414 0.2429986678 -0.2408212503 -0.03500434753 -0.02364718859 0.2368452808 0.03059484109 -0.2418520747 0.01593399958 0.2516881296 -0.2439628865 -0.02353429515 -0.01620216614 0.2374845922 0.009649041166 -0.2453294546 0.01009968285 0.241370059 -0.241420023 -0.009974347834 -0.007113826794 0.2386121457 0.008358974764 -0.2372559038 0.2332935306 0.004358374011 -0.2327753605 -0.004876544144 -0.001454764161 0.2322854767 -0.004847844727 0.006845144138 -0.2208809833 0.01450941592 0.2096509069 -0.2126189595 -0.01165651843 -0.01721505795 0.2240747002 0.01763353323 -0.210736571 0.03534454041 0.2059399328 -0.214684478 -0.0267551645 -0.01803350716 0.2129831482 0.03879084742 -0.2098078993 0.03887593302 0.2076391454 -0.2080034862 -0.03862774531 -0.02729311286 0.212364009 0.03884416034 -0.2089624901 0.04086282112 0.2121930229 -0.2129826343 -0.04011601966 -0.03543935746 0.216381214 0.04214240454 -0.2146492422 0.04682802437 0.2204730162 -0.2219078448 -0.04539276798 -0.04122400132 0.2241856574 0.04794207138 -0.2250518127 0.0455258782 0.2393971198 -0.2381731895 -0.04671245247 -0.04293028769 0.2352265593 0.04576035676 -0.2427760162 0.0370047282 0.2570407105 -0.2513218507 -0.04261301444 -0.03711685275 0.2454510795 0.0332597785 -0.2570653565 0.03123046943 0.2580806493 -0.2552521452 -0.03390252026 -0.02122283589 0.2560123676 0.02782768246 -0.2546132231 0.01722892097 0.2540647136 -0.2504628506 -0.02069311739 -0.01492590303 0.243816235 0.01393983883 -0.248002261 0.2409608622 0.005369494434 -0.2382772809 -0.008013784191 -0.005414040114 0.2341994251 -0.005398180266 0.007607958674 -0.2127779025 0.01314601524 0.1991228013 -0.2013448502 -0.0110802803 -0.01209706773 0.2068368572 0.01681921775 -0.1989556377 0.02379270131 0.1937256668 -0.1960666007 -0.02162268592 -0.02367641269 0.2015601158 0.02582778998 -0.1963612422 0.03201314447 0.1988650017 -0.2009247176 -0.03004615043 -0.0397575274 0.2087100864 0.0348794739 -0.2037363036 0.04405804274 0.2066327593 -0.2096298008 -0.04106199049 -0.04239016353 0.2121377413 0.0475041459 -0.2087002277 0.03126205507 -0.1060784742 -0.03024868621 -0.04569852356 0.2187718429 0.03124561556 -0.1086813448 0.05065675898 -0.2432493998 -0.05493324529 0.1236312759 -0.04682221452 0.239283656 0.04662017947 -0.2478069028 0.04479060855 -0.2577951344 -0.04665183487 -0.04001497416 0.2603563803 0.04220666497 -0.2611915436 0.03237127972 0.272422755 -0.2685875992 -0.03604471045 -0.03582802356 0.2615545656 0.02860895971 -0.269339998 0.02017342722 0.2683010464 -0.2672940296 -0.02099880905 -0.02179365348 0.2578126127 0.0167609683 -0.2615076593 0.2513029774 0.007594862687 -0.2484076127 -0.01040332055 -0.008177849945 0.2441316893 -0.003184978191 0.004681079657 -0.2044404161 0.01018037227 0.1894236634 -0.1915415622 -0.008241137231 -0.01200082802 0.1964135162 0.01213168059 -0.1891372284 0.01719330062 0.1861234998 -0.1877986478 -0.01569016073 -0.0191360008 0.1902504395 0.01859559919 -0.1890965712 0.02176694606 0.1940724465 -0.194735555 -0.02116444837 -0.02744934154 0.1968500223 0.02194623367 -0.1963234695 -0.09165125689 -0.01309514354 -0.03873365823 0.1982629662 0.09496305097 -0.0197274887 0.02076419997 -0.09599976222 0.0959562529 0.03178081614 -0.09757611157 -0.03016095747 0.02840966208 -0.1027443806 -0.02460574212 0.09894046068 -0.04256513962 0.05413701822 0.0415748711 -0.1089975255 0.03984319022 -0.1211921551 -0.04248112698 0.03258746361 -0.1170824722 -0.03402069107 0.1185156997 -0.03221413435 0.130620534 0.0305433952 -0.1289497948 -0.2558205496 0.2621181353 0.05010152928 -0.02865690551 -0.02774220946 0.04850734011 -0.2531727312 0.03783015692 -0.2727724602 0.02912052348 0.2845083521 -0.2813493491 -0.03213469419 -0.0343417865 0.2769233008 0.02602510344 -0.2825230044 0.01675816882 0.2823465878 -0.2791001329 -0.01981343602 -0.02357619374 0.2719258106 0.01363424154 -0.2755450896 0.2618617085 0.005814898158 -0.259433433 -0.008124265043 -0.01031390661 0.2541592854 -0.0002702529633 0.001387037363 -0.1988674533 0.005431433571 0.1827157848 -0.1842906146 -0.004042428087 -0.006230342642 0.1876917957 0.006769377526 -0.1818709579 0.009966341805 0.1809525777 -0.1819977016 -0.009090981083 -0.01247155033 0.1844549149 0.01057772198 -0.1841027118 0.1938991979 -0.1935123419 -0.01085172744 -0.01741879941 0.1934738477 0.01516346811 0.1960156663 -0.01538980109 -0.194128931 0.1939931471 0.007336320033 0.007962932003 0.01007726246 -0.1950940031 0.009148077585 0.009606526275 0.08871266294 -0.009561163281 -0.08656377315 0.08649249287 0.004483922355 0.005193884195 0.01225979489 -0.08683682622 0.1523069835 0.02625275136 -0.1500250169 0.1452879366 0.02127434208 -0.1439967244 -0.02256555429 0.02388533695 -0.1383849668 -0.0259403851 0.140440015 0.02400227829 -0.2830274938 0.01798600864 0.2941724739 -0.2919535919 -0.02007283328 -0.02867701043 0.2876382782 0.01579113855 -0.2934307537 0.009496291248 0.2926249348 -0.2903514084 -0.01157488558 -0.01695167035 0.2853052106 0.007565546908 -0.2866853249 0.2698766384 0.002800641098 -0.2683697623 -0.00417368454 -0.009256370231 0.2641463141 0.002388213872 -0.001522464289 -0.1943897234 0.001642809473 0.1772358184 -0.1785115727 -0.0005562098169 -0.002866405289 0.1812434975 0.002684586448 -0.1762224734 0.004879905881 0.1776786555 -0.178362373 -0.004363830752 -0.007570817507 0.1799996526 0.005111859375 -0.1816407487 0.1966775043 -0.1958323853 -0.00453248662 -0.008934859489 0.1944210509 0.005551885919 0.1990554882 -0.006570987334 -0.1963445649 0.1975366447 0.002002405987 0.002357400125 0.003413425574 -0.1952747648 0.002975445799 0.0004104223443 0.09390796772 -0.00106637186 -0.09252860191 0.09327699987 -0.0001997804228 -0.0001381951882 -0.09170005344 7.835011074e-05 -6.327463953e-06 0.1580830314 0.007324355267 -0.1584040272 -0.003725833935 0.1503486713 0.007881888823 -0.1505858679 -0.007644692296 -0.1494340898 0.01266121834 -0.0133821286 0.1501550001 0.006758009384 -0.286377166 0.004840533165 0.2992944462 -0.298200556 -0.005803902165 -0.01781877663 0.2956928278 0.003881025698 -0.3002698163 0.0005201996417 0.299180865 -0.2979092848 -0.001595766228 -0.01151958625 0.2946682304 -0.0004870558907 -0.2939014046 0.2742779178 -0.002332863898 -0.2737340852 0.001925676166 -0.004572825684 0.2715255119 0.004025849508 -0.00319824167 -0.1903907694 -0.0003417683682 0.1724591439 -0.1736004044 0.001289911709 -0.0002592295908 0.1759862332 0.0005192117667 -0.171569663 0.001952424728 0.1757535325 -0.176152538 -0.001719076142 -0.003820223104 0.1771003912 0.001876960026 -0.1807355046 0.2009266517 -0.1997936249 -0.0006694003024 -0.003487405957 0.1976591584 0.0001749741676 0.2037130848 -0.001390186909 -0.2012186684 0.2024043821 -0.0005988534086 -0.0004118861475 -0.1999992667 0.0001339503373 -8.843758846e-05 0.09780609437 0.001548689638 -0.0009530372238 -0.0009936272346 0.04862589279 -0.0485259127 0.001098601836 -0.04820973532 0.0009414090289 0.04831372866 0.1504663471 -0.007166018737 -0.1517395366 0.1455391214 -0.003945327087 -0.1465790247 0.004985230393 -0.1487464674 -0.0003970299054 0.0009081604887 0.1482353368 -0.008045446318 -0.284189519 -0.007527762179 0.3007747232 -0.3006547325 0.007547180261 -0.003097515491 0.2996806795 -0.007763107136 -0.303524369 -0.008504320991 0.3019813017 -0.3015814316 0.008300337931 -0.0008698582403 0.3000675296 -0.008624092141 -0.2972914705 0.2740974553 -0.007395522211 -0.2745800636 0.008005925927 0.001877846896 0.2748735181 0.00601879086 -0.005312837723 -0.1863725046 -0.00260529486 0.1680932283 -0.1692211924 0.003536584439 0.001636667089 0.1713435761 -0.001729086253 -0.1676383104 -0.0002420486861 0.1747021636 -0.1750979904 0.0004753244122 -0.001226603517 0.1754150058 -0.0003549361288 -0.1810410605 0.2060779292 -0.2046267931 0.001850770191 8.491211279e-05 0.202117056 -0.003246745461 0.2084836396 0.002060829574 -0.2058542653 0.2069793403 -0.002258977431 -0.002112843031 -0.2047255564 -0.00173938801 -0.00188839562 0.1004348573 0.003054970974 -0.001654445927 -0.001686099507 0.04994900205 -0.04988200899 0.001762937982 -0.04966821559 0.001645860269 0.04973939143 0.1393429492 -0.014026491 -0.1407320527 0.1371719147 -0.01047597251 -0.1382485044 0.01155256225 -0.1414713813 -0.008726261274 0.009717059558 0.140480583 -0.01883979294 -0.2809644888 -0.02122082844 0.3022603482 -0.3010441352 0.02015975437 0.01197812436 0.3015507526 -0.0174898963 -0.3045685667 -0.01478727124 0.3012914149 -0.3020260094 0.01571492031 0.009386340763 0.3019095922 -0.01365717303 -0.2968109229 0.2698660624 -0.009983775037 -0.2710676014 0.01129638267 0.007857198298 0.2736152484 0.007469922871 -0.007547517845 -0.1820272911 -0.003474718281 0.1601884254 -0.1649708385 0.008050603148 0.002448001508 0.1670254722 -0.002642379415 -0.164009731 -0.001412107123 0.1746126699 -0.1748959342 0.001537232246 6.984767692e-05 0.1745846392 -0.001671823432 -0.1823712602 0.2126057907 -0.2109462608 0.003576054918 0.002424109507 0.2075874269 0.2132738771 0.004481084716 -0.002809742946 -0.002876466346 0.1056239567 -0.003526812259 -0.1053265773 0.003229432926 -0.2092648716 -0.003117955922 -0.003225659522 0.1050765965 0.105372225 0.1026230771 0.004455146779 -0.002351327554 -0.002391192593 0.05093920518 -0.05088084732 0.002468498857 -0.05069998736 0.002319642272 0.0507611996 0.1289301696 -0.01549194504 -0.1301263066 -0.2615062309 0.2573168747 -0.02450528972 0.01432300957 0.01437163639 -0.2658694825 -0.02423923596 0.0143124167 0.01429007078 -0.02425049852 -0.2807574154 -0.02218197502 0.3021937496 -0.3027498216 0.02291139969 0.01736074508 0.3014607174 -0.02527405946 -0.3011172482 -0.02357478977 0.2982564579 -0.2993070112 0.02481059968 0.02084439716 0.3013320456 -0.0219577267 -0.2926740561 0.260324377 -0.0139632829 -0.2634802846 0.01720269064 0.01641705287 0.2651196051 0.02093778776 -0.02006179776 -0.1769453892 -0.0176636101 0.1597482046 -0.160640045 0.01835379822 -0.002979720499 0.163377014 -0.0171557121 -0.1605654686 -0.01723683759 0.1758868713 -0.1757003861 0.0169004549 0.001498562913 0.1753277483 -0.01791960043 -0.1849868597 0.2199943666 -0.2184570848 0.0203536885 0.003759159565 0.2143568043 0.2182983976 0.005670619879 -0.003473658863 -0.00348614249 0.1083717256 -0.004190799467 -0.1080162101 0.003835283947 -0.1069527591 -0.004050312127 0.003698294493 0.1073047767 0.05280454465 0.002841802061 -0.002958570915 -0.0526877758 0.05221049025 -0.0521158847 0.003163897008 -0.05186976158 0.003061685741 0.05195243959 0.05675202028 -0.01112492893 -0.05707454505 0.0584342935 -0.01016379516 -0.05882294945 0.01055245111 -0.01106877383 0.01143632096 0.05944849284 -0.01975640688 -0.2400697844 -0.02390264972 0.2737496675 -0.275304308 0.02555199982 0.02416737292 0.2725607457 -0.02647921393 -0.2817268329 -0.03326608659 0.3035605593 -0.3024375387 0.03232894819 0.02759462006 0.3014782939 -0.02788855753 -0.3045465737 -0.02176811921 0.2913423838 -0.293445107 0.02404111219 0.0226556994 0.2963457421 -0.01939078996 -0.2853744025 0.2471556402 -0.01302750805 -0.2512642355 0.01718584546 0.01434697851 0.2579401777 0.01875440727 -0.02113934065 -0.1783314931 -0.02577190459 0.160292963 -0.1594216223 0.02470570851 0.01178966863 0.1592239961 -0.02629589735 -0.1586653697 -0.02421770583 0.1707953085 -0.1722956373 0.02555642224 0.009738856602 0.1749898373 -0.02218412914 -0.1811566732 0.2092309944 -0.2136359563 0.01586917862 0.006350405664 0.2196924291 -0.00723875607 0.2237508392 0.006029556278 0.2232403019 -0.004284008274 -0.1109901322 -0.1108771658 -0.004327751668 -0.1101584381 -0.004345726198 0.00399071257 0.1105134518 0.1102797168 0.005928626343 -0.003190172531 -0.003185842762 0.05508127223 -0.003493080912 -0.05490832538 0.003320134063 -0.0545397075 -0.003407136078 0.003298998465 0.05464784512 0.1123115826 -0.01256493615 -0.1122036654 0.1148379666 -0.01244001529 -0.1150025818 0.01260463054 -0.0149366233 0.0153738443 0.1157040967 -0.02805327992 -0.2441809788 -0.03518029222 0.282136898 -0.2806246692 0.03379560165 0.02582211014 0.2750832631 -0.03570784919 -0.2901840923 -0.03308338681 0.3029657516 -0.3042589725 0.03457078391 0.02767412265 0.3028227868 -0.0367481739 -0.297632105 -0.0323153678 0.2809234806 -0.2836692399 0.0352030097 0.03028174232 0.2893708828 -0.02175166325 -0.2760528792 0.2321150596 -0.009680923089 -0.2354310871 0.01300762425 0.01460377281 0.2438157891 0.02289354777 -0.0284916604 -0.1921355527 -0.04248805128 0.1709449948 -0.167048969 0.03843098367 0.02881905997 0.1617985156 -0.0457745749 -0.1636270108 -0.05019160021 0.1684239794 -0.1680782969 0.04968093732 0.03153408281 0.1694531501 -0.0497240501 -0.1736470152 -0.04310292497 0.1935165474 -0.1965702441 0.04606119586 0.02183550806 0.204677824 -0.03967476841 -0.2044769143 -0.03000065592 0.2195663017 -0.2225348052 0.03294381469 0.008770874998 0.2268300619 -0.02581582158 -0.2219359144 -0.0331606541 0.2325458501 -0.2293020047 0.02992364491 0.01551791846 0.224475989 -0.1111271829 -0.03699178363 -0.2341228074 -0.04937575087 0.2578469557 -0.2538611373 0.04545135875 0.02185470316 0.2435483098 -0.05262566016 -0.2622986714 -0.05637871221 0.286479294 -0.2861670868 0.05620677257 0.03863875483 0.2837531124 -0.0554566405 -0.2918035943 -0.04676425606 0.2925086668 -0.2961221549 0.05054593692 0.03900843069 0.3012542096 -0.04227644114 -0.292674837 -0.02607384572 0.2627033796 -0.2683078727 0.03177711528 0.02827704433 0.2774201673 -0.02027064737 -0.2564085297 0.2270136067 -0.01109718497 -0.227645606 0.01172918431 0.01428444065 0.2292262233 0.01363314113 -0.02193035023 -0.2187031745 -0.04577032921 0.1955906722 -0.1881149252 0.03819573348 0.04014035665 0.1757524161 -0.05274091374 -0.1817044774 -0.06879731288 0.179476586 -0.1751553914 0.06434177779 0.05499756214 0.1696610787 -0.07231073372 -0.1768415799 -0.07780813257 0.1910977409 -0.1900869572 0.07669201264 0.05489761843 0.1913468499 -0.0783878052 -0.1963137004 -0.07258648876 0.2057903134 -0.2095694951 0.07631860848 0.04534767547 0.2166000288 -0.07083569022 -0.2054853451 -0.07874471537 0.2397261832 -0.2389476441 0.07797995282 0.04282789119 0.2352998941 -0.0793997816 -0.244554827 -0.07990297423 0.2634121918 -0.2636133702 0.08018068629 0.05508171308 0.26079491 -0.07895039504 -0.2695326561 -0.0708660419 0.2784954743 -0.2819828342 0.07447758169 0.06210497509 0.2859520189 -0.06628211983 -0.2834557181 -0.04764122913 0.2700557614 -0.2768595264 0.05456003759 0.05319897714 0.2881063363 -0.04021235615 -0.2707337392 -0.01662415821 0.234259058 -0.2421235335 0.02451977167 0.03145526359 0.2564318446 -0.01207654751 -0.2302586124 0.2247506469 -0.01045342134 -0.2252771004 0.01097987486 0.01156524553 0.2264081195 0.009630210563 -0.01004873544 -0.2363309159 -0.02480233983 0.2315366946 -0.2219598435 0.01520585557 0.03472304418 0.2038130801 -0.03422038786 -0.2136501335 -0.0596769299 0.2060329167 -0.1982260889 0.05179866477 0.0642625579 0.1848175516 -0.06682771604 -0.1964143644 -0.08292108862 0.2040002027 -0.1998388188 0.07868749067 0.08082400148 0.1931628835 -0.08522794905 -0.2020728697 -0.08785238152 0.2038944417 -0.201619435 0.0855411979 0.0822955752 0.2027236754 -0.09188839173 -0.2097812704 -0.09328865552 0.237683134 -0.2387204175 0.09434045893 0.08629881363 0.2398644365 -0.09176097223 -0.2436614473 -0.08282151945 0.2534030235 -0.2570855786 0.08656381748 0.08546101113 0.2622043078 -0.07827033013 -0.2601047132 -0.05982163129 0.2555729936 -0.2624181323 0.06674219673 0.07562654115 0.2740200431 -0.0522514704 -0.2604824794 -0.02667083705 0.237112279 -0.2459321869 0.03553023661 0.05221626682 0.2625560006 -0.01770407958 -0.2382770258 -0.01140700476 0.223570495 -0.224013295 0.01184980477 0.02002013736 0.2269771016 -0.01096448078 -0.2238223001 0.222886847 -0.009656797124 -0.2233178624 0.01008781246 0.01076393156 0.2242488942 0.00889492277 -0.009243065303 -0.2378968833 -0.01027810669 0.2375022468 -0.2371599492 0.009935809134 0.01065740369 0.2364163476 -0.01061688483 -0.2368494423 -0.01614587781 0.2362127733 -0.2316592709 0.01158798562 0.04337559568 0.2143439492 -0.02399569122 -0.2273438039 -0.04313019051 0.223020086 -0.2179446571 0.03803289076 0.07238668117 0.2084469654 -0.04690151526 -0.2126784573 -0.05870263245 0.2198343286 -0.215861714 0.05471637495 0.08189316851 0.2074542931 -0.06102715701 -0.2237807051 -0.05947581407 0.2321608622 -0.2336400615 0.06096314717 0.09061751336 0.2364526633 -0.05706311823 -0.2358519632 -0.04447665285 0.234550124 -0.2395773273 0.04952631066 0.08132188059 0.2491554401 -0.03865216224 -0.2393578724 -0.01763734073 0.2256028221 -0.2330274436 0.02507214409 0.05929799733 0.2482710213 -0.0129213887 -0.2288889784 -0.01153108376 0.2231142763 -0.2234230996 0.01183990707 0.02679840433 0.228194359 -0.01121046996 -0.2231341436 -0.01019849958 0.2220567903 -0.2224005405 0.01054224978 0.01151154309 0.2231555149 -0.009850650509 -0.2222029186 0.2213664594 -0.008797180185 -0.22171791 0.009148630793 0.009851907502 0.222477008 0.008125291815 -0.008415000338 -0.2391998218 -0.009259685984 0.2387027024 -0.2384258119 0.008982795441 0.009694926295 0.2378265743 -0.009532011821 -0.2380996953 -0.01031504155 0.2373371623 -0.2370853627 0.01006324192 0.01097297897 0.2365236764 -0.01053595731 -0.2367558663 -0.01058393413 0.2298101475 -0.2299266124 0.01070039906 0.02257960102 0.2283164545 -0.01051435574 -0.2233672061 -0.01173470004 0.227953018 -0.2275425073 0.0113241893 0.04031725721 0.2233940844 -0.01184970088 -0.2304192001 -0.01186474292 0.2288521878 -0.2288540898 0.01186664483 0.04579747833 0.2307028978 -0.01183264987 -0.2281541123 -0.0115905784 0.2260809346 -0.2261848338 0.01169447752 0.03444165051 0.2295780728 -0.01146572093 -0.2255842874 -0.0109786949 0.2237931879 -0.2239730936 0.01115860053 0.01345252527 0.2243728801 -0.01078291423 -0.2235016185 -0.01011267855 0.2220696784 -0.2223056115 0.01034861165 0.01144606422 0.2228263129 -0.009865967133 -0.2219708435 -0.009074001605 0.2208697515 -0.2211411221 0.009345372188 0.01023201269 0.221733292 -0.008796826699 -0.2209239889 0.2201220558 -0.007940866709 -0.2204104283 0.00822923919 0.00891543957 0.2210317435 0.007372726221 -0.007614922568 -0.2402860118 -0.008310519497 0.2396799791 -0.2394535656 0.008084106014 0.008754174256 0.2389657492 -0.008531583375 -0.2391077474 -0.009145608774 0.2381864235 -0.237994808 0.008953993255 0.009776182868 0.2375715115 -0.00930327017 -0.2375352062 -0.009263796308 0.2293706116 -0.2294778659 0.009371050634 0.01034647861 0.22969742 -0.009258522635 -0.2232038228 -0.01022118025 0.2291426832 -0.2288969408 0.009975437921 0.01097443739 0.2283080686 -0.01027298833 -0.2307657983 -0.01026628908 0.2288231694 -0.2288336086 0.01027672821 0.01144024363 0.228847939 -0.01023614232 -0.2280308929 -0.01003849985 0.2257220381 -0.2258044343 0.01012089604 0.01127353269 0.2259832378 -0.00994077987 -0.225129488 -0.009562659574 0.2231794988 -0.2233190147 0.009702175454 0.01077177753 0.2236249087 -0.009410614674 -0.2227892546 -0.008886675679 0.221258261 -0.2214434329 0.009071847577 0.01001310694 0.2218480943 -0.008692046056 -0.221067486 -0.008059551006 0.2199222463 -0.2201403659 0.008277670525 0.009068582283 0.220613166 -0.007835181685 -0.2198990734 0.2190947901 -0.007131612177 -0.2193336378 0.007370459879 0.008010093482 0.2198465617 0.006663960664 -0.006867789726 -0.2411964178 -0.007447327323 0.2404857959 -0.2402980688 0.007259600264 0.007872146036 0.239895795 -0.007629586764 -0.2399304951 -0.008120957389 0.238842206 -0.2386932125 0.007971963848 0.008698544526 0.2383661228 -0.008235448167 -0.2380965299 -0.008151256674 0.2289720954 -0.2290660569 0.008245218162 0.009074166234 0.2292658371 -0.008187050541 -0.2232477417 -0.008962455086 0.2298785743 -0.2297259996 0.008809880349 0.009669358477 0.2293607332 -0.008985597222 -0.2309237746 -0.00895634305 0.2287653577 -0.2287818647 0.008972850105 0.009929199179 0.2288109242 -0.008926278624 -0.2279104971 -0.008757173479 0.2254285523 -0.2254971782 0.008825799392 0.009775848504 0.2256435993 -0.008677097112 -0.2247671952 -0.008372292432 0.2226933666 -0.2228053523 0.008484278091 0.0093792382 0.2230478155 -0.008250439534 -0.2222296791 -0.007829775705 0.2206117368 -0.2207607011 0.00797873998 0.008784218489 0.2210832471 -0.007672701547 -0.220348962 -0.007157883508 0.2191526508 -0.2193310072 0.007336239928 0.008032351631 0.2197151113 -0.006973440516 -0.2190648186 0.2182384592 -0.006388259585 -0.2184382664 0.006588066827 0.007168828561 0.2188658759 0.00600856303 -0.006181597655 -0.241964734 -0.006670471661 0.2411596022 -0.2410017211 0.006512590573 0.007063688159 0.2406652819 -0.006823090429 -0.2406125559 -0.007221647893 0.2393553823 -0.2392384164 0.00710468197 0.007742816244 0.2389823331 -0.007304446607 -0.2385040351 -0.007207024832 0.2286473127 -0.2287200628 0.007279775001 0.007987844133 0.2288828232 -0.00727486558 -0.2234417135 -0.007897981926 0.2303362809 -0.2302412516 0.007802952682 0.008542034685 0.2300140326 -0.007906242983 -0.2309912216 -0.007861952144 0.2286894939 -0.2287097038 0.007882162007 0.008680009961 0.2287477439 -0.007832042351 -0.2277904152 -0.007682980405 0.2251790779 -0.2252380966 0.007741999122 0.008534817709 0.2253626505 -0.007615217499 -0.2244666716 -0.007362054481 0.2222962093 -0.2223886953 0.007454540459 0.008208630837 0.2225868993 -0.007261746985 -0.2217767985 -0.006916054782 0.220084699 -0.2202071545 0.007038510205 0.007728332401 0.2204702019 -0.006786729833 -0.2197648868 -0.006360555976 0.2185174403 -0.2186655498 0.006508665473 0.007117265057 0.2189826723 -0.006206807442 -0.2183756366 0.2175183348 -0.005714885834 -0.2176869933 0.005883544395 0.006403083285 0.2180466066 0.005411921703 -0.005560357462 -0.2426195737 -0.005978197662 0.2417313433 -0.2415966786 0.005843532957 0.006336848413 0.2413111118 -0.006107715026 -0.2411866991 -0.00643342534 0.2397588567 -0.2396669433 0.006341511882 0.006903214011 0.2394655161 -0.006491993158 -0.2387969025 -0.006402981009 0.2284193258 -0.2284665111 0.006450166282 0.007059103059 0.2285806878 -0.006494134274 -0.2237508863 -0.006992302465 0.2306227865 -0.2305630463 0.006932562174 0.007571845935 0.2304207843 -0.006992098436 -0.2310102062 -0.006937939999 0.2286027154 -0.2286251601 0.006960384654 0.007635784122 0.2286686199 -0.006908384527 -0.227671254 -0.006774346257 0.2249613686 -0.225013288 0.006826265608 0.007497226318 0.2251220375 -0.006715617662 -0.2242099816 -0.006500303547 0.2219633564 -0.2220415263 0.006578473459 0.007220849677 0.2222077238 -0.006415876261 -0.2214008191 -0.006126075951 0.2196462913 -0.2197488637 0.006228648362 0.006823281067 0.2199677656 -0.006017709679 -0.2192807856 -0.005659482769 0.2179852123 -0.2181099659 0.005784236447 0.00631708313 0.2183757588 -0.005529622232 -0.2177982773 0.2169064184 -0.005111439132 -0.217050263 0.005255283716 0.00571837635 0.2173559092 0.004877549176 -0.005006330965 -0.2431837354 -0.005367904878 0.2422227806 -0.2421065361 0.00525166043 0.005689992926 0.2418610543 -0.005478906261 -0.2416758724 -0.005745890109 0.2400750472 -0.2400031973 0.005674040151 0.006167706477 0.2398453612 -0.005785856531 -0.2390017094 -0.005718722683 0.2282968986 -0.2283177134 0.005739537503 0.006263644561 0.2283788235 -0.005824604146 -0.2241401387 -0.006221378938 0.2308039811 -0.2307661125 0.006183510415 0.006736313021 0.2306760941 -0.006215889322 -0.2310007665 -0.006155328165 0.228509385 -0.2285331508 0.006179093976 0.006754675254 0.228579862 -0.006126262778 -0.2275537115 -0.006003928593 0.2247676982 -0.2248141723 0.006050402701 0.006621925061 0.2249109279 -0.005952066393 -0.2239858886 -0.005765354535 0.2216785753 -0.2217459294 0.005832708689 0.006382351234 0.2218881489 -0.005692945852 -0.2210820906 -0.005445739444 0.2192752034 -0.2193625631 0.005533099098 0.00604627046 0.2195478735 -0.005353488423 -0.2188727125 -0.005048096148 0.2175331568 -0.2176396448 0.005154584176 0.005619810052 0.2178654115 -0.00493703585 -0.2173083289 0.2163811314 -0.004577636925 -0.2165050753 0.004701580776 0.005111424458 0.2167674475 0.004403105597 -0.004516011837 -0.2436751028 -0.004831962651 0.242649272 -0.2425480782 0.004730768809 0.005116043285 0.2423350143 -0.004927693239 -0.2420961293 -0.005146573425 0.2403209531 -0.2402652505 0.00509087089 0.00552183883 0.2401425303 -0.005172716455 -0.2391394161 -0.005133771918 0.2282741867 -0.2282712435 0.005130828635 0.005579504123 0.2282823565 -0.005247321266 -0.2245770838 -0.00556310798 0.2309181153 -0.2308944757 0.005539468327 0.006014419137 0.2308377429 -0.005554024563 -0.2309730233 -0.005489616595 0.2284124831 -0.2284369121 0.005514045625 0.006003914768 0.2284853944 -0.005461169753 -0.2274383331 -0.005348299292 0.2245928779 -0.2246350351 0.005390456452 0.005876495524 0.2247223847 -0.005301821143 -0.2237868912 -0.005137324703 0.2214307457 -0.2214897145 0.005196293452 0.005665169931 0.2216135007 -0.005074235497 -0.2208071304 -0.004860176953 0.2189563055 -0.2190317974 0.004935668918 0.005376159927 0.2191910672 -0.00478054064 -0.2185235461 -0.004516863424 0.2171444207 -0.2172364216 0.004608864378 0.005011665311 0.2174305825 -0.00442079025 -0.2168875747 0.2159258234 -0.004108746684 -0.2160336537 0.004216576937 0.004575056095 0.2162610825 0.003983155287 -0.004083011074 -0.2441072591 -0.004361071755 0.2430218346 -0.2429332354 0.004272472543 0.004609367749 0.2427470871 -0.004443970238 -0.2424590684 -0.004623620926 0.2405109911 -0.2404679787 0.004580608578 0.004955495923 0.2403731599 -0.00464015767 -0.2392283786 -0.004630532713 0.2283365602 -0.228313897 0.004607869462 0.004991239781 0.2282824508 -0.004746592674 -0.2250363079 -0.004998137032 0.23098717 -0.2309732976 0.004984264616 0.005391431863 0.2309389723 -0.004986474591 -0.2309325741 -0.004920043599 0.2283142031 -0.2283388145 0.004944655022 0.005361951915 0.2283879769 -0.00489233642 -0.2273256395 -0.004787412446 0.2244333198 -0.2244719398 0.004826032481 0.005239647827 0.2245516789 -0.004745287036 -0.2236078042 -0.004598506345 0.2212120175 -0.2212643227 0.004650811501 0.005050642253 0.2213735982 -0.004542812554 -0.2205664118 -0.004355080437 0.2186786215 -0.2187446767 0.004421135654 0.004798479024 0.2188833921 -0.004285497176 -0.218220812 -0.00405527918 0.2168063861 -0.216886726 0.004135619013 0.004482941668 0.2170555934 -0.003971318826 -0.2165222818 0.2155276125 -0.003697884719 -0.2156222473 0.003792519576 0.004104045362 0.215821184 0.003615079635 -0.003704113245 -0.2444906182 -0.003950438151 0.2433491344 -0.2432711332 0.003872436929 0.004166233634 0.2431075937 -0.004022551632 -0.242773861 -0.004170735998 0.2406579612 -0.2406246318 0.004137406647 0.004462741231 0.2405513128 -0.004181010529 -0.2392842215 -0.004199151789 0.2284676822 -0.2284292925 0.004160762088 0.004488334003 0.2283635036 -0.004314309618 -0.2254999805 -0.004514892052 0.2310245163 -0.2310176211 0.004507996818 0.004857066222 0.2309990794 -0.004501330154 -0.2308829024 -0.004434024886 0.228215992 -0.2282404858 0.004458518747 0.004814663921 0.2282896046 -0.00440712093 -0.2272160172 -0.004308991967 0.2242863985 -0.2243220656 0.004344659106 0.004697281901 0.2243954955 -0.004270451199 -0.2234449066 -0.004138031699 0.2210166102 -0.2210635385 0.004184960003 0.004526265291 0.2211611751 -0.004088289738 -0.22035298 -0.003921717525 0.2184339007 -0.2184923692 0.003980186 0.004303369747 0.2186146324 -0.003860226668 -0.2179551839 -0.003657064337 0.2165093049 -0.2165801908 0.003727950211 0.004026908953 0.2167286137 -0.003582954895 -0.216201875 0.2151762304 -0.00334114352 -0.2152600184 0.00342493154 0.003694704967 0.2154355719 0.003294369383 -0.003374367181 -0.2448334343 -0.003593975849 0.243638316 -0.2435692552 0.003524915053 0.003780929577 0.2434247595 -0.00365703802 -0.2430482379 -0.003780292443 0.2407725467 -0.2407464346 0.003754180328 0.004036328406 0.2406892764 -0.003786799701 -0.2393190081 -0.003829936594 0.2286528938 -0.2286022448 0.00377928758 0.004059694895 0.2285094427 -0.003942060777 -0.2259565627 -0.004102081737 0.2310388093 -0.231037037 0.004100309495 0.004400113892 0.2310299827 -0.004087125094 -0.2308264232 -0.004019677731 0.2281187172 -0.2281429134 0.004043873917 0.004348660245 0.2281915584 -0.003993595748 -0.2271096337 -0.003901351424 0.2241501112 -0.2241832759 0.003934516116 0.004235949349 0.2242513943 -0.003865809372 -0.2232954034 -0.003745207555 0.2208401672 -0.2208826944 0.003787734749 0.004079695188 0.2209708628 -0.00370032031 -0.2201615951 -0.003550954706 0.2182158329 -0.2182681354 0.003603257138 0.003880377182 0.218377092 -0.003496043725 -0.2177195075 -0.003314941226 0.2162455465 -0.2163087106 0.003378105364 0.003635429739 0.2164404945 -0.003248895666 -0.2159180275 0.2148634076 -0.003033107152 -0.2149382453 0.003107944856 0.003341258632 0.2150945406 0.003019160703 -0.003091649505 -0.2451424371 -0.003288867826 0.2438954385 -0.243833876 0.003227305308 0.003446872928 0.2437053951 -0.003344396702 -0.2432887823 -0.003448200175 0.2408633704 -0.2408424935 0.003427323301 0.003668321668 0.2407971883 -0.003452752604 -0.2393416289 -0.003517576969 0.2288796495 -0.2288196863 0.00345761367 0.003694478348 0.2287061421 -0.003625566125 -0.2263991371 -0.003753393644 0.2310360282 -0.2310380657 0.003755431065 0.004009502795 0.2310395227 -0.00373742917 -0.2307649713 -0.003670297526 0.2280228807 -0.2280466836 0.003694100408 0.003951660926 0.2280946063 -0.003645011701 -0.2270064975 -0.003557837882 0.2240228393 -0.2240538863 0.003588884842 0.003843345529 0.224117501 -0.00352480516 -0.2231571194 -0.003413943957 0.2206792804 -0.2207181989 0.003452862391 0.003699403112 0.2207985993 -0.003373022605 -0.2199882209 -0.003237659675 0.2180194524 -0.2180667416 0.003284948806 0.003519339575 0.2181648693 -0.00318809839 -0.2175082048 -0.003024961618 0.216008997 -0.2160658652 0.003081829813 0.00330007218 0.2161840625 -0.002965500588 -0.2156641003 0.214582291 -0.002771012378 -0.2146497975 0.002838518813 0.003037095779 0.2147902596 0.002786347726 -0.002852519047 -0.2454231157 -0.003030921253 0.2441256541 -0.2440703678 0.002975634981 0.003160843987 0.2439553367 -0.003080216445 -0.2435011787 -0.003169095791 0.2409372967 -0.2409200781 0.003151877091 0.003354476173 0.2408832022 -0.003173007851 -0.2393585305 -0.003256168622 0.2291373623 -0.2290705348 0.003189341071 0.003386421099 0.2289415512 -0.003359599764 -0.2268243309 -0.003461879365 0.2310204739 -0.2310253721 0.003466777567 0.00367894403 0.2310331976 -0.003445198331 -0.2306999575 -0.003378674565 0.2279287631 -0.227952123 0.003402034511 0.003616628011 0.2279991809 -0.003354140834 -0.2269064938 -0.003271329899 0.2239032194 -0.2239324748 0.003300585238 0.0035123697 0.223992263 -0.003240397431 -0.223028251 -0.003137568795 0.2205311851 -0.2205671433 0.003173527043 0.003378719017 0.2206411509 -0.003099887539 -0.219829595 -0.002975914124 0.2178407375 -0.2178839536 0.003019130205 0.003214416577 0.2179732539 -0.002930698665 -0.2173167551 -0.002782187224 0.215794678 -0.2158464125 0.002833921756 0.003016093326 0.2159535015 -0.002728108831 -0.215434658 0.2143273322 -0.002551157711 -0.2143887817 0.002612607258 0.002778676179 0.2145161671 0.002591641619 -0.00265250169 -0.2456798981 -0.002815203104 0.2443334346 -0.2442833535 0.002765122015 0.002918524208 0.2441795283 -0.002859399617 -0.2436903466 -0.002937127823 0.2409998194 -0.2409849961 0.002922304526 0.003089536003 0.2409538041 -0.002941355848 -0.2393743968 -0.003039745035 0.2294173571 -0.2293456615 0.002968049425 0.003128981691 0.2292055584 -0.003138573615 -0.2272310639 -0.003220565359 0.2309953149 -0.2310023627 0.003227613187 0.003401650975 0.2310149799 -0.003203398257 -0.2306324486 -0.003137674497 0.2278364945 -0.2278593904 0.003160570447 0.003336256917 0.2279055244 -0.003113843547 -0.2268094444 -0.003034785824 0.2237900863 -0.2238178254 0.003062524917 0.003235719935 0.2238743753 -0.003005610929 -0.222907275 -0.002909399363 0.220393588 -0.2204271218 0.002942933189 0.003110693774 0.2204958893 -0.002874359511 -0.2196830258 -0.002759618111 0.2176763612 -0.2177162815 0.002799538406 0.00295930786 0.2177984247 -0.002717916741 -0.2171414305 -0.00258124531 0.2155984572 -0.2156460305 0.002628818603 0.002778070872 0.2157440834 -0.002531540684 -0.2152252331 0.2140940897 -0.002368976681 -0.2141505418 0.002425428733 0.002561691732 0.2142670826 0.002432025423 -0.002488702581 -0.2459170187 -0.002638822536 0.2445230018 -0.2444770999 0.002592920727 0.00271804748 0.2443823663 -0.002678974033 -0.2438607517 -0.002748793977 0.2410554141 -0.2410419546 0.002735334461 0.002871121004 0.2410142105 -0.00275403725 -0.2393926472 -0.002864932742 0.2297128075 -0.2296378211 0.002789946293 0.002919034285 0.2294899947 -0.002959375861 -0.2276197048 -0.003025373252 0.2309629973 -0.230971632 0.003034007923 0.003174454203 0.2309878235 -0.003007912571 -0.2305632831 -0.002943093054 0.2277460534 -0.2277684945 0.002965534133 0.003106992454 0.2278137185 -0.002919897663 -0.2267150965 -0.002844004784 0.2236823579 -0.2237088365 0.00287048336 0.00300975474 0.2237626911 -0.002816275602 -0.2227928369 -0.002725422952 0.2202644705 -0.2202960527 0.002757005084 0.002891836964 0.2203605909 -0.002692498691 -0.2195461937 -0.002585098554 0.217523414 -0.2175607202 0.002622404787 0.002750865408 0.2176371628 -0.002546179163 -0.2169790116 -0.00241885178 0.2154166196 -0.2154609141 0.00246314626 0.002583313757 0.215551792 -0.002372584483 -0.2150318462 0.2138780097 -0.002221181415 -0.2139306185 0.002273790215 0.002383864401 0.214038621 0.002307149226 -0.002360503391 -0.2461388451 -0.002500705716 0.2446981978 -0.2446555638 0.002458071705 0.00255643348 0.2445680181 -0.002537756679 -0.2440164517 -0.002602444649 0.2411077224 -0.2410947824 0.002589504704 0.002695804659 0.2410686748 -0.002609216091 -0.2394157795 -0.002730325006 0.2300183105 -0.2299412519 0.002653266356 0.002752702211 0.2297884341 -0.002820807797 -0.2279914375 -0.002874423821 0.230925509 -0.230935269 0.002884183827 0.002993322332 0.230954039 -0.002856829273 -0.2304931842 -0.002792933371 0.2276573296 -0.2276793557 0.00281495952 0.002924585041 0.2277237148 -0.002770280671 -0.2266231477 -0.002696938626 0.2235790191 -0.2236044933 0.002722412818 0.002830183386 0.2236561474 -0.002670350857 -0.22268371 -0.002583669251 0.2201420331 -0.2201721048 0.002613740997 0.002717997368 0.2202332978 -0.002552373988 -0.2194170675 -0.002450586235 0.217379336 -0.2174146488 0.002485899014 0.002585235596 0.2174866521 -0.002413785089 -0.2168266862 -0.002293567493 0.2152458854 -0.2152876843 0.002335366317 0.002428361472 0.2153730068 -0.002249920168 -0.2148509198 0.2136749826 -0.002107078333 -0.2137246305 0.002156726198 0.002241952911 0.2138260898 0.002215354732 -0.002266171936 -0.2463485123 -0.002398881161 0.2448623953 -0.244822198 0.002358683863 0.002430444322 0.2447401545 -0.002433693277 -0.2441610394 -0.002495698921 0.2411597706 -0.2411466315 0.00248255976 0.002559699611 0.241120651 -0.002504397383 -0.2394456447 -0.0026338328 0.2303296251 -0.2302514422 0.00255564983 0.002625789891 0.2300957436 -0.002720848427 -0.2283480236 -0.00276509762 0.2308844964 -0.2308950028 0.002775603958 0.002853811084 0.2309155282 -0.002747497537 -0.2304227613 -0.00268448036 0.2275701308 -0.2275918021 0.002706151649 0.002784474633 0.2276353944 -0.002662263033 -0.2265332222 -0.00259086022 0.2234790826 -0.2235038019 0.002615579524 0.002692455372 0.223553752 -0.002565123864 -0.2225787206 -0.002481509497 0.2200246234 -0.2200535911 0.002510477155 0.002584768932 0.2201122685 -0.002451398689 -0.2192937911 -0.002353661279 0.2172418328 -0.2172757105 0.002387539008 0.002458296253 0.2173444255 -0.002318383197 -0.2166819372 -0.002203280995 0.2150833849 -0.2151233864 0.002243282463 0.002309524561 0.2152045909 -0.002161523083 -0.2146793762 0.2134817931 -0.002024864978 -0.2135293017 0.002072373543 0.002133078725 0.2136258325 0.002154189035 -0.002203147573 -0.2465489635 -0.00233057872 0.2450188039 -0.2449802509 0.002292025716 0.002338417594 0.2449020979 -0.002364004633 -0.2442979114 -0.00242578904 0.2412143539 -0.2412003035 0.002411738698 0.002460892484 0.2411730644 -0.002436797784 -0.2394837666 -0.002573075747 0.230643486 -0.2305649217 0.002494511394 0.002536340216 0.2304079446 -0.002657091446 -0.228691419 -0.002694409402 0.2308412403 -0.2308522093 0.002705378425 0.00275379583 0.2308738544 -0.002676882629 -0.2303524611 -0.002614622977 0.2274841759 -0.227505571 0.002636018114 0.002684363161 0.2275485425 -0.002592721776 -0.2264448799 -0.002522649601 0.2233815777 -0.2234057846 0.002546856477 0.002594223266 0.2234545209 -0.00249748881 -0.2224767398 -0.002415923577 0.2199107158 -0.2199389498 0.002444157558 0.002489858311 0.2199958806 -0.002386595369 -0.2191746601 -0.002291507255 0.2171088282 -0.217141771 0.002324450092 0.002367911971 0.2172082429 -0.002257218722 -0.2165424895 -0.002145439827 0.2149265146 -0.2149653464 0.002184271618 0.002224911847 0.2150437429 -0.002104916799 -0.2145144161 0.2132953465 -0.001972294187 -0.2133414759 0.00201842365 0.002055569989 0.2134346085 0.00211961464 -0.002167744946 -0.2467422768 -0.002291575641 -0.2451329818 0.002254050061 0.002279815085 0.2450570664 -0.002324510488 -0.2444307485 -0.002391197467 -0.2412590689 0.002374153285 0.002399087301 0.2412287665 -0.002406571832 -0.2395316982 -0.00254709398 -0.2308800947 0.002471444281 0.002484224449 0.230722191 -0.002625600527 -0.2290252866 -0.002659565941 -0.2308073656 0.002670079603 0.002693314849 0.2308301086 -0.002642568112 -0.2302822711 -0.002581307621 -0.2274202683 0.002602472879 0.00262386892 0.2274628356 -0.002559594305 -0.2263575651 -0.002490178401 -0.2233093995 0.002514130594 0.002534970407 0.223357463 -0.002465317417 -0.2223766041 -0.002384874865 -0.2198266856 0.002412703204 0.002432707978 0.2198826158 -0.002355976674 -0.2190580656 -0.002262288776 -0.2170108443 0.002294749148 0.0023135862 0.217076052 -0.00222849623 -0.216406221 -0.002118267265 -0.2148110464 0.002156575761 0.00217412741 0.2148878875 -0.002078259781 -0.2143534252 -0.00194635596 -0.2131589096 0.001992593577 0.002009230961 0.2132494301 -0.09079198578 0.000234991199 0.0003649869787 -0.002255658006 0.0007290570321 -0.08982238396 0.0005569991591 -0.09102859591 -0.003023860739 -0.1591011364 0.02057560961 -0.01058927097 -0.01117230152 -0.08193340066 0.08227132128 0.01159135757 0.08283419085 0.009035228343 -0.08271768931 0.1481580634 -0.1437869218 -0.02091005579 -0.02074147342 0.03582474434 -0.01982496806 0.07638135747 -0.02016682252 0.07594375218 0.1496467674 0.03247698627 -0.0009966247937 -0.04810313818 0.000890027649 -0.0008312657687 -0.04775315165 0.000711439991 0.04787297743 -0.09610390609 0.0007864617824 -0.0005997218972 -0.0006430561115 -0.07954267235 0.0002266512969 0.0005909348406 0.0001904460607 -0.08005446199 -0.08140611321 0.08112444286 -0.0004033121449 0.08013677204 -0.002038813259 -0.08047864888 0.08293114731 0.008158745575 0.08289969539 0.005780628362 -0.08295229971 0.08053948605 0.01220518395 -0.005876912539 -0.006439779647 0.08106491164 -0.04959476703 0.001604219747 -0.04936288314 0.001489065759 0.04944215062 -0.09923425207 0.002544318772 -0.001417317441 -0.001446375363 -0.1491031422 -0.01183977021 0.006744899039 0.006574320919 -0.07530754162 0.007327206504 0.07490710239 -0.006926767278 0.07367350004 0.00800938124 -0.007617159682 -0.0740657216 0.07977844077 -0.002550998278 0.07857916556 -0.003901859584 -0.07902140058 0.1548939902 -0.005392199015 0.003482942765 0.003215905672 -0.05063975764 0.002275329783 -0.05044813749 0.002147646111 0.0505205805 -0.1015138071 0.003919052827 -0.002078619021 -0.002107905247 0.01797496735 -0.1372435443 -0.01654477402 0.1362890166 -0.1377301841 0.01941613487 0.1347979334 0.01947697185 0.1454631018 0.008304746985 0.008417758243 -0.07345392903 -0.01576869527 0.008742143847 0.1438692328 0.008620420372 0.1431842983 -0.01434368117 -0.05178006877 0.003033557576 -0.051510049 0.002894963694 0.05159118086 -0.05202004445 0.002636671895 0.0521078518 -0.002724479242 0.006704941096 -0.02933659476 0.0291158297 -0.02928429232 0.006873403715 0.006804699077 0.02896520713 -0.05934914972 -0.01212623371 0.05891495009 0.01280831315 -0.01234425411 -0.05981320875 -0.05934147737 0.006715986986 -0.01649523166 0.01776239186 0.1276093352 0.01094389875 0.1271954943 -0.02048929141 0.1234029804 -0.01903094685 -0.1245729706 0.1334349335 0.01978319032 -0.01814270818 0.019612951 0.1319646907 -0.01683038988 0.1315733299 -0.05444408315 0.003287612168 -0.05344291744 0.0229718853 0.05427404295 -0.05384712606 0.02120260531 0.05439308509 -0.02174856434 -0.007328383225 0.007755047746 0.05171523843 0.00432751458 0.05062737552 -0.008530872613 0.05241496632 -0.008646258968 -0.05222286027 0.02807116496 -0.006987522925 0.0275946724 -0.006592874356 -0.02765880015 0.05662386065 -0.01227583044 -0.02857846179 -0.02869261426 0.006439976418 0.006483069424 -0.1143826108 -0.01698520664 0.1138978028 -0.01161603543 -0.1139639563 0.005257378442 0.005940002484 -0.05338087733 0.0527894949 -0.0067370008 -0.1203462892 -0.01245883479 0.01331802502 0.1194870989 -0.1195348349 0.1182472952 -0.01455911135 0.1169662109 -0.01087835155 -0.117091202 0.1224101343 -0.01844540861 -0.01561269139 -0.1206351768 -0.0133413441 -0.1211778536 0.01417290853 -0.03956833707 -0.007956491346 -0.02692926027 0.08865602505 -0.01839318007 0.09355826561 0.01979796543 -0.02225574098 0.02300251809 -0.0159910062 0.01524422909 0.007418184986 -0.01346712431 -0.01620680165 -0.01453053366 0.02194871865 -0.1041735327 0.1011764358 0.03140675898 0.03351852771 -0.0946452865 0.05210966637 -0.1030183933 -0.04362272657 -0.02864377461 0.04247387205 -0.02114610874 0.007316011302 -0.01843973764 0.01279848112 -0.03793792936 0.03448076033 -0.135649271 0.1395562445 -0.04188030852 -0.1356138653 -0.02109389571 -0.0212316292 -0.1217101536 0.1217583393 0.0325392779 0.03736684989 -0.1244423237 -0.1285671019 -0.03400635079 -0.01056053082 -0.04293114172 0.04437827339 -0.04392722158 -0.01101158262 0.0447893575 -0.01060311074 0.07608514052 -0.07327127133 -0.03253574548 0.02929882062 -0.01600838924 0.07894765896 -0.01615294982 0.07767133612 0.02701573405 0.0149636046 -0.1489249531 -0.01547274136 0.01930565217 -0.02085078178 0.1468330662 0.1542255822 0.02413556686 -0.03336749531 -0.2797122651 0.03027822892 0.2895767112 -0.2852778168 -0.01836073751 0.2924410804 -0.01604516566 0.2799707985 -0.2740392109 -0.02353366839 0.03799304083 -0.02202571704 0.03423505562 -0.1987618988 0.0004967799137 0.0007599458298 -0.003910271035 0.001493819267 0.001191197725 -0.005016108498 -0.09569402184 -0.0003222223622 0.09617404218 -0.09777588925 0.09809769933 0.001172009185 0.0991827762 0.0001214297642 -0.09880742605 -0.09634924088 0.09664163155 0.003121034906 0.001593883044 -0.0973673663 -0.09517751162 -0.0007155483599 -0.001854653042 -0.0493677136 0.001716810495 0.04924620393 -0.04962574522 0.04894499636 0.04635027267 -0.04731826804 0.002576684731 0.04539014233 0.04492396508 0.003292094394 0.001429565864 -0.1495022081 -0.0006738251246 0.005765656721 -0.005747123888 0.1503301385 0.1575930158 0.005125559549 -0.002095734194 -0.01096165835 -0.2871631045 0.01131408607 0.2938245236 -0.2944890203 -0.004531504861 0.2922473738 -0.00256910634 0.2940849937 -0.01139360272 0.01663530114 -0.00915743898 0.01610348035 -0.2035785134 -0.00150013069 -0.001336948278 0.0008050552274 -0.0009138386984 -0.001065347764 -0.0004021929126 -0.0989992648 0.001834871649 0.09933999513 -0.1004883429 0.1007605597 -0.00118605544 0.1016843551 -0.001815378701 -0.1013691071 0.09948883593 -0.0001721093931 -0.0009443853728 -0.100142811 -0.09864079353 0.001621024438 0.04901808649 -0.04892201926 0.001283793861 0.00114853709 0.04872777407 0.001766812873 -0.001056071317 -0.001093259338 0.001685942625 -0.04837096882 -0.0009757147953 0.04864735013 -0.04850936813 0.001547960626 0.04879940458 0.00158456272 0.04800247817 0.001259696808 -0.04790006811 -0.001409666732 0.001311369864 0.04810077503 -0.000743211391 0.04799178072 -0.0007504698262 0.004600999017 -0.04040360419 0.04023933919 -0.0411373744 0.005499034225 0.03965173968 0.005180267025 0.04389368665 -0.04325107161 -0.001548110948 0.04454434189 0.04360794308 -0.001923688862 -0.007776196616 -0.142627362 0.008932177355 -0.005206960966 0.006066027412 0.144680055 0.1491270357 -0.008338691637 0.007875413195 -0.2819534491 -0.005574670181 0.2836928513 -0.2869952524 0.005970853331 0.2799750737 0.007189757275 0.2898822718 0.001417831312 -0.003938223082 0.002879915379 -0.001823557141 -0.2081134032 -0.00292062789 -0.002803742308 0.003937913624 -0.002474048377 -0.002597928163 0.002798773865 -0.1014290681 0.003299264205 0.1017008648 -0.1028237571 0.1030863455 -0.002736636859 0.1039720348 -0.00323449437 -0.1036581683 0.1019508389 -0.002005871785 -0.002558840741 -0.1025238937 -0.1011501248 0.003120253759 0.05020157158 -0.05014292224 0.001921390441 0.001795480948 0.05001459275 0.003227202762 -0.001733554462 -0.001766764261 -0.02529129143 0.001017474067 0.02522854135 0.04981242035 -0.04979039234 0.002047267193 -0.001046801611 -0.001022493586 0.04983333818 0.002083374526 -0.001059599241 -0.001044693117 0.04936781003 -0.04930684713 0.001859001165 -0.002023304024 0.001903016048 0.04948809801 0.04938081757 -0.001062328545 0.01137437351 -0.07181787185 -0.01088759567 0.07142676134 -0.07199093467 0.006020054838 0.07088588333 0.005965662873 -0.03810606101 0.03806921402 -0.005324025027 0.03724631671 -0.005596873952 -0.03750854457 0.07366931224 -0.01022783342 0.00542070607 0.005356633329 -0.003985511459 -0.1066151174 0.003647869802 -0.003658323881 0.003339562583 0.105942718 0.004925349379 -0.003055126761 -0.003086832552 -0.1037600546 -0.002514620566 0.004653807409 0.1040997992 -0.1052049445 0.1055319762 -0.003985355623 0.1065637024 -0.004334917034 -0.1062142969 0.1042494636 -0.003395384779 -0.003838467687 -0.104893289 -0.1034427887 0.004492536031 -0.002383913504 0.05122217906 -0.0511493066 0.002662818495 0.002511317589 0.05101187647 0.004643289708 -0.002450998908 -0.002487667089 0.05140200341 0.05151644996 -0.02482667235 0.001970848474 0.02538620019 -0.05047252395 0.00285184231 -0.001698184794 -0.001647771766 0.02552451979 0.0254421184 0.02552247459 0.001428998694 -0.001482596656 -0.02546887662 0.0504252687 -0.05046152592 0.002450820922 -0.001253617215 -0.001160946493 0.002498286538 0.05038049556 -0.001251282007 -0.001202231385 0.02542437564 -0.02558532126 0.00114936139 -0.03152393331 0.03123425607 -0.007414904027 0.007959867372 -0.007621504228 -0.03186229645 -0.03082422034 -0.01129667891 0.0117109548 0.06528126194 0.06478856662 -0.01257009178 0.06341713469 -0.01227274158 -0.06387431997 0.06685692894 -0.06723825614 0.01220475235 -0.01176985872 0.01225849014 0.06636829752 -0.01131545735 0.06648259965 -0.004342369526 -0.1098089781 0.003992909541 -0.004229487911 0.003874745435 0.1087264681 0.01486144705 -0.003543637297 -0.01277828759 -0.1068544442 -0.00294162297 0.00540643796 0.1072922277 -0.1080326003 0.1084075194 -0.004604406987 0.109984573 -0.004715296519 -0.109611646 0.106925416 -0.004412025697 -0.004562809152 -0.1076605906 -0.002905317423 -0.1064233417 0.005366817211 0.05265901114 -0.05255678298 0.003232659876 0.003190923414 0.05232242393 0.002876758666 0.05290414322 -0.002976357232 0.001364129813 -0.02738894414 0.02746830581 -0.02773279886 0.001628622869 0.02703846711 0.001262677919 0.02704579029 -0.02728942804 0.001441484834 -0.00101016267 0.001325875642 0.02673007731 0.02684139794 -0.005268166593 0.09482765921 -0.09376543001 0.004205937396 -0.005870147287 0.006421871755 0.09388393256 0.005725560202 0.1117011549 -0.006201694702 -0.01149936318 0.01117648662 0.1113792287 0.0817679119 -0.009057370743 0.09111017245 -0.008917498392 -0.08746084066 0.007981245865 0.05262205662 -0.008188336162 0.006714754154 0.05342250158 -0.007059641475 -0.05307761425 0.1104670313 -0.01479763073 -0.05491203235 -0.05531819887 0.007145967526 0.007414863115 0.0425359046 0.000116096192 -0.0003599172516 -0.0003452638392 0.02146901791 -0.02132472553 0.0005210769001 -0.02056023123 0.0004457806366 0.02084192075 0.02364715182 -0.02339924056 0.0008447210475 -0.0221973509 0.000919823202 0.02257235207 -0.04438834288 0.000903647968 -0.0007117339828 -0.0007047520832 0.005950651712 0.03780437886 -0.005853278917 -0.03615216309 0.03624537744 0.005857437363 0.00786912087 -0.03662004435 -0.04009785092 -0.0004910991934 0.02052904036 -0.0004231555106 -0.03928132009 -0.0002414418684 -0.0399476008 -0.001084773077 -0.005124762768 -0.0465802564 0.00502182623 0.0480547736 -0.04802903475 0.04500662216 -0.009888236978 0.009115444547 -0.009020841615 0.04491201923 0.04388307303 -0.0799050895 0.08056081971 0.01505039544 0.01252735376 -0.08157304153 0.02340011119 -0.01223804449 -0.01279372046 0.01650607127 0.08636992556 -0.008643668877 -0.08421685918 0.08476822084 0.01595470962 -0.08348583437 0.01707640734 -0.0864549546 0.08650234341 0.009364820548 -0.004502309422 -0.004909899942 0.01047596782 -0.08615123873 -0.005230081957 -0.005549601726 -0.04441404836 0.04488150257 0.005757331265 -0.0474006627 -0.0006381042036 0.001187984255 0.04754101919 -0.04765327687 0.04777018165 -0.0009481705501 -0.001106962808 -0.04799211752 0.0006025373642 -0.0471257468 0.04725894823 -0.0007357387972 0.0007627703438 -0.0008755257446 -0.04754052147 -0.0006757880393 -0.04723132842 0.001157863945 0.0004841265838 -0.0004814251325 -0.0005051901052 -0.04763701101 0.0006466297079 -0.09456622915 -0.0006394489695 0.04752527785 0.04760236099 0.04684140887 0.001215341429 -0.000638095409 -0.0007603974238 0.02280122297 -0.02268416719 0.0008344908307 -0.02279907069 0.0005909204249 0.02273502245 0.02497915592 -0.02513878999 0.0005844138328 -0.02557793759 0.0005832628081 0.02543857655 -0.02397345713 0.0006918240576 0.0239621946 -0.0006805615192 0.0458455913 0.0009636488388 -0.0006331899407 -0.0005337276002 0.02365280814 -0.02370885815 0.0005764414321 0.0007433581845 0.02374262886 -0.0228723998 0.0005841371111 -0.02309018329 0.0005673261954 0.02301672163 -0.04638058268 0.001071788184 -0.0005783484209 -0.0005915196796 0.0008723958308 -0.04186797165 -0.001320244098 0.04262636629 -0.0420284391 0.0489359753 -0.000914479168 0.0491065063 0.0488938497 -0.0005617207952 -0.08239748791 0.08218093963 0.002146583369 0.0002056589174 -0.0816856123 0.000959474951 -0.07972726564 -0.0007748816683 0.04486415396 -0.001290428569 -0.04628713468 0.04249691227 0.000178143091 -0.04261286126 -6.219410153e-05 -0.04298227907 0.000823886499 -0.0007283930313 0.0428867856 -0.0824566512 0.08219822903 -0.003089922855 0.001756470258 0.001591874773 -0.002515505123 -0.08272661124 0.001440012049 0.001345453114 -0.04124956515 0.04145035897 -0.001288803108 0.04349384774 0.003203267301 -0.04391430611 -0.08633060162 0.08607981733 0.007309277558 -0.003436001589 -0.003622491687 0.008293571465 -0.003909475319 -0.004212354347 0.0009969215818 -0.04302009769 -0.0009591029587 0.001705942012 -0.04304539844 -0.001674893858 0.04301435028 -0.0456264463 0.04688912605 0.002731103348 0.005085257425 -0.004994105105 0.08044833374 0.08281310457 0.005020575196 0.002812497539 -0.08256191444 0.001828950031 -0.04911252943 -0.0009122811339 0.04925721808 -0.0492139617 0.001785693654 0.001814676229 0.04891396929 0.001615140404 -0.001718538029 0.001633533168 0.04899897415 0.04907700522 -0.0009544550821 0.002367865302 -0.001337784435 -0.001362822173 -0.04928088027 0.001454563604 0.001331782873 0.04910659266 -0.0009703824812 0.02493770405 -0.02553451021 0.02561226944 -0.001048141712 -0.02531810614 -0.001311597995 -0.02423710263 0.02412179279 -0.0007760474449 0.0008745295488 -0.0007572279368 -0.02435440424 -0.02446100798 -0.0007532148892 -0.02398552436 -0.02445719878 0.0006115208342 0.0005874422942 0.02480978426 -0.02494240014 -0.001555571851 0.001211861581 -0.001641901569 -0.02451236016 -0.02437865348 -0.03791870967 -0.009639202936 0.005303594724 0.005162058024 -0.03814535637 -0.03925090963 0.03858295773 -0.0056253824 -0.005263317393 -0.03803675672 0.03951079783 0.00442253965 -0.004081839661 0.003899323697 0.03969331379 0.03930954845 -0.07696325098 0.07655667918 -0.005831979326 -0.006725246671 -0.07571053809 -0.01082390061 0.006273188981 0.006044188388 -0.007900425634 0.004044402142 0.07762477177 -0.07770204473 0.07724814819 -0.007446529095 -0.07818072816 -0.007139974876 0.07387652352 -0.0743018788 0.00843473652 0.007776332104 0.07515988129 0.004669112862 0.0759260567 -0.008768879844 0.04220315124 -0.002687750906 -0.04246627327 -0.08189181072 0.08140165987 -0.004270874838 0.002543389627 0.002217636061 -0.003666179296 0.002100251724 0.001872345874 -0.07869041759 -0.006838421386 -0.006428669689 -0.07919780238 0.0035196831 0.003416371382 -0.0402845218 0.04016189891 -0.00354473504 -0.00691878421 0.004297341116 0.004064632813 0.07821267944 -0.00439441966 -0.005450569766 -0.0773880755 -0.02603746412 0.001396641243 0.02622816834 0.0504670643 -0.05035738155 0.002431082478 -0.001350035171 -0.001190730056 0.00243192907 -0.001280449915 -0.001145940775 0.04985841728 0.002124533493 -0.00107782596 -0.001071786631 0.002162221262 0.04988238304 -0.001086720054 -0.001099466967 0.02477873121 -0.02484874376 0.001080665649 0.003744659979 -0.001985315808 -0.002024392704 -0.05038504564 0.002092194148 0.001963874229 0.05025986702 -0.0008555212648 0.02496098234 0.0009927763013 -0.02522892195 0.02500450113 -0.0006311004431 -0.02545104921 -0.000625791443 -0.02728038342 0.02695627199 0.0009658405566 -0.02756667098 -0.02706167179 0.001126391027 -0.0009999420131 0.02433014067 -0.02402789876 0.02398276887 -0.0009548121247 -0.0008264602234 -0.02567175112 -0.0006190146406 0.000832274813 -0.0006117603182 -0.02589226562 -0.02550495323 0.0009667779241 0.01178473198 -0.06818473681 -0.01139612734 0.06773135659 -0.06813042503 0.01218380042 0.01232200393 0.07045602764 0.00598309917 0.00600563281 -0.01158862126 0.01201736203 0.07002728687 0.06996010531 -0.01115038731 0.002158942643 -0.02768093412 0.02735599199 -0.0271274134 0.00193036406 0.001639286492 0.001467333916 0.02551827666 -0.001463135992 0.001444451609 -0.001434369898 -0.02549486694 -0.02644159111 0.001170266418 0.002592552176 -0.002681395957 -0.05193120067 -0.05143548376 0.002849109475 0.0027094388 0.05129149652 -0.0007623855653 0.02695694267 0.001100891936 -0.02683423969 0.02638959795 -0.02729329987 -0.0007078334822 0.02614484714 0.0009763192312 -0.02661890853 0.02627959701 -0.02729126662 0.003482293023 -0.02610291761 -0.02633218488 0.002582580042 -0.06261482734 -0.0208793235 0.01105773011 0.01119953132 -0.06240470347 -0.06174062577 0.06136682166 -0.01162782422 0.06024490727 -0.01096456224 -0.06060829848 0.06303824977 -0.01224555135 -0.01173452343 -0.06215609268 -0.01075698136 -0.06294822876 0.01109038279 -0.007045851878 0.03083457449 -0.0310791097 0.0310587613 -0.007025503475 -0.007159850349 -0.001002071763 0.001246822193 0.02302035357 0.001658426354 0.02701666213 -0.001574076564 0.003590355663 0.05404112564 -0.02705083914 -0.0269263314 0.02658361957 0.001095559492 -0.0005604091778 0.001031406863 0.01224002886 -0.01250119438 -0.05358596055 -0.05302611842 0.01324590828 0.003225234668 0.05276296456 0.05268535468 -0.05307775377 0.009926818381 -0.009027869602 0.00953109653 0.05218212775 0.05332804172 -0.008530029195 -0.00667057308 0.03325153285 -0.01423736972 -0.0167899948 -0.003870016591 0.003619178632 0.01653197765 0.01205522918 -0.00117333529 0.01058405695 -0.0550601579 -0.01014979468 0.05358615337 -0.05392103176 0.005538032758 0.005380902587 0.01044677236 -0.1944541847 0.00416903614 0.004689361875 -0.01218964738 0.006148014524 0.005580595195 -0.01259565326 -0.09120663814 -0.005479827879 0.09169217381 -0.09533970667 0.09542534169 0.0060623795 0.003780648387 -0.09596085313 -0.09553717178 0.09529939755 0.01031503669 0.007174972313 -0.09517835895 -0.09083135581 -0.006761261728 -0.08705365195 0.002319111182 0.08788907356 0.002658415767 -0.007553113042 0.003689060706 0.003302893262 -0.007873376697 -0.03967473103 -0.003033189742 0.04013580736 -0.04225771075 0.04237789384 0.003568877618 0.04326056283 0.001968059607 -0.04290951125 0.006870761592 0.006054606718 -0.08398616307 0.04143022096 0.04189036869 0.004222704937 -0.04199649333 -0.03931900745 -0.003988875474 0.03972602742 -0.03715184763 0.02348979461 0.04221318283 0.04157785047 0.02151757577 -0.09395048874 -0.0005071944217 -0.0004721489087 8.281076087e-06 -0.0003159025674 -0.0003658673817 -0.0005997489013 -0.0461783265 0.0008597332793 0.0463458068 -0.04645679837 0.0466280857 -0.0004871899002 -0.0006747497125 -0.04695819151 -0.04559440622 0.04581653384 -0.0001437775165 -0.0004097151221 -0.04624686367 -0.04598935933 0.0008168510964 -0.0235038213 0.01404636352 0.01403350324 -0.1354108719 -0.135034656 -0.01096147783 0.01207300705 0.1360603855 0.1380110318 -0.01452785745 0.01822083023 -0.2734103933 -0.01694538649 0.2682108339 -0.2722113054 0.01125983998 0.2645891961 0.2761310346 0.009249084836 -0.01647278721 0.009916543879 -0.01458107859 -0.0130504474 -0.03334463791 0.006937000439 0.006783386346 0.03388417814 -0.007099661866 0.03320493462 -0.007044744755 -0.03341762928 0.03353655747 -0.0336958442 0.006844055356 -0.006694147421 0.006716086057 0.03351461884 0.03334612206 -0.008669578574 0.05735255755 -0.05764174288 0.008958763902 -0.009813895346 0.01008576282 0.05816242603 0.05626648976 -0.01063117191 0.01842302673 -0.1202052154 -0.01777643314 0.1176187795 -0.1184515283 0.009441880265 0.1169894457 0.009049060192 0.05990652765 -0.01073039421 -0.01943428841 0.01054688008 -0.05969127006 -0.06003664512 -0.01844021589 -0.04369980972 0.0002561134186 0.04410777993 -0.04450302115 0.04478266278 0.0004494154046 -3.010715816e-05 -0.04532930786 -0.001815399516 0.04353893006 0.00153703228 -0.0009922885315 0.0006624992178 -0.04417323184 -0.04326578166 8.44339565e-05 0.003181274872 -0.00392679384 -0.08883067456 0.001197276932 0.001560172203 0.003733304173 0.01454488363 -0.003692340439 -0.01365918116 0.01356027283 0.003832212503 0.005296066932 -0.01382755443 -0.01626173423 0.0005882283943 -0.01561975156 -0.01620800502 6.329347334e-05 0.02367866594 -0.07856641389 -0.07609626155 -0.02092594021 -0.07229001744 -0.02224322156 0.07362318321 -0.08259281049 0.01822448457 -0.02034663868 0.0192963685 -0.08154254032 -0.01061710199 -0.08301660949 0.03071834478 -0.01668415914 -0.01714122087 0.07746714077 0.01800105146 0.01592186097 -0.07921026828 0.006815576342 -0.03391929294 0.03389059131 -0.03408967907 0.007014664104 0.006983255467 0.03550202726 -0.0359788105 0.007774132018 -0.007203965383 0.007322609356 0.03538338329 0.03504315014 -0.006927996848 0.139236587 0.009352456054 -0.140768214 0.00952054576 -0.01768536581 0.01919176868 -0.01621641424 0.06908112802 -0.01085379313 -0.06950652127 0.1380490867 0.01040658016 0.01037114645 -0.06981906741 -0.0698159772 -0.07056435289 0.009748212068 0.07016859688 -0.1364828277 0.1348581628 0.01045936099 0.0106422757 0.01043004212 0.01055235176 0.06868467696 -0.01091598088 0.07261208615 -0.0100627459 -0.07306278449 0.07219069808 -0.07265054641 0.009201992173 0.008710334359 0.07347093615 -0.00930927849 -0.07097452744 0.009719453038 -0.008935768518 0.009335530617 0.07179093598 0.07217980165 -0.01023037857 0.01644389203 -0.01494161179 0.1423526702 0.009024686148 0.009178694448 0.02967204361 -0.02996583498 0.007705742916 -0.007276425164 0.007446899859 0.02950156892 0.02981528389 -0.007021566906 -0.02546946964 0.02587200036 -0.005837944717 0.004533032599 -0.005498183101 -0.01195475881 0.006148765149 0.006235384672 0.02747476786 -0.006342375282 0.0274371854 -0.006006130459 -0.02745862441 -0.01865724974 -0.04532835726 0.04444829513 0.01953731186 -0.0218512916 0.02330455622 -0.04312815468 0.03000208867 -0.04806320774 -0.02920690434 0.04108551728 -0.01264536095 0.01425834782 -0.04269850414 0.0421956425 -0.04539450447 -0.01865242963 -0.04579736032 -0.01903176844 0.04617187901 0.0160530765 0.006439496514 -0.03293712432 -0.01180189131 -0.01764991018 0.03867705392 -0.01198401384 0.04034695791 0.01272257321 -0.02920954145 -0.06862815909 0.02707273017 0.07049165827 -0.06804107608 -0.03166012364 -0.03249563638 -0.02452356628 -0.05769709166 0.05755321158 0.02466744636 -0.02877287105 0.02752565864 -0.06061618461 0.02434630766 -0.06415293312 -0.02577853552 0.03098423477 -0.05317270621 -0.05757795408 -0.03045676547 -0.05561638305 -0.02512580933 0.0562186261 -0.0426481467 0.04338159229 0.0137604079 0.01273352554 -0.04489381083 0.04302935787 0.02278635947 -0.01204154422 -0.01255264573 0.01963371079 -0.04207720141 -0.03942254813 -0.01693547477 -0.07345263493 -0.01817055895 -0.01841970893 0.03855792407 0.03894923328 -0.04541115475 0.01598541229 -0.01683148583 0.0166237667 -0.04520343563 -0.04657602927 -0.02833179826 0.02625379481 -0.01542305476 0.04067898111 0.04118552534 0.01407334814 -0.04195136095 0.04056972606 -0.04099314008 0.004038789346 0.04071617328 0.04226114623 0.003377904123 -0.001855341355 -0.04241560316 0.002328514992 0.04158068472 -0.04222422689 0.04034058776 -0.03994791728 -0.002872473333 0.04094947643 0.04056733013 -0.003122053184 0.004537667109 -0.0413815839 -0.003714670979 0.04014323651 -0.04137414313 0.07256581915 -0.03682757523 0.006044609608 -0.03655609894 -0.01128688638 0.005895923406 -0.01078708286 -0.007197113963 0.03649606764 -0.0378074909 0.03733460956 -0.006724232616 -0.03878397887 -0.006895138317 -0.03641068546 -0.006297565667 0.03632787199 0.006796184949 -0.006449585235 -0.03675728517 -0.03687416262 -0.03929657735 -0.006387273257 0.004898890069 -0.005465587191 -0.03872988023 -0.03812732588 -0.01036517476 0.005443738798 0.005408750469 0.03713609543 -0.005545681492 -0.005618377689 -0.03700946784 0.05028189264 0.00267985898 -0.05028793208 -0.001301268307 -0.001372551227 0.002801709006 -0.001429838082 -0.00156250223 -0.02455937476 0.001719388312 -0.002704216527 0.0508973519 0.002631240237 -0.05059747583 0.05069496831 -0.05055947829 -0.05079973355 0.05088789734 -0.001467353178 0.002747077076 0.002672303603 0.01329380341 -0.06415498754 -0.01284784501 0.06364961839 -0.03227284064 0.007092788736 -0.03216378924 0.06296768479 0.007002895079 0.03292956706 -0.00702211619 -0.006816502226 -0.03250848248 -0.01293613303 0.006712889825 0.006736964429 0.02457219915 -0.02472216619 0.001767302746 -0.002435364396 0.002249060272 0.02475850327 0.02362263192 -0.003446172608 0.0521728405 0.003311548147 -0.05167513603 0.02611455285 -0.002026266071 0.02607348065 -0.05147711072 -0.001878195633 0.02633439563 -0.02637733957 0.001703683685 0.001794469023 0.02628199108 0.003352958199 -0.001762099201 -0.001719392791 -0.003215447903 0.05178624717 0.003171902706 -0.05157180567 0.0515229373 -0.001611668979 -0.05157852117 -0.001531436608 -0.05147531145 -0.001641118926 0.003264550682 -0.001602085001 0.003214320973 0.001054638287 -0.02507873505 0.02500616723 -0.02533607823 0.001384549279 0.001501851421 0.02169262664 -0.02165688174 0.0005906152906 0.0005355456988 0.02155730373 0.0003401799145 -0.0004320654495 -0.0004218325069 0.02174487166 -0.02070247492 0.00185894713 -0.002538782938 0.001728415423 0.02255523918 0.02280650484 0.0008020543438 -0.0006032729938 -0.0006520488428 -0.02194637047 0.0008253820246 0.0006154257524 0.02173771618 -0.03675811766 0.001016034449 0.03752660086 0.001302949558 -0.004361982211 0.003849241995 -0.004645135924 -0.01582723299 -0.001557465891 0.01615317326 -0.03446474059 0.001714462 0.001329437209 0.01752606594 0.01774401744 0.0006671478704 -0.01802795504 0.03413365613 0.004250309047 0.003856747376 -0.03437159168 0.003032808072 0.002493544828 -0.01563770724 -0.002206888312 0.001272383315 -0.01944899762 0.02000250933 -0.01978204785 0.001051921837 0.001556343645 0.01845731705 6.904749932e-05 -0.01791317649 -0.0009858168405 0.0003869660593 0.01905616783 0.0190934788 0.001077021945 -0.001752901138 -0.03842469992 0.0001455608793 0.0004207994736 0.04503440684 -0.04569985185 0.006037249477 0.04435308995 0.04425129968 0.006268070192 -0.00763876286 -0.04458484657 0.007416739425 0.04591662887 -0.04551660336 -0.008038788369 -0.006660084393 0.02528829906 -0.02461787716 0.001345363109 0.001063326755 0.02316119797 0.02366022252 0.02364690142 0.001303128117 -0.0008425230521 -0.0009263201317 0.0006392666023 -0.0006741011721 -0.02393862256 -0.02569346017 0.0006155602373 0.0011180418 0.025650891 0.02337340085 -0.02344086383 0.0005634615865 0.0005760717662 0.02358129853 0.0009883181695 -0.0006092329912 -0.0005384152675 0.001052960552 -0.00058512056 -0.0005759964577 -0.02316329377 0.0005668430846 0.0005683710424 0.02330319339 0.0397464371 -0.03940450651 -0.0006091507415 0.04012957195 0.04042950964 -0.0008426561503 0.00286865893 -0.04113248934 -0.002022956689 0.03922095353 -0.0395821844 -0.08408783216 -0.000837401657 0.08334992679 0.0007214918512 0.000853815178 -0.0001632451962 -0.04291029958 0.0008485414266 0.0006340834655 0.04323347452 -0.001586988381 -0.0002557211688 -0.08279218413 0.0005686496913 0.08329262493 -0.0837115913 0.08285690159 0.08410673773 -0.0843963478 -0.0005823088863 0.0009633876555 -0.0003900981337 0.001244261074 0.002184442992 -0.08149455606 -0.00183949835 0.08185435825 -0.08218542038 0.08150579325 0.08250983683 0.001356268217 -0.001605226796 0.001929643246 -0.001272586357 -0.00114063821 -0.04107703125 -0.08299940003 0.001113083733 0.001089348299 0.0008295642894 0.0008772306858 -0.08582348536 0.005549053108 0.08562317865 -0.002673103283 -0.00267564311 0.006385372029 -0.00301483615 -0.003114203906 0.04311473139 0.002971017058 -0.00650080254 -0.0839561378 0.006541826156 0.08489995157 -0.08501538208 0.08479651165 0.08509128141 -0.08510895736 0.007385176886 0.007387702383 -0.003253149395 -0.08364403292 0.003391773004 0.08459765378 -0.0846982325 -0.001446628665 -0.00125172131 0.08476442445 -0.004816417031 0.004040525669 -0.003974333723 0.004150595779 0.003058888463 -0.04415207285 -0.08580282474 0.0435389296 -0.002251830912 -0.002504006106 -0.002548183322 -0.002447879802 -0.02517642937 0.02506295861 -0.0007151494859 0.0008340455118 -0.0007149650289 -0.02529550985 -0.02483784771 -0.0008402418427 0.0246522279 -0.0249420457 0.02482648343 -0.0007246795769 -0.0007195032435 -0.02392850351 0.02388937071 -0.0007604297583 0.0007883407435 -0.0007476793015 -0.02396916495 -0.02399543066 -0.0008355100686 0.02400324942 -0.02385425933 0.02383181016 -0.0008130609022 -0.0007777234832 0.03943253546 -0.005223311133 -0.005417208932 -0.03974243885 -0.004765805441 -0.03803807996 0.004885175734 0.004855668122 -0.03903426491 0.03924477403 -0.03971511335 0.00532600745 0.005277122922 0.0388463533 -0.02390878711 0.02388116651 0.001077931098 -0.02408103321 -0.02441932746 0.001146480738 -0.002422874996 0.02535469746 0.001799850101 -0.02420302956 0.02516086509 -0.02647402378 0.0267985249 -0.001742094458 0.001663244335 -0.002317673177 -0.02581959494 -0.02537763173 0.001281581852 -0.0009686424785 0.02598969549 0.001013830452 -0.02683739145 0.02671976683 -0.0008510178608 -0.001191226255 0.03589022213 -0.006635776145 -0.0361903935 0.07021504458 0.006438350192 0.006295286212 -0.03558146691 -0.03534985204 0.006118859571 0.03546489277 -0.06968019748 -0.01218050645 0.06910852649 0.006429035466 0.006323141974 -0.01214432129 0.006378669506 0.006300498891 0.03583177148 -0.006478422579 0.01166510909 -0.01121418845 0.06954807467 0.06909100758 0.006966734378 -0.03650846135 -0.006738245247 0.03672638588 -0.0369601792 0.0368988008 -0.007056420072 0.03648414611 0.03703984899 -0.006767640213 0.02497793103 -0.02509742353 0.001496425343 -0.00166066207 0.00164959659 0.02498899651 0.02449108073 -0.003148094122 0.05144818715 0.003066559306 -0.05107818778 0.05125400437 -0.001641758055 -0.05101197352 -0.001586372257 -0.05147710469 -0.001738429597 0.003197361061 -0.001682469232 0.003050106121 -0.002889302206 0.05117080053 0.002827852611 -0.05093901027 0.05096255348 -0.001468393803 -0.0014272637 -0.05098720229 -0.00150163757 0.002927372367 -0.00147097734 0.002877772886 0.001184349921 -0.02550097238 0.02527146096 -0.02546733153 0.001380220483 0.001416691224 0.007020392407 -0.03062989964 -0.007028350269 0.03029697477 -0.0300693873 -0.02457394721 0.02422813651 0.000752455044 -0.0249170219 -0.0250458893 0.001027743727 -0.001035366442 0.02403939553 0.001242384409 -0.02387783589 0.02352320977 -0.06128677853 -0.01308521061 0.06079222544 0.006771437518 0.006808326192 -0.01313733803 -0.03087568347 0.006848427256 0.00680687838 0.03068759655 -0.00695267754 0.01277826757 -0.0622626949 -0.01238242607 0.06164229815 -0.06200136862 0.06111680428 0.06242447577 0.006701788811 -0.01303075331 0.006769951549 -0.01247821969 0.05254316778 0.003386342021 -0.001707429152 -0.001754432103 0.02604109498 -0.02608987485 0.001756665369 0.001691829931 0.02625456476 0.02667640692 -0.02634679001 0.008891089002 0.002028987836 0.02603988297 0.004734583729 -0.002005515172 -0.002895713894 0.003647925121 -0.02367858789 0.02284171445 -0.0228526104 0.003658821066 0.002320143357 0.02526944036 0.02201044092 -0.02162550098 -0.005259434935 0.02216119648 0.0235666721 -0.005304650886 0.005633685321 -0.02324679527 -0.005713855425 0.0213209241 -0.02108734353 0.05448071818 0.006055502294 -0.02755586403 -0.01101054415 0.005790561692 -0.01064166572 -0.006213629612 0.02426266992 -0.02583023256 0.02578368777 -0.006167084821 -0.006175306134 0.05174613929 0.005491190172 0.005520650427 -0.02596911694 -0.02634209059 0.005747010154 0.02642295856 0.0245781518 -0.005937671243 0.005308212377 -0.006242362393 0.03370231192 0.03363469277 -0.2245508451 -0.008014117296 0.2253621074 0.007057803855 -0.00836834699 0.007588006104 -0.1112342161 0.005323694889 0.1116360814 0.2242242588 -0.1114253644 -0.004966195356 -0.004846502944 -0.1113545431 0.2255354224 0.1103572268 -0.004718380002 -0.004633012936 -0.1110763597 -0.1108177844 0.005402783298 -0.1107802801 -0.006883541679 0.1113615888 0.006353518353 -0.006947064526 -0.05510546174 0.005891232758 0.006906863279 -0.04407031308 -0.006278352592 -0.0518055969 0.110151215 -0.05510965926 -0.05508175702 0.1100383437 0.05454097648 -0.003527161274 -0.003733726766 -0.05486901341 -0.002367638913 -0.04416176972 0.002459095554 -0.2289240244 -0.0195391857 0.2288041604 -0.02223006872 -0.1143787089 0.01097165165 0.0115510682 0.1124522088 -0.01163998935 0.02149155799 -0.2333750736 -0.02153662652 0.2308461793 -0.2315846901 0.2305239805 0.1164719829 -0.01444239533 -0.02420108605 0.01301020529 -0.1161854122 -0.1166484124 -0.02270264724 0.01201706677 -0.06056408993 -0.01166799232 0.05991452666 -0.06024171401 0.05951522192 0.06077193242 0.01277081378 -0.01215749625 0.01268771466 -0.01168877276 -0.01313273961 0.006860564687 -0.02992668749 -0.02997607595 -0.0602582337 0.006581328417 0.006723477103 0.01492856577 -0.1186758444 -0.01243522978 0.1210775019 -0.1177649716 0.1151368286 0.1168368929 0.01590077762 -0.01479227777 0.0138641991 -0.01418734583 -0.006970431845 -0.05410271162 -0.1141037078 0.006673298481 0.00733065215 0.007986319054 0.008435926919 -0.0572726186 -0.02589176819 -0.04191409992 0.01936267493 0.0193985391 -0.01431326931 0.01432897847 -0.0189389371 0.01893949147 -0.0208679919 -0.01777635924 0.01781650216 -0.01848136797 0.01015586193 0.01007201212 0.01778635948 0.01747640239 -0.02049381301 -0.01129585869 -0.04101322804 0.0222469863 0.01836849464 -0.01302561407 -0.00791931243 -0.01030480106 0.01538105118 -0.008240597215 0.01677483596 0.009282263416 -0.02166879029 -0.03383764178 0.02004550424 0.03497538517 -0.03332329118 -0.02332088428 -0.0249327431 -0.03466704855 -0.05599167059 0.02925643745 0.02805469401 -0.0204600239 0.01929394783 -0.02858808451 0.03473034083 0.03154337487 -0.01871046306 -0.01813941791 0.02043116706 -0.02405469793 -0.02658517228 -0.02142653248 -0.0543858613 0.02614133454 0.02719307572 0.04923321946 -0.04671343502 0.003694300656 0.002843888887 -0.002306327864 0.003006732146 0.04449022309 0.04368244445 0.04180473878 0.00392776349 -0.04191193863 -0.004360172515 0.005027536899 -0.003947937511 -0.006107560214 0.04189615887 -0.04290560419 0.04182558088 -0.04289661705 -0.04028864138 0.03943964721 0.00703597372 0.00222942521 -0.002359164264 0.04495881822 0.04463925448 0.0497581306 0.001984254755 -0.0496965373 -0.001051333373 -0.0009945146866 0.002012865313 -0.001039528794 -0.001005598258 -0.025341443 0.001005378584 -0.001964656361 0.04996647428 0.001901113928 -0.04980996019 0.04985816915 -0.04975116896 -0.04990954526 0.04995568928 0.001995891081 0.001942653089 -0.001825398459 0.04970473127 0.001755864092 -0.04951528824 0.04959290583 -0.049444589 -0.04967730959 -0.001969899196 0.001853915079 -0.001938318839 0.001786215154 0.002052447178 -0.001274722136 0.02503204126 0.02490539517 0.04960222634 -0.00105355088 -0.001010659266 -0.002474352011 0.0506659826 0.002426841876 -0.05049243806 0.05051637258 -0.05047372096 -0.05053572091 -0.00259898855 0.002524880217 -0.002544228545 0.00247273422 0.001168708402 0.02525561597 0.05033440308 -0.001255769294 -0.001242366768 -0.001264754021 -0.001287763539 0.02754580096 0.002830786177 -0.0267126203 -0.002421610769 0.002234612869 -0.00202495806 0.02678685404 0.001874050984 -0.02713649817 0.02734615298 -0.02658971799 -0.02724650298 0.02698474463 0.001728272865 0.001749096157 0.031564934 -0.004766185682 -0.02916638723 0.05087389364 -0.05076415839 0.006605018899 0.007399547918 0.04975329835 -0.1003808891 -0.01147387419 0.1021254225 0.0105805924 -0.01248245234 -0.04760513547 -0.03894310188 0.01324936823 -0.01354106223 0.1083864991 -0.05419708167 0.1090720172 0.04684559934 -0.04517538533 0.006456687516 0.005763670328 -0.08522826632 0.01364846081 0.08560700138 -0.006866130229 -0.007161065638 -0.01523511461 0.01477506912 -0.007827174149 0.04333757372 0.04376054942 -0.01430297283 -0.08215616774 0.01383154636 0.08387376 -0.08340166371 0.08424743339 0.08279673356 -0.08209331422 0.01534977947 0.01476556885 -0.01027934679 -0.08359157847 0.01008542732 0.08501348666 -0.08481686563 0.08454725859 -0.01255175625 0.0112353023 -0.01150490935 0.01098104545 0.005982855892 -0.04405297104 -0.08584329693 -0.005815816633 -0.005997034509 -0.006293917144 -0.006494134648 0.04150279062 -0.04100398048 -0.0007958221862 -0.001204522677 0.002683661303 -0.00163725254 0.04848091887 0.0458784648 0.04916381906 0.001719236666 -0.04911055846 -0.001798941487 0.001748798852 -0.000912314091 -0.00168461149 0.04941560475 0.001611326168 -0.04925045034 0.04931463771 -0.04917939084 -0.0493806634 0.001719667961 0.00164442396 0.000555467531 -0.0240611488 0.02401630075 -0.02421806115 0.02381453447 0.02441875158 0.0007442258322 -0.02461758485 -0.0005492577285 0.0007499481598 -0.0008686523731 -0.02447310845 -0.02459136993 -0.003336722788 0.0401243037 -0.03950632463 0.04006892554 -0.04074261994 -0.003996843501 0.04123488507 0.003091138206 -0.003764832607 0.004036543616 0.0399650248 0.04015029721 -0.07673132778 -0.008024959055 0.07622706054 0.008255982094 -0.007739161678 0.00451751798 0.007259588569 -0.07649419049 -0.006816567316 0.07639597796 -0.07687555107 0.07594142439 0.07733665052 -0.07779967172 -0.006985429642 -0.00654240768 -0.08071854425 -0.005310226208 0.08011386493 0.002968417379 0.002946488144 -0.004807657921 0.002840577342 0.002650196205 0.04167086331 -0.002977651787 0.004323859106 -0.08000789244 -0.003909368486 0.08019315228 -0.0806769511 0.07968584623 0.08111959317 -0.003828232762 -0.003417831207 0.005978653718 -0.07827022527 -0.005541449295 0.07830529297 -0.07875530894 0.07921480926 0.005650478096 -0.005591730962 0.006051231274 -0.005145915312 -0.003391141368 -0.04031548516 -0.07964534022 0.003311342433 0.003187426678 0.003082078536 0.003036924271 0.05013408228 0.002370574801 -0.04996826914 -0.001248330278 -0.001288057658 0.002422184979 -0.001354175699 -0.001291308548 -0.02568473711 0.001491123749 -0.002316104423 0.05044870017 0.002226510907 -0.05025112635 0.05035720691 -0.05015435926 -0.05043271453 0.002355574852 0.002292415025 -0.002120826065 0.05019052573 0.002063993416 -0.05000126302 0.05004265822 -0.05009373748 -0.002273781536 0.002164549733 -0.002215628999 0.002107561168 0.001088917687 0.02471663212 0.04990006667 -0.001104888388 -0.001128424246 -0.001146431512 -0.001195552493 -0.02477619304 0.02453957591 0.0008614306216 0.001002545088 0.02522126726 -0.02549540957 -0.0003554350393 -0.001314125085 0.001312073489 -0.02769970297 -0.02740062386 -0.02406641302 -0.001715364704 0.02439178648 0.001144263885 -0.001227908033 0.001232728899 -0.02299175044 0.02349484567 -0.0234900248 0.02384311333 0.02362840231 -0.0008164346224 0.0003384202324 -0.0255745719 0.02576915835 -0.02604249844 0.02631601644 0.0006069874836 -0.0265891779 -0.000333065483 0.0006065834886 -0.0008255888909 0.0009588236344 -0.02611127102 -0.0263282095 0.06857312735 0.01221261769 -0.01185121771 0.01229392003 -0.01135332837 0.0341913012 -0.006513993128 -0.03442565744 -0.06855130344 0.06810090459 0.00636958397 0.006374734915 0.006404605024 0.006365235723 -0.06760811712 0.06716198871 0.01267658789 0.00670705535 -0.03408779689 0.006756229848 -0.006980786701 0.02910853364 0.02871118648 -0.02602020226 0.0256888211 0.000567235329 0.0009398676288 -0.02593977267 0.02559922389 0.000707042602 0.0009812122996 -0.004020813687 0.002805416856 -0.02419388085 -0.02316255276 0.02857861711 0.02183736591 -0.00490973369 0.006217408156 0.02727094265 0.03099515782 -0.001938704333 -0.003414789459 0.05429586693 0.003357249791 0.05423146273 -0.001624358535 -0.02719639647 -0.02730937577 0.0193233386 0.02723961907 -0.05419604929 0.05431750296 0.003398631731 -0.001704791933 0.003359212849 -0.001387819995 0.02624468828 0.001591094881 -0.02665006918 0.02629365605 -0.02595366085 0.02568159981 0.001413483341 0.001606251271 0.02439399315 -0.004832316273 -0.02448001935 -0.0512456423 0.05097496417 0.004837219497 0.004964555162 0.005317976242 0.00510933913 -0.05054032697 -0.00884961632 0.05113185168 0.009367900412 -0.008933263208 0.004850769388 -0.02493922785 0.008410841605 -0.007984452108 0.05165970615 0.05126210523 0.00844286178 -0.04818200671 -0.008902842801 0.04186837947 -0.01955712191 0.00371654658 -0.02145495895 0.04312234665 0.02018623503 0.003004297851 -0.004503955672 -0.01919073063 -0.02358629672 -0.03883612157 0.01208699472 0.004540098671 -0.002386681801 -0.004627862876 0.005157900245 5.274562873e-05 -0.000582782998 0.001936789735 -0.002627015357 -0.02194940579 0.0210560553 0.04180196892 0.007199081292 -0.03373574275 -0.007236445459 0.03360551875 -0.03290393772 0.03359810857 0.03266140354 -0.007630550836 -0.007421585846 -0.01383416578 0.0142083263 -0.002660959587 -0.002852932427 0.01230199393 -0.01289733556 0.003818132441 -0.000200672614 -0.0004597744403 -0.01470807536 -0.006788937831 0.03421719248 -0.03472421858 0.03525789011 -0.03507922378 -0.007522765913 0.0344898188 0.007559557375 -0.007380891047 0.007081290199 -0.006782945992 0.03508378244 0.03463850546 -0.007337399555 0.0267335581 -0.02847347002 0.02858297032 -0.02853440516 -0.006930607681 0.02872539627 0.007319385194 -0.007270820034 0.007108154287 0.02933890317 0.02928946592 0.006951709204 -0.02692017082 -0.006853524366 0.02530416731 -0.02511890483 0.02558253693 0.0251610474 -0.007202327202 -0.007076344587 0.005962589835 -0.02695097668 -0.006170328193 0.02653520461 -0.02607079788 0.02672826312 0.02573020093 -0.006092504537 -0.006177532228 -0.01481206661 -0.04532066526 0.01395063787 0.0465848469 -0.04608164974 0.04838565546 0.04569986457 -0.04489966341 0.0149377861 0.0141935462 0.04846386573 0.01114031477 0.01186619301 -0.01587268178 -0.04222401804 0.01503513886 0.04439216677 -0.04364108185 0.04257225714 -0.01794330033 -0.04137430614 0.0163776808 -0.01744650551 0.01872305921 -0.04392688193 -0.04255544088 -0.006038345599 0.004181720119 0.04295726823 0.04292816529 0.001873301332 0.002422730644 -0.04216725264 -0.002913876821 0.001386411032 -0.002353029871 0.002946794283 -0.003208978929 0.04154324085 0.04323959059 -0.004892538301 -0.003778817372 -0.03744889094 -0.0061825633 0.0375456327 0.006161998327 -0.006276279705 0.00612192366 -0.03667707406 0.0369759366 -0.03713029264 0.03687303363 0.03755761874 -0.03816330075 -0.006296906515 0.006479409179 -0.03843929833 -0.005916169581 0.03792370114 -0.03891034989 0.03750355324 0.03947135118 -0.03900654843 -0.006069823513 -0.005710553421 0.005658058642 -0.03762859543 -0.005650540162 0.03850149344 -0.03830902199 0.03780895895 0.005357454519 -0.005452324287 0.004952261249 -0.005574021172 -0.003748954624 -0.03752657361 -0.03286836596 -0.007476333718 0.03290268455 0.006427370086 -0.007183334156 0.007259191082 -0.03300792497 -0.007099878545 0.03311909601 -0.03304323908 0.03294102538 0.03318407386 -0.007475880476 -0.007197040035 -0.002026213446 0.0256462307 -0.02515362106 0.02537646789 -0.02516747236 -0.02589221324 -0.003041928487 0.00228226385 -0.002798009201 0.003607315792 0.02556780986 0.02567920236 0.001300858805 -0.02602954044 -0.0009789320325 0.001322056167 -0.001525953519 0.02559468958 -0.02569206603 0.02548816868 -0.02589916313 -0.02530235952 0.00157035844 0.02244490913 0.0005283860484 -0.02269510329 -0.0001203268515 0.0004029594377 -0.0005724964445 0.02180713668 0.0006100668928 -0.02221528744 0.02204575043 -0.02232159299 -0.02185120303 0.02165321465 0.00055157057 0.0006120758627 -0.001156618662 0.02148108745 0.0007700012232 -0.02143079619 0.02200259295 -0.02074443407 -0.02228848198 -0.0008040378672 0.0009758258218 -0.001261714857 0.0007286238079 0.001520495924 0.02281402024 -0.002170085372 0.0234412767 0.001411162535 -0.02255001554 0.02375712335 -0.02166199262 -0.02469545733 0.02505109684 0.001964721435 0.00132956143 -0.0007349274351 0.02163612538 0.0007345774039 -0.02147400568 0.02134724404 -0.02134863306 0.0009776624388 0.00086605775 0.01978806313 0.0004836129353 -0.01977453593 -0.0006635197178 0.0006695350007 -0.0004948717907 0.01995504251 -0.0197268401 0.01990150331 -0.01956695259 -0.02020860143 0.0007448237168 -0.006359564546 0.006247742688 0.04422602214 0.04490967338 -0.008737052911 -0.04456726165 0.008190220904 -0.008797150887 0.01000071359 0.0471308482 -0.04526190738 0.04646547009 -0.04483804082 -0.04722860837 -0.008801926655 -0.002954852138 0.02359317672 0.001945890441 -0.02157938787 0.0227659911 -0.02146021194 -0.02475746107 0.02602957576 0.003532694296 0.002227702337 -0.0004505213343 0.02220761234 0.0005734404975 -0.0220200597 0.02182561549 -0.02220395905 -0.02162023974 0.000612707325 0.0006897319378 -0.00023802767 0.02556535315 0.0004292260271 -0.02524272897 0.02507762514 -0.02542051452 -0.02492014789 0.02476242607 0.0002345089216 0.0004273941023 -0.0009595066505 0.02628764075 0.0009677329103 -0.02618507366 0.02590638432 -0.02563179202 0.0004952832208 0.0006492524341 -0.0003486476014 0.02387368742 0.0004962046103 -0.02423838563 0.02404072795 -0.02443279741 -0.02384384167 0.02366040917 0.0003473193455 0.000494592873 -0.0005935006472 0.02442867067 0.0006577162869 -0.02501188259 0.02483452339 -0.02463142155 0.0004410587446 0.0005635377423 -0.0003574745877 0.02274108693 0.0004982209973 -0.02274231436 0.02256036408 -0.02293253293 -0.02238355223 0.0003655708408 0.0005038730441 -0.0003599001122 0.0233088665 0.0004981046973 -0.02348051899 0.02330251246 -0.02312159119 0.0003568501198 0.0004965278352 0.0005881187175 -0.0008923918789 0.0405334396 0.0419798764 -0.004859200551 -0.002837795125 -0.0001964674046 0.02473396792 0.000419075508 -0.0245691796 0.02438126792 -0.02419630615 0.0001998807624 0.000424520466 0.004734799642 -0.04022473731 -0.005065369156 0.04075749022 -0.03988838821 0.03962328875 0.03801766625 -0.003652497669 -0.004631648664 0.005253287513 -0.03807737899 -0.005439876151 0.03793554119 -0.03706680875 0.03755095472 -0.006601043475 -0.006030540772 -0.0009441889363 0.001064120164 -0.02430301381 -0.02644604811 0.002713155753 0.001931874245 0.003300303277 -0.02595379723 0.02710765518 -0.02612502508 0.02744987852 0.02482401765 0.00226364111 -0.003848875017 0.00254786759 -0.001746701327 -0.02501842868 -0.02653607348 -0.0006260443205 0.0008726919582 -0.0006889986102 0.0009720827436 0.0004199107133 -0.02658277684 0.02686287703 -0.02713196492 0.02736726115 -0.0006157216333 0.03620555106 -0.03516842436 -0.006313067588 -0.006506488648 0.007847287763 -0.007138022639 0.03506200093 0.02920531179 -0.00666250577 -0.006935682659 -0.0004250548285 0.0008348165122 -0.0253413903 -0.0007364757176 0.00101155281 -0.02525917906 -0.02320965989 0.001440698616 0.001508554371 -0.003174464316 0.02598173238 0.0030599731 -0.02555127132 0.02567743143 -0.02609860338 0.02684256439 0.005855485224 0.00554757629 -0.02046191622 -0.004775488607 0.02089236546 0.004547917786 -0.004901400719 0.005049259323 -0.005107946869 0.02230905509 0.02249285634 0.02040852746 -0.005385069868 -0.005740476916 0.02488902366 -0.136596657 -0.0266773335 0.05074789563 -0.0293990746 -0.02946243738 0.1348083959 0.1354233557 0.132802499 0.03149887002 -0.04492880464 -0.2656891736 0.04153925684 0.2676430506 -0.2618226522 -0.02512054172 0.2576129747 -0.2557778882 0.04589867542 0.04258410949 -0.2533939058 -0.02384463403 0.2498993309 0.01359087277 0.01374858953 -0.02442528926 0.01416261896 0.0141856392 0.1277404643 -0.01530552636 0.02275089603 -0.2694784072 -0.02307469492 0.2581725322 -0.2598350455 0.2586976388 0.2616393991 -0.02269470972 -0.02150166934 0.02932917531 0.006730974995 -0.006733777191 0.006778660184 -0.006693610174 0.02861620526 -0.0290784491 0.02916349911 -0.02899403387 0.02873300167 0.007042868953 0.06578527202 -0.01094187938 -0.06618577248 -0.1334049739 0.1318898355 0.01053333834 0.01059475107 0.01055024336 0.01068613588 -0.1304473107 -0.01938686614 0.1290586842 0.02100434657 -0.01956182172 0.01123911657 -0.06585198051 0.01562736953 -0.01630201427 -0.01910331301 0.01888115352 -0.0167209083 0.02152828453 0.01498331916 0.01367295824 -0.01168187289 -0.01537145484 0.0136338657 -0.01732449342 -0.01037404478 -0.01294698074 -0.01075975714 -0.02701541387 -0.02965542146 0.02607483097 0.04256140905 -0.02710295087 0.004823303705 0.02633269153 -0.02303701074 -0.02646817936 0.02437242519 -0.02514268454 0.02328569575 0.02421898272 -0.02206981056 -0.02282955458 0.04428016872 0.06627319317 -0.02362928122 0.06646159513 -0.1310420214 0.1345608822 0.04076130786 0.03864478806 -0.1287535829 -0.07103963097 -0.02234428217 -0.02344294541 -0.02340551599 0.06979032968 0.06973870543 0.06745348542 0.02472586789 0.04350163453 -0.01167282555 0.01089786183 -0.01132344888 0.01171343273 0.04632211746 -0.04469815199 0.04508813584 -0.04419477512 -0.04564020152 0.04627465249 -0.0115636483 0.04839903299 0.001451251098 -0.0482993702 -0.001611278979 0.001500943848 -0.0008427921343 -0.001392819236 0.04872064259 0.001295380206 -0.04851500432 0.04862312893 -0.04841341868 -0.04872871453 0.04883600359 0.001442375027 0.001338564017 -0.001206346749 0.04831541574 0.001102389989 -0.04810085472 0.04820587784 -0.04799556373 -0.04831019151 -0.001407425448 0.001252397361 -0.001356711027 0.001149472978 0.001458538332 -0.0007710724009 0.04820260234 0.007265861483 -0.0319371651 0.03169053617 -0.03204617891 0.0314208175 0.03249901228 0.007825989973 -0.007362166329 0.007814999704 -0.008315706422 -0.03236300317 -0.01272977635 0.06617884636 0.006584492906 -0.06673300213 0.06626171592 -0.06582827846 -0.01214585121 0.06537239789 0.01263890924 -0.01220547178 -0.00150064619 0.02596027941 -0.02649544525 0.0263206747 -0.02662452663 -0.02611012351 -0.001282042525 0.001491002208 -0.001280451013 0.0009328373234 0.02638246362 0.008619028646 0.04735215545 -0.04653652173 0.04613470876 -0.04535052075 0.008357319695 -0.007631878297 0.008416066305 -0.008663801734 0.0446642838 -0.001549270199 0.04910441801 0.001461404081 -0.04893616923 0.0490204322 -0.04910141178 -0.001692437263 0.001581499938 -0.001662479518 0.001501334178 0.001722028501 -0.0008203592767 0.04905852313 -0.02557806027 -0.0007735520442 0.02550629553 0.0009038326324 -0.0008696234568 0.0007755688861 -0.02699243535 0.02634727544 -0.02644133001 0.02619056811 0.02638421532 -0.02605149509 -0.001105256399 0.002437304994 -0.02442197907 0.0253965324 -0.02460112898 0.02396180294 0.001268172691 -0.02362130894 -0.002151020845 0.001511694805 -0.001152680804 -0.02415334616 -0.02393252204 0.02654918215 0.002276814161 -0.02581583211 -0.002775097211 0.002196865964 -0.001870238442 0.02598595925 -0.02614093131 0.02646755883 -0.02575474985 -0.02662570133 0.001772221559 -0.0309870687 -0.006923895857 0.03085443712 0.007031799392 -0.006960106795 0.006873941213 -0.03112648204 0.0310222407 -0.03110840628 0.03123554006 -0.006898369696 -0.006600939351 0.03390035119 -0.03363640662 0.03375155333 -0.03372997749 -0.03382878745 -0.006773822522 0.03371114226 0.006625651191 -0.00670288531 0.006649738598 0.03346147213 -0.01836810287 -0.0792578609 0.01750024206 0.08126488491 -0.08033661928 0.02154414177 -0.08038283288 0.02038443434 0.02135437441 -0.07907620722 0.03427901604 0.007335664902 -0.006882057961 0.007071394927 -0.00709465733 0.03379601641 -0.034166669 0.03414340659 -0.03398213279 0.00717593791 0.06620297048 -0.02860925913 -0.06473381358 0.02849725681 -0.03033536241 0.0266882008 0.03241045195 0.06539197221 -0.06510224794 0.06717733749 -0.06355720526 -0.0699849758 -0.01800721323 -0.01795608228 -0.03446776195 -0.01939391529 0.0347094924 0.03442137889 0.006175392642 -0.03594580467 0.03604503698 -0.03631922957 0.0358933012 0.0366313103 0.006369427102 -0.006202299315 0.006514380043 -0.007021888156 -0.03726479329 6.635906313e-05 0.01899629735 -0.01848151329 0.01893483841 -0.01806277057 -0.01930736945 -0.0004645978761 0.0001081067522 -0.000480637791 0.0009768676615 0.0195523977 0.0005168251781 -0.02606460395 0.02561900689 -0.02581714674 0.02541898825 0.02600820749 0.000734452058 -0.0005271672197 0.0007182279698 -0.0008231213376 -0.02540040322 -0.02470713724 -0.0007387841215 0.0008516396235 -0.0007322934329 0.0005330144211 -0.02505446788 0.02481630493 -0.02501558394 0.02521674064 -0.0005235228769 0.0006414994521 -0.02390917778 0.02383981314 -0.02394599299 0.02373374165 0.02405175886 0.00072600255 -0.02415665208 -0.0006310074597 0.0007367733335 -0.000776261697 -0.02400865332 -0.02404869183 -0.02384551631 -0.00103142552 0.0008726853416 -0.000886391496 0.0008583702154 -0.02318410767 0.023524115 -0.02355213628 0.02363347172 -0.0007317254638 0.04008233615 0.00448398015 -0.004682446246 0.005049669046 -0.005620198266 0.04152931091 -0.04123001823 0.04065948901 -0.03985365116 0.03925135479 0.006131845301 -0.001614314065 0.02540519395 -0.02522135376 0.02525663629 -0.02526367525 -0.02543275411 -0.002160253028 0.001726008949 -0.001902126776 0.002158427797 0.02524529753 0.02566862314 0.001348793972 -0.02585667053 -0.001158755616 0.001360047227 -0.001447696433 0.02542657189 -0.02551698197 0.02542933277 -0.02561429941 -0.02534187536 0.001467677887 0.02259498949 0.004755850409 -0.004784236307 0.004526615397 -0.003160027024 0.01926355762 -0.02111086244 0.02247745082 -0.02168313557 0.02189502476 0.004453136312 -0.02578157418 -0.006051332329 0.02568477009 0.006139659379 -0.006137545785 0.006065899085 -0.02697564622 0.02645551153 -0.02652715823 0.02625222097 0.02666590846 -0.006028334588 0.03227618808 -0.02031371804 0.02064078463 -0.02168788773 0.02277715858 0.03120238789 -0.03137591274 0.03246518359 -0.03047383351 -0.03401549483 -0.02487119552 -0.006470109696 0.02753563439 0.006481296933 -0.02803522617 0.02778252464 -0.02728405437 -0.001150346751 0.02703220139 0.001303657739 -0.0008051874646 0.0002216732519 0.00675222117 0.02668742844 0.02637946398 -0.004870483728 -0.003281346085 0.00668994608 0.00375608364 -0.003468667124 0.004144358777 -0.02176413423 0.001507922397 0.01183041026 -0.01115471861 0.01251734194 0.01836279574 0.007260822756 0.003146618108 0.001197368828 -0.0009858169552 -0.4582142529 0.00145638764 0.4579552341 0.001823663747 -0.4582117502 0.002152984591 0.2289619849 0.2289204445 0.002552814327 0.2289270103 -0.4581763449 0.003009818901 0.2288238319 0.003515008646 0.2288644695 -0.4581518539 0.004045852865 0.2287746673 0.004583133163 0.2288495206 -0.4581539427 0.005107414671 0.2287732991 0.005584969407 0.2288826023 -0.4581941475 0.005970705428 0.2288732588 0.006249112852 0.229005982 -0.4582856836 0.006391177237 0.2290565519 0.006380767523 0.2291841401 -0.4583878679 0.006221105591 0.2292558579 0.00593923625 0.2293811283 -0.4584688345 0.005548231072 0.2293964854 0.005092593027 0.2295101993 -0.4585017174 0.004594517872 0.2294621236 0.004080515104 0.2295503303 -0.4585071498 0.003588491493 0.2294624341 0.003114463747 0.2295215345 -0.4584851668 0.00269114054 0.2294207488 0.002327219566 0.2294573673 -0.4584176382 0.001870749711 0.4588741081 0.001468077647 -0.4584330692 0.4588390093 0.001062137565 0.001682025816 -0.4577951398 0.002068708169 0.4574084575 -0.458075408 0.002443144955 -0.4575319025 0.002968067568 0.4570069799 0.001742815562 0.001915162027 0.2282010933 -0.2284321453 -0.002146621448 -0.001396714918 0.2288158553 0.002006493031 0.2285552897 -0.001828433724 -0.2287495267 0.2285616259 0.002194393854 0.001847937176 0.002846213589 -0.002619131028 0.2284021173 -0.2286554781 0.2284187789 0.003082912807 0.002562161852 0.003832135718 -0.003579186458 0.2283152444 -0.2286281822 0.2283772746 0.004083043341 0.003377993549 0.004818051534 -0.004579149826 0.2283872064 -0.2287190935 0.2285342512 0.005001619163 0.00411910193 0.005384815471 -0.005273878812 0.2286983821 -0.2289497237 0.2288729556 0.005458707403 0.004614247563 0.005625341963 -0.005580193555 0.2290643481 -0.2292319001 0.2292543079 0.005604919066 0.004710035865 0.005471566027 -0.0055334533 0.2294758552 -0.2295300596 0.2296573334 0.005346801181 0.004386276713 0.00479226095 -0.004995042668 0.2298034019 -0.2296888542 0.2299181681 0.004562947074 0.003755101916 0.003860520964 -0.004096457093 0.2299090941 -0.2297264843 0.2299731715 0.003613833769 0.002999240395 0.002934442563 -0.003155193398 0.2298611008 -0.2296732182 0.2298912266 0.002716434118 0.002272444463 0.00275223527 -0.2299668171 -0.459848213 0.001194102123 0.4630470401 -0.002087986736 -0.002304942504 -0.001916044288 -0.001679317327 -0.001383126758 -0.4601095163 -0.001761509847 0.4604878994 -0.0008039238161 -0.4591921954 0.4591442649 -0.4589886963 0.007891914128 -0.4572232717 0.008148847576 0.4569663382 0.006889828835 -0.4566356946 0.006389738318 0.4571357851 0.002507083607 0.002827143976 0.2270158556 -0.2273349504 -0.002969595784 -0.002377536908 0.2279385131 0.003182930694 0.2275228469 -0.002870650356 -0.2277533246 0.2274153031 0.003520952178 -0.2280566192 0.003217837327 0.004664825291 -0.004263239364 0.2270656402 -0.227410337 0.2269835768 0.005091585437 -0.2277929374 0.004616959926 0.0073292194 -0.006436902098 0.2261851823 -0.2269867185 0.2260024203 0.008282225565 -0.2276622795 0.00666346288 0.01122635872 -0.01025772195 0.225889953 -0.2270021347 0.2260267608 0.01216017472 -0.2277424492 0.009516040182 0.01449481088 -0.01381890363 0.2268648447 -0.2278872323 0.2273085065 0.01505417905 -0.2283316387 0.0117254484 0.01578698154 -0.01571265948 0.2289228353 -0.2294227174 0.2295313326 0.01569338776 -0.2293327275 0.01219201974 0.01434662377 -0.01496215614 0.2312194458 -0.2308871602 0.2316879862 0.01358640371 -0.230288035 0.01055727342 0.01069028189 -0.01173020786 0.2324594285 -0.2314061075 0.2325005616 0.009634090864 -0.2306315333 0.007657011957 0.006668018633 -0.007575680564 0.2319108983 -0.2309460849 0.2315400411 0.006076989608 -0.2305705282 0.00548294713 0.004826673879 -0.005243332602 0.231227896 -0.2307570271 0.2312155768 0.004368124199 -0.2304236622 0.004050462644 0.001554013017 -0.2325690646 -0.4635359593 0.002517512413 0.4618298667 -0.001823954578 0.001012534717 0.001750535952 -0.001484823919 0.002620555593 -0.4602762269 0.001993027736 0.4609037548 0.001353453763 -0.4595237998 0.460236533 0.003384663204 -0.4554905598 0.004284168672 0.4545910544 0.00606511141 -0.4554943063 0.008604757326 0.4529546604 0.00964729536 0.005573875701 0.2263340917 -0.2302345415 -0.006938513532 -0.003424491677 0.2269210192 0.004433056882 0.226605509 -0.004580386641 -0.2262221813 0.2260975848 0.004557653348 -0.2266406739 0.004293083078 0.008176543526 -0.006519003806 0.2228137121 -0.2235335934 0.2216728743 0.00998287131 -0.2250817693 0.008349536256 0.01588040323 -0.01387274078 0.2194645011 -0.2212599075 0.2191551138 0.01789136969 -0.2231193118 0.01525361319 0.02362436272 -0.02178961959 0.2194471682 -0.2217360884 0.2199355151 0.02534864996 -0.2233731393 0.02197856785 0.02965859201 -0.02839404556 0.2224879252 -0.224781936 0.2236883787 0.03072479896 -0.2257553064 0.02681229129 0.03243144875 -0.03213734663 0.2281875895 -0.2298072051 0.229827762 0.03243910276 -0.2297425011 0.02820123831 0.03048856717 -0.03146326192 0.2349338228 -0.2350576905 0.2364173216 0.02920594952 -0.2337972511 0.02509449116 0.02377833724 -0.02581610842 0.2395339592 -0.2376974765 0.2399969391 0.02157821531 -0.2356614532 0.01822562268 0.01404089936 -0.01682929689 0.2398786936 -0.2363916414 0.2397416546 0.0107622093 -0.2342960797 0.0101021781 0.002429909707 -0.001215775938 0.2375064436 -0.2342209787 0.2334915022 0.00316171716 -0.2344724875 -0.001960216876 0.003878844846 -0.2325890323 -0.463244828 0.00507137521 0.4648990362 -0.003418984779 -0.003306598614 -0.003111625532 -0.002812600871 0.003561943015 -0.4619994505 0.002371567274 0.4631898262 0.001569231757 -0.4608605602 0.4614646421 0.002238698513 -0.4538737283 0.003373443169 0.4527389837 0.004257586291 -0.4516284392 0.005379883879 0.4505061416 0.003442674587 0.003339994386 0.2224250699 -0.2235539821 -0.003724139943 -0.00447343242 0.2247722145 0.006214607781 0.2227843508 -0.004616166813 -0.2234412965 0.2201665776 0.00945555893 -0.2292767748 0.01404767791 0.02429766567 -0.02076476485 0.2154250557 -0.2173588368 0.218887819 0.02264991118 -0.2175791937 0.01627222565 0.02478045925 -0.02302493699 0.2101958141 -0.2118555251 0.2095977209 0.02690291704 -0.214395894 0.02496185969 0.03350986556 -0.03142679917 0.2108401672 -0.2139211296 0.2119951552 0.03535016136 -0.2159744182 0.03359602061 0.04050443054 -0.0388999122 0.2163142481 -0.219782472 0.2182908384 0.04197199067 -0.2211795163 0.04006186519 0.04508497292 -0.04431343573 0.2259855558 -0.2294046272 0.2290356536 0.04548017734 -0.2296491817 0.0430271364 0.04269923185 -0.04458202374 0.2401540314 -0.2410033043 0.2433377601 0.04044977572 -0.2392933963 0.03967493933 0.03162583869 -0.03542497964 0.2509737248 -0.2496325944 0.2558553832 0.02554414262 -0.2453994985 0.02806510079 0.02321011707 -0.0234732164 0.2517925933 -0.2474183201 0.2502632953 0.02049997766 -0.2461786399 0.01638665231 0.01144204887 -0.01438040766 0.2447576731 -0.2393060407 0.2420472168 0.008766004782 -0.2368238744 0.007528869169 0.0035822877 -0.2351188664 -0.4669295618 0.004944861995 0.4682313692 -0.002898489911 -0.003348179533 -0.003549233044 -0.003551147037 0.003770142363 -0.4641580052 0.002871663365 0.4650564842 0.002471807708 -0.4615976994 0.461644962 0.0009601653391 -0.4514882997 0.001511739276 0.4509367258 0.002887484149 -0.4494945271 0.004068978789 0.4483130325 0.002610537935 0.002329487946 0.2154572023 -0.2173895966 -0.003509528104 -0.003560571881 0.2207934514 0.007477402599 0.2141953281 -0.004978442787 -0.213006242 0.2105919554 0.00980102133 -0.2154145079 0.00955582266 0.01764077111 -0.01494371379 0.2016975661 -0.2029102555 0.2000481833 0.02033776131 -0.2060466996 0.02054673252 0.02874343516 -0.02578645893 0.1988531186 -0.2033638994 0.2002314075 0.0317261213 -0.2092646857 0.037718581 0.0390315879 -0.03908214325 0.2082150018 -0.2080007866 0.2066753964 0.04029503925 -0.2102948966 0.04136232886 0.04364414345 -0.04302444099 0.2125028891 -0.2137591368 0.2128547857 0.04454525751 -0.2150528228 0.0438850445 0.05060250884 -0.04957240562 0.2217042446 -0.2285573773 0.2297270487 0.04943395438 -0.2283120459 0.04837568663 0.04509930938 -0.04780314794 0.2454496448 -0.2472623444 0.251681236 0.04072703645 -0.2450177689 0.04469170244 0.0417943315 -0.04178693469 0.259191798 -0.259200489 0.2614992429 0.03962626273 -0.2585977793 0.03831525677 0.029726251 -0.03321841588 0.2655370884 -0.2612733232 0.2651368173 0.02603629952 -0.2575239822 0.02539785487 0.01472847283 -0.0184040694 0.2588525279 -0.2517726647 0.2564461482 0.01018336006 -0.2482255835 0.01127220102 0.005153105279 -0.2432743847 -0.4696555702 0.004593279143 0.4715421166 -0.003164451224 -0.003315141588 -0.003263153094 -0.003142779879 0.003483246339 -0.4658779192 0.003145479577 0.4662156859 0.002375329514 -0.4623485685 0.462979595 -0.0007194509826 -0.4504846122 -0.0004375639056 0.4502027251 -6.888517279e-05 -0.4470059583 0.0005838820263 0.4463531911 0.001622055134 0.0009420244694 0.2090178457 -0.2103133103 -0.001961069109 -0.003338349068 0.2135964427 0.006787634005 0.2062916207 -0.004852484346 -0.2036302807 0.2013612793 0.008930637125 -0.2060492821 0.009527727568 0.01595674269 -0.01357232712 0.1915005007 -0.1925249767 0.1900597271 0.01823691119 -0.1946676504 0.01736519261 0.02201072224 -0.02070036344 0.1907274128 -0.1934871641 0.1915837299 0.02377856683 -0.1952020805 0.02583100703 0.02768818077 -0.02625021891 0.1973017308 -0.2001832894 0.1981984762 0.02966288499 -0.2023005815 0.03345023305 0.03614509958 -0.035855363 0.1078441993 -0.1150956339 0.114302703 0.0369380305 0.0338082611 -0.1147583653 0.03918650189 0.270336927 -0.2709375931 0.274456832 0.03577191101 -0.2674642781 0.03783902103 0.02946768793 -0.03265253013 0.2790504203 -0.2754980221 0.2789849566 0.02616292342 -0.2745764516 0.02703057561 0.01595153071 -0.01929447821 0.2722167125 -0.2645525471 0.2678791585 0.01278258872 -0.2611044952 0.01338058366 0.003912379752 -0.2527656078 -0.4738927438 0.003291175817 0.4758205027 -0.002448819836 -0.002750306361 -0.003047626515 -0.003121774597 0.002382484249 -0.4671487368 0.001588087165 0.4679431339 0.001025649074 -0.4636148251 0.4639322839 -0.002710827539 -0.4501679779 -0.002783498045 0.4502406484 -0.002847355926 -0.4460551901 -0.002869025952 0.4460768601 -0.001044319785 -0.001213973417 0.2043170483 -0.2051901027 0.0005200923942 -0.0009627453556 0.2078897471 0.004779816956 0.1997573345 -0.003133858214 -0.1958733214 0.1943005532 0.006209321413 -0.1974280957 0.00464505492 0.01079018174 -0.009269684373 0.1835484208 -0.1839367178 0.1823817379 0.01215134057 -0.1856751617 0.01087195736 0.01490493954 -0.01422986566 0.1852233604 -0.1882747198 0.1877286867 0.01532963502 -0.1896337662 0.01654642171 0.0295725803 0.1474522501 -0.1430459221 0.1454929678 0.02712553463 -0.140468383 0.02823363339 0.03144471737 0.2814788945 -0.2822439089 0.2844920374 0.02927054034 -0.279166007 0.03166071833 0.02376750015 -0.0255802367 0.2908982221 -0.2890453819 0.2911301894 0.02186634371 -0.285950074 0.01980782458 0.0153065096 -0.01759665782 0.2841584001 -0.2768054825 0.2792628543 0.0130268593 -0.2740947719 0.009011720112 0.001698605082 -0.2605677775 -0.479706053 0.0005393797 0.48185934 -0.0009424155337 -0.001695806173 -0.002529380428 -0.002968915111 -0.0004059529456 -0.4684032972 -0.0007459013632 0.4687432457 -0.0008815360418 -0.464347359 0.4643503888 -0.004692626335 -0.4505416445 -0.005203706649 0.4510527248 -0.005688681296 -0.4463772945 -0.006260416961 0.4469490301 -0.002931557114 -0.003295144754 0.2014174167 -0.2021843268 0.003065532539 0.001223706724 0.2036078358 -0.0003497741807 0.1954162076 0.001294299669 -0.1901442397 0.1889008572 0.000744050519 -0.1914632408 0.001604428901 0.004305919963 -0.00312914001 0.1775173384 -0.1779528089 0.1766828163 0.005381785005 -0.1793067434 0.006567435664 0.007426630299 -0.006996738305 0.182102921 -0.1861613076 0.1859454305 0.007527489915 -0.1864916699 0.00909030472 0.01201252059 0.1584097558 -0.1552514311 0.1555121259 0.0117518258 -0.1547300869 0.01394050022 0.0156362497 0.2861934128 -0.2895228402 0.2903637554 0.01485608426 -0.2884029164 0.0190403803 0.01131376975 -0.01264604197 0.2989501635 -0.297823432 0.2994814638 0.009833808851 -0.295994591 0.01326264131 0.005219160954 -0.006748145479 0.292444311 -0.2855532283 0.2871907977 0.003763917827 -0.2836188981 0.006199010997 -0.002481761697 -0.2649183307 -0.4834562974 -0.003091928951 0.4828102099 0.002331745763 0.001470630249 0.0002226707313 -0.0005327209748 -0.002890633165 -0.4689925474 -0.003494294023 0.4695962082 -0.003164065159 -0.4643668463 0.4638947837 -0.006659178204 -0.4517477201 -0.007489928402 0.4525784703 -0.008456271927 -0.447778413 -0.009522518342 0.4488446594 -0.004808804174 -0.005124985337 0.1982325666 -0.1990021438 0.004698511475 0.003427587579 0.2006010552 -0.002222589713 0.1913672325 0.00310922409 -0.1853962795 0.1842503632 -0.001231891963 -0.1865525764 -0.0008052355585 0.001765505093 -0.00082239618 0.1726613885 -0.1733159545 0.172329027 0.002557270641 -0.1743676161 0.003161747991 0.003503843882 -0.003480226223 0.1808524728 -0.1859542344 0.1861634902 0.00318383291 -0.1858257822 0.004096086817 -0.004268001124 0.1529784151 -0.1520191955 0.1510146063 -0.003263411938 -0.1529477392 -0.001680531439 -0.001190885202 0.2850847719 -0.291064322 0.2911257839 -0.00118610625 -0.2912869706 0.003133193851 -0.005631944264 0.00447211258 0.3033617525 -0.3031228343 0.3011344889 -0.003470689514 -0.3022802117 0.001682535727 -0.00443260348 0.004158182125 0.296533971 -0.2904283325 0.2907372038 -0.004561984989 -0.289561575 -0.001280320581 -0.006540354105 -0.2646727853 -0.4816714463 -0.007143593385 0.4782980606 0.005334803664 0.005223045009 0.003669181679 0.002748083703 -0.006205636934 -0.4693266636 -0.005433195562 0.4685542222 -0.005514464763 -0.4635134491 0.4627215406 -0.008435820819 -0.4536749195 -0.009576027755 0.4548151264 -0.01094313876 -0.4501230877 -0.01235427376 0.4515342227 -0.005802400171 -0.006798001199 0.1950209298 -0.1956399142 0.006532829427 0.005047277151 0.1974433336 -0.003907529639 0.1875065702 0.004733089564 -0.180963296 0.1798902541 -0.002995839216 -0.1820476914 -0.00259755749 -0.0003619211783 0.001158361253 0.1684861132 -0.1696137059 0.1687844521 0.0002713389884 -0.17047884 0.0007828405174 0.000634451649 -0.0008184477555 0.1807185285 -0.1871181965 0.1875432319 0.0001037127249 -0.1867384216 0.0007729609917 -0.01295863326 0.1421704884 -0.142489175 0.1412121957 -0.01168165401 -0.1437823001 -0.0108331947 -0.01367512435 0.282011262 -0.2904464042 0.2900391279 -0.0131818178 -0.2903158971 -0.01161108375 -0.01629285316 0.01283329059 0.3050364877 -0.3052529727 0.3063282121 -0.01718316768 -0.3053028539 -0.009702661622 -0.01239680852 0.01333775638 0.2966627179 -0.2908115521 0.2899988046 -0.01141285578 -0.2910386367 -0.008344288425 -0.008478823301 -0.259930249 -0.4753771538 -0.01063530843 0.4717253549 0.006913856111 0.007383899167 0.006317150581 0.005619628275 -0.009200090192 -0.4674573875 -0.007769645524 0.4660269429 -0.006712257627 -0.463026005 0.4626910575 -0.009766040837 -0.4561470501 -0.0112673916 0.4576484009 -0.01279639896 -0.453149152 -0.01453402335 0.4548867763 -0.004938777087 -0.007589680289 0.1917007057 -0.1918423778 0.00749796299 0.006021240856 0.1941316114 -0.008097688927 0.184164947 0.008287650793 -0.1765897319 0.1717288204 -0.003411075245 -0.1777081391 -0.003392055565 -0.0008920597034 0.001596344192 0.1647314389 -0.1665209226 0.1658398821 -0.0004072012083 -0.1672421741 -0.0003302222859 -0.0007665663931 0.0003033767613 0.1816090499 -0.1892890406 0.1900373749 -0.001614151409 -0.1886240732 -0.001274889508 -0.0155927169 0.1314141715 -0.1323245279 0.1310442278 -0.1335111311 -0.02058409975 0.2801239563 -0.2876429387 0.2888088921 -0.02164301043 -0.2898216011 -0.01834339987 -0.0221152719 0.0221467182 0.3051554067 -0.3057101213 0.3057642169 -0.02197673978 -0.3051210277 -0.02062491552 -0.01933281664 0.02060636803 0.2939639846 -0.287496319 0.2859810376 -0.01766080383 -0.2887038848 -0.0183419184 -0.01045538376 -0.2508453511 -0.4690257607 -0.01332751032 0.4669023644 0.007885869476 0.007565058761 0.007474765985 0.007363616062 -0.01135531168 -0.4645543645 -0.009833077087 0.4630321299 -0.00850374929 -0.461652875 0.4602799027 -0.02816303935 -0.4591970198 -0.03160739348 0.462641374 -0.0351300442 -0.4566752835 -0.03895371594 0.4604989552 -0.01581603332 -0.02229656715 0.1862133827 -0.1871373455 0.02173727563 0.004489863799 0.1897931484 -0.003131663177 0.1783196336 0.004551448606 -0.1720271217 0.1703690972 -0.001650119593 -0.1741302378 0.00115270894 0.00214532755 -0.001089771161 0.1615721196 -0.1647561385 0.1638557097 0.002851746448 -0.1645787486 -0.000844294098 -0.0003642604716 -0.002798894043 0.1841999067 -0.1927853487 0.1943121216 -0.001981026275 -0.1917937939 -0.002248610631 -0.002898723223 0.05259553863 -0.05232895498 0.0524271811 -0.002996949339 -0.0522334498 -0.002970119361 -0.01192984634 0.05750718676 -0.05855080216 0.05812690192 -0.0115059461 -0.01184168344 -0.0240863639 0.2425122016 0.01383717392 -0.247547597 0.246476605 -0.02300957471 -0.02364924807 -0.02254559084 0.02381148507 0.2819769952 -0.2876718532 0.2916168662 -0.02635601577 -0.2886903677 -0.02789627579 -0.03344773556 0.03157518468 0.3053587997 -0.303964347 0.2989702663 -0.02826965693 -0.3050589339 -0.02413803022 -0.02107758625 0.02363540426 0.2870021584 -0.2806964374 0.2781743524 -0.01842094935 -0.2826214036 -0.01650504551 -0.009093986705 -0.2386321361 -0.4648164554 -0.01474342439 0.4625543761 0.008511829197 0.00849367444 0.008314908031 0.008055579533 -0.01301954967 -0.4615045419 -0.01147567294 0.4599606653 -0.01003180789 -0.4590625606 0.4576267477 -0.01164787213 -0.4642857849 -0.0132900115 0.4659279243 -0.01507645896 -0.4624433069 -0.0170203187 0.4643871667 -0.01241731056 -0.01312693415 0.1921109874 -0.1895282532 0.01606201975 0.01105867569 0.1866128673 -0.01505762216 0.1768354938 0.01411552343 -0.1677711664 0.1682511865 -0.01571431123 -0.1678888866 -0.0119323359 -0.01592867169 0.01614895409 0.158762433 -0.161936588 0.1612350255 -0.01542144404 -0.1627166329 -0.01041473952 -0.01215494706 0.01354567393 0.1831090861 -0.1957414211 0.1939141136 -0.01041904134 -0.1966968372 -0.007321192834 -0.01477146102 0.1121370163 -0.1135835652 0.1134154795 -0.01460337534 -0.0157672342 -0.02413963029 0.2403941289 -0.2526532167 0.2542165247 -0.0256551849 -0.2490485821 -0.02868844717 -0.03778184549 0.03338766352 0.2897071802 -0.297587322 0.2925198857 -0.0325573514 -0.2950513724 -0.03005226089 -0.03112451398 0.03088614396 0.30549615 -0.3029706295 0.2995130686 -0.0274779725 -0.3033484418 -0.03170167046 -0.02401119265 0.0223640971 0.2782076405 -0.270368052 0.2666499253 -0.02019068555 -0.2731747303 -0.0183820416 -0.009946671313 -0.2306893478 -0.4601365736 -0.01590866639 0.4587900249 0.008520503932 0.008734711123 0.008871677361 0.008718651944 -0.0145312855 -0.4584375686 -0.01227048839 0.4561767716 -0.01055084153 -0.4558137376 0.453738265 -0.0119348265 -0.467604355 -0.01356546542 0.4692349939 -0.0153181136 -0.4663054251 -0.01719191219 0.4681792237 -0.0126117322 -0.0112320789 0.2103836377 -0.2046433168 0.01708933158 0.01715081577 0.1954924305 -0.02600879878 0.1874573983 0.0220386079 -0.1738211472 0.1772268035 -0.02956211885 -0.1712215893 -0.02655481152 -0.0366876057 0.03499183921 0.1613603658 -0.1606124903 0.161340732 -0.03760330029 -0.1604482901 -0.03192380975 -0.03516231207 0.03687267835 0.1749878391 -0.1855903587 0.1828540039 -0.03255041072 -0.1885462661 -0.02551879639 -0.0199855361 0.02483138115 0.2087645322 -0.2212892377 0.21609362 -0.01481552645 -0.008065292483 -0.009252131454 0.009554109315 0.2256395594 -0.2028953438 0.2038952586 -0.01025204624 -0.01153803424 -0.106620509 -0.01698196793 0.01474569302 0.2294129723 -0.2291469163 0.2343900003 -0.02221823094 -0.01748542489 -0.03823178432 0.03367396039 0.2582145048 -0.2641648399 0.2677602317 -0.04173965385 -0.2604316169 -0.03609340406 -0.0456637937 0.04543489251 0.2918988592 -0.297257075 0.296667169 -0.04490204316 -0.2974879058 -0.04021229292 -0.03773102778 0.04082113036 0.2962654725 -0.2943905483 0.2909320038 -0.03410424643 -0.2971918735 -0.03163581313 -0.02124327268 0.02573890425 0.2614920119 -0.2528867567 0.2483943606 -0.01669174206 -0.257596505 -0.02005612754 -0.01049904679 -0.227369887 -0.4571982739 -0.01523965271 0.4525345588 0.009925746218 0.009977621628 0.01006426736 0.008491990914 -0.01455091522 -0.4547524251 -0.01297815211 0.453179662 -0.01016704453 -0.4518709241 0.4505076504 -0.01187915243 -0.4708750897 -0.01344425412 0.4724401914 -0.01510511708 -0.4699937759 -0.01685087383 0.4717395327 -0.009391935172 -0.009301507843 0.2350443679 -0.2311912477 0.009775866208 0.01557488356 0.2168620403 -0.02744814768 0.2109889125 0.02033737741 -0.1925421429 0.1993209704 -0.03431804357 -0.1865817699 -0.0345533738 -0.0517626327 0.04662935111 0.1757623867 -0.1681732845 0.1723066855 -0.05605055716 -0.1650133672 -0.05261491383 -0.06318687196 0.06178998601 0.1745378405 -0.1783930275 0.1787110768 -0.06364140248 -0.1790611126 -0.05627731719 -0.06071469755 0.06219129752 0.1968237027 -0.2053998135 0.2037172415 -0.05910493681 -0.208041522 -0.04775477836 -0.04967711634 0.05397516018 0.2089277152 -0.2038065654 0.2050976514 -0.05098227657 -0.2035341343 -0.03823852418 -0.05987700057 0.05772178573 0.2431513424 -0.2471618411 0.2495212528 -0.0621962003 -0.2438594343 -0.05181894167 -0.06749482239 0.06631070311 0.2692970444 -0.274850993 0.2753868528 -0.06792257276 -0.2733065709 -0.06170333837 -0.0630851693 0.065741049 0.286937793 -0.2911216471 0.2876203794 -0.05943289314 -0.2937357668 -0.05692467285 -0.04349255622 0.04950543482 0.2773659992 -0.276215337 0.2698330267 -0.03699376557 -0.2818658574 -0.03760679654 -0.01631158929 0.02323089988 0.237446994 -0.2314591516 0.2271333893 -0.01197877859 -0.2375393152 -0.01260425492 -0.009946173458 -0.2250890371 -0.4504499344 -0.01707996377 0.4485073959 0.009451179043 0.009571323206 0.009712376073 0.009806115392 -0.01342693831 -0.449820552 -0.01130734216 0.4477009558 -0.009757231546 -0.4494555403 0.4490701141 -0.01154617743 -0.4739915369 -0.01300627362 0.4754516331 -0.01453452789 -0.4734055203 -0.01611493256 0.4749859249 -0.008940619273 -0.008809326776 0.2369320231 -0.2365222364 0.009220423827 0.009641555426 0.2356420809 -0.01182113919 0.235892612 0.009963116907 -0.2237963938 0.2325621901 -0.02060320997 -0.2150594405 -0.02608592036 -0.04712585426 0.03863435828 0.2046652824 -0.1905449756 0.1983674709 -0.05503903497 -0.1835348073 -0.05793141013 -0.07417375684 0.06863437155 0.1900918173 -0.1861223017 0.1907084585 -0.07886542933 -0.1825658581 -0.07795533686 -0.08776628943 0.08583494681 0.1999556221 -0.2025712912 0.2025063813 -0.08777262668 -0.2026096208 -0.08442096424 -0.08652971354 0.0842578718 0.2062520362 -0.2155066302 0.219543217 -0.09058158606 -0.2113210494 -0.08381676592 -0.09106392951 0.09164284575 0.2447219371 -0.2513443341 0.2503753743 -0.09005053746 -0.2515693534 -0.0861542282 -0.08330735204 0.08628215219 0.2638570564 -0.2703649276 0.2666620198 -0.07951186738 -0.2730858494 -0.07934678748 -0.06303957398 0.06935592625 0.2674121096 -0.2716656439 0.2647074876 -0.05598188404 -0.2778584294 -0.05923611826 -0.03164117144 0.04012988128 0.2470444323 -0.2468749463 0.2382868916 -0.02301080986 -0.2550740044 -0.02834072382 -0.01152666524 0.01202759953 0.2242928732 -0.2245955388 0.2241009793 -0.01103210574 -0.2251196871 -0.01127710958 -0.009236443359 -0.2231743083 -0.4467024135 -0.01612147216 0.4450311277 0.008820235773 0.008972522239 0.009151871726 0.00928866161 -0.01451619186 -0.4460666677 -0.01297070264 0.4445211785 -0.01149628773 -0.4456388941 0.4442239895 -0.01101435589 -0.4768838767 -0.01234937669 0.4782188975 -0.01372734877 -0.4764774918 -0.01512972487 0.4778798679 -0.008351072518 -0.008204062599 0.2384214882 -0.2380768324 0.008550266977 0.0090497731 0.2373326088 -0.009652497968 0.237531695 0.009270644323 -0.2369286956 0.237312116 -0.01003591839 -0.2365260958 -0.01025335916 -0.01470804859 0.01080149621 0.2364910755 -0.2251679574 0.2343316142 -0.0238848018 -0.2158612389 -0.03445538927 -0.04971236226 0.04164609287 0.2191610014 -0.2094075777 0.2166963813 -0.05704769631 -0.2025162481 -0.06640092357 -0.07082544111 0.06804350557 0.2094591099 -0.2035504497 0.2054106969 -0.07272512238 -0.2026466415 -0.08030897416 -0.08322271199 0.07985579618 0.2209924683 -0.2270417077 0.228102175 -0.08429004679 -0.2253839877 -0.09101945915 -0.0801822456 0.08233853235 0.2381652184 -0.24389704 0.2409087147 -0.07716405937 -0.2465473194 -0.08480246446 -0.06307386476 0.06859242886 0.2450881991 -0.2509544319 0.2446877115 -0.05675917803 -0.2568079247 -0.0659898866 -0.03398663025 0.04212389415 0.2369898337 -0.2406557945 0.2321611973 -0.0254650263 -0.2490366932 -0.03556170673 -0.01194728808 0.01233132505 0.2234778038 -0.2236043696 0.2232259763 -0.01156889475 -0.2240657176 -0.01192319076 -0.01040270907 0.01079448624 0.2225718405 -0.2227789255 0.2223865655 -0.01001034906 -0.2231943445 -0.01026498563 -0.008450546973 -0.2215902943 -0.4434875117 -0.01495077675 0.4420624138 0.008105073606 0.008270800973 0.008468023925 0.008629266987 -0.01355424625 -0.4430621518 -0.0121852673 0.4416931729 -0.01086036935 -0.4428353926 0.4415454003 -0.01035404534 -0.4795199075 -0.01155853037 0.4807243926 -0.01278539872 -0.4791935458 -0.01401434034 0.4804224875 -0.00768763235 -0.007552824354 0.239675505 -0.2393871522 0.007836938971 0.008364259706 0.2387602346 -0.008826976346 0.2388957139 0.008509517312 -0.2383550753 0.2386701521 -0.009142053136 -0.2380243074 -0.009367003041 -0.01006447445 0.0097610375 0.2378122009 -0.2371743475 0.2374746061 -0.01036473306 -0.2368567877 -0.01065735703 -0.01121899392 0.01095299677 0.2365129343 -0.2358181717 0.2360148971 -0.01141571927 -0.2316724999 -0.01649698074 -0.01626596322 0.01343226811 0.2234681276 -0.2157899335 0.2194943506 -0.01997407645 -0.2118006672 -0.0361081512 -0.02870505867 0.02698663935 0.2297812873 -0.2298315976 0.2303209014 -0.02919514307 -0.2293454581 -0.04634732539 -0.02503826044 0.02733880591 0.2287611814 -0.231089825 0.2278979025 -0.02184224287 -0.2343856844 -0.03862445285 -0.01269174926 0.01484956376 0.2257182463 -0.2256723253 0.225162138 -0.01218118357 -0.2317447888 -0.0176856745 -0.01156162407 0.01178653021 0.2237112941 -0.2235361888 0.2232949343 -0.01132036966 -0.2237952656 -0.01172055072 -0.01051518006 0.01079548109 0.2222336681 -0.2222332396 0.2219432315 -0.01022517196 -0.2225425341 -0.01054924564 -0.009312473655 0.009622351985 0.2212169894 -0.2213341713 0.2210204368 -0.008998739149 -0.2216656243 -0.009248859751 -0.007654717797 -0.2202801622 -0.4407499438 -0.01369337148 0.4395424936 0.007373610088 0.007527211647 0.007737300751 0.007901705042 -0.01248855861 -0.4404080406 -0.01128788592 0.4392073679 -0.01011023697 -0.4402869116 0.439125378 -0.009625800974 -0.4818942715 -0.01070363434 0.4829721049 -0.01178877068 -0.4815705096 -0.01286087744 0.4826426164 -0.007012770066 -0.006899299495 0.2407320484 -0.240490383 0.00713106086 0.007648677264 0.2399623251 -0.008009765176 0.2400319654 0.007745091722 -0.2395293954 0.2397897164 -0.008270086144 -0.2392565284 -0.008486125983 -0.009020123007 0.008775221499 0.2388751268 -0.2382801285 0.2385198614 -0.009259855969 -0.2380266466 -0.009528906992 -0.009896744204 0.009711227955 0.2373641889 -0.2364610254 0.2365745937 -0.0100103126 -0.2363323307 -0.01034111728 -0.009865296681 0.009895526564 0.2232211319 -0.2202954973 0.2205805731 -0.01015037246 -0.2200154402 -0.01046754236 -0.01101623798 0.01094041616 0.2307031549 -0.2305406752 0.2305477371 -0.01102329992 -0.2305320195 -0.01143127582 -0.01099397134 0.01102420184 0.2280610703 -0.2273666903 0.2273139404 -0.01094122148 -0.2274215108 -0.01135045586 -0.01066663193 0.01077633084 0.2252328847 -0.2247277114 0.2246010984 -0.01054001891 -0.2248627316 -0.01092396942 -0.01006788108 0.01023970051 0.2229507601 -0.2226621371 0.2224771365 -0.009882880498 -0.2228593097 -0.01022306738 -0.009258855733 0.009477340544 0.2212735978 -0.2211732226 0.2209456274 -0.009031260538 -0.2214145865 -0.009318109537 -0.00830393356 0.008552825761 0.2201353317 -0.2201736202 0.2199194882 -0.008049801634 -0.2204412187 -0.008281808148 -0.006894057884 -0.2191907812 -0.4384313052 -0.0124383675 0.4374079149 0.006666667973 0.006795089884 0.007015805381 0.0071569332 -0.01140025099 -0.4380831025 -0.01035151154 0.4370343631 -0.009310730655 -0.437994174 0.4369567576 -0.008875852402 -0.4840178726 -0.009836315426 0.4849783357 -0.01079364687 -0.4836434488 -0.0117290063 0.4845788082 -0.006364377848 -0.006267045637 0.2416256955 -0.2414218602 0.006460125365 0.006947543508 0.2409757999 -0.007234802018 0.2409829959 0.007012765945 -0.2405023541 0.2407192867 -0.007451734674 -0.240275543 -0.007650857749 -0.00806923829 0.007868885508 0.2397395428 -0.2391666236 0.2393608207 -0.008263435413 -0.2389622443 -0.008502719807 -0.008751655201 0.008617402977 0.2379725774 -0.2368408419 0.2369085729 -0.008819386158 -0.2367633203 -0.009101222981 -0.00870180334 0.008685168635 0.2232212699 -0.2214478963 0.2217374021 -0.008991309133 -0.2211578077 -0.009265566437 -0.009600639029 0.009565670338 0.2308952296 -0.2305557699 0.2305544034 -0.009599272545 -0.2305551763 -0.009930656717 -0.009551582569 0.009581660582 0.2279405597 -0.2271666227 0.2271204455 -0.009505405389 -0.2272141458 -0.00983932242 -0.00928152504 0.009369580956 0.2248510557 -0.2242633852 0.2241626695 -0.009180809289 -0.224369637 -0.009498501553 -0.008807790861 0.008943422287 0.2223580936 -0.2219846295 0.2218384198 -0.008661581245 -0.2221392934 -0.008949406205 -0.008165341189 0.008339739855 0.2205143257 -0.2203348198 0.2201522818 -0.007982803141 -0.2205273499 -0.008232542462 -0.00739284217 0.007595923762 0.2192582311 -0.2192289341 0.2190202114 -0.007184119456 -0.2194479279 -0.007392831462 -0.006189249746 -0.2182784321 -0.436464748 -0.01123907092 0.4355948218 0.006002435528 0.00610656159 0.006329512374 0.006444465771 -0.01034240255 -0.4360525764 -0.009426531943 0.4351367058 -0.008508605548 -0.4359436217 0.4350209976 -0.008136709605 -0.4859103828 -0.008991452635 0.4867651258 -0.009835977233 -0.485452872 -0.01065331427 0.486270209 -0.005762209363 -0.005671212287 0.2423849943 -0.2422114955 0.005835064166 0.006285662086 0.2418325255 -0.006516525819 0.2417839716 0.006328967336 -0.2413156138 0.2414980895 -0.006699001523 -0.2411253874 -0.00687888486 -0.007214377665 0.007047914544 0.2404532747 -0.2398890573 0.2400490375 -0.007374357885 -0.2397214172 -0.007584871192 -0.007753798289 0.007656307873 0.2384141586 -0.2370615071 0.237098057 -0.007790348213 -0.2370181832 -0.008031914754 -0.007712634163 0.007659710184 0.223381077 -0.2225926834 0.2228708239 -0.00799077466 -0.2223106149 -0.008225257928 -0.008422742596 0.008408156816 0.2309800313 -0.2305399166 0.2305320904 -0.0084149164 -0.2305463306 -0.008689607699 -0.008355161815 0.008385176966 0.2278203772 -0.2269888411 0.2269469668 -0.008313287496 -0.2270316535 -0.008589543373 -0.008123455471 0.008196864654 0.2245371283 -0.2238890433 0.2238060037 -0.008040415938 -0.2239759161 -0.008305461672 -0.007736380727 0.007846596852 0.221881842 -0.2214439434 0.2213252403 -0.007617677685 -0.221568674 -0.007861664797 -0.007213891665 0.007356079109 0.2199003811 -0.2196576931 0.2195084198 -0.007064618405 -0.219814358 -0.007280813306 -0.006578340877 0.006746444992 0.218536301 -0.2184495542 0.2182759467 -0.006404733345 -0.2186310907 -0.006589779539 -0.005546414114 -0.2175096628 -0.4347886359 -0.01012496313 0.4340407085 0.005388808831 0.005484081671 0.00568848404 0.005788424104 -0.009346525297 -0.4342785383 -0.008544920638 0.4334769337 -0.0077349093 -0.434116609 0.4332969879 -0.007429843539 -0.4875953899 -0.008190649433 0.4883561958 -0.008936708956 -0.4870346171 -0.009652581847 0.48775049 -0.00520802023 -0.005122301704 0.2430360578 -0.2428869824 0.005262846225 0.005675010718 0.2425620045 -0.005863300781 0.2424648314 0.005703239828 -0.2420025641 0.2421578768 -0.006018613512 -0.2418411469 -0.006180439937 -0.006454984636 0.006314578023 0.2410518753 -0.240487352 0.2406209583 -0.006588590988 -0.2403477647 -0.006774239226 -0.006885014787 0.006815120467 0.2387328456 -0.2371728602 0.2371878527 -0.006900007341 -0.2371532045 -0.007109120993 -0.006870238605 0.006789596153 0.2236646927 -0.2236747205 0.2239308222 -0.007126340283 -0.2234124095 -0.00732928527 -0.007431277296 0.007427791732 0.2310086787 -0.2305012789 0.2304888936 -0.007418891931 -0.2305126676 -0.00765067126 -0.007351775682 0.007381531785 0.2277009177 -0.2268264433 0.2267877858 -0.007313118242 -0.226865822 -0.007545699882 -0.007147781833 0.007210708516 0.2242707427 -0.2235771293 0.2235067404 -0.007077392995 -0.2236503073 -0.007301768668 -0.006823099469 0.00691490218 0.2214888137 -0.22100115 0.2209025045 -0.006724454034 -0.2211042396 -0.006933399856 -0.006389129594 0.006507280415 0.2193938945 -0.2191003496 0.218976105 -0.006264885022 -0.2192301965 -0.00645298412 -0.005857981935 0.005999073097 0.2179336032 -0.2177983373 0.2176521047 -0.005711749274 -0.2179507716 -0.00587577372 -0.004967359885 -0.2168554702 -0.4333457694 -0.009106462865 0.4326988914 0.004832706633 0.004920634212 0.005103882337 0.0051943537 -0.008428196473 -0.4327246938 -0.007724419108 0.4320209164 -0.007008356031 -0.4324904197 0.4317619418 -0.006768911053 -0.4890963354 -0.0074471047 0.4897745291 -0.008107957345 -0.4884212741 -0.008737541743 0.4890508585 -0.004703568512 -0.004626263055 0.2435996939 -0.2434702697 0.004748124941 0.005120438446 0.2431889536 -0.005275274378 0.2430498306 0.005137202275 -0.2425899064 0.2427237093 -0.005409077214 -0.2424512085 -0.005555781207 -0.005783220724 0.00566343278 0.2415605581 -0.2409888171 0.2411013641 -0.005895767731 -0.2408713887 -0.006061685971 -0.006126712621 0.006078079214 0.2389575489 -0.2372093302 0.2372099946 -0.006127376948 -0.2372056649 -0.006311321428 -0.006146955151 0.006047436362 0.2240371765 -0.2246578638 0.2248856025 -0.006374693895 -0.2244226535 -0.006553970593 -0.006588573881 0.006591697978 0.231005134 -0.2304465909 0.2304310206 -0.006573003535 -0.2304614754 -0.006772991993 -0.006501518692 0.006530845955 0.2275829188 -0.2266758154 0.2266397176 -0.006465420926 -0.2267125113 -0.00666567352 -0.006318588191 0.006373664751 0.2240393207 -0.2233105381 0.2232495871 -0.006257637132 -0.2233736231 -0.006451543535 -0.006040492532 0.006118515081 0.2211572334 -0.2206304472 0.2205468691 -0.005956914437 -0.2207174326 -0.006139022528 -0.005673561655 0.005773364279 0.2189686451 -0.2186337305 0.2185287104 -0.005568541495 -0.2187431277 -0.005734483812 -0.005223428984 0.005343346965 0.2174237223 -0.2172473722 0.2171227554 -0.005098812166 -0.2173769606 -0.005245644367 -0.00445318882 -0.2162934024 -0.4320958175 -0.008188693312 0.4315325869 0.0043368672 0.004415056727 0.004577512675 0.004660535586 -0.00759463072 -0.4313591673 -0.006974266849 0.4307388035 -0.006339526211 -0.4310422902 0.4303936989 -0.006162381719 -0.4904355676 -0.006768504344 0.4910416903 -0.007356029637 -0.4896422043 -0.007912550998 0.4901987257 -0.00425077894 -0.004182835739 0.2440923641 -0.2439788768 0.004289618329 0.004620604745 0.2437329764 -0.004753072245 0.2435580068 0.004632646919 -0.2430981721 0.2432147996 -0.004869699734 -0.2429776036 -0.004999520087 -0.005193694016 0.005090682205 0.2419968258 -0.2414121715 0.2415074648 -0.00528898735 -0.2413128346 -0.005434554019 -0.005467894695 0.005435415397 0.2391102402 -0.2371975888 0.2371898156 -0.005460121526 -0.2372037673 -0.005619228428 -0.00552492047 0.005414455926 0.2244648893 -0.2255236597 0.2257212924 -0.005722553135 -0.2253185102 -0.005878516189 -0.005871383339 0.005878826278 0.2309813219 -0.230380795 0.2303630784 -0.005853666769 -0.2303980632 -0.006024400762 -0.005779863368 0.005808632684 0.2274669484 -0.2265346932 0.2265007145 -0.005745884686 -0.2265691789 -0.005916510145 -0.005613489382 0.005662501422 0.2238346071 -0.2230781421 0.2230244411 -0.005559788366 -0.2231335055 -0.005725411376 -0.005371106985 0.005438566834 0.2208723479 -0.2203143635 0.2202423571 -0.005299100643 -0.2203890154 -0.005455569262 -0.005055929288 0.005141492738 0.21860607 -0.2182372052 0.2181471727 -0.004965896785 -0.218330679 -0.005109721929 -0.004669468423 0.004772613143 0.2169871029 -0.2167758643 0.2166684715 -0.004562075646 -0.2168872445 -0.004690689918 -0.004000251192 -0.2158060189 -0.4310057186 -0.007371601432 0.4305118985 0.003898728284 0.0039666932 0.004110444572 0.004183904624 -0.006848211324 -0.4301541517 -0.006298804238 0.4296047446 -0.005734093053 -0.4297505346 0.4291714478 -0.005611737542 -0.4916337538 -0.00615514639 0.4921771627 -0.006679594126 -0.4907227844 -0.007174123792 0.4912173141 -0.003847282288 -0.003788268463 0.2445268253 -0.2444264324 0.003882762296 0.004174416359 0.2442095585 -0.004292478762 0.2440039392 0.004186409782 -0.2435427853 0.2436454273 -0.004395120706 -0.2434369553 -0.00450730192 -0.004677666145 0.00458862944 0.2423731867 -0.24177097 0.2418518722 -0.004758568343 -0.2416867215 -0.004883721433 -0.004896747627 0.004875883997 0.2392097943 -0.2371598303 0.2371484622 -0.004885379559 -0.2371706672 -0.005020237314 -0.004987870435 0.004872540295 0.2249205217 -0.2262707673 0.2264399971 -0.005157100209 -0.2260947298 -0.00529009986 -0.005259193306 0.005269666837 0.2309436623 -0.2303076719 0.230288586 -0.005240107395 -0.2303264703 -0.005383686504 -0.005165505133 0.005193593651 0.2273535333 -0.2264015942 0.2263694484 -0.005133359352 -0.226434172 -0.005276603563 -0.005012579661 0.005056771142 0.2236509271 -0.2228723096 0.2228243286 -0.004964598647 -0.2229215958 -0.005103868097 -0.004798238575 0.004857423126 0.2206237896 -0.2200405946 0.2199776589 -0.004735302881 -0.2201055938 -0.004867428529 -0.00452374988 0.004598080944 0.2182926875 -0.2178956936 0.2178175239 -0.004445580166 -0.2179765702 -0.004567797801 -0.004188008225 0.00427770729 0.2166090194 -0.2163679945 0.2162744737 -0.004094487435 -0.2164647008 -0.004204624969 -0.003602490228 -0.2153797443 -0.4300483989 -0.006648598541 0.4296124813 0.003513028957 0.003571487185 0.003699433723 0.00376210658 -0.006184733314 -0.4290857018 -0.005695774743 0.4285967432 -0.005191324888 -0.428595101 0.4280763669 -0.005120069333 -0.4927094171 -0.005609342575 0.4931986904 -0.006079863941 -0.4916844116 -0.00652199312 0.4921265408 -0.003492515484 -0.003441052478 0.2449132036 -0.2448236325 0.003525508504 0.003781202648 0.2446307501 -0.003887065886 0.2443986786 0.003792869433 -0.2439351497 0.2440261774 -0.003978093578 -0.2438414721 -0.004076172194 -0.004225837175 0.004148566705 0.2426992425 -0.2420758113 0.2421446857 -0.004294711604 -0.2420041513 -0.004403657867 -0.004401905259 0.004388861445 0.239272649 -0.2371131566 0.2371015352 -0.004390283899 -0.2371249501 -0.004505959296 -0.004522397346 0.004406452829 0.2253843819 -0.2269085579 0.2270524586 -0.004666298021 -0.2267586804 -0.004781224407 -0.00473431393 0.004746997523 0.2308960386 -0.2302299426 0.2302100124 -0.004714383772 -0.2302496942 -0.004837034566 -0.004640024762 0.00466733476 0.2272431186 -0.2262755463 0.2262450448 -0.004609523313 -0.2263064356 -0.004731672394 -0.004498375895 0.004538625673 0.2234842732 -0.2226876511 0.2226443038 -0.004455028631 -0.2227320604 -0.004573892521 -0.004306577209 0.004359138651 0.2204040833 -0.2198002538 0.2197445719 -0.004250895304 -0.2198575911 -0.004364012401 -0.004064664411 0.004129987135 0.2180185257 -0.2175979926 0.2175293591 -0.003996030948 -0.2176688059 -0.004101186982 -0.003769894347 0.003848678672 0.2162782473 -0.2160116213 0.2159294042 -0.003687677197 -0.2160964351 -0.003783032951 -0.003256541019 -0.2150037792 -0.4292018063 -0.006016680433 0.4288141492 0.003176926724 0.003227410762 0.00333902506 0.003393418622 -0.005602825583 -0.4281334414 -0.005165115227 0.427695731 -0.004712176985 -0.4275579602 0.4270912211 -0.00468588439 -0.4936793633 -0.00512863761 0.4941221166 -0.005553193048 -0.4925454766 -0.005951059628 0.4929433432 -0.00318337217 -0.003137538174 0.2452596485 -0.245179064 0.003213784819 0.003437461266 0.2450061118 -0.003532811139 0.2447509562 0.003448511356 -0.2442840682 0.2443653673 -0.003614110246 -0.2442005159 -0.00370092624 -0.003832545011 0.003765168365 0.2429830517 -0.2423357438 0.2423946361 -0.003891437391 -0.2422745228 -0.003987476207 -0.003975624332 0.00396749886 0.2393117509 -0.2370689234 0.2370591277 -0.003965828643 -0.2370793157 -0.004066380626 -0.004120476042 0.00400665298 0.2258435216 -0.2274502263 0.2275722128 -0.004242462551 -0.2273230614 -0.004343180475 -0.004285282364 0.004299595027 0.2308410743 -0.2301493796 0.2301289467 -0.004264849451 -0.2301697154 -0.004371290943 -0.004191353617 0.004217842539 0.2271359248 -0.2261558162 0.226126801 -0.004162338408 -0.2261851932 -0.004268150074 -0.004059314406 0.004096285144 0.2233316525 -0.2225202103 0.2224806806 -0.004019784654 -0.2225606349 -0.00412277806 -0.003885916584 0.003933103251 0.220207614 -0.2195867154 0.2195369094 -0.00383611057 -0.2196378873 -0.003934338631 -0.003670382886 0.003728407615 0.2177759486 -0.2173355585 0.2172746618 -0.003609486202 -0.2173982527 -0.003701154496 -0.00340896841 0.003478835231 0.2159859536 -0.215697213 0.2156242584 -0.003336013751 -0.2157723272 -0.003419560013 -0.002957418442 -0.214669363 -0.428447567 -0.005468808361 0.4281001994 0.002885847945 0.002930328016 0.003025544503 0.003073688646 -0.005096978145 -0.4272796781 -0.004702629091 0.4268853291 -0.004293563814 -0.4266226947 0.426200562 -0.004307501018 -0.4945586097 -0.004710572833 0.4949616815 -0.00509621243 -0.4933216395 -0.005456806354 0.4936822335 -0.002915266034 -0.00287602642 0.2455730341 -0.2454998212 0.002945947844 0.003138233877 0.2453433619 -0.003227451124 0.2450678558 0.003151375273 -0.2445965873 0.2446697551 -0.003300618883 -0.2445215346 -0.003375347869 -0.003494502121 0.003435379594 0.2432314845 -0.2425585404 0.2426092418 -0.003545203454 -0.2425059305 -0.003627623666 -0.003612753164 0.003607414707 0.2393367263 -0.2370339663 0.2370271644 -0.003605951231 -0.2370415925 -0.003691209662 -0.003777310195 0.003667161904 0.2262900254 -0.2279094149 0.2280128711 -0.003880766386 -0.2278016033 -0.003966728596 -0.003904804928 0.003920308019 0.2307807186 -0.2300671676 0.2300464627 -0.003884099996 -0.2300878277 -0.003974311328 -0.003811787251 0.003837467379 0.2270319853 -0.2260417767 0.2260140869 -0.003784097479 -0.2260697905 -0.003873649855 -0.003687936817 0.003722169744 0.2231907471 -0.2223669942 0.222330624 -0.003651566653 -0.2224041094 -0.003738738734 -0.003529629275 0.003572435292 0.2200300709 -0.2193949379 0.2193499099 -0.003484601287 -0.2194410823 -0.003567859891 -0.003335519681 0.003387619505 0.2175590147 -0.2171017743 0.2170471635 -0.003280908887 -0.2171578515 -0.003358816726 -0.003101265337 0.003163854285 0.2157251022 -0.2154171933 0.2153518124 -0.003035884375 -0.2154843446 -0.003107146136 -0.002702588097 -0.2143692452 -0.4277704548 -0.004998873354 0.4274569663 0.002637328753 0.002675033067 0.002756620674 0.002797604475 -0.004662274308 -0.4265091616 -0.004304403968 0.4261512913 -0.003932453744 -0.4257745926 0.4253904267 -0.003982712529 -0.4953607158 -0.004352352139 0.4957303555 -0.004705472699 -0.4940266748 -0.005035442302 0.4943566444 -0.002688174069 -0.002652902839 0.2458587134 -0.2457914763 0.002719110617 0.0028814717 0.2456490018 -0.002967270315 0.2453552308 0.002898068578 -0.2448786103 0.2449449522 -0.003033612176 -0.2448106965 -0.003096456423 -0.003206958962 0.003154691163 0.2434504454 -0.2427509169 0.2427949525 -0.003250994586 -0.2427053414 -0.003320184152 -0.003306891664 0.003302798198 0.2393545607 -0.2370120236 0.2370088135 -0.003303681564 -0.2370161658 -0.003374451668 -0.0034870479 0.003381301007 0.2267197632 -0.2282992036 0.228387231 -0.003575075344 -0.2282075819 -0.003646834444 -0.003585024153 0.003601380501 0.2307164797 -0.229984142 0.2299633309 -0.003564213024 -0.2300049406 -0.003639144021 -0.003493252421 0.003518159315 0.2269312068 -0.225932822 0.2259063089 -0.003466739255 -0.2259596182 -0.003541034101 -0.003376391369 0.003408331296 0.2230596686 -0.2222255955 0.2221918497 -0.003342645546 -0.2222599551 -0.003414955554 -0.003230502499 0.003269726673 0.2198680191 -0.2192209109 0.2191797791 -0.003189370796 -0.2192629465 -0.003258497525 -0.003053832584 0.003101113378 0.2173629653 -0.2168913241 0.2168418286 -0.003004337087 -0.216942005 -0.003069139789 -0.002841725029 0.002898366472 0.2154899733 -0.2151653411 0.2151061607 -0.00278254468 -0.2152259631 -0.002841951298 -0.002488583448 -0.2140974909 -0.4271583314 -0.004601713742 0.426872763 0.002427190141 0.002460092001 0.002528025524 0.002562665288 -0.004294040783 -0.4258084709 -0.003966483871 0.425480914 -0.003625565424 -0.4250004143 0.4246482846 -0.00370920295 -0.4960980761 -0.004051039003 0.4964399122 -0.004377328645 -0.4946733724 -0.004682328507 0.4949783723 -0.002499921806 -0.002465299727 0.2461209229 -0.2460585973 0.002529315975 0.002664211542 0.245927839 -0.002747720392 0.2456176356 0.002684323257 -0.245134908 0.2451954825 -0.002808294931 -0.2450730355 -0.002860161058 -0.002964499293 0.002917890791 0.2436449883 -0.2429186055 0.2429572734 -0.003003167141 -0.2428787188 -0.003060191031 -0.003051333201 0.003047364909 0.2393703229 -0.2370049062 0.2370055358 -0.003051962805 -0.2370052459 -0.003109615677 -0.003243583851 0.003142470371 0.227131122 -0.2286313709 0.2287066514 -0.003318864361 -0.2285531542 -0.003377640828 -0.003318177545 0.003335127015 0.230649509 -0.2299009015 0.2298801068 -0.003297382893 -0.2299217043 -0.003358536196 -0.003227863902 0.003252038221 0.2268334393 -0.2258283949 0.2258029292 -0.003202398263 -0.2258541038 -0.003262962876 -0.003116994012 0.003147006262 0.2229368516 -0.2220940376 0.222062479 -0.003085435395 -0.2221260972 -0.00314436164 -0.002981352665 0.00301764246 0.2197186652 -0.2190613836 0.2190234336 -0.002943402648 -0.2191000582 -0.002999764693 -0.002818889699 0.002862249765 0.2171839275 -0.2166998882 0.2166545565 -0.002773557922 -0.2167461675 -0.002826463656 -0.002624860683 0.002676630318 0.2152759286 -0.2149366295 0.2148825495 -0.002570780704 -0.214991871 -0.002619353426 -0.002311138672 -0.2138495042 -0.4265988313 -0.004271987497 0.4263348986 0.002252100409 0.002283819814 0.002335239959 0.002367484546 -0.00398777004 -0.4251656626 -0.003685059825 0.4248629524 -0.003369726689 -0.4242880878 0.4239623469 -0.003484182546 -0.4967816743 -0.003803578053 0.4971010698 -0.004108062565 -0.4952725699 -0.004392152367 0.4955566597 -0.002343283563 -0.002313513277 0.2463640867 -0.2463058024 0.002373741117 0.002484730765 0.2461841613 -0.002566466043 0.245859204 0.00250784534 -0.2453696565 0.2454254855 -0.00262229503 -0.2453127907 -0.002664660151 -0.002764543781 0.002722492336 0.2438196756 -0.2430666086 0.2431010724 -0.002799007559 -0.2430312048 -0.002845464185 -0.002842611935 0.002837950105 0.2393877107 -0.237013247 0.23701775 -0.00284711495 -0.2370097081 -0.002893475078 -0.003044184093 0.002947579335 0.2275241819 -0.2289161598 0.2289810231 -0.003109047432 -0.2288489079 -0.003156608417 -0.003100359433 0.003117697206 0.2305806897 -0.2298178603 0.229797166 -0.003079665142 -0.2298385816 -0.003128987385 -0.003011567092 0.0030350729 0.2267384472 -0.225727953 0.2257033976 -0.002987011677 -0.2257527171 -0.003035791965 -0.002905741019 0.002934157945 0.2228209037 -0.2219706265 0.221940863 -0.002875977611 -0.222000797 -0.002923409481 -0.002778427301 0.002812350283 0.2195796058 -0.2189136187 0.2188782255 -0.002743034098 -0.2189495884 -0.00278841288 -0.002627341285 0.002667569142 0.2170185686 -0.2165238151 0.2164818074 -0.002585333644 -0.2165665703 -0.002627979158 -0.002447745995 0.002495624587 0.215078899 -0.2147267792 0.214676777 -0.002397743827 -0.2147776881 -0.002436988695 -0.002167151021 -0.2136203894 -0.426079252 -0.00400370158 0.4258329643 0.002111700241 0.002138289085 0.002177928006 0.00220831618 -0.00373902017 -0.4245701501 -0.003456346497 0.4242874764 -0.003161468496 -0.4236272675 0.4233240951 -0.003306961291 -0.4974232483 -0.003608045239 0.4977243322 -0.003895167746 -0.4958319997 -0.004163024934 0.4960998569 -0.002217160011 -0.002195320632 0.2465928656 -0.2465378936 0.002252177234 0.002338587052 0.2464235821 -0.002420332802 0.2460845631 0.002365415398 -0.2455871188 0.245639224 -0.002472437995 -0.2455341668 -0.00250698444 -0.002603679229 0.002565187338 0.2439786982 -0.2431994046 0.2432306926 -0.002634967289 -0.2431674056 -0.002672751958 -0.002676567755 0.002670615258 0.239409428 -0.2370369782 0.2370452654 -0.002684854974 -0.2370296223 -0.002722006267 -0.002885242685 0.002792836208 0.2278999868 -0.2291624058 0.2292188518 -0.002941688719 -0.22910402 -0.002980146993 -0.002927091846 0.002944638364 0.2305107633 -0.2297353188 0.2297147955 -0.00290656861 -0.2297558938 -0.002946276347 -0.002839820695 0.00286273297 0.2266459325 -0.225630933 0.22560715 -0.00281603773 -0.2256548995 -0.002855223505 -0.002738154858 0.002765277196 0.2227105624 -0.2218538443 0.2218255259 -0.002709836391 -0.221882497 -0.002747897221 -0.002617474737 0.002649527568 0.219448735 -0.218775223 0.2187418414 -0.002584093164 -0.2188090648 -0.002620501396 -0.002475298676 0.002513082017 0.2168639683 -0.216359882 0.2163204644 -0.002435881123 -0.2163998897 -0.002470125499 -0.002306919976 0.002351783504 0.2148951629 -0.2145317375 0.214484881 -0.002260063494 -0.2145793115 -0.002291622221 -0.002056061935 -0.213405427 -0.4255943001 -0.003794482386 0.4253622496 0.002003632537 0.002022900364 0.002053848428 0.002076655827 -0.003544742758 -0.4240124075 -0.003277828067 0.4237454928 -0.002999363985 -0.4230045781 0.4227160395 -0.003176242127 -0.4980280899 -0.003463615128 0.4983154629 -0.003737614359 -0.4963609668 -0.003993239046 0.4966165915 -0.002122734698 -0.002108627519 0.2468101416 -0.2467576776 0.002162890676 0.002225211281 0.2466491398 -0.002309007884 0.2462969891 0.002257027151 -0.2457908727 0.2458400418 -0.002358176905 -0.2457410524 -0.002384114864 -0.002480976505 0.002445154098 0.244125744 -0.2433209074 0.2433499337 -0.002510002817 -0.2432913895 -0.002538337753 -0.002551709224 0.002544021159 0.23943746 -0.2370756384 0.2370875617 -0.002563632563 -0.2370646053 -0.002590882255 -0.002765855051 0.002677176824 0.2282601837 -0.2293777196 0.229427507 -0.002815642456 -0.2293264064 -0.002844121307 -0.002796833083 0.002814442038 0.2304403709 -0.2296535285 0.2296332214 -0.002776525901 -0.2296738978 -0.002805851355 -0.002710974943 0.002733393415 0.226555539 -0.2255367656 0.2255136015 -0.002687810858 -0.2255600756 -0.002716691959 -0.002612562097 0.002638686108 0.222604645 -0.2217423171 0.2217151045 -0.00258534947 -0.2217697825 -0.002613369676 -0.002496908748 0.002527555606 0.2193241606 -0.2186440889 0.2186122133 -0.002465033147 -0.2186763043 -0.002491824125 -0.002361376499 0.002397341844 0.2167175459 -0.2162052767 0.2161677849 -0.002323884715 -0.2162432009 -0.002349087739 -0.002201354714 0.002243965578 0.2147215443 -0.21434807 0.214303573 -0.002156857677 -0.2143930944 -0.002180088411 -0.00197601314 -0.2132015691 -0.4251359666 -0.003641973623 0.4249142663 0.001925750159 0.001937923827 0.001960834734 0.001976691414 -0.003403258641 -0.4234845746 -0.003147966591 0.4232292826 -0.002881331854 -0.4224147901 0.4221387177 -0.003091849561 -0.4986080584 -0.003368114748 0.4988843236 -0.003631647058 -0.4968673646 -0.003878423933 0.4971141415 -0.002057891654 -0.002051078933 0.2470187859 -0.2469681663 0.002103569404 0.002142644141 0.2468640489 -0.002230775156 0.2464995428 0.002180994363 -0.2459840339 0.2460310249 -0.002277766154 -0.2459365861 -0.002294431788 -0.00239457803 0.002360571609 0.2442642325 -0.2434346562 0.2434622917 -0.002422213481 -0.2434067605 -0.002440390429 -0.002465933214 0.002456133412 0.2394733803 -0.2371286197 0.2371440415 -0.002481355001 -0.2371140633 -0.00249798002 -0.002684406037 0.002598948897 0.2286066959 -0.2295687105 0.2296133438 -0.00272903935 -0.2295229258 -0.002746643925 -0.002707350038 0.002724918455 0.2303700104 -0.2295726423 0.2295525638 -0.002687271583 -0.2295927737 -0.002705440078 -0.002622692901 0.002644735036 0.2264668422 -0.2254448424 0.2254221341 -0.002599984682 -0.2254676448 -0.002617851996 -0.002526624221 0.002552037087 0.2225020116 -0.2216347351 0.2216083049 -0.00250019403 -0.2216613268 -0.002517510127 -0.002414492771 0.002444162601 0.2192041398 -0.2185182829 0.2184874489 -0.002383658786 -0.2185493308 -0.00240019694 -0.002283534366 0.002318252072 0.2165769683 -0.2160574659 0.2160212952 -0.00224736367 -0.2160939071 -0.002262907764 -0.002129253841 0.002170314427 0.2145551776 -0.2141727341 0.2141298623 -0.002086382009 -0.2142159395 -0.002100684396 -0.001924756077 -0.2130054531 -0.4246970262 -0.003541808141 0.4244822485 0.00187548145 0.001881104348 0.001897127043 0.001905374464 -0.003310657418 -0.4229778171 -0.003064505893 0.4227316656 -0.002807603865 -0.4218639475 0.4215803346 -0.003016370763 -0.4991619892 -0.003303327762 -0.003567737192 -0.4973577676 -0.003813084049 -0.00202210203 -0.002012746611 -0.2471710491 0.002068220847 0.002091089802 0.2470706973 -0.002183151989 0.2466945737 0.002135195408 -0.2461694207 0.2462147875 -0.002228518756 -0.2461236783 -0.002237438763 -0.002341702469 0.002308615571 0.244397648 -0.2435442246 0.2435714569 -0.002368934792 -0.2435170042 -0.002378521702 -0.002417069374 0.002404637161 0.2395188351 -0.2371953497 0.2372142197 -0.00243593937 -0.2371774466 -0.002443030562 -0.002638651377 0.002556113552 0.2289415191 -0.2297410093 0.2297816975 -0.002679339599 -0.2296994182 -0.0026880671 -0.002655894678 0.002673326182 0.2302999632 -0.2294926428 0.2294728034 -0.002636055316 -0.2295125737 -0.002644712553 -0.002572204849 0.002593996099 0.2263793462 -0.2253545022 0.2253320802 -0.002549782844 -0.2253769765 -0.00255821306 -0.002477572041 0.002502552042 0.2224015425 -0.2215298368 0.2215038823 -0.002451617567 -0.2215558755 -0.002459760519 -0.002367572211 0.002396654128 0.2190870642 -0.2183960244 0.2183658131 -0.002337360846 -0.2184263453 -0.002345101419 -0.002239316451 0.002273304436 0.2164400996 -0.215914127 0.215878725 -0.0022039144 -0.21594966 -0.002211163709 -0.002088388596 0.002128533879 0.2143934429 -0.2140029445 0.2139610677 -0.002046511793 -0.2140450078 -0.00205313217 -0.001897202293 -0.2128152726 -0.4242702199 -0.003488384367 0.001844416741 0.001852978166 0.001859207321 0.001865908106 -0.003257416148 -0.4224875416 -0.003009349466 -0.002740958919 -0.4213120445 -0.05213904683 -0.002938854763 0.002808461288 -0.002891823998 -0.05205568412 -0.05220904561 0.01704812789 -0.1264430153 -0.01579939502 0.1250189178 -0.1264012569 0.01843046703 0.1239397318 0.01776020133 -0.05457039978 -0.003182805064 0.00306789929 -0.003175431855 -0.05446286721 -0.0544998118 -0.002746703265 -0.05188193804 0.0547165772 -0.0667097155 0.009246435039 0.008729633159 0.05474092385 0.0286958482 0.006771429233 -0.006524705492 0.006642091903 0.1227799558 0.01722768035 -0.01556290302 0.0164959841 0.1218468747 0.1220924118 -0.0875837381 0.01512164904 -0.01635867535 0.018234274 -0.08945933675 -0.09129992471 -0.01480984136 0.102755996 -0.03147219082 -0.1034970582 0.03466368129 -0.03326417816 0.1013564929 0.1025049954 -0.1539505208 0.01618789157 -0.01935602405 0.01825588912 -0.1528503858 -0.1557134504 0.0003494245771 -0.09663597739 0.09762937752 -0.09721617211 -6.378083139e-05 0.0980226832 0.0002491714434 0.0949080966 -0.0944081067 -0.002706386285 0.001636420098 0.09540422575 -0.002132549243 0.09463598662 -0.1537571647 -3.882170628e-05 -0.001022799005 0.001709197834 -0.1544435636 -0.1568993499 0.002228496635 -0.099667723 0.1004417262 -0.1001310974 0.001917867909 0.1007426244 0.002111910042 0.09840632641 0.0005301335827 -0.001162753355 0.0007917101918 0.09877736958 0.09827328429 -0.1450729703 -0.01011328928 0.01048723714 -0.009257350197 -0.1463028572 -0.1477521241 0.003640786219 -0.1019817698 0.1027335676 -0.1024499731 0.003357191767 0.1030246964 0.003526207477 0.1010393135 0.00230053094 -0.002769547557 0.002484153109 0.101324708 0.1008711749 0.001034118548 -0.02517034686 0.0249477619 -0.0249732426 0.02493744976 0.004960699431 -0.002654212317 -0.1044480121 0.1053296198 -0.1049488181 0.004579897786 0.1056877913 0.004690516429 0.1033198086 0.003691126219 -0.004157866618 0.003857051386 0.1036206238 0.1031292714 0.001995476399 -0.02611931674 0.02611559969 -0.02578105172 0.001660928428 0.02628257071 0.00158078255 0.02543643264 -0.02554945221 -0.001135358518 0.02541084467 0.02575550951 0.01147885324 -0.06487314237 0.06427410404 -0.06472749078 0.01193223998 0.06390771586 0.01193736778 0.02316809336 -0.002957337939 -0.1081320949 0.109272061 -0.108407645 0.02230367739 0.1096794406 0.005107045642 0.1060794318 0.004785791033 -0.005269952141 0.004872744149 0.1064766398 -0.002838011604 0.1060016964 -0.05296685071 0.05307642817 -0.003115088098 0.003009562156 -0.00312279683 -0.05285361603 -0.05302053844 -0.0441886551 0.04414492233 -0.004942467929 -0.04415608712 -0.04523582227 0.00126395482 -0.04764517126 -0.0006628530807 0.04779721483 -0.0476928106 0.001159550595 0.00120875087 0.04704076428 -0.0469034905 0.0008756090718 -0.00106226927 0.0009250081929 0.04717802536 0.04704235657 -0.02422928978 0.02419765347 -0.0006756657848 0.000698579271 -0.0006663242229 -0.02426154483 -0.02398378431 -0.0001081444802 0.04719547362 -0.04560698286 0.04525558072 0.0002432576627 -0.04578010289 0.000592624575 -0.04150011031 0.04155888363 0.001549493007 -0.04145772854 -0.04165958715 0.003711574053 0.04434620841 -0.04397632985 0.04377842859 -0.04580430552 0.0009280718434 -0.001468131643 0.00129028844 -0.04562646232 -0.04761717431 -0.0007288246329 0.02399306044 -0.02416081707 0.02412554329 -0.0006935508576 -0.0006833174121 -0.07477299474 0.07431601118 -0.008930305846 0.009170229666 -0.008699522041 -0.07524370237 -0.07543928928 -0.002075413948 0.04248723011 -0.04156608538 0.04159092316 0.001203098809 -0.02626868367 0.02554411867 -0.02562146978 0.02491191718 -0.001057165479 0.02489729603 0.0249117907 0.02629663361 0.001473144142 -0.00130147037 0.001404590812 0.02619351317 0.02671140982 -0.002600246961 0.05184645707 -0.05161872927 0.05170429156 -0.002685809253 -0.002631232777 -0.05154419987 0.06349357305 0.01178123936 -0.01126674026 0.01154984066 0.06321047266 0.06336456603 -0.003051740246 0.05345504676 -0.05318697816 0.05330191213 -0.003166674215 -0.003120386514 -0.003622886387 -0.09226068904 0.09390826653 -0.09343450351 -0.004096649405 -0.003363503982 0.09245927034 -0.09279922655 -0.01101711662 0.009476669393 0.09235424835 -0.009371647398 0.09065056519 -0.001627616979 -0.04066154099 0.04178836606 -0.04135393264 -0.002062050402 0.04223605333 -0.001584622086 0.040049462 -0.04034830431 0.005879379799 0.04022468892 0.03904603963 0.0009367107767 -0.04649855134 0.04675892037 -0.04659755574 0.0007753461484 0.0008302105161 0.04556760882 -0.04529161242 0.0003956404834 -0.0007261515207 0.0004789643862 0.04581479596 0.04577330342 -0.1348284614 0.01521845537 -0.1360134136 -0.1366161716 -0.05650907673 0.05634076634 -0.009027248299 0.009773661205 -0.009489385234 -0.0567933527 -0.05599187073 0.0005145297622 -0.04450432363 0.04498857162 -0.0446603019 0.0001862600393 0.000307704861 0.04268605706 -0.001153033862 0.0003902808571 -0.0008286530353 0.04312442924 0.0428004404 0.02508950253 0.07673636544 -0.07431824433 0.07602215997 0.02338558689 -0.07262339998 0.02374842805 -0.01071808787 0.06993864214 -0.07032554478 0.06991167336 -0.01030421646 -0.07078924758 -0.01018918262 -0.0678635833 0.06740930976 0.01100414223 -0.06822544983 -0.06822585103 -0.009746617054 0.07355030861 -0.07386414656 0.07341140505 -0.009293875547 -0.009140988931 -0.07119605417 -0.010113549 0.01042655129 -0.009996650075 -0.07162595539 -0.07172005949 0.05136798937 -0.02137079453 0.02357427363 -0.02161446271 0.04940817846 0.02501323639 0.04920203948 -0.03799706043 0.01076969937 -0.0113943241 0.01201623459 -0.03861897092 -0.04020862319 -0.0102068819 0.02609962785 0.05376162866 -0.05396812284 0.05401204836 0.02605570233 0.02460943428 0.01973515722 0.04067389897 -0.03808250047 0.03964709874 -0.03689553643 0.02491735029 -0.02496527457 -0.001335533567 0.02488033263 0.02452729925 -0.000414203827 -0.01663960114 0.01747867318 -0.01708676027 -0.0008061167373 -0.000343338457 0.01601600924 0.003684117002 0.01618863961 0.01552906474 -0.02389570506 0.02409663742 -0.0009590739717 0.0007418001966 -0.0009772827419 -0.0007047254583 0.02393705434 -0.02423146514 0.02430286585 -0.0007761261617 -0.0008758523268 -0.04172817072 0.04145597137 0.001272394945 -0.04214675049 -0.04193490438 -0.0009185624822 0.04094289441 -0.04142855045 0.04133955225 -0.04290695027 0.04275742529 -0.002598385716 -0.04298420767 -0.04275706842 0.002813619163 0.04300089419 -0.04287888148 0.04314431732 0.038623739 0.005030096934 -0.004792367935 0.004908673308 0.03850743363 0.03817260846 -0.006524486027 0.03665885497 -0.03625465532 0.0360300086 -0.006299839315 -0.006251528077 -0.03499689871 0.03481269844 0.006523526369 -0.03519728311 -0.03578705324 -0.03049921013 0.03032086795 0.006923892892 -0.03061477683 -0.03069420228 -0.02529662122 0.02529071413 0.005666080492 -0.02544205129 -0.02463460718 0.110088096 0.00511091365 -0.005501827005 0.005092842194 0.1104970808 0.1103905426 0.05404557919 0.003710909948 -0.003529167647 0.003762385593 0.05381236124 -0.002419651526 0.04503874995 -0.006772292929 -0.03016704046 -0.008150033931 0.05452785363 -0.05600736177 0.0558436469 -0.01431226366 0.006883264208 -0.007077937421 0.008362380838 -0.01559670707 -0.01575400617 0.02500523149 -0.0250022665 -0.001021528512 0.02503224532 0.02538490901 0.001082300043 0.02493414433 0.001194665316 -0.02508796161 0.02503778402 -0.02510787272 -0.004221117515 0.02736134893 -0.03519079047 0.03687019919 -0.00590052623 -0.006201691648 -0.04338394133 0.04340590165 -0.007207433251 0.006314140763 0.04392479454 -0.04345929435 0.04347951797 -0.04041803756 0.04021659443 0.003213845182 -0.0406853946 -0.04104576361 -0.003166531511 0.0402726047 -0.0401056315 0.04002117853 0.02496878155 -0.02487349163 -0.001456474783 0.02513719867 0.02526406029 0.00115730654 -0.02466599051 0.02483860854 -0.02482773351 -0.00661677492 0.03466366891 -0.03461457554 0.03440240564 -0.00531498495 0.02450294119 -0.02505180319 0.02505479449 0.02306985054 0.004575557454 0.01080298105 -0.01131942724 -0.1379165832 0.02872052045 -0.03146268469 -0.1353775311 0.02892363261 -0.1354305954 -0.01088696976 0.06657534326 -0.06704591775 0.06670919135 0.01820497497 -0.01682005452 0.130607844 0.129220974 0.1322622102 -0.1296702359 0.0374096527 0.03449167874 -0.07090936189 0.02376641414 -0.02528851376 -0.06934566613 0.023724818 -0.0691350217 0.01178306332 -0.01143299164 0.06594588906 0.06557940785 0.07922518289 -0.07803656884 0.01927299795 0.01829129637 -0.03558223577 -0.01882882566 -0.2283214492 0.002887476041 -0.002316486466 0.002556663157 -0.002115722216 -0.002785970988 -0.2284810678 0.003051598377 0.2282418798 -0.2284711877 0.2279625922 0.2286793175 0.002402523714 -0.2281260852 0.004118312766 -0.003313135182 0.003605828925 -0.003894258028 -0.2283784458 0.004201116222 0.2280567925 -0.2283452217 0.2277223372 0.2285866456 0.003324336735 -0.2280625324 0.00555931669 -0.004499507657 0.00481424982 -0.005099444833 -0.2284204899 0.005385245351 0.228036995 -0.2283225729 0.2276174636 0.2285825855 0.004343055971 -0.2282498503 0.007396903684 -0.005635414801 0.00591166953 -0.006156726644 -0.2286992033 0.006424720504 0.2282797212 -0.2285346828 0.227809346 0.2287011252 0.005165568406 -0.2286595067 0.008951248804 -0.006636833663 0.006842975392 -0.006970058745 -0.2290565293 0.007073546381 0.2287423717 -0.2288740943 0.2285254286 0.2289658212 0.005548432979 -0.229275285 0.009282025946 -0.007085453611 0.00706927759 -0.006959469901 -0.2294601655 0.006828512503 0.2293825772 -0.2292653308 0.2295692963 0.2292556682 0.005598121307 -0.2298758054 0.008133812619 -0.006625625053 0.006417112782 -0.006160123174 -0.2298319726 0.005924077116 0.2299342637 -0.2296690677 0.2304097998 0.2295224219 0.00520146201 -0.2301813649 0.006275645069 -0.005645200308 0.005382422708 -0.005096738688 -0.229963863 0.004821380211 0.2301639714 -0.2298782874 0.2305790964 0.2296532995 0.00433795915 -0.2302425173 0.004872144393 -0.004524203061 0.004254857279 -0.003962572518 -0.2299385087 0.003693780055 0.2301914267 -0.2298991419 0.2305282762 0.2296710491 0.003385740919 -0.2301305913 0.003613527848 -0.003419336148 0.003179971465 -0.002924091889 -0.2298228769 0.002707481769 0.2300600502 -0.2298041707 0.2303436864 0.2296062034 0.00251846683 0.00232082609 -0.2270476075 0.004065752146 -0.003435587426 0.003803283008 -0.003096310208 -0.004203031462 -0.2271825857 0.004630131836 0.2268918422 -0.2272915906 0.2264553329 0.2276470785 0.003876440075 -0.2263061618 0.006915271608 -0.005074345471 0.005748017634 -0.00676522489 -0.2264628196 0.007885539547 0.2257537095 -0.2267856346 0.2243900169 0.2273369765 0.005640160008 -0.2247141486 0.01269532524 -0.009082679086 0.01032311946 -0.01158970069 -0.2258517139 0.01283584913 0.2245629062 -0.2258825092 0.2229773456 0.2268969733 0.009258974076 -0.2248105747 0.01854573018 -0.01405563044 0.01521989961 -0.01629777846 -0.2265114859 0.01726737325 0.2250948878 -0.2262196108 0.2237722561 0.2271243018 0.01302653001 -0.2265964346 0.02277373266 -0.01810296594 0.01879266824 -0.01930287554 -0.2283516707 0.01962515909 0.2272722861 -0.2277948212 0.226643127 0.2282111032 0.01545939992 -0.2296443189 0.02387223954 -0.01973683965 0.01964262712 -0.01931804615 -0.2307058871 0.01878679248 0.2304724162 -0.2301194059 0.2308491633 0.2298130551 0.01541006879 -0.232666497 0.02100932481 -0.01804715661 0.01711956371 -0.01602670841 -0.2323197607 0.01481087324 0.2331913501 -0.232043307 0.2345343832 0.2311185196 0.0127049115 -0.2339258763 0.01502698548 -0.01349710138 0.01212602014 -0.01074006385 -0.2322250374 0.009391259864 0.2338404687 -0.2324059056 0.235619582 0.2313199962 0.008579837581 -0.2327201021 0.008427030023 -0.008101572762 0.006936593209 -0.006188725114 -0.2312868827 0.005662598067 0.2320862931 -0.2313344748 0.2336235513 0.2309075075 0.005650022293 -0.2323932555 0.0006635186349 -0.004900784491 0.003723105768 -0.0005361729679 -0.2327292615 -0.002668396545 0.2349586101 -0.2317716773 0.2368904559 0.2307201658 0.003316612724 0.001443753421 -0.227604658 0.01055545049 -0.007254773984 0.005747641492 -0.008625436379 -0.006397915584 -0.2241522221 0.007778104394 0.2247648832 -0.2254242987 0.2249694943 0.2259860753 0.005118245366 -0.2195590191 0.0134820919 -0.009648307146 0.011689518 -0.01384632698 -0.2199881591 0.01605367572 0.21847923 -0.2207235488 0.2160816874 0.2227019908 0.01189128237 -0.2168514253 0.02285949953 -0.01827268607 0.0204696008 -0.02261066598 -0.2191574011 0.02468084514 0.2168027927 -0.2190489257 0.2144224877 0.2211214396 0.01986979575 -0.2180009652 0.03129803613 -0.02665208534 0.02850521156 -0.030222 -0.2214485954 0.0317777507 0.2188172145 -0.2206032958 0.2169479315 0.2222673079 0.02694688205 -0.2224836714 0.03748900963 -0.03315924889 0.03433630763 -0.03527863947 -0.2265626172 0.03595798319 0.224101724 -0.2250572469 0.2230378629 0.2259051918 0.03155927697 -0.2297852915 0.03998557271 -0.03634260027 0.03641486909 -0.03613783683 -0.2333069059 0.03551029198 0.2319307385 -0.2316099018 0.2321798356 0.2312393894 0.03211016941 -0.2378338628 0.03685560869 -0.03452281327 0.0331889062 -0.03152362815 -0.2387624019 0.02956695039 0.2394693604 -0.2377107317 0.2414189785 0.236058728 0.02764006203 -0.2425208832 0.02783907744 -0.02735738973 0.02494545512 -0.02223032057 -0.2400190483 0.01839518828 0.2429570064 -0.2401297634 0.2473870483 0.2377250795 0.0192712215 -0.2445906131 0.00817019989 -0.01304598722 0.00828714055 -0.004819872295 -0.2425284817 0.005982827613 0.2459063889 -0.2423684058 0.2441917421 0.2366482209 0.005097865431 -0.234727491 0.006292656013 -0.00626894543 0.00504580183 -0.004608119495 -0.2323230145 0.004155773585 0.2331677755 -0.2327293657 0.2345911188 0.2334754748 0.003907826333 0.003870288494 -0.2177700653 0.009136417869 -0.006362355726 0.008709493492 -0.004478078461 -0.01145741492 -0.2166501188 0.01538674352 0.2149023517 -0.2177274027 0.2122904508 0.2217576928 0.0134237923 -0.2104778375 0.02191701678 -0.01995278119 0.02822950293 -0.03173156346 -0.2127695341 0.02966946757 0.2101129092 -0.2137647951 0.2051185136 0.214201055 0.02295139423 -0.209050039 0.03842504239 -0.02990740546 0.03031270687 -0.0320434935 -0.210033266 0.03395665297 0.2076726784 -0.2095342045 0.2073360996 0.2119696272 0.02921137802 -0.2107599069 0.03923009443 -0.035733907 0.03688593795 -0.0384329652 -0.214600911 0.04000210155 0.2115282157 -0.2131409161 0.2105823736 0.2150333212 0.03717309457 -0.2167040551 0.04377730975 -0.04163298279 0.04319884424 -0.0446286464 -0.2231318227 0.04585362697 0.2191275569 -0.2205667483 0.2175050158 0.221863767 0.04325809078 -0.2285642007 0.04820964573 -0.04679844008 0.04729161075 -0.04684123434 -0.2361415957 0.04485734527 0.2328803375 -0.2323962177 0.2344031473 0.2323197155 0.04544320143 -0.2438590454 0.04466947804 -0.04229892313 0.04185458476 -0.04059941006 -0.24831157 0.03770237029 0.2478023389 -0.2464544983 0.2499485353 0.2440779996 0.03816999762 -0.259899552 0.03470496257 -0.03174124366 0.02784274212 -0.02926234911 -0.2545732052 0.02873610512 0.2569038624 -0.2581711375 0.2578567606 0.2543672481 0.02189073345 -0.2537842844 0.02424554561 -0.02606682858 0.02269265125 -0.01927696027 -0.2470197354 0.01595761849 0.2524635969 -0.248910053 0.2561664387 0.2457617784 0.01747550909 -0.245031932 0.01084288836 -0.01281787119 0.009914621155 -0.00732070247 -0.2359689842 0.00503687021 0.2417843024 -0.2391359916 0.2446830436 0.2367274024 0.006395683054 0.004636749394 -0.2085958388 0.01004605164 -0.006867672423 0.008764208183 -0.005521199426 -0.01225964766 -0.2040513962 0.01481643909 0.2034006749 -0.2070291732 0.2022255656 0.2096437558 0.0122978684 -0.1972877694 0.01926048201 -0.01739382658 0.01998165698 -0.02248025818 -0.1986108301 0.02485613619 0.1963222932 -0.1989946516 0.1937817622 0.2018271614 0.02300219504 -0.1973465643 0.02783406874 -0.02719102427 0.02993481819 -0.03195492158 -0.2050964495 0.03602459444 0.1990389203 -0.2011845994 0.1967114405 0.2051636526 0.03557325364 -0.2049475064 0.03749067529 -0.0404304318 0.042108201 -0.04125153197 -0.2103913684 0.04200439276 0.2092910468 -0.2084609647 0.2057081768 0.209504827 0.04130035802 -0.2111458162 0.02985286035 0.1004307516 0.02562196949 -0.04580578758 0.04751475715 -0.05115076141 -0.2163363023 0.05460024428 0.1070052035 0.1058816159 -0.2130952717 0.1045662088 0.1048930587 0.02960701892 -0.1039276913 0.2156879518 0.04713699033 0.0300681984 -0.1157812769 -0.03136939373 -0.05464416465 0.05099543793 0.1153699327 0.1180058427 0.1122472303 0.1094130939 -0.05062053807 -0.2401527668 0.04752518448 0.2371219544 -0.2367470545 0.1202894965 -0.02974274264 0.235971097 0.04866164546 -0.2536877392 0.04714790181 -0.04517752552 0.04320187748 -0.04450744358 -0.2576697246 0.0444590658 0.2552460798 -0.256497448 0.2547068532 0.03900728531 -0.2644380195 0.03929809856 -0.0425604405 0.03974614028 -0.0366982192 -0.2650329393 0.03330571228 0.2669260809 -0.2637327739 0.2703212182 0.2604935029 0.03653500835 -0.2692398656 0.02346119853 -0.02967651006 0.02575292198 -0.02185776169 -0.26185436 0.01659433543 0.2679276149 -0.2638537734 0.2705717254 0.2599318352 0.02228473877 -0.2577096929 0.01350689189 -0.01409223309 0.01296625861 -0.009979096933 -0.2456519121 0.007298603524 0.2532677837 -0.2501757964 0.2564874569 0.2478614726 0.007963573993 0.006509664059 -0.1992729888 0.006389389453 -0.006214552524 0.008169963693 -0.004465719372 -0.01026342264 -0.1938878617 0.01243387271 0.1949215392 -0.1971726943 0.1929087676 0.1996092756 0.01121623948 -0.1877668615 0.01403241739 -0.01461055815 0.01671384232 -0.01868774705 -0.1897737282 0.02049025545 0.1873254188 -0.1894840902 0.1854823885 0.1918305853 0.02040181714 -0.1912410771 0.02007675084 -0.02196760413 0.0221782295 -0.02276689411 -0.1955078021 0.02347235663 0.1929870194 -0.1936755047 0.1918041204 0.1949833683 0.02498157246 -0.1965063782 0.02335798415 -0.0244180668 0.02610700412 -0.09694385871 -0.01608576237 0.09463644101 0.1924448223 -0.1953758206 0.01500497125 0.01403303121 0.0128066766 0.01267662946 0.09478232859 0.2004226196 0.03470968234 0.02027377572 0.09602752539 -0.02858036071 0.02846904198 -0.09746479283 0.09984978891 -0.02801454699 -0.1004156026 0.09485758951 -0.02516875806 -0.1132573521 0.04160262386 0.0576132163 -0.03722797387 0.0382733248 -0.03838130007 -0.03769379983 -0.1201529168 0.03665456153 0.1168656417 -0.1162861167 0.05829004692 0.1152817255 -0.1154941554 0.03593363924 0.03429642215 -0.2763166363 0.03506589142 -0.03916533449 0.0374014611 -0.03451648892 -0.2781122488 0.03142822025 0.2791858577 -0.276177412 0.2822341295 0.273956616 0.03368276302 -0.2826573467 0.02291501506 -0.02812437089 0.02463441221 -0.02122772402 -0.2755439631 0.01785966523 0.2814265034 -0.2778308178 0.2847188534 0.2742098975 0.02272858933 -0.2710250099 0.01073341604 -0.01471092645 0.01172898592 -0.009003137875 -0.2568951515 0.006578009934 0.265612057 -0.2627447355 0.2683682533 0.2596802743 0.009852757925 0.007222925205 -0.1928983421 0.002675474239 -0.001074412522 0.002331768743 -0.0002997588356 -0.0036935116 -0.1859270924 0.005145454187 0.1879833939 -0.1895133763 0.1864465997 0.1911601241 0.007688946155 -0.1807390333 0.008007759747 -0.006629878349 0.008079161839 -0.009429376065 -0.1833575808 0.01061908834 0.1808213656 -0.1823572578 0.179552426 0.1836965555 0.01330407998 -0.1869245063 0.01089290605 -0.01159215637 0.01227743162 -0.01263361952 -0.1935228174 0.1901493933 -0.1905909566 0.1901068544 0.1908400674 0.01549046964 -0.1477156566 0.02422161673 0.1497467912 -0.02814557796 0.02592288917 -0.02394642238 -0.1420760191 0.1457069498 -0.143730483 0.1473630122 -0.2864346458 0.0220983144 -0.02876054656 0.02688622398 -0.02481457741 -0.2895656234 0.02256118931 0.2895176525 -0.287342557 0.2916433581 0.2853306284 0.02736765807 -0.2937339471 0.01370869687 -0.02018894149 0.01776460394 -0.01529836426 -0.2877054309 0.01284729379 0.2926854335 -0.29002809 0.2950097844 0.2877670582 0.01979974282 -0.2816359022 0.005761821487 -0.01051095218 0.008316008219 -0.006301930127 -0.2664349647 0.004499106284 0.2755577537 -0.2733853744 0.2773058197 0.2682686293 0.008059170973 0.005899310001 -0.1877038869 -0.0005232749004 0.0009458392498 0.0001002884697 0.001850274483 -0.001220327115 -0.1798490881 0.002369517214 0.182369859 -0.1836631482 0.1811160464 0.1850135079 0.001922239668 -0.175487439 0.003609836105 -0.003468932061 0.00446997067 -0.00529882498 -0.1791317756 0.005900190623 0.1762490077 -0.1772629226 0.1753100306 0.1783636455 0.006297332346 -0.185838492 0.005011526724 -0.006218352931 0.006211279253 -0.005820906772 -0.1950689854 0.19067661 -0.1903655578 0.1910775276 0.1901803493 0.007261728342 -0.1555393962 0.00751514916 0.1553486023 -0.009632384717 0.009605114451 -0.004541398739 -0.009483272186 -0.1502600347 0.1528630974 -0.1527412552 0.1527335543 0.1524880666 -0.151929695 0.01149863729 -0.2909199887 0.006452656216 -0.01115170357 0.01065594345 -0.009844314973 -0.2970261381 0.008799669604 0.2949772121 -0.2940684651 0.2957240429 0.2929641467 0.01384921854 -0.3009699957 0.002748740935 -0.00763705925 0.006326251958 -0.004964543335 -0.2964054911 0.003657097402 0.3002338125 -0.298681075 0.3015777603 0.2969447484 0.008288808802 -0.2885771 -0.001290036549 -0.002393325431 0.001189290851 -0.0002842840902 -0.2728105528 -0.0005014591061 0.2816281427 -0.2805596989 0.2824262184 0.2790944783 0.002462170805 0.001314867101 -0.1831396203 -0.002264604389 0.002763128776 -0.001809167514 0.003610927001 0.0008128812273 -0.1747756317 0.0001701698501 0.1774896728 -0.1786642125 0.1763354747 0.1798760057 -0.0001970368807 -0.1713812878 0.001225998125 -0.001063915058 0.001816214435 -0.002363217757 -0.17660204 0.002646517362 0.1729588629 -0.1736905504 0.1722812616 0.1744666617 0.003148581114 -0.1864228112 0.001453023411 -0.002622690209 0.002253819955 -0.001517096742 -0.1987137925 0.1928992645 -0.1922363475 0.1936105759 0.1916094245 0.002481610876 0.001048685127 -0.04842512485 0.04863414815 -0.04853850025 0.04873912276 0.04842971391 -0.04833045202 -0.0009909938052 -0.1498895257 -0.006017215401 0.1487407224 0.005679905712 -0.004554825062 0.003594044471 -0.1472931538 0.1481210432 -0.1490818238 0.1470890582 0.1499852215 -0.1507575924 -0.002360014312 -0.2906771474 -0.007610255445 0.004647585676 -0.004128871796 0.003965276252 -0.3026719894 -0.001806576205 0.2963355133 -0.296393468 0.2963813117 0.2958594043 -0.00161815486 -0.3048163172 -0.008066934059 0.001805039331 -0.005310860477 0.006182982056 -0.300594833 -0.006974111933 0.3041919119 -0.3031277024 0.3046186992 0.3025819993 -0.003825784272 -0.2911244505 -0.00836172288 0.007540815866 -0.007749998509 0.007652259546 -0.2749058673 -0.007195398175 0.2834504251 -0.2833903102 0.2832500865 0.283185587 -0.004606600277 -0.004504917804 -0.1787209095 -0.004464657363 0.003064541704 -0.002058402896 0.004062527509 0.001112798788 -0.1702477197 -0.0002820917743 0.1729462012 -0.1740752003 0.171833593 0.1751938125 -0.002059242423 -0.1681701607 -0.0009969936418 -0.0003657292931 0.0007842937963 -0.0009368602741 -0.1751153409 0.0007910126733 0.170721419 -0.1710572665 0.1700166992 0.1716531873 0.0006831975468 -0.1882089719 -0.0008724987822 -0.0003321133753 -0.000437566142 0.001495641831 -0.2033516924 0.1962194275 -0.1952286588 0.1971322061 0.1943976973 -0.0007963964277 0.00171800699 -0.04981380082 0.04998372731 -0.04992016624 0.05006056578 0.04984472522 -0.04977419543 -0.001681454701 -0.1398452869 0.1385528524 -0.01273405648 0.01350317614 -0.01213626734 -0.2891259776 -0.01943866701 0.01584425058 -0.01484034451 0.01380379928 -0.3016614082 -0.01303447105 0.2957590644 -0.296671801 0.2966085361 0.2968622104 -0.01287150357 -0.3058536337 -0.01656917004 0.0123922513 -0.01172827896 0.01119240723 -0.2976871505 -0.01534455057 0.3049129319 -0.3052522107 0.3042532347 0.3044960413 -0.01774614054 -0.2896701961 -0.01252499858 0.01530863123 -0.01481219095 0.01370140577 -0.2725396078 -0.0121140225 0.2810854838 -0.2820515463 0.2799983953 0.2829160661 -0.010399079 -0.009202551772 -0.1741078112 -0.007739857514 -0.001247029484 -0.001309116522 0.0007468551462 0.0002945891064 -0.1659642603 0.000499102796 0.1683602772 -0.1695639034 0.1684831678 0.1707035273 -0.002458815907 -0.1654463343 -0.001970360453 -0.001018881155 0.001216788334 -0.001064989223 -0.1745302505 0.0005401324908 0.1691511164 -0.1691804935 0.168537356 0.1695733385 -0.0001967674356 -0.1911884291 -0.002371890339 0.0003526793329 -0.001600419154 0.003155191774 -0.2091949283 0.2008901554 -0.1993942556 0.2020378176 0.1982177357 -0.002852220493 0.002414558274 -0.05082267137 0.05102873736 -0.05096550664 0.05110604362 0.05089907865 -0.05083724291 -0.002365370099 -0.289276933 -0.02354118589 0.02362489354 -0.02397660676 0.02471832476 -0.3018877719 -0.02541164614 0.297027012 -0.2961400323 0.2965480922 0.2957610148 -0.02188328326 -0.3048870233 -0.02525277807 0.02119476614 -0.02012393349 0.01897187156 -0.3005790398 -0.01751073896 0.3034795655 -0.3044361053 0.3032307696 0.3046670624 -0.02155004703 -0.2846032782 -0.01982914082 0.01604629314 -0.01451562303 0.0129057514 -0.2625065369 -0.01379330607 0.2747742901 -0.2762594369 0.2722655342 0.2782089621 -0.01558175048 -0.01288083772 -0.1689535471 -0.01917506713 0.01238264581 -0.01114872212 0.01359974947 0.009970012062 -0.1618749141 -0.008941979832 0.1634563344 -0.1648334728 0.1624411874 0.1664666962 -0.0002102625718 -0.1631820271 -0.0168820499 0.008141852937 -0.007665689995 0.007576382057 -0.1754797155 -0.007952470457 0.1683120037 -0.1685815397 0.1681559305 0.1690125177 0.003105010424 -0.1957364124 -0.01896325988 0.008863598034 -0.01037573936 0.01256087757 -0.2161655343 0.2074490682 -0.2053119546 0.2087955117 0.2034940934 -0.003850119738 -0.05253175421 -0.003065439512 0.05263862281 0.002930248772 -0.003034821883 0.00313128025 -0.05203284398 0.05234611347 -0.0522496551 0.05244457096 0.05215510612 -0.05206353974 -0.003091498316 -0.0577370151 -0.01082259596 0.05743468213 0.0115221171 -0.01113223028 0.0107879062 -0.05906397557 0.05836013581 -0.05870445989 0.05808999096 0.05910985944 -0.01110054655 -0.01071602928 -0.2471753089 -0.02160751688 0.02178779455 -0.02247380088 0.01177137698 0.02550660047 -0.2730304143 -0.02769542161 0.262776404 -0.2596947531 0.2667803929 0.2592463405 -0.02341867965 -0.2933772645 -0.02800040083 0.02733127422 -0.02894592184 0.0262085504 -0.3037909417 -0.02467010131 0.2970710346 -0.2996445154 0.3015677398 0.2963989962 -0.02944099084 -0.3043893554 -0.02665417364 0.02366307966 -0.02889560879 0.02898117049 -0.2940018955 -0.02825193085 0.3002860194 -0.3000143744 0.2978585374 0.301940762 -0.02615581012 -0.2717940085 -0.02065777058 0.02647179306 -0.01997092984 0.0164409128 -0.2548675712 -0.01277736567 0.2641262622 -0.267560993 0.2607403702 0.2702189376 -0.01565877035 -0.01251706764 -0.1693830902 -0.02314354397 0.01818727513 -0.01949125996 0.01654374678 0.02042142021 -0.1590924483 -0.02094977421 0.1630141949 -0.1622735582 0.1643923444 0.1621028289 -0.01607842794 -0.1606992729 -0.02623794769 0.02105340353 -0.02071173318 0.01990490276 -0.1737516179 -0.01860722244 0.1653456219 -0.1663321677 0.1644833749 0.1673031136 -0.01462882321 -0.191422537 -0.01941538539 0.01678571713 -0.0143930527 0.01136011572 -0.2174361877 0.2024779116 -0.2055748356 0.1988561125 0.2077780127 -0.008269836467 0.05473134472 -0.05461870709 -0.003315423795 0.05484792483 -0.003438431737 0.05477085306 -0.1133458168 -0.01252975688 0.1133106375 0.01360771134 -0.01353804858 0.1147434387 -0.01433313166 0.1144731951 0.1153610653 -0.01399010029 -0.2569637382 -0.03145394984 0.02530084623 -0.02799122442 0.02976378189 -0.2795041437 -0.03076146843 0.2693492824 -0.2674858 0.2717892471 0.2639819823 -0.02907856469 -0.2975475219 -0.03547476288 0.03108758585 -0.03594995327 0.03911205847 -0.3018993487 -0.04128144359 0.3023253131 -0.298981366 0.301608797 0.2993666076 -0.03199671903 -0.2970829549 -0.03667761609 0.03323310784 -0.03062129495 0.02762603226 -0.2868345786 -0.02431061952 0.2915512698 -0.2943770634 0.2902407256 0.2966191415 -0.02505883726 -0.2618923875 -0.01737381926 0.02203081834 -0.01718028416 0.01342570035 -0.2390200625 -0.009817693427 0.2489711043 -0.2526685626 0.2446516039 0.2570397804 -0.0157522446 -0.01092697505 -0.1814754489 -0.03372053245 0.02762335179 -0.03200799481 0.02283601989 0.03585999297 -0.1640199151 -0.03906130476 0.1730332972 -0.1693385466 0.1775990678 0.1664796924 -0.03258891169 -0.1627676156 -0.04819542992 0.04150857947 -0.04311775354 0.04382486449 -0.1684805583 -0.04358931359 0.1643378281 -0.1638081894 0.1656504643 0.1639126176 -0.03767889938 -0.1806029838 -0.04831768721 0.04239935808 -0.04027941473 0.03730112507 -0.2003607816 -0.03359590382 0.1884245928 -0.1915115848 0.1860519705 0.1950851883 -0.02907575217 -0.2116336105 -0.03613826707 0.02937086731 -0.02495299036 0.02086823346 -0.2259113001 -0.01750499585 0.217774777 -0.2218849219 0.2145414398 0.2262402651 -0.01046980983 -0.2037566685 -0.02560039232 0.01380721245 -0.01367091993 0.01758908636 -0.225650784 -0.02123755787 0.2073800732 -0.2034618331 0.2117029532 0.2001427856 -0.1050527289 -0.01357109369 -0.2395905625 -0.04123257532 0.02593899958 -0.03112117467 0.03632819872 -0.2490273255 -0.04111044178 0.2461751992 -0.2409352045 0.2504373313 0.2348996702 -0.02823407302 -0.270892064 -0.05493801055 0.045121589 -0.04815759061 0.05011312231 -0.2851844601 -0.05095662598 0.2790273318 -0.2769534033 0.2804183274 0.2744404828 -0.04413981709 -0.2955433211 -0.05348403876 0.0507048451 -0.04941170795 0.04717440859 -0.2990084416 -0.04411104606 0.2970594983 -0.299120401 0.2942910918 0.3005899662 -0.04325110056 -0.2867671066 -0.03722948998 0.0403494912 -0.03602673596 0.03128381176 -0.2732178649 -0.02626133948 0.278547625 -0.2831523824 0.2732202596 0.2870413181 -0.0300657267 -0.2432639333 -0.01451236471 0.02109613041 -0.0159186092 0.01187965526 -0.2283050849 -0.01122017644 0.2304542571 -0.2344817503 0.2276749747 0.2389137967 -0.01223819926 -0.01131674392 -0.2068586478 -0.03018590026 0.02529588516 -0.03290696425 0.01753568819 0.04017636369 -0.1814819387 -0.04692608285 0.1965618788 -0.1893897047 0.2044929906 0.1830556116 -0.04076665684 -0.1774345583 -0.05896700667 0.05299962455 -0.05826864446 0.06263811144 -0.1718874956 -0.06605165007 0.1752919936 -0.1710683368 0.1805343972 0.1678669506 -0.0594090281 -0.1800912295 -0.07491145727 0.06849646383 -0.07000931955 0.07068800533 -0.1901784102 -0.07070410549 0.1845979252 -0.1840404939 0.1862615318 0.1845513981 -0.06325306501 -0.2028761201 -0.07819873926 0.07028652888 -0.06952203762 0.06781999295 -0.2132952196 -0.06413959715 0.2083995771 -0.210162416 0.206457107 0.2120851006 -0.05723873218 -0.2076644494 -0.07450894954 0.06072762208 -0.06331033594 0.06752497108 -0.2374650056 -0.06899476504 0.2250889648 -0.2208759509 0.2285584613 0.2162914132 -0.05556820172 -0.2509798899 -0.07994417324 0.07037044896 -0.07178566899 0.07300221904 -0.2627486353 -0.07379081629 0.2573181472 -0.2560419624 0.2576155911 0.2537511907 -0.06443055732 -0.2747691098 -0.07716239039 0.0739340542 -0.07320871893 0.07162356537 -0.2844695931 -0.06900529302 0.2790409486 -0.280505164 0.2764720799 0.2809440365 -0.06736007496 -0.2831954036 -0.06081615307 0.06538476719 -0.06081877785 0.05539456213 -0.2828894916 -0.04923365226 0.28102647 -0.2863120554 0.2748948664 0.2907266642 -0.05486741483 -0.2627606217 -0.03244431786 0.04248351655 -0.0353115048 0.02789787805 -0.2495479187 -0.02042393755 0.2531242627 -0.260461298 0.2452577362 0.2671790342 -0.03018195224 -0.2256749149 -0.01152131979 0.01321592871 -0.01175635626 0.01118654728 -0.2258295608 -0.01063408685 0.2254678339 -0.2260376429 0.224926389 0.2266364944 -0.01137992704 -0.0108013684 -0.2361030424 -0.01047178881 0.01023629662 -0.01378054163 0.009797992724 0.02319243603 -0.2126575308 -0.03253459098 0.2315505496 -0.2221580131 0.2362799541 0.2130707882 -0.02972985497 -0.2068613312 -0.04327220695 0.04157681135 -0.05014220146 0.058083945 -0.1911059492 -0.06529309883 0.2017092753 -0.1938496347 0.2101723853 0.1867485301 -0.06224030238 -0.1962211442 -0.0732005701 0.07170798716 -0.07731295526 0.08209232934 -0.1961483666 -0.08586604268 0.1975012741 -0.1928110299 0.2029118731 0.189020305 -0.08275666179 -0.2024320269 -0.08549993744 0.08805837879 -0.08804905567 0.08676844922 -0.2011863215 -0.08724243197 0.2008559837 -0.2021900919 0.2008498562 0.2042703297 -0.08575071694 -0.2229069081 -0.09437686709 0.09079912005 -0.09417634632 0.09475902488 -0.2394844366 -0.09398015237 0.2330785803 -0.232495257 0.2330437382 0.2310394741 -0.09203764446 -0.2487437885 -0.08952533968 0.09289081815 -0.09121689997 0.08890300681 -0.2600608439 -0.08586136901 0.2532290007 -0.255487918 0.2503176362 0.2569828562 -0.08849712467 -0.2620962137 -0.07290908185 0.08203295711 -0.07738358194 0.07190924768 -0.2686186976 -0.06561862136 0.2629227841 -0.2683087323 0.2568316278 0.2728605537 -0.07486054657 -0.2571142082 -0.04410941247 0.05860078787 -0.05092496135 0.04271499824 -0.254466942 -0.03412073938 0.2522542103 -0.2603912067 0.243728783 0.2679836909 -0.04829797556 -0.2294650669 -0.01229871261 0.02531093568 -0.01646704139 0.01218681778 -0.2244859107 -0.01171420206 0.224229602 -0.2285052455 0.2237807036 0.2369758218 -0.01452120019 -0.2236345771 -0.01052424821 0.01124362897 -0.01077722669 0.01031668014 -0.2237717647 -0.009862777809 0.2234661295 -0.2239266761 0.2230296938 0.224413211 -0.01054557084 -0.01006844137 -0.2376768829 -0.009590489803 0.00944675944 -0.00981152626 0.009081571173 0.0101752344 -0.2367984849 -0.01053669871 0.2374311473 -0.2370674392 0.2377764667 0.2366839986 -0.01041935894 -0.236520923 -0.0109527496 0.01089506551 -0.01308629981 0.02085235126 -0.2229600635 -0.0295689241 0.2358907072 -0.228132974 0.2365256305 0.2190483217 -0.03299480511 -0.2241792206 -0.03150439108 0.03777703209 -0.04529062904 0.05175554036 -0.2130961918 -0.05663852396 0.2215172705 -0.215086141 0.2280260799 0.2088351353 -0.06334689031 -0.2082332415 -0.05048960209 0.05989103961 -0.06274356297 0.06657294072 -0.2116259311 -0.07082797476 0.2090989365 -0.2052947954 0.2133079701 0.2023936829 -0.07565911496 -0.2288072941 -0.06156849316 0.07362855746 -0.07433853488 0.07371485085 -0.2350875672 -0.07225685701 0.2314520418 -0.2320728565 0.2308492412 0.2326441182 -0.08371599536 -0.2376991714 -0.05373207105 0.06992595679 -0.0666924292 0.06258523881 -0.2444918286 -0.05763793137 0.238974847 -0.2430528849 0.2347898177 0.2468811616 -0.07329873635 -0.2382190098 -0.03215745516 0.05187298025 -0.04536995903 0.03823207068 -0.2406914273 -0.03054159518 0.2361297543 -0.2432359809 0.2290608265 0.2502015113 -0.04974668929 -0.2245813278 -0.01213475317 0.02242200109 -0.01483276128 0.01224616162 -0.2237548999 -0.01191436132 0.2237408215 -0.2263248283 0.2234459754 0.2349996194 -0.01677550974 -0.222872814 -0.01088019008 0.01157070115 -0.01121753885 0.01085715642 -0.2227661226 -0.0104915743 0.2226236573 -0.2229840397 0.222285717 0.2233690559 -0.01118387857 -0.2220160101 -0.009500264647 0.01012265241 -0.009752097034 0.009381384742 -0.2220879368 -0.009011357951 0.2218543966 -0.2222251089 0.2215027628 0.2226166156 -0.009618842361 -0.009229771157 -0.2389703711 -0.008701157704 0.008622493434 -0.008922712391 0.008318385548 0.009218908188 -0.2381340352 -0.009510684819 0.2387121091 -0.2384159133 0.2389937469 0.2381043899 -0.009453576555 -0.2377584909 -0.009800167549 0.009798179156 -0.01008206401 0.01036214944 -0.2368143628 -0.01063314931 0.2374189151 -0.2371388297 0.2376819895 0.2368412524 -0.01066231029 -0.2361851689 -0.01068311903 0.01087608132 -0.01104635314 0.0110803391 -0.2300462107 -0.01096074087 0.2344206328 -0.2343866468 0.2344379128 0.2341020731 -0.01170053068 -0.2197465616 -0.01078323434 0.01085981939 -0.01111203133 0.01199769778 -0.2264921316 -0.01304867328 0.2222990626 -0.2214137255 0.2228400176 0.2175065099 -0.02388513886 -0.2305246284 -0.01185709195 0.01368709374 -0.01389101755 0.01373292099 -0.2293197006 -0.01326680166 0.2296736542 -0.2298315616 0.2296832071 0.2303012576 -0.02872451328 -0.2274785444 -0.01177561627 0.01265911158 -0.01223936481 0.01214328918 -0.2262956165 -0.01203250651 0.226820122 -0.2269161871 0.2267389832 0.230619096 -0.01813544399 -0.225007111 -0.01132134159 0.01189854764 -0.01174352061 0.01156899686 -0.2241658942 -0.01137619626 0.2244699397 -0.2246444634 0.2243071986 0.2248321309 -0.01199351612 -0.2230697629 -0.01057246096 0.01116652068 -0.0109413493 0.01070215143 -0.2225573591 -0.0104504038 0.2226763563 -0.2229155542 0.222452507 0.2231714889 -0.01106443491 -0.2216707836 -0.009609770072 0.01018757926 -0.009915131379 0.009634494598 -0.221428585 -0.009347031662 0.2213897342 -0.221670371 0.2211253364 0.221968484 -0.009927058963 -0.220723109 -0.00851493646 0.009054031098 -0.008756703242 0.008456126613 -0.2207137643 -0.008152790538 0.2205522737 -0.2208528504 0.2202665765 0.2211693426 -0.008682246911 -0.008364267724 -0.2400382054 -0.007852260155 0.007812729864 -0.008061218853 0.007558683402 0.008304410821 -0.2392157126 -0.008542263866 0.239760159 -0.239516967 0.2399920049 0.2392617951 -0.008525258067 -0.2387469659 -0.008746861806 0.008774884487 -0.009001988944 0.009221435443 -0.2377901895 -0.009426053947 0.2383814058 -0.2381619593 0.2385885373 0.2379292654 -0.009492549942 -0.2366749615 -0.009391628932 0.009597071283 -0.00969743908 0.009684472064 -0.2295869491 -0.009575388816 0.234425992 -0.234438959 0.2344054137 0.2344432741 -0.01000599746 -0.2208683871 -0.009547943303 0.009558079709 -0.009845893696 0.01029814596 -0.2286200794 -0.01057500739 0.2242771978 -0.2238249455 0.2247046924 0.2233469126 -0.0106284054 -0.2305525354 -0.01027562926 0.01063765072 -0.01064244897 0.01064642631 -0.2288419044 -0.01063813041 0.2297030887 -0.2296991114 0.2297041877 0.2296921749 -0.01103023643 -0.2272631662 -0.01018712195 0.010607953 -0.01055717875 0.01048779766 -0.2258913082 -0.01040092379 0.2265197179 -0.226589099 0.226453492 0.22666206 -0.01086826046 -0.2244819718 -0.009828445122 0.01029752706 -0.01017840041 0.01004433754 -0.2234672123 -0.00989614002 0.2238783219 -0.2240123848 0.2237520522 0.2241550067 -0.01039739695 -0.2223031489 -0.009246759151 0.009734634611 -0.009560647057 0.009375044609 -0.2216397441 -0.009178733421 0.2218597543 -0.2220453568 0.2216848427 0.2222425465 -0.009685690752 -0.2207306267 -0.00848876924 0.008972621639 -0.008757620929 0.008534654186 -0.220370406 -0.008304614066 0.2204171676 -0.2206401343 0.2202060689 0.2208758091 -0.008795585784 -0.2196778233 -0.007605286288 0.008068355724 -0.007826690755 0.007580350532 -0.2195844449 -0.007329543431 0.2194898903 -0.2197362305 0.2192550639 0.2199948618 -0.007791170301 -0.007529053451 -0.2409267056 -0.007066471487 0.007047810576 -0.007255229414 0.006834388695 0.007457117445 -0.2401016272 -0.00765355909 0.2406264999 -0.2404246118 0.2408196286 0.2402132932 -0.007663053349 -0.2395455067 -0.007805497314 0.007844511447 -0.008029197455 0.008204704942 -0.2385347851 -0.008363132387 0.2391451748 -0.2389696673 0.2393116413 0.238784362 -0.008448740684 -0.2369674222 -0.008286209164 0.00848708482 -0.008545934112 0.008508801386 -0.229164138 -0.008410720304 0.2343087058 -0.2343458385 0.2342677148 0.2343783569 -0.008786867754 -0.222025219 -0.008472446515 0.008437192058 -0.008725008921 0.009083695067 -0.2295542298 -0.009255464909 0.2258480353 -0.2254893492 0.2261854691 0.2251084845 -0.009372173836 -0.2305512075 -0.008980720328 0.009284009927 -0.009280814017 0.009274880913 -0.2287971031 -0.009259642568 0.2296930062 -0.2296989393 0.229685136 0.2297027302 -0.009595481675 -0.2270754986 -0.008882433545 0.009229579895 -0.009184632993 0.009125941804 -0.2255687516 -0.009054368365 0.2262703502 -0.2263290413 0.226213716 0.2263900181 -0.00944442863 -0.2240670088 -0.008586004476 0.008970507858 -0.008874847138 0.008767825514 -0.2229232988 -0.008649879052 0.223412897 -0.2235199186 0.2233111706 0.2236327889 -0.009067939022 -0.2216999984 -0.008119115067 0.008521464538 -0.00838304313 0.008235104374 -0.220917626 -0.008078179483 0.221215496 -0.2213634348 0.2210751209 0.221519655 -0.008505360984 -0.2199790436 -0.007508015976 0.007912815716 -0.007739577497 0.007559050529 -0.2195182515 -0.007371806257 0.2196353315 -0.2198158585 0.2194635555 0.2200058781 -0.007792783574 -0.2188211548 -0.006783376502 0.007178393822 -0.0069793372 0.006775118012 -0.2186476309 -0.006565753593 0.2186129494 -0.2188171686 0.2184176398 0.219031061 -0.006970227122 -0.006751982129 -0.2416730564 -0.006349688112 0.006345582507 -0.006520549416 0.006164820085 0.006690273793 -0.2408371205 -0.006854874411 0.2413512307 -0.2411815063 0.2415141332 0.2410044319 -0.006876075935 -0.2402017696 -0.006969085446 0.007014155675 -0.007166887835 0.007309447764 -0.2391142443 -0.007433619835 0.239762185 -0.2396196251 0.2398977816 0.2394695863 -0.007524396649 -0.2371284312 -0.007329219963 0.007523496294 -0.007553870408 0.007505617042 -0.228798665 -0.007427014836 0.2341289109 -0.2341771643 0.234079466 0.2342236442 -0.00774386837 -0.2231442265 -0.007543048523 0.007487651295 -0.007761053892 0.008039047205 -0.2301343662 -0.008145932622 0.2270772877 -0.2267992944 0.2273371919 0.2265022459 -0.008287823159 -0.2305229728 -0.007895937772 0.008157122878 -0.008148005292 0.008135475464 -0.2287291511 -0.008116028147 0.2296518618 -0.2296643916 0.229638086 0.2296755382 -0.008403769775 -0.2269059858 -0.007791878576 0.00808606619 -0.008045085191 0.007993719226 -0.2252992204 -0.007932595457 0.2260546317 -0.2261059976 0.2260047522 0.2261589903 -0.008260294784 -0.2237265288 -0.007538995986 0.00786213876 -0.007782663831 0.007694426233 -0.2224854585 -0.007597663073 0.2230337239 -0.2231219615 0.2229492684 0.2232143398 -0.007948037666 -0.2212121614 -0.007153825157 0.007492619616 -0.00737954071 0.00725868799 -0.2203354853 -0.007130357153 0.2206940538 -0.2208149065 0.2205787388 0.2209417885 -0.007490795658 -0.2193660985 -0.006650827874 0.006994862885 -0.006852541533 0.006703753693 -0.2188204488 -0.006548854718 0.2189952695 -0.2191440574 0.2188531071 0.2193000072 -0.00690866854 -0.2181098589 -0.006047720101 0.006388190306 -0.00622210258 0.006050928789 -0.2178632867 -0.005874635381 0.217880969 -0.2180521427 0.2177167932 0.2182309435 -0.00622593259 -0.006042612734 -0.2423072888 -0.005704277111 0.005710444555 -0.005859856541 0.005555702282 0.00600452062 -0.2414566966 -0.006144502583 0.2419655854 -0.2418209213 0.2421048413 0.2416705416 -0.006168993205 -0.2407488801 -0.006230223637 0.006279326373 -0.006407248112 0.006524142676 -0.2395692629 -0.006621823062 0.2402664336 -0.2401495391 0.2403777219 0.2400267563 -0.006711373699 -0.2371986375 -0.006499020571 0.006685879979 -0.006696664698 0.006646996556 -0.228520352 -0.00659315572 0.2339297045 -0.2339793727 0.2338808503 0.2340294481 -0.006849931978 -0.22418026 -0.006736527797 0.006679349295 -0.006928787091 0.007139488077 -0.230496022 -0.007206512281 0.2280166672 -0.2278059662 0.2282127016 0.2275797525 -0.007352554002 -0.2304755986 -0.006977975344 0.007208039685 -0.007194744665 0.007177955813 -0.2286471506 -0.007155965303 0.2295905191 -0.229607308 0.2295729285 0.2296231989 -0.007403001088 -0.2267498179 -0.006871077882 0.007126301531 -0.007088333607 0.007042368443 -0.225066811 -0.006988845391 0.2258631302 -0.2259090954 0.225818318 0.2259562786 -0.007265935006 -0.2234389597 -0.006650281042 0.006928084249 -0.006860303564 0.006785657899 -0.2221229094 -0.006704274822 0.2227160273 -0.222790673 0.2226442198 0.2228683494 -0.006999716647 -0.2208080189 -0.006325289949 0.006616280273 -0.006521794618 0.006420945559 -0.2198559252 -0.006313884013 0.2202624377 -0.2203632868 0.2201657961 0.22046862 -0.006619120754 -0.218857133 -0.005903704388 0.006200775129 -0.006081803103 0.005957174522 -0.2182400453 -0.005827095154 0.2184624791 -0.2185871077 0.2183430112 0.2187172061 -0.0061347866 -0.2175117451 -0.005394837728 0.005691769227 -0.005551409647 0.005406242095 -0.2172003321 -0.005256173054 0.2172630532 -0.2174082208 0.2171234992 0.2175593959 -0.005560574169 -0.005404997049 -0.2428528468 -0.005131087774 0.005140053772 -0.005269191298 0.005006148923 0.005394081582 -0.2419860153 -0.005514602442 0.2424933378 -0.2423684475 0.2426139105 0.242239053 -0.005538471761 -0.2412093149 -0.005582425987 0.005629916758 -0.005737867616 0.005834065872 -0.2399267074 -0.005910555763 0.2406809059 -0.2405847076 0.24077252 0.2404837424 -0.005996732976 -0.2372080191 -0.005781604781 0.005954716237 -0.005952740728 0.005908519241 -0.2283449839 -0.005881248719 0.2337428509 -0.2337870724 0.2337007836 0.2338331734 -0.006081275908 -0.225105865 -0.006037249281 0.005984210969 -0.006204473446 0.006361949352 -0.2307236557 -0.006404406191 0.2287219624 -0.2285644865 0.2288682235 0.228395044 -0.006544136332 -0.2304148216 -0.006199130876 0.006400038718 -0.006383839734 0.006364304803 -0.2285566615 -0.006340794067 0.2295161196 -0.2295356546 0.2294960827 0.2295546117 -0.006554046371 -0.2266041745 -0.006091267129 0.00631158668 -0.00627604358 0.006234264078 -0.2248618977 -0.006186538666 0.225690064 -0.2257318435 0.2256491995 0.2257745695 -0.006422694899 -0.2231906077 -0.005894964124 0.00613310657 -0.00607412722 0.006009697682 -0.2218157439 -0.005939883249 0.222443881 -0.2225083105 0.2223816255 0.2225750275 -0.006190920167 -0.220466445 -0.005615516303 0.005864740507 -0.005784316366 0.005698658611 -0.2194533928 -0.00560782889 0.2198983168 -0.2199839746 0.2198158996 0.220073044 -0.005867844972 -0.2184277579 -0.00525640956 0.005511896352 -0.005410943879 0.005305073131 -0.2177503305 -0.005194387411 0.2180123532 -0.2181182239 0.2179105278 0.2182283374 -0.00545842798 -0.2170027768 -0.004821503623 0.005078994013 -0.004959015428 0.004834592196 -0.2166340857 -0.004705581751 0.2167356559 -0.2168600792 0.2166157331 0.2169892793 -0.004969612036 -0.004836250305 -0.2433276468 -0.004625320317 0.004633282612 -0.004746129884 0.004516186619 0.004855091841 -0.24244337 -0.004959800051 0.2429520224 -0.2428430605 0.2430574709 0.2427304336 -0.004982326551 -0.2415989335 -0.00501548128 0.005059103579 -0.005150572265 0.005229740831 -0.2402058457 -0.005289145613 0.2410220861 -0.2409429175 0.2410974757 0.2408598049 -0.005372100012 -0.237180748 -0.005162635627 0.005318321593 -0.00530925399 0.005274704157 -0.2282738839 -0.005272063729 0.2335893165 -0.2336238663 0.2335575095 0.2336610593 -0.005422928578 -0.2259116152 -0.005430435825 0.00538425822 -0.005574581036 0.005691899896 -0.2308677854 -0.005718590124 0.2292476759 -0.2291303571 0.2293567084 0.2290041265 -0.00584878376 -0.230344954 -0.005535540845 0.005710291497 -0.005692167074 0.005670959122 -0.2284612286 -0.005646642601 0.2294335204 -0.2294547284 0.2294120252 0.2294755967 -0.00583279844 -0.2264672099 -0.005428131802 0.005618027213 -0.005584522638 0.005546103847 -0.2246781898 -0.005502949157 0.2255315778 -0.2255699966 0.2254939024 0.2256091849 -0.005706696351 -0.2229722835 -0.005251133401 0.005455233315 -0.005403075783 0.005346539996 -0.221550599 -0.005285655518 0.2222065285 -0.2222630643 0.2221516886 0.2223213841 -0.005501468615 -0.220172809 -0.005007020295 0.005220437977 -0.005150889849 0.005077009952 -0.2191100032 -0.004998804166 0.2195860665 -0.2196599464 0.2195147151 0.2197364903 -0.005222556734 -0.218060347 -0.004696763803 0.004916280237 -0.004829454541 0.004738358478 -0.217331754 -0.004643026047 0.2176269199 -0.217718016 0.2175390205 0.2178124712 -0.004871441626 -0.2165648052 -0.004320685883 0.004543497845 -0.004439831512 0.00433210275 -0.2161456208 -0.004220135602 0.2162807815 -0.2163885103 0.2161766726 0.2165000993 -0.004450486652 -0.004335024936 -0.2437449013 -0.004179581929 0.004185088521 -0.004284562511 0.004081768594 0.004380359317 -0.2428417091 -0.004471885583 0.2433542202 -0.2432584234 0.2434471108 0.2431595367 -0.004494007401 -0.2419295395 -0.004518582077 0.004557767254 -0.004635434482 0.004700534102 -0.2404221077 -0.004746405149 0.2413027176 -0.241237618 0.2413647441 0.2411692502 -0.004826936184 -0.2371367755 -0.004628332196 0.004764989464 -0.004753302785 0.004729995079 -0.2282957774 -0.004748114616 0.2334790384 -0.2335023461 0.2334585757 0.233528512 -0.004859213716 -0.2266025404 -0.004902732645 0.004863900831 -0.005026444186 0.005114070759 -0.230957298 -0.005130070344 0.229639908 -0.2295522814 0.22972144 0.2294580404 -0.005251341177 -0.2302692535 -0.004966915247 0.005118982133 -0.005099649708 0.005077536815 -0.228363409 -0.005052942361 0.2293462319 -0.2293683448 0.2293239717 0.2293902906 -0.005218161582 -0.2263377375 -0.004861034457 0.005025048562 -0.004993337708 0.004957716347 -0.2245113738 -0.004918282336 0.2253850422 -0.2254206636 0.2253500402 0.2254569467 -0.005097076204 -0.2227776071 -0.004699740349 0.004875159435 -0.004828437951 0.00477816088 -0.221318146 -0.00472433752 0.2219964624 -0.2220467395 0.2219475335 0.2220984628 -0.004912875358 -0.2199167024 -0.004483701232 0.004666959695 -0.004606003205 0.004541436786 -0.2188128821 -0.004473231429 0.2193144872 -0.2193790536 0.2192519216 0.2194457656 -0.004668590935 -0.2177419518 -0.004212351298 0.004401355967 -0.004325783839 0.004246500078 -0.2169697339 -0.004163492105 0.2172928672 -0.2173721509 0.2172161349 0.2174541644 -0.004363566698 -0.2161840174 -0.003883736521 0.004076754417 -0.003986298144 0.003892151519 -0.2157202781 -0.003794120735 0.2158846091 -0.2159787558 0.2157933922 0.216076093 -0.00399715022 -0.003896244294 -0.2441145576 -0.003790071601 0.00379315353 -0.003881533742 0.003701213932 0.003966339191 -0.2431906671 -0.004046805274 0.2437093774 -0.243624572 0.2437917428 0.2435371723 -0.00406549328 -0.2422108713 -0.004086203079 0.004121423756 -0.004187609347 0.004241288087 -0.240589142 -0.004276777866 0.2415338268 -0.2414801481 0.2415850304 0.2414238275 -0.004351032197 -0.2370902196 -0.004170106705 0.004288350367 -0.004277034695 0.004264977331 -0.2283944973 -0.004299772535 0.2334140683 -0.2334261257 0.2334047237 0.2334409504 -0.004375459158 -0.227190533 -0.004446837985 0.004415371168 -0.004553445564 0.004619133708 -0.2310091853 -0.004627569458 0.2299335635 -0.2298678754 0.2299947223 0.2297972818 -0.004736891615 -0.2301899336 -0.004481111998 0.004614433209 -0.004594354363 0.004571819881 -0.2282650236 -0.004547282065 0.2292565985 -0.229279133 0.2292340052 0.229301601 -0.004691915695 -0.2262149352 -0.004377379014 0.004520180675 -0.004490071011 0.004456820153 -0.2243584157 -0.004420470113 0.2252485811 -0.225281832 0.2252158612 0.2253156497 -0.004575705549 -0.2226019876 -0.004229098424 0.004381103524 -0.004338787315 0.004293550739 -0.2211116976 -0.004245391578 0.2218082573 -0.2218534939 0.2217641189 0.2218999063 -0.004408616182 -0.2196904851 -0.004035691971 0.004194288341 -0.00414020147 0.004083081745 -0.2185525722 -0.004022878706 0.2190753113 -0.219132431 0.2190198053 0.219191279 -0.004192047308 -0.2174628248 -0.003795654552 0.003959536938 -0.0038930026 0.003823230465 -0.2166532444 -0.003750176835 0.2170001017 -0.2170698738 0.2169323973 0.2171418568 -0.003924047933 -0.2158496914 -0.003505590612 0.003673804502 -0.00359409175 0.003511033068 -0.2153466236 -0.003424427841 0.215536328 -0.2156193867 0.2154556689 0.2157050642 -0.00360199966 -0.003513051375 -0.2444444815 -0.003451420288 0.003452956571 -0.003532070726 0.003370478445 0.00360765131 -0.2434980886 -0.003678817961 0.2440250557 -0.2439494751 0.2440985505 0.2438717461 -0.003691839301 -0.2424513384 -0.003711630198 0.003744004217 -0.003800706445 0.003845242587 -0.2407187169 -0.003872960258 0.2417250397 -0.2416805035 0.2417675898 0.2416338826 -0.003938058296 -0.2370499956 -0.003778396556 0.003880217491 -0.00387108543 0.003869522591 -0.2285543562 -0.003917411155 0.2333923859 -0.2333939488 0.2333932769 0.2333980379 -0.003961739451 -0.2276892875 -0.004054376481 0.004030452257 -0.004147527028 0.004196874158 -0.2310341237 -0.004199787505 0.2301539944 -0.2301046473 0.2301999274 0.2300516557 -0.004295454061 -0.2301084217 -0.004066531076 0.004185136496 -0.004164611509 0.004141947597 -0.2281671999 -0.004117661108 0.2291660621 -0.229188726 0.229143405 0.2292113745 -0.004242200966 -0.2260981245 -0.003965261783 0.004091369996 -0.004062693466 0.00403147555 -0.224217034 -0.003997717458 0.2251207496 -0.2251519675 0.2250900039 0.2251836605 -0.004130645459 -0.222441987 -0.003827931824 0.003961468318 -0.003922774714 0.003881655101 -0.2209262492 -0.003838100215 0.2216378486 -0.2216789682 0.2215976515 0.221721036 -0.00397771686 -0.2194883787 -0.003653023869 0.003792081351 -0.00374355065 0.003692448717 -0.2183218718 -0.003638712315 0.2188622591 -0.2189133611 0.2188124924 0.2189658439 -0.003783627804 -0.2172154451 -0.003438450149 0.003582271245 -0.003523054553 0.003460997349 -0.2163736728 -0.003396035178 0.2167407861 -0.2168028433 0.2166804413 0.2168666726 -0.003545656875 -0.2155533238 -0.003179916449 0.003328109116 -0.003257174517 0.003183202306 -0.2150154551 -0.003105992525 0.2152273028 -0.215301275 0.2151553312 0.2153773675 -0.0032599212 -0.003180835714 -0.2447410901 -0.003161255944 0.003158950818 -0.003230285794 0.003084369532 0.003298091387 -0.2437705435 -0.003361423829 0.2443074933 -0.2442396878 0.2443735427 0.2441700755 -0.003370231105 -0.2426581527 -0.003391585352 0.003418721618 -0.003467632593 0.003504928316 -0.2408204638 -0.003526957964 0.2418845193 -0.2418472235 0.2419202572 0.2418082878 -0.003584139203 -0.2370212201 -0.003447698359 0.003531860517 -0.003525916199 0.003533699566 -0.2287617875 -0.003591598359 0.2334098943 -0.233402111 0.2334198097 0.2333965456 -0.003611516587 -0.2281122129 -0.003720935159 0.003700710107 -0.003800051922 0.003837121817 -0.2310392518 -0.003835935637 0.230319584 -0.2302825141 0.2303540799 0.2302427016 -0.003920578936 -0.2300257139 -0.003716655882 0.003820188321 -0.003799439544 0.003776840938 -0.2280705972 -0.003752927352 0.2290755324 -0.229098131 0.2290529769 0.2291207546 -0.00386147645 -0.2259866994 -0.003617930468 0.003727439521 -0.003700052016 0.00367059733 -0.2240854382 -0.003639045408 0.2250003801 -0.2250298347 0.2249713344 0.2250596996 -0.003754232608 -0.2222949492 -0.003489811072 0.003605417779 -0.003569743009 0.003532030101 -0.2207579641 -0.003492264885 0.2214821068 -0.2215198197 0.2214451582 0.2215583159 -0.003613070506 -0.2193059231 -0.003330045989 0.003450414834 -0.003406428093 0.003360240093 -0.2181152012 -0.003311780503 0.2186704705 -0.2187166585 0.2186253733 0.2187639721 -0.003437287691 -0.2169939217 -0.003136181761 0.003260970526 -0.003207728714 0.0031519774 -0.2161242046 -0.003093638009 0.2165087487 -0.2165645 0.2164543968 0.2166216967 -0.003223712174 -0.2152880857 -0.002903378001 0.003032636047 -0.002968909419 0.002902410072 -0.2147192687 -0.002832938833 0.2149505417 -0.215017041 0.2148856825 0.2150852808 -0.002967644583 -0.002896653684 -0.2450097053 -0.002915849191 0.002907991004 -0.002972744152 0.0028401061 0.003033978622 -0.2440136268 -0.003090719638 0.2445619536 -0.2445007192 0.2446217394 0.2444379303 -0.003096401063 -0.2428375203 -0.003121415001 0.003141452928 -0.003184020659 0.003215666686 -0.240902077 -0.003233667781 0.2420191241 -0.2419874781 0.2420495862 0.2419545492 -0.003283923473 -0.2370065511 -0.003171702638 0.003237637663 -0.003235375263 0.003251200242 -0.2290052311 -0.003316503922 0.2334615436 -0.2334457186 0.2334791821 0.2334317791 -0.00331762113 -0.2284718139 -0.003440940101 0.003421071668 -0.00350565451 0.003533435263 -0.2310296284 -0.003529178952 0.2304438446 -0.2304160639 0.2304696821 0.2303861895 -0.003604949711 -0.2299425193 -0.003424383306 0.003512656709 -0.003491845152 0.003469441073 -0.2279755925 -0.003445971593 0.2289855916 -0.2290079956 0.2289632428 0.2290304609 -0.003541747747 -0.2258800763 -0.003328168284 0.003421258604 -0.003395026038 0.003367102536 -0.2239621453 -0.003337431975 0.2248864562 -0.2249143797 0.2248588731 0.22494267 -0.00343844891 -0.2221586976 -0.003207796995 0.003306014307 -0.003272862243 0.00323797626 -0.2206037812 -0.003201338396 0.2213384864 -0.2213733724 0.2213042165 0.2214089216 -0.003307096349 -0.2191395156 -0.003060430148 0.003162914248 -0.003122650698 0.00308048142 -0.2179281019 -0.003036333078 0.2184960177 -0.218538187 0.2184547178 0.2185812924 -0.003146265403 -0.2167934698 -0.002883396432 0.002990122882 -0.002941764054 0.00289117189 -0.2158993246 -0.002838259818 0.2162989644 -0.2163495566 0.2162494898 0.2164013503 -0.0029525434 -0.2150483703 -0.002671609547 0.002782944476 -0.002725154056 0.002664830109 -0.2144518209 -0.002601790893 0.2147002836 -0.2147606076 0.2146412813 0.2148224074 -0.002720744857 -0.002656398697 -0.2452547243 -0.002710568127 0.002698350821 -0.002757592573 0.00263608827 0.002813339687 -0.2442320811 -0.002864612081 0.2447928927 -0.2447371456 0.2448474466 0.2446801026 -0.00286533801 -0.2429947771 -0.002895827338 0.002909970393 -0.002947474078 0.002974829622 -0.2409696826 -0.002990143131 0.242134606 -0.2421072505 0.2421610832 0.2420789312 -0.003031486418 -0.2370071366 -0.002943927306 0.002994217074 -0.002995817853 0.003018422809 -0.2292750388 -0.003089045484 0.2335421801 -0.2335195751 0.2335663022 0.2334985481 -0.003072989883 -0.2287791058 -0.00320837574 0.003188987385 -0.00326144179 0.003282160048 -0.231008929 -0.003275593792 0.2305367241 -0.2305160058 0.2305559615 0.2304936923 -0.0033411779 -0.2298593351 -0.003182644686 0.003258533422 -0.003237761723 0.003215620198 -0.2278823967 -0.00319261396 0.2288966051 -0.2289187466 0.2288745308 0.2289409635 -0.003275165994 -0.2257777101 -0.003088850533 0.003168619043 -0.003143399904 0.003116785416 -0.2238459119 -0.003088698962 0.2247780872 -0.2248047017 0.2247517616 0.2248316302 -0.00317546974 -0.2220314116 -0.002974996405 0.003059122382 -0.003028054921 0.002995489345 -0.2204612067 -0.002961404474 0.2212048727 -0.2212374382 0.2211728095 0.2212705486 -0.003052325022 -0.2189861869 -0.002837761079 0.002925765065 -0.002888518338 0.002849598395 -0.2177569482 -0.002808931673 0.2183356646 -0.2183745845 0.2182974419 0.2184142609 -0.002903726254 -0.216610141 -0.00267434603 0.002766434675 -0.002722019185 0.00267559815 -0.2156945461 -0.00262708258 0.2161072857 -0.2161537067 0.2160617583 0.216201097 -0.00272616768 -0.2148296013 -0.002479627554 0.002576387092 -0.002523438823 0.002468179178 -0.2142082608 -0.002410460161 0.2144718885 -0.2145271482 0.2144176897 0.2145836197 -0.002514309221 -0.00245548741 -0.2454802975 -0.002542571853 0.002526783487 -0.002581595491 0.002468968839 0.002632908099 -0.2444302371 -0.002679770966 0.2450044731 -0.2449531605 0.245054822 0.244900834 -0.002674621592 -0.2431346531 -0.002711726488 0.002720847016 -0.002754427706 0.002778661343 -0.2410282372 -0.002792378686 0.2422358895 -0.2422116558 0.2422594975 0.24218674 -0.002823923385 -0.2370232116 -0.00276044798 0.002797315135 -0.002802776741 0.002831031244 -0.2295635173 -0.002905335051 0.2336470577 -0.2336188032 0.2336765561 0.2335918614 -0.002874056764 -0.2290436071 -0.003019788807 0.003000857932 -0.003063441888 0.003078789162 -0.2309799181 -0.003070503041 0.2306057097 -0.2305903624 0.2306199288 0.2305738073 -0.003125602558 -0.2297765076 -0.002987298791 0.003053096493 -0.003032438102 0.003010590591 -0.2277910506 -0.002988034451 0.228808764 -0.2288306115 0.2287869994 0.2288525359 -0.003057740786 -0.2256790476 -0.002895749571 0.002964683772 -0.00294033374 0.002914817182 -0.223735611 -0.002888042632 0.2246744342 -0.2246999507 0.224649168 0.2247257243 -0.002961238072 -0.2219114916 -0.002787281006 0.002859975805 -0.002830604357 0.002799914067 -0.220328086 -0.002767880754 0.2210794242 -0.2211101145 0.2210491483 0.2211412369 -0.002844855186 -0.2188433827 -0.00265818072 0.002734468641 -0.002699625853 0.002663287779 -0.2175986262 -0.002625381738 0.218186628 -0.218222966 0.218150852 0.2182598944 -0.002706105703 -0.2164405108 -0.002505558065 0.002585824688 -0.002544528058 0.002501403275 -0.2155059584 -0.002456358993 0.2159300926 -0.2159732174 0.2158876808 0.2160170929 -0.002541458173 -0.2146276363 -0.002324259679 0.002409306147 -0.002360165451 0.00230886709 -0.2139842311 -0.002255254526 0.2142610644 -0.2143123627 0.2142105949 0.2143645654 -0.002345541167 -0.002291151232 -0.245690512 -0.002411043835 0.002389945278 -0.002441233299 0.002335663244 0.002489022134 -0.244612181 -0.002532404936 0.2452006463 -0.2451528575 0.2452476742 0.245104271 -0.002521024444 -0.2432613407 -0.002567805518 0.002570158434 -0.002600806509 0.002622906161 -0.2410817795 -0.002635909127 0.2423271931 -0.2423050934 0.2423488922 0.2422825502 -0.002657510539 -0.2370544798 -0.002619341539 0.002642260613 -0.002651475055 0.00268438231 -0.2298645934 -0.002761040738 0.2337719812 -0.2337390739 0.233805906 0.233707252 -0.002716676884 -0.2292734916 -0.002873722597 0.002852491425 -0.002907131154 0.002918430874 -0.2309447889 -0.002908910974 0.2306566037 -0.230645304 0.2306670649 0.2306331041 -0.002953888539 -0.2296943178 -0.002836409312 0.002891331863 -0.002870854085 0.002849320566 -0.2277014865 -0.002827189744 0.2287221671 -0.2287437006 0.2287007173 0.2287653081 -0.002884961177 -0.2255835303 -0.002746825963 0.00280440499 -0.002780785291 0.002756171784 -0.2236302016 -0.002730463479 0.2245746995 -0.224599313 0.2245502864 0.2246241278 -0.002791222909 -0.2217975077 -0.002642625624 0.002703611109 -0.002675592941 0.002646388472 -0.2202025226 -0.002615970628 0.2209605103 -0.2209897148 0.2209316257 0.2210192484 -0.002680302755 -0.2187088735 -0.002519804733 0.002584303141 -0.002551335203 0.002517003882 -0.2174504146 -0.002481238034 0.2180464812 -0.2180808125 0.2180125755 0.2181155862 -0.002549319463 -0.216281578 -0.002375408051 0.002443955864 -0.002405069382 0.002364489571 -0.21533005 -0.00232212381 0.2157641961 -0.2158047759 0.2157241544 0.2158459168 -0.00239474024 -0.2144386774 -0.002204337152 0.002277880736 -0.002231677087 0.002183436355 -0.2137750641 -0.002133002743 0.2140637453 -0.214111986 0.2140161343 0.2141609256 -0.002211123895 -0.002160098167 -0.2458885856 -0.002314172372 0.002286881146 -0.002335425027 0.00223535795 0.002380490896 -0.2447814646 -0.002421224366 0.2453847366 -0.2453396707 0.245429248 0.2452940036 -0.002403843986 -0.2433785359 -0.002461917861 0.002456519766 -0.002485122006 0.002505952956 -0.2411336039 -0.002518980531 0.2424121505 -0.2423913195 0.2424327924 0.2423702541 -0.002531068248 -0.2371003749 -0.002518085816 0.002527165258 -0.00253997842 0.002576698397 -0.2301734602 -0.002654680331 0.2339133612 -0.2338766412 0.2339509252 0.2338408136 -0.002599460183 -0.2294758819 -0.002767892341 0.002742520202 -0.002790895122 0.002799212023 -0.2309053541 -0.002788860711 0.2306940453 -0.2306857284 0.2307017569 0.2306767547 -0.002824616183 -0.229612968 -0.002727303227 0.002771251119 -0.00275099773 0.0027297732 -0.2276135568 -0.002708018566 0.2286368212 -0.2286580458 0.2286156697 0.2286793406 -0.002755231086 -0.2254905628 -0.002639345016 0.002685701749 -0.002662663048 0.002638753277 -0.2235286885 -0.002613866626 0.2244780787 -0.2245019885 0.2244543132 0.2245260498 -0.002663749589 -0.2216881122 -0.002538338523 0.00258794217 -0.002560949851 0.002532863855 -0.2200828004 -0.002503654495 0.2208466132 -0.2208746992 0.2208187518 0.220903025 -0.002557023666 -0.2185806341 -0.00242009536 0.002473285057 -0.002441705888 0.002408856038 -0.2173099 -0.002374666547 0.217913032 -0.2179458818 0.2178804756 0.2179790476 -0.002431867361 -0.2161306709 -0.00228161935 0.00233905785 -0.0023019439 0.002263237021 -0.2151637781 -0.00222284533 0.215606778 -0.2156454849 0.2155684411 0.2156845912 -0.002284778424 -0.2142595433 -0.002117919294 0.002180677163 -0.002136647442 0.002090676788 -0.2135773646 -0.002042613838 0.2138766774 -0.2139226481 0.2138311317 0.2139691246 -0.00211038109 -0.002061913186 -0.2460775278 -0.002249298053 0.002215535907 -0.002262038767 0.002166115247 0.002305127275 -0.2449413727 -0.002344005496 0.245559853 -0.2455167645 0.2456025807 0.2454732339 -0.002321296832 -0.2434897154 -0.002391293391 0.002377684478 -0.002405108237 0.002425506506 -0.2411865601 -0.002439249898 0.2424941169 -0.2424737186 0.2425145622 0.2424532944 -0.002442637679 -0.2371603134 -0.002453931064 0.002449636142 -0.002465908025 0.002505772669 -0.2304863976 -0.002584296817 0.2340682909 -0.2340284263 0.2341088713 0.2339892854 -0.0025204959 -0.2296568805 -0.00269962914 0.0026690199 -0.00271255666 0.002718720501 -0.230863089 -0.002707840896 0.2307217172 -0.2307155534 0.2307274665 0.2307089088 -0.002735683886 -0.2295325432 -0.002656913185 0.002690291623 -0.002670270936 0.002649321462 -0.2275270215 -0.002627871025 0.2285526277 -0.2285735772 0.2285317327 0.2285945927 -0.002666256092 -0.2253995195 -0.002570178807 0.002605908706 -0.002583294098 0.002559887297 -0.2234300897 -0.002535582197 0.2243837613 -0.2244071681 0.224360439 0.2244306845 -0.002576468275 -0.2215820292 -0.002471335078 0.002510310485 -0.00248403477 0.002456724948 -0.2199673259 -0.002428348896 0.2207363134 -0.2207636233 0.2207091359 0.2207911 -0.002472717323 -0.2184568167 -0.002356123951 0.002398869201 -0.002368236942 0.002336392782 -0.2171748939 -0.002303269859 0.2177842887 -0.2178161329 0.2177526148 0.2178481907 -0.002351601003 -0.2159853771 -0.002221501684 0.002268791056 -0.002232872926 0.002195430215 -0.2150044034 -0.002156373197 0.2154552927 -0.2154927354 0.2154180627 0.2155304452 -0.002209653916 -0.2140873114 -0.002062613182 0.002115611697 -0.002073060878 0.002028641039 -0.2133879051 -0.001982211873 0.213696818 -0.2137412379 0.2136526285 0.2137860172 -0.002041602634 -0.00199489925 -0.2462598342 -0.002212612513 0.002175416092 -0.002220462771 0.002127713002 0.002262288781 -0.2450950912 -0.00230017938 0.245728855 -0.245687029 0.245644957 -0.002270590751 -0.2435988802 -0.002352159298 0.002333279841 -0.00236070321 0.00238185933 -0.24124368 -0.002397248236 0.2425770728 -0.2425559166 0.2425351278 -0.00238972365 -0.2372332772 -0.00242837374 0.002410111316 -0.002429168852 0.002471141895 -0.2308005508 -0.002550685752 0.2342338526 -0.2341918795 0.2341500652 -0.002477753733 -0.2298215636 -0.002664894047 0.002634453225 -0.002674319265 0.002678203649 -0.2308190447 -0.002666524537 0.2307416491 -0.2307377647 0.2307327142 -0.002684390065 -0.2294528796 -0.002623047634 0.002648832428 -0.002628908598 0.002608116025 -0.2274415504 -0.002586833978 0.2284693225 -0.2284901151 0.228510889 -0.002615281347 -0.225309673 -0.002537239023 0.002565052926 -0.002542645726 0.002519483201 -0.223333416 -0.002495466694 0.22429085 -0.2243140125 0.2243371963 -0.002526599052 -0.2214779806 -0.002439504535 0.002470528218 -0.00244462652 0.002417729065 -0.2198546136 -0.002389800992 0.2206282247 -0.2206551221 0.2206820834 -0.002424656329 -0.2183356931 -0.002325955495 0.002360802378 -0.002330682382 0.00229938041 -0.217043396 -0.002266828743 0.2176583973 -0.2176896993 0.2177210996 -0.002305960479 -0.2158434368 -0.002193287365 0.002232950184 -0.002197662012 0.002160880812 -0.2148494061 -0.00212252115 0.2153073461 -0.2153441273 0.2153810264 -0.002167015349 -0.2139193318 -0.002036433339 0.002082503518 -0.002040767616 0.001997287706 -0.2132041272 -0.001952070085 0.2135216052 -0.2135650851 0.2136087273 -0.002002869586 -0.001957566673 0.01075017749 0.08250218924 -0.08133506565 0.08149597217 -0.0809160096 -0.08178624147 0.08184790839 -0.009869927249 -0.0009515847758 0.08080344128 -0.08050595896 0.08014530902 -0.08071882504 -0.07991054374 0.07953069332 0.001514705943 0.007368089039 0.08295076066 -0.0820384082 0.08200881359 -0.08210932105 0.08201303687 -0.006540287104 0.001569458177 -0.04951980125 0.04969550511 -0.04962706481 0.04953976463 -0.04946801631 -0.001533675544 -0.00718255221 0.007620181392 0.07446947321 -0.07463448276 0.07419682959 -0.07498692912 -0.003042102498 0.07940271206 -0.07924597989 0.07884506315 -0.07853291181 0.078113995 0.003528057008 0.002227953615 -0.05057529623 0.05076785111 -0.05070716565 0.05064327572 -0.05057424863 -0.002171795172 0.002975358603 -0.05170532125 0.05196883693 -0.05188530232 0.05178429344 0.002814166592 -0.05170349633 -0.002952418921 0.002851410039 -0.002755406124 -0.0519596802 -0.05186999285 0.1277712288 0.01921213701 -0.01739286938 0.01876284129 -0.01622654952 -0.02009285811 0.1258362445 0.01069512652 -0.1277815298 0.126451513 -0.1252659305 0.1239951849 0.01961604958 0.003274572612 -0.05435944291 0.05451389998 -0.05441475922 0.05431162729 0.02231895383 -0.05365869583 -0.003271849824 0.003168717897 -0.003064064648 -0.05435821396 -0.05378782448 0.05125921942 0.007757933551 -0.008032490492 -0.007418005577 -0.0081991901 0.01078247179 0.05193189845 -0.05035891262 0.05372337884 -0.05377600926 0.05385938345 0.009193804616 -0.006871592299 0.02786641268 -0.02851690798 0.02828740759 -0.02812456517 0.02797166723 0.006645911842 -0.007581810092 -0.05452085728 -0.05531785559 -0.01334033497 0.1174002844 -0.1193195794 0.1190867747 -0.01310753024 -0.1198111046 -0.01406758619 -0.1194495317 0.1214490982 0.01212614741 -0.01765263512 0.1216225536 -0.1227774567 0.1216208057 -0.120532057 -0.01489173898 0.01678905634 -0.01570030763 -0.04193542548 -0.01136262573 0.04131403737 0.08494223472 -0.08804845308 0.01096542402 0.01037506835 0.008299072139 0.00777864855 0.09015055993 -0.02222223069 0.0230677664 -0.02096565955 0.01426014551 0.04288285951 0.01900238515 -0.01674404424 -0.09142261115 -0.09384687639 0.03061405476 0.09781306363 -0.02725068255 -0.1042121699 0.1015620465 -0.1042776017 -0.09645795069 0.03782188662 0.04635723146 -0.03163681911 0.03674091491 -0.038894698 0.09920270977 0.04807351256 0.03347458993 0.1225801716 -0.1225870489 0.1249965515 0.03106508735 0.03024172553 -0.1270468702 0.0356601372 -0.03479240938 0.03274209068 -0.03151004393 -0.1274386004 0.03038154242 0.1280164495 -0.1267844027 -0.01718994368 -0.147780175 0.1512145448 -0.1501485994 0.1489367151 -0.02242448468 0.01930784634 -0.0205197306 0.02191224304 -0.1514578734 0.09679509854 -0.09634348553 -0.0007738353693 -2.219137761e-05 -0.000398882194 -0.09822605993 0.09859666114 -0.0004439718792 -0.09784586888 -0.0984914521 -0.001141273907 0.09588666182 -0.001623709978 -0.001172372064 -0.002263877286 -0.1498074372 0.1514702392 -0.1520249187 0.1524793124 -0.005492882024 0.004008803526 -0.003554409793 0.003016693554 -0.001363552775 -0.1549812798 0.09980600765 0.001503863499 -0.0994749995 -0.002040137432 0.001715047666 -0.001401158305 0.1010963702 -0.1002882176 0.1006021069 -0.09997040952 -0.1009102897 0.1012068211 0.001609685109 -0.0004464369057 0.09984683525 -0.09895468533 0.09929995862 -0.09963711899 -0.001277675901 0.0007078618756 -0.001045022246 0.001399303632 0.09913165096 0.001244999329 -0.04882845457 0.04902148615 -0.04893302889 0.04912311516 0.04883158853 -0.001194699703 0.008127166229 -0.143564771 0.1437612234 -0.1448914074 0.1425801115 0.1460155292 0.007139556474 -0.007086137285 0.008210259078 -0.009448989047 -0.1475415872 0.1021719598 0.003016832826 -0.1018895285 -0.003463754999 0.003185741701 -0.002902210888 0.1033906283 -0.1026363812 0.102919912 -0.1023561852 -0.1032058214 0.1034975345 0.003071282336 -0.002195579701 0.1022580229 -0.1015014802 0.1017900537 -0.102075255 -0.002839770981 0.002378713843 -0.002663915167 0.002948252858 0.1016090457 0.001874516045 -0.0500747852 0.05025251885 -0.0501966495 0.05032078993 0.05012249227 -0.001840921487 0.02497871806 -0.0250080456 -0.001017018122 -0.005484320096 0.0378429807 -0.0375399099 0.0373997561 -0.03766276069 -0.03717465598 0.0369984881 0.005581733451 0.1045974195 0.00432054058 -0.1042641527 -0.00480116681 0.004449768165 -0.002556827526 -0.004101851404 0.1058641401 0.003769687557 -0.1050739108 0.1054218275 -0.1047387258 -0.1057877255 0.1061433249 0.004213999832 0.00386384304 -0.003550790743 0.1045745949 -0.103793276 0.1040995366 -0.1044148872 -0.004162306247 0.003701122794 -0.004016473415 0.003382428611 0.004329772475 0.1039339229 0.002600047978 -0.05107705098 0.0513174057 -0.05124476094 0.002527403221 0.05138902019 0.002591204002 0.0511663623 -0.00256606573 0.02535652318 -0.0250838595 -0.002072300301 -0.02569133682 0.02578952272 0.001494111398 0.001151400551 0.02531096321 0.02525809322 0.06515862918 0.01213173347 -0.01164723614 0.01207837453 -0.0124534358 0.0643058694 -0.06493403958 0.06455897831 -0.0640749227 0.06373954891 0.01241629558 0.1077047229 0.00499608217 -0.1072943671 -0.01555738884 0.01485446666 -0.00415722719 -0.01424602302 0.1089537396 0.01369980283 -0.1080744124 0.108682856 -0.1076827372 -0.1094270689 0.109818818 0.02155946457 0.02090155819 -0.004485719676 0.1072944021 0.004116733613 -0.1065170902 0.1069041147 -0.1072897026 -0.004955843748 0.004523353218 -0.004908941134 0.004157164671 0.00531569493 -0.002860581498 0.1068833936 0.003233905898 -0.05243773068 0.05277451767 -0.0526634086 0.05289208945 0.05255046509 0.003085029289 -0.003196241398 0.003083297888 -0.00297697672 -0.05274729486 0.1097438498 0.006716365622 -0.005947820968 0.006451001145 0.1092406696 -0.005757669718 0.0936937813 -0.00606061569 0.1121505896 0.005611180956 -0.1118762597 0.1122666452 0.1096697051 0.01057879867 -0.01031890694 0.009818652011 0.11016996 0.1117153377 -0.01065501599 -0.008672255861 0.08468249804 -0.1036468504 0.1047932465 -0.007764079743 0.007528353034 0.05285778333 -0.05395212724 -0.007861115049 0.05404916255 -0.00828107995 0.0005170926908 -0.02111319441 0.02112301054 -0.02096583511 0.02129882361 0.0207273169 -0.0004987275641 0.0009474639529 -0.02301714308 0.02285697283 -0.02267282846 0.02305416604 0.02241120902 -0.0222031198 -0.0009663715236 0.01424357769 0.08108281087 -0.07964538676 0.0800791051 -0.07893956644 -0.08062670033 -0.01334131569 0.005409350627 -0.04397681845 -0.04376908891 0.0475821688 0.001066162551 -0.0474603471 -0.001220910397 0.001110268599 -0.0006857958649 -0.0009959869805 0.04788450595 0.0008816626754 -0.04767198203 0.04778626365 -0.04755399003 -0.04789377566 0.001052038578 0.0009444270122 -0.0007836820032 0.04740318126 -0.04715515242 0.04729647861 -0.04701528214 -0.04741003938 -0.001019476395 0.0008566613045 -0.0009702220742 0.0007193211041 0.001114156266 0.04732195955 0.0006877470507 -0.02268218231 0.02311019148 -0.02306053984 0.02318428488 0.02308299577 -0.02307642473 -0.0006262806444 0.0005798062079 -0.0252912021 0.02464892488 -0.0247354429 0.02455767293 0.0248169855 0.0006561554065 -0.0248898781 -0.0005766004778 0.0006581430775 -0.0006844427911 -0.02428784454 -0.02431225065 0.0006086637397 -0.02375398415 0.02316431802 -0.02318884422 0.02320703186 0.02310017278 -0.0006463609944 0.0005739616207 -0.02294248837 0.02310406378 -0.02310815407 0.02312721949 -0.02313824172 -0.0005724542584 0.001472609942 0.08195259076 -0.08141634221 0.08120331862 0.001685633534 -0.08158541337 0.002315654531 -0.08096744642 0.0004542802894 -0.0008356281478 0.001071500347 -0.04464287418 -0.0004378933493 0.04379033896 0.0007289135984 -0.0001162070591 -0.0002368598942 -0.0427660995 0.04341038703 -0.04376345399 0.04398181911 -0.04411758757 0.0004616227858 -0.001413750864 -0.04143146736 -0.04137481735 -0.04359457134 0.04336183706 -0.003438634445 -0.001233354455 -0.04303846455 0.04414861868 -0.0440916847 0.04388550362 -0.002021467882 0.001470742927 -0.001676924002 0.002115840629 -0.04518754569 -0.04447791022 0.004258225448 0.0827054749 -0.08194328833 0.08184805002 0.004353463763 0.005090323732 -0.08173668595 0.002963770125 -0.003535333464 0.003646697535 0.001413468983 -0.04919301508 0.04937627488 -0.04930059033 0.0492033075 -0.001374981666 -0.02408679101 -0.0007151157075 0.0007429337425 -0.00070418146 0.0006023602829 -0.02463503859 0.02426024695 -0.02436206813 0.02446179781 -0.0005938211727 -0.005574601134 0.03812701809 -0.03815430782 0.03788330141 -0.0386176322 -0.03770973299 0.005349614788 -0.006123806485 0.07613807798 -0.07620643386 0.07578382585 -0.07657695857 -0.07543898681 0.006389027426 0.00828856856 -0.07473041873 -0.007860028637 0.07459872031 -0.07500967379 0.07410315099 0.07546063798 0.008257118509 -0.008049643959 0.008500608148 -0.008972204982 0.004693166952 -0.0757152992 -0.0414703518 0.04132599052 0.002338207425 -0.003653787616 -0.03974858322 -0.03987694688 -0.004731712765 0.0777984769 -0.07778420815 0.0773498365 -0.07700235112 0.005131047899 0.02554064167 -0.0254940356 -0.001271558163 0.001065592031 0.02487616801 0.02485736669 0.002044538917 -0.05032202339 0.05050644719 -0.05044722408 0.05038472262 -0.002001837048 -0.001439435444 0.02553044841 -0.02579953087 0.02576468624 -0.02569404972 -0.001354619585 0.00143281233 -0.001362175815 0.001209686342 0.02604102369 -0.05178588681 -0.002765502 0.002641571125 -0.00272316637 0.002805074589 -0.05136278546 0.05161988886 -0.05153798064 0.05146722622 -0.002756563672 -0.01136961261 0.06104766151 -0.06169138836 0.06137950585 -0.06211968125 -0.06097282696 0.0606323151 0.01122862929 -0.01199137134 0.06255140142 -0.06327523692 0.06283370624 -0.06244815217 -0.01140605251 0.01198711733 -0.01160156326 0.0111114638 0.06272037319 0.02618504501 0.001441241159 -0.001312839584 0.00176593435 -0.001213542893 -0.001738968938 -0.02689936599 -0.05344148788 -0.01284753098 0.004288140979 -0.004427716736 0.004576571513 -0.05286810621 0.05326031853 -0.05311146375 0.0529969376 -0.003281200368 0.01327050812 0.002866012455 -0.003458529432 0.002491667836 -0.001085687666 -0.008382623244 0.09300355845 -0.09265928894 -0.005824097395 0.004495309076 -0.004926254134 -0.008054167319 0.09242254094 -0.00812245991 -0.006998009724 0.04095522114 -0.003325406249 -0.04066300463 0.002278634767 -0.002677346268 0.003008516588 0.04267227051 -0.0416388619 0.04197003223 -0.04139539054 -0.04232915685 0.04271259437 -0.002421175026 -0.04132491006 0.004152224466 -0.005087759555 0.005193070455 -0.004918103742 0.04049965564 0.04642598507 0.0006766958464 -0.04624294764 -0.0009002160177 0.0007286453484 -0.0005537254429 0.04681594376 -0.04652395193 0.04669887184 -0.04633444598 -0.04685982134 0.000614396649 -0.000242273167 0.04605247955 -0.04567908752 0.04591577874 -0.04542722456 -0.04613232302 -0.0006118380824 0.000332579311 -0.0005491235933 0.0007722622602 0.04603793462 -0.01482155404 -0.1372832024 -0.01355176524 -0.0132582074 -0.007131300016 0.03359389231 -0.03339486674 0.03320056716 -0.03296680646 0.0328133974 0.007060182432 0.009269090106 -0.05786177279 0.057341103 -0.05756139813 0.05793015377 0.01024560002 -0.009742533506 0.01011128915 -0.01036704669 -0.05704911024 -0.01050077168 -0.06032059957 0.04431121852 -0.0001166911745 -0.04393841393 -0.0004055106422 5.642726713e-05 0.0002616732939 0.04507798865 -0.04453159848 0.04484969905 -0.04419887425 -0.04514962685 -0.0001136677674 0.001211033845 0.04388806842 -0.04309659279 0.0434789736 -0.04384523455 0.0003088595109 -0.0009121135152 0.0005458525661 -0.0001251613452 0.04354512046 -0.07758942099 0.02219187972 -0.02442374636 0.02285648533 -0.02146072925 -0.07480235483 0.07677062934 -0.07537487325 0.0739099314 -0.07240472491 0.02192064504 0.01737172365 0.07838671349 -0.07680358277 0.07749114728 -0.07837993527 -0.01667668726 -0.06950075224 0.06905353927 0.01078206757 0.07025011843 -0.07069108898 -0.009873165439 -0.01089450243 -0.06868991015 -0.07293931308 -0.009662691864 0.07253925904 0.009877650635 -0.009405558662 0.008999626828 -0.07302975287 0.07283163056 -0.0732375624 0.07237093087 0.07367249642 -0.008858941527 0.009568081037 -0.07136391403 0.07108518494 -0.07151375398 0.07193964798 0.009766813509 -0.009451708105 0.009877602105 -0.0103273407 -0.07207569398 -0.006240504028 0.02753773966 -0.02786467662 0.02777293774 -0.02764757756 0.006091212935 0.01998503053 0.04403900806 -0.01957574346 -0.04624002988 0.0446105977 -0.04260349376 0.02489482194 -0.0207833729 0.02279047684 -0.01987251952 -0.02597247299 0.02711130474 0.04622618231 -0.01835323548 -0.0469137885 0.04372225528 -0.01689403547 -0.04518145529 0.04168815659 -0.01661833094 -0.01317092214 -0.03536090843 0.007354109045 0.03540378362 -0.03655847117 0.03878107956 -0.01474283314 0.01516522248 -0.01294261409 0.0123108043 -0.01217246958 -0.0392507807 -0.04127104062 0.02496603231 0.05889209009 -0.02630491082 -0.05924584105 0.06162847364 -0.06273949238 0.02670794576 -0.02562642321 0.02451540448 -0.02735051773 -0.02477906185 0.06380440334 -0.05447166107 0.03107003454 -0.02770022719 0.02724061448 -0.02815208996 -0.05677638184 0.05537840152 -0.05628987701 0.05709684124 0.02686266656 0.0134925849 0.0440825536 -0.04230612841 0.04291605889 -0.04171836402 -0.04350279381 -0.01313938064 -0.04108498511 0.01816325502 -0.01965275286 0.01821486649 -0.01701757388 0.04014652588 -0.04116490808 -0.01426930326 -0.005532574458 0.03709464872 -0.03686155708 0.03677272142 -0.03665733755 0.005565359284 0.001476478869 0.02492697342 -0.006945480158 0.03267800719 -0.03259003415 0.03246079105 -0.03226740164 0.006930353839 0.001741820173 -0.02637006359 0.0261722386 -0.02617243615 0.02618685365 0.02610585047 -0.001785978472 0.0005710826959 -0.02161588857 0.02161516869 -0.0215319534 0.02171641136 0.02140230385 -0.0005514820491 0.0007285893395 -0.02180890206 0.02202978662 -0.02190447028 0.02180283538 -0.0006633915261 0.01670352538 -0.01654652927 0.0009462023167 -0.01773896116 -0.001019011958 -0.002961574931 0.01625987276 0.001423437024 -0.02381361185 0.0242183993 -0.02377224502 0.02460468844 0.02340508859 -0.001293476567 -0.02431951243 -0.0006668393917 0.0006873640929 -0.0007040106785 0.0007023886525 -0.02574659639 0.02494115725 -0.02494277928 0.02484687792 -0.0008720275219 0.0005677694748 -0.02351404044 0.02317046173 -0.02319891807 0.02318380157 0.02317387063 -0.0005634627048 0.0005681108855 -0.02323487682 0.02314739509 -0.02316440476 0.02316130344 -0.0005664212682 -0.001539224984 -0.04283743404 -0.04140237183 0.001026528725 0.002780393609 -0.04321865021 -0.04367085267 -0.003030541458 -0.004927522235 0.03972840903 -0.03905814059 0.03903929167 -0.03892843903 -0.0051064021 0.005079398983 -0.004968546345 0.004827695451 0.03836658273 -0.03565573365 0.03545830769 0.006669561169 0.03576063269 -0.006120673536 -0.006461770407 -0.03528038401 -0.006942288386 -0.03070863796 0.001687912603 -0.02617153619 0.02613402648 -0.02615354302 0.02613625974 0.02616056109 -0.001674123457 0.005332027183 -0.02613124091 0.02636779944 -0.02623263368 0.02658600649 0.02615973241 -0.002968615165 0.02617088068 0.005828350441 -0.005461770553 0.005663534293 -0.005796932294 -0.02557544929 -0.004705170004 0.004340512248 0.1107218845 -0.1102113516 0.1105990238 0.005463990932 0.1109006396 0.005060432182 0.1112930961 0.005010326833 -0.003595643135 0.05469818788 -0.05450125164 0.0546679941 -0.05481897139 -0.003996512397 0.003621715988 -0.003772693288 0.003450890464 0.003303345786 -0.002426365556 0.05334301374 -0.05561498896 0.007559310093 -0.01820432213 0.01520880718 -0.01339814306 0.01455649587 -0.01293854107 -0.01602367229 0.0173758117 0.02167086506 -0.01118536777 0.0173389888 0.01611514224 -0.009714028552 -0.01407134265 0.01393338378 -0.0152850315 0.01579925781 -0.009988916633 0.01037216436 -0.009857938039 0.008374938842 -0.01707970627 -0.02989034874 -0.0187733292 -0.0193067197 -0.02356621164 0.02116782411 -0.01866566728 0.01928436943 -0.01975055743 0.02672688772 0.001015548754 0.02500826528 0.02517103232 -0.001179207166 -0.03831280075 -0.005396486811 0.004231403858 -0.005674005426 0.006677487285 -0.05030820654 -0.007133439128 0.04639660339 -0.04539312153 0.04432020292 -0.006973444837 -0.04360204965 -0.00611956619 -0.003153717679 -0.04099853494 -0.03995674581 0.003251859395 0.001511197422 0.0252942204 0.02484139599 -0.001114761771 -0.03423220604 0.006544934517 0.02703934381 -0.006411540236 -0.02493432462 0.005085025025 0.003576586042 0.0197562671 -0.02947488007 0.02173203887 -0.02141881594 -0.002073458871 0.03186358242 -0.1329130233 -0.1308765906 -0.06626052156 0.01104342086 0.02500666452 -0.06778194703 0.000810753595 -0.4582504713 0.0002917853179 -0.4584050953 0.002136045043 0.2297372725 -0.2295660391 0.2297860399 -2.519640778e-05 0.2324051166 -0.231603834 0.2333291735 -0.230623283 0.003498516386 0.2321405646 -0.2315078717 0.2318947625 -0.2312394222 0.004108010006 0.2340950288 -0.2332168096 0.2337755865 -0.2327553298 0.004305457603 0.2408233325 -0.2353896331 0.2364349906 -0.2351263311 0.004953146871 0.2505872682 -0.2420785771 0.2440209775 -0.2400269818 0.004028036198 0.2589303104 -0.2493742005 0.2509337028 -0.2473068644 0.0003839874572 0.2642516337 -0.2543449229 0.2550218681 -0.2530865432 -0.004237144819 0.2654015912 -0.2556075774 0.2551056889 -0.2554201362 -0.007818450423 0.2620164928 -0.251989059 0.2505378051 -0.2528749423 -0.01008864275 0.2537327395 -0.2444251121 0.2418364185 -0.2464904311 -0.009567583507 0.2421229335 -0.2345592909 0.2333083674 -0.2360063483 -0.009279470565 0.2310550575 -0.2314675285 0.2310597353 -0.231956279 -0.01067350541 0.2280058904 -0.2283223786 0.2277131406 -0.2289163746 -0.01024851254 0.2256301785 -0.2259683601 0.2254322236 -0.2265332886 -0.009606250574 0.2236247423 -0.2239369459 0.2234825671 -0.224415607 -0.008848005258 0.2219624813 -0.2222234437 0.2218434624 -0.2226265379 -0.008049488369 0.220589791 -0.2207896911 0.2204775035 -0.221129619 -0.007268580633 0.219450329 -0.2195859909 0.2193332157 -0.2198804456 -0.006534775687 0.2184976391 -0.2185738528 0.2183685895 -0.21883092 -0.005859760637 0.217695208 -0.2177203458 0.2175490692 -0.2179417903 -0.005249373427 0.2170141804 -0.2169962454 0.2168507543 -0.2171864554 -0.004702503124 0.2164303696 -0.2163746287 0.2162496382 -0.2165392724 -0.004218967783 0.2159252424 -0.215836311 0.2157277878 -0.2159797588 -0.003794619259 0.215484349 -0.2153662959 0.2152711103 -0.2154920459 -0.003423312799 0.2150963216 -0.2149526641 0.2148683763 -0.2150636202 -0.003100917156 0.2147519286 -0.2145857367 0.214510364 -0.2146842873 -0.00282478746 0.2144435705 -0.2142575889 0.2141894222 -0.2143456946 -0.00259105678 0.2141647624 -0.213961412 0.2138983807 -0.2140405823 -0.002395397243 0.2139107095 -0.2136927193 0.213632562 -0.2137625601 -0.002235297388 0.2136772148 -0.2134466067 0.2133892374 -0.2135080887 -0.002107678682 0.2134588954 -0.2132153135 0.2131614832 -0.2132736466 -0.002012100905 0.2132524944 -0.2129972865 0.2129460203 -0.2130524198 -0.001946859155 0.2130546179 -0.212789041 0.2127393088 -0.2128419926 -0.00191088695 0.2128627126 -0.2125892076 0.212537528 -0.2126380915 0.1250380438 0.02931872837 -0.05146519867 0.002464207963 -0.1125589404 -0.006143499461 0.0058728602 -0.006165155442 0.009561285623 0.1105838988 0.009147346817 0.008362182209 0.05477029798 -0.008002849426 0.0807783021 -0.08093235544 0.001880025083 0.08058391055 0.07981047088 -0.003728946686 -0.0802622345 0.08107704537 -0.08115929452 -0.1256401065 0.01469907718 -0.1265905941 -0.1266807915 -0.02861883432 0.02954556358 0.1045693487 -0.02730656709 -0.02917639574 -0.1131253111 0.02961256138 -0.0302773127 0.02939923189 -0.01370868088 -0.09275241736 0.09321774064 -0.09411974491 -0.09825143448 -0.02233426789 0.09883824968 0.0257750147 -0.1289901009 -0.02947056343 0.1417746208 -0.1394813725 0.02516967246 0.01096808949 -0.13930005 0.1390437623 -0.1402119401 0.1378622681 0.1414639763 -0.01042961782 0.003132447782 0.1056949298 0.1060478964 -0.1298836745 0.128714739 0.01553218963 0.003798074443 -0.1076571198 0.1083466335 -0.1080222179 0.1086957749 0.1076607039 -0.1073524999 -0.003764390455 0.1106729812 -0.1103401316 -0.003976798184 0.003313418143 0.05497117044 0.01336868878 0.1143038353 0.0008270071795 -0.04798571834 0.04820834726 -0.04810754714 0.0479816815 -0.0478699634 -0.0007689217582 -0.07383544391 0.007456277023 0.1194299076 -0.1201794687 -0.01264667921 0.01475173211 0.1208982992 -0.009224369907 -0.04055084906 0.04052614711 -0.04145144488 0.0007974449638 -0.09744730611 -0.0970491323 0.002563528109 0.09705354924 -0.09577676936 0.09620774823 -0.09536212074 -0.09662762131 -0.002043583064 0.003520279655 -0.106271554 0.106987095 -0.1066863512 0.1063323322 -0.003440851512 0.02031605011 -0.1092234701 0.1100080341 -0.1094513964 0.1090268831 -0.01320280086 0.005482556896 -0.005554205609 0.108558071 -0.1056080451 0.008332548228 -0.05411075562 0.007353270046 0.0006075879422 0.0477285238 -0.001280347534 0.08037506337 0.08116113027 0.004355299507 0.005266408617 0.09573952827 -0.09423343423 0.09457358872 -0.09399515213 -0.09494497633 -0.00446803702 0.009125026298 0.09532244884 -0.09408024865 0.09383362755 -0.09381818954 -0.008107021896 0.1366770677 -0.01228556947 -0.04363102374 -0.01529550797 0.04636140379 0.02031765295 0.1116505956 -0.005214060279 -0.1109772292 0.004682226838 -0.01095681675 -0.1132217164 -0.01370352961 -0.1170476987 -0.02690880279 0.1374381856 -0.01516687671 -0.1275948519 -0.0224809305 0.07098259294 -0.001910634071 -0.2286372334 0.2284572391 -0.2286250576 0.2282257797 0.2288112616 0.001649811867 -0.2299590345 -0.002477937137 -0.002777777994 -0.2276534826 0.2274588662 -0.2277295605 0.2273164143 0.2280038325 0.002585619792 -0.2315093637 0.00283234454 -0.01060448559 -0.2282554923 0.2269448814 -0.2279020716 0.2255802436 0.2271626122 0.00591485969 -0.2322954697 -0.003707305827 -0.003867485623 -0.2241654237 0.2240949874 -0.2245197984 0.2237108418 0.2249536367 0.004009376037 -0.2344425334 -0.004015126338 -0.003559183679 -0.2193846798 0.2219014033 -0.2228538364 0.2207119176 0.2233040234 0.003592970417 -0.2380194752 -0.00488999869 -0.002953302076 -0.2118931932 0.2166712883 -0.2180321367 0.2156185332 0.2192594006 0.003210229484 -0.2457941787 -0.00447980077 0.0004901936642 -0.2060607916 0.2126691235 -0.2132663758 0.2119302762 0.2145834345 0.00138326048 -0.2522641169 -0.002961892693 0.002577390355 -0.2029995179 0.2103044022 -0.2107088456 0.2100229477 0.2112235077 -0.001816119398 -0.2555011074 0.001061807172 0.004305176231 -0.1997914846 0.2086244582 -0.2091855572 0.2081386438 0.2096368585 -0.003825573082 -0.2540229727 0.006367891747 0.004988671871 -0.1966692211 0.2061586661 -0.2070382323 0.2058257304 0.2075547258 -0.005406544881 -0.24801823 0.009946718531 0.002847855615 -0.1940548517 0.2031593846 -0.2053246527 0.2029900962 0.2051269497 -0.008257222542 -0.238567147 0.01085105801 0.01472956409 -0.1883931789 0.1990383608 -0.2002143979 0.1983899409 0.2013192082 -0.005830134445 -0.2325384365 0.009263959625 0.01459908873 -0.1877004323 0.2025276874 -0.2004271589 0.2053886773 0.1990406049 -0.01290581612 -0.230342542 0.009451904382 0.01778114808 -0.1996661494 0.2185240554 -0.2133973639 0.2243519201 0.209014715 -0.01777488899 -0.2271065892 0.01058417301 0.01031586133 -0.2239876683 0.234876743 -0.2339533261 0.2353511013 0.2302523372 -0.01317909744 -0.2249106014 0.01009294544 0.00936250175 -0.2360867454 0.2366691502 -0.2362472677 0.2370802472 0.2358040958 -0.009518452398 -0.2230427455 0.009412343828 0.008713537161 -0.2377087984 0.2382120818 -0.2378496172 0.2385582862 0.2374707629 -0.00889445468 -0.2214750924 0.008639170949 0.008006756089 -0.2390755227 0.2395315764 -0.2392124527 0.239815691 0.2388982976 -0.008194229175 -0.2201615534 0.007843161783 0.007294443104 -0.2402261427 0.2406536282 -0.2403719552 0.2408853896 0.2401154336 -0.007481274135 -0.2190583099 0.007069995676 0.006610058753 -0.2411975302 0.2416066357 -0.2413609548 0.2417997154 0.2411501901 -0.006791035561 -0.2181286045 0.006346546582 0.005973683874 -0.2420203593 0.2424164839 -0.2422050094 0.2425803358 0.2420274068 -0.006141133582 -0.2173440607 0.005689090214 0.00539136607 -0.2427226462 0.2431119782 -0.2429286323 0.2432525227 0.2427770622 -0.005542598154 -0.2166739257 0.00509746287 0.004863560713 -0.2433276815 0.2437143404 -0.2435543482 0.2438362023 0.2434236499 -0.004998474436 -0.2160960804 0.00456861458 0.004391325003 -0.2438540152 0.2442404911 -0.2440999451 0.2443472737 0.2439860311 -0.004511608137 -0.2155935688 0.004100912179 0.003971518541 -0.2443161823 0.2447038547 -0.2445796184 0.2447983485 0.2444792924 -0.004079785969 -0.2151530815 0.003689516021 0.003603059071 -0.2447254777 0.2451152099 -0.2450046663 0.245199666 0.2449154454 -0.003698141856 -0.2147639016 0.003331885498 0.003282381337 -0.2450909669 0.2454833459 -0.2453843367 0.2455595926 0.2453042091 -0.003363656328 -0.2144172651 0.003023426898 0.003004627404 -0.2454200791 0.2458156681 -0.2457263067 0.2458855895 0.2456535267 -0.00307465802 -0.2141058417 0.002758613541 0.00276770243 -0.2457190726 0.2461174258 -0.2460378975 0.2461836336 0.2459701086 -0.002827997753 -0.2138239534 0.002534519374 0.002570008746 -0.2459925178 0.2463934586 -0.2463233717 0.2464574749 0.2462583475 -0.00261964445 -0.213567127 0.002349254879 0.002407567817 -0.2462444014 0.246649616 -0.2465853318 0.2467098438 0.24652302 -0.002447605323 -0.2133290974 0.002198429078 0.002277880419 -0.2464801108 0.2468914722 -0.2468307518 0.2469483288 0.2467723135 -0.002308886765 -0.2131048492 0.002079534351 0.002180423463 -0.2467027431 0.2471206696 -0.2470629808 0.2471749327 0.2470074826 -0.002203423843 -0.2128922556 0.001991688544 0.002113407584 -0.2469154587 0.2473407572 -0.2472852412 0.2473932476 0.2472317829 -0.002129584577 -0.2126873661 0.001933047049 0.002077251255 -0.2471205874 0.2475559715 -0.2475008222 0.2474449901 -0.002085305332 -0.2124858761 0.001904630045 -0.1038469786 -0.02658733688 -0.03015408679 0.1172509878 0.09494673428 0.01486002059 0.0424856578 0.01140928127 5.708199021e-05 0.01670489731 -0.01667904662 2.738229917e-05 0.01227342729 -0.0122437276 0.007917266945 -0.007889884646 -6.778685529e-05 0.01671552779 -5.699048777e-05 0.01226263092 0.007860276458 0.0001038832216 -0.01433294649 0.01441970535 3.821965207e-05 -0.01093740963 0.0110030732 -0.007981230866 0.008019450518 -0.0002596009054 0.03260421377 -0.03259897046 -9.996863027e-05 0.02633495968 -0.02649459196 0.01103929769 -0.01113926632 -8.158706597e-05 -0.02089297635 0.02079558552 -1.874215595e-05 -0.0142367894 0.01417394449 -0.008252351587 0.008233609431 0.0001365966227 -0.01423127557 5.665868819e-05 -0.01085747169 -0.007924572178 -0.0001366025392 0.01709927789 -0.01721117594 -4.073437507e-05 0.01157695521 -0.01167282338 0.006710717427 -0.006751451802 -0.0002784983432 -0.01201776751 0.01181406776 -0.0001114344792 -0.007529945902 0.00736288204 -0.003469842933 0.003358408454 -0.004911347558 0.01063408692 -0.01454793177 -0.002036756674 0.00775834538 -0.01063293626 0.003537738424 -0.005574495098 -0.001109963758 0.03263420702 -0.0006033762482 0.02582837217 0.01043592144 0.0006542944763 0.03177623743 -0.03080687334 -0.0008418382782 0.02723259485 -0.0257364621 0.01652468456 -0.01736652284 -1.171660891e-05 0.01606647696 -0.01605950946 -1.074322447e-05 0.01183455157 -0.01183552495 0.007744952629 -0.007755695853 1.846226047e-05 -0.01603356553 0.01604361268 1.102996944e-05 -0.0118239189 0.01183135119 -0.007746961578 0.007757991547 3.595013725e-05 0.01608208765 2.060970333e-05 0.011849892 0.007765562332 1.403664372e-05 0.01612254293 -0.01611141099 7.796662306e-06 0.01187467384 -0.01186843386 0.007792037768 -0.007784241106 2.991937844e-05 -0.01615901952 0.01618540488 1.385020728e-05 -0.01188978722 0.01190585639 -0.007730450214 0.007744300422 -0.0003266365091 0.01562052604 -0.01580072358 -0.0001571631015 0.01045277424 -0.01062224765 0.005838805785 -0.005995968887 3.56572685e-05 0.0166649561 -0.01663799071 1.246549404e-05 0.01225445092 -0.01223125915 0.007960814884 -0.00794834939 -0.002709102413 0.001110068322 0.0008286360113 -0.0001472640925 0.01676238836 -0.01677590906 -0.000130789706 0.01231261637 -0.01232909076 0.007798107795 -0.007928897501 -0.0004404666761 -0.007883948289 0.00748890058 -0.000141957033 -0.00396777569 0.003669266048 -0.001139365321 0.0009974082881 -5.505046926e-05 0.03024255744 -0.03036241148 7.994614728e-05 0.02104224153 -0.02117723815 0.01035612769 -0.01027618154 -2.33738857e-05 0.03013276027 9.604865197e-05 0.02092281899 0.01045217634 -0.0002090184947 0.02975346385 -0.02990014542 -3.118507454e-05 0.02050294879 -0.02068078221 0.0105828585 -0.01061404357 -0.0001424961476 0.02603526152 -0.02618282487 -4.682837529e-05 0.01777230122 -0.01786796899 0.01041316503 -0.0104599934 -0.0001281568203 -0.02660414783 0.02646128836 -3.679456884e-05 -0.01812749241 0.01803613016 -0.0106239339 0.01058713933 -1.891191171e-05 0.02591561243 2.523123046e-05 0.01772815807 0.01043839626 -0.0001031920154 0.02545710843 -0.02558624319 -2.658695431e-05 0.01740619564 -0.01748280071 0.01014335008 -0.01016993703 7.767125594e-05 -0.01460230535 0.01466573457 3.215578751e-05 -0.01112268249 0.01116819795 -0.008012715335 0.008044871122 8.668659706e-05 -0.01453449264 3.3532628e-05 -0.01106952852 -0.007979182707 -0.0002364693795 -0.01499011125 0.01481984133 -0.0001167270757 -0.009972974598 0.009853232296 -0.00543408167 0.005317354594 -0.0002680607354 -0.01296430901 0.01277466625 -0.0001185676083 -0.008336727191 0.008187234064 -0.004134973162 0.004016405554 -0.000105083526 0.02122837806 -0.02135153778 -3.414506073e-05 0.0144693533 -0.01454029176 0.008376146672 -0.008410291732 -8.490964669e-05 0.0211227363 -1.551485849e-05 0.01439995851 0.008360631813 -7.244267927e-05 -0.01902351504 0.01891553292 -1.55115351e-05 -0.01292911906 0.01287218792 -0.00757064023 0.007555128695 0.0001324773001 0.01392990712 -0.01381302281 4.798907622e-05 0.010641675 -0.01055718678 0.007818723996 -0.00777073492 9.862186578e-05 0.01403417542 2.8943202e-05 0.01071135367 0.007847667198 3.949089149e-06 0.01592934043 -0.01592143968 3.073427417e-07 0.01179631045 -0.01179266871 0.007882875338 -0.007882567995 -1.73161012e-05 0.01595786731 -0.01595857625 -1.566114109e-05 0.01180218476 -0.01180383972 0.007823339743 -0.007839000883 -4.778325803e-06 -0.01595173759 0.01595545907 -5.929532934e-06 -0.01180374642 0.01180489763 -0.007867197655 0.007861268122 2.84170856e-07 0.01593678977 -1.617816879e-06 0.01179821244 0.007881257521 -3.91930908e-06 -0.01594725262 -5.591712836e-06 -0.01180207402 -0.007872789368 -1.298032091e-05 -0.01602953447 -1.118020325e-05 -0.01182571901 -0.007758141781 -4.125758198e-06 -0.01601792917 0.01602533624 -3.288363496e-06 -0.01183043532 0.01182959792 -0.007786610879 0.007783322516 -2.24114527e-05 0.01595547771 -2.011502665e-05 0.01179988833 0.007803224716 3.386823971e-05 0.01596351117 -0.0159504996 1.887761945e-05 0.01180233651 -0.01178734589 0.007753452105 -0.007734574485 7.134701965e-06 -0.01600794935 3.612846492e-06 -0.01182691346 -0.007782998033 2.485853193e-05 0.01598084135 1.27434638e-05 0.01181445158 0.007766195568 -1.061619898e-05 0.01614499934 -0.01614359889 -9.345966724e-06 0.01187861941 -0.01187988964 0.007786159138 -0.007795505105 3.554103426e-06 0.0161315304 1.610587485e-06 0.01187661736 0.007793648356 -0.0001315017065 0.01671567555 -0.01682929633 -5.465664591e-05 0.01131503028 -0.01139187534 0.006488056577 -0.006542713223 -2.352674045e-05 0.01614252397 -1.990988139e-05 0.01187500255 0.007766249257 6.182245025e-05 -0.01613880867 3.6197323e-05 -0.01186416209 -0.007694252891 -0.0001624610858 0.01547188773 -7.066442367e-05 0.01036097758 0.005768141362 -0.0002856166248 -0.01516961604 -0.0001242330779 -0.01013435814 -0.005558314748 -0.0002296859266 0.01665566687 -0.0001770724991 0.01226000294 0.007621035296 0.0001128273459 -0.03066930221 0.03053221366 0.0002417361116 -0.02152861788 0.02139970911 -0.009840876074 0.01008261219 -8.916280564e-06 -0.03114427802 0.03103279267 0.0001297709588 -0.02219468182 0.02205599459 -0.009561892578 0.009691663537 -9.581546377e-05 -0.03079770078 6.411562328e-05 -0.02168854896 -0.00977676045 -5.469198383e-05 -0.03126020834 9.879458122e-05 -0.02234816839 -0.009463097997 -4.85164191e-05 0.02923577662 -0.02936299238 6.119261497e-05 0.02000906012 -0.02011876915 0.01077102263 -0.01070983001 -9.29295358e-05 0.02961897635 4.256412965e-05 0.02036745513 0.01062542263 -0.000176408778 0.02908921203 -2.792127667e-05 0.01986057262 0.01074310135 -0.0001924523765 -0.02715921777 0.02701742457 -8.612159596e-05 -0.01849418845 0.01838785767 -0.01085226574 0.01076614414 -0.0002730040998 -0.02676346899 -0.0001453856301 -0.01825511088 -0.01076931953 2.609804892e-05 -0.02726502449 6.236616003e-05 -0.01853045656 -0.01078989958 -0.0001119969763 0.02534467508 -4.053425216e-05 0.01733473292 0.01010281583 -3.615484711e-05 0.02495509875 -0.02507034398 1.168692992e-05 0.01710969568 -0.01715753746 0.0100692026 -0.01005751567 -0.000241320803 -0.02431291503 0.02415545251 -0.0001230573217 -0.01664701994 0.01652875646 -0.009588034174 0.009464976852 -0.000381326361 0.02476927436 -0.0002245168775 0.0169528862 0.009844685721 -0.0002096918852 -0.02446315693 -0.0001029176811 -0.01675379414 -0.009690951855 -0.0001643075264 -0.01913950034 -5.738320621e-05 -0.01303604338 -0.007628023437 -0.0001638011246 -0.01642341074 0.01629875161 -7.166505442e-05 -0.01108600323 0.01099386716 -0.006286241064 0.00621457601 -2.657992784e-05 -0.01640537122 0.01640716361 -2.590765389e-05 -0.01203271843 0.01203204615 -0.007836143486 0.007810235832 -4.404318687e-06 -0.01639986782 -5.706996615e-06 -0.01203141575 -0.007841850482 -4.740054072e-05 0.01641153785 -4.298828069e-05 0.01202763389 0.007767247551 9.659238156e-05 0.01644263282 5.407348535e-05 0.01207015279 0.007821321037 3.11187738e-05 -0.01666646143 1.829149748e-05 -0.01223090032 -0.007871593149 7.398625886e-05 0.01674324751 4.447089537e-05 0.01229214629 0.007904747353 -3.42964573e-05 0.01447673374 -5.933048122e-05 0.01102810722 0.007960120037 -0.000393468726 0.01316518794 -0.01340902988 -0.0001683754047 0.008483616559 -0.008708709879 0.004253532883 -0.004421908288 -0.0008231926395 -0.03267011103 -0.0005148832266 -0.02680290137 -0.01165414955 -0.0001266559404 -0.02100664337 -4.801144252e-05 -0.0143154339 -0.008300363029 0.0002134766812 -0.01315155395 0.01332628293 8.313098206e-05 -0.01007114091 0.01020148661 -0.007476994866 0.007560125848 0.0002396763374 -0.01295362598 9.373838425e-05 -0.009925202955 -0.007383256481 0.0002773361978 0.01357055609 0.0001066160719 0.01037220673 0.00766674192 0.0001417815628 0.0136891914 4.873394393e-05 0.01046525435 0.007715475864 0.0001586195061 -0.01412811513 7.058039204e-05 -0.01076943258 -0.007853991786 -0.0001852917128 0.01696252665 -9.217465604e-05 0.01148383816 0.006618542771 1.802596231e-05 -0.01651434591 0.01652579156 7.926062415e-06 -0.01211017437 0.01212027427 -0.007827806737 0.0078357328 -4.295958901e-05 -0.0165133483 -3.411274615e-05 -0.01211902121 -0.007861919483 -0.0002884590796 -0.01223173771 -0.0001165227885 -0.007701882192 -0.003586365721 5.193871769e-05 0.01654805787 3.024985122e-05 0.01214196314 0.007865982651 -4.950963681e-06 0.01656515153 -1.003666824e-05 0.01214704884 0.007855945983 -0.0003675030231 0.01118473744 -0.01144566568 -0.0001592037226 0.006791587166 -0.006999886465 0.002887081937 -0.00304628566 -0.002783548371 -0.01613728654 -0.001464562216 -0.01195192242 -0.007039057314 -7.707301651e-05 0.02278098493 -0.02290146323 1.299406719e-05 0.01552989522 -0.0156199623 0.008887507814 -0.008874513747 -4.80554099e-05 0.0207146445 1.961138196e-05 0.0141062777 0.008253220813 1.744818992e-05 0.02062495913 4.187911979e-05 0.01408184677 0.008295099933 0.003366046389 0.003570197395 -0.001539147839 0.00152931276 0.002441944859 -0.0006052112283 0.001691906257 -0.0001625934963 -3.778874084e-06 -0.01605293679 -4.424847785e-06 -0.01183487898 -0.007760120701 5.656941554e-06 2.129153546e-06 2.0625315e-05 0.01609787437 9.889379495e-06 0.01186062794 0.007775451712 1.659531159e-05 8.789393668e-06 -0.0002601499151 0.0165639491 -0.000120481784 0.01117536215 0.006367574793 -0.0001706926554 -8.133372862e-05 3.468865882e-05 0.01620154854 2.098992018e-05 0.01191955513 0.007765290342 -4.78839777e-07 -0.01639414987 -1.485503933e-06 -0.01203040909 -0.007843335986 5.195742243e-06 -0.01638995654 3.091221057e-06 -0.01202830456 -0.007840244765 1.76730542e-05 -0.0164822429 0.01650351432 8.274897153e-06 -0.01211275796 0.01212215612 -0.007875349386 0.007883624283 9.66335225e-05 5.402834934e-05 -0.0001127723376 -8.922173581e-05 6.109461276e-05 2.415014733e-05 -0.0007498309887 0.008305908211 -0.008860374134 -0.0002628858501 0.004286519628 -0.004773464765 0.001324693288 -0.001587579138 -0.0005040719052 -0.0001853279672 -0.0001082094367 -0.03047690314 4.124796624e-05 -0.02132669555 -0.01023493358 7.930782793e-05 0.0001523213915 -7.558333858e-05 0.03001333041 5.791572681e-05 0.02078931993 0.01051009207 -4.586215438e-06 0.0001039515016 -0.0002995064407 -0.02634770071 -0.0001660215439 -0.01800145389 -0.01062601495 4.199348185e-06 3.887561919e-05 -0.0002980332727 0.02574765018 -0.000166667126 0.01759679193 0.01027172913 -0.0002157833233 -0.0001017921006 6.04839649e-05 1.906266951e-05 -0.0002298971738 0.01466574808 -0.0001068373674 0.00973017249 0.005210517227 -0.0002654490906 -0.0001185597215 -0.001514369237 0.0324645675 -0.001866524852 0.02758475046 0.01465815971 -0.001120245358 0.03260906058 -0.0321894284 -0.0009476887013 0.0275490174 -0.02772157405 0.01328606006 -0.01423374876 -0.0005247041318 0.03242388429 -0.0004007046416 0.02742501791 0.01288535542 -0.0001447933964 -6.026878411e-05 -9.053857664e-05 0.01881159542 -2.863026502e-05 0.01281027961 0.00752649843 -0.0001530853084 -0.01870034693 0.01858848676 -5.012711194e-05 -0.01272852398 0.01262556579 -0.007452149672 0.00740202256 -0.0001561043834 -7.434875868e-05 0.0003503577526 0.01272374759 -0.01244225847 0.000140731065 0.009768497214 -0.009558870526 0.007308298171 -0.007167567105 0.0002316640512 7.495831096e-05 0.0007794947431 0.01184675524 -0.01123411027 0.0003225782428 0.009076646128 -0.008619729627 0.006822264591 -0.006499686348 0.0004915894132 -0.01213688081 0.0002340245642 -0.009301305677 -0.006933542541 0.0003359374976 0.0001112779494 0.0001471914815 5.525905586e-05 6.440349453e-05 6.324587297e-06 1.705457963e-06 -0.01591397956 -4.49641301e-07 -0.0117905136 -0.007883017636 -1.476863693e-05 -0.0159575987 -1.340680127e-05 -0.01180520155 -0.007852407685 -8.556518346e-06 -8.860437281e-06 -1.886600891e-06 0.01594220943 -3.744473824e-06 0.01180007031 0.007877513047 -2.719974828e-06 -4.723679556e-06 -4.83256951e-06 0.0160334049 -5.258425827e-06 0.01183002378 0.00777806409 -3.266332556e-05 0.01595254489 -2.928747547e-05 0.01179651248 0.007773937241 -4.852934426e-05 -3.936275558e-05 1.343504708e-05 -0.01599517203 8.370732585e-06 -0.01182184914 -0.0077746273 1.582929407e-05 8.431731616e-06 1.887333978e-06 -0.01613853133 2.140905122e-07 -0.0118782164 -0.007795291014 3.241697022e-06 1.642657788e-06 -0.0001677923617 -7.582954835e-05 -3.398365978e-05 0.01613935454 -3.097132956e-05 0.01187199022 0.007735277927 -4.885316792e-05 -4.102503642e-05 -0.0002154109275 -0.0153179611 -0.0001024133525 -0.01024735572 -0.0056607281 -0.0002210351236 -0.0001074132614 -6.052991215e-06 0.01651098112 -4.759602023e-06 0.01212086273 0.007878864681 -1.878672338e-05 -1.694519793e-05 -0.0003281914152 -0.01246149091 -0.000148333032 -0.007881740574 -0.003734698753 -2.653706137e-05 0.01658053215 -2.669215987e-05 0.01214720394 0.007829253824 -0.0003509749296 0.01094139566 -0.0001431517029 0.00658376394 0.002743930235 -0.0008900585121 -0.0005819779824 0.0001141252342 0.03095361139 0.0002120589561 0.02195806086 0.009903722493 -0.000396473944 -0.0001269620428 -0.0001659881348 -0.03135347775 1.551780167e-05 -0.02252967433 -0.009447580195 -0.0001251671554 -0.02949824043 1.291704705e-05 -0.02025685335 -0.01069691297 -3.911143801e-05 7.149033828e-05 -5.070752133e-05 0.02896424377 5.120960094e-05 0.0197586555 0.01079431095 -9.279771171e-05 0.02884938233 1.116736105e-05 0.01965469043 0.01080547831 -0.000138925416 0.02687604628 -4.220291113e-05 0.01829113516 0.01072394123 9.35401274e-06 4.537829821e-05 -0.0001295087563 -0.02739933469 -3.394421185e-05 -0.01862602111 -0.01082384379 -9.373277862e-05 -0.02753113904 -1.190828564e-05 -0.0187078456 -0.01083575207 -1.5564849e-05 -0.02518569176 3.175475703e-05 -0.01720485706 -0.01002576091 -0.0001404421284 0.02402634155 -5.086775179e-05 0.01643918208 0.0094141091 -0.0002231509412 0.02460143273 -0.0001071176074 0.01683685286 0.009737568113 -0.0001296749802 -4.661625838e-05 -0.0001486529873 -0.02035974196 0.02023854603 -6.673841324e-05 -0.01389200488 0.0138100903 -0.008092024565 0.008025286152 -0.0002232744428 -0.02050037758 -0.0001192444677 -0.01399603485 -0.008211269033 -0.0001696428154 -8.383090004e-05 -0.0001851168276 0.01814351893 -0.01826644218 -7.292459611e-05 0.01231572462 -0.01242791685 0.007209664321 -0.007282588917 -8.057391711e-05 0.01803304342 -2.245348036e-05 0.01225760418 0.007187210841 0.01367870666 0.01224652073 -0.00397650873 0.006519995663 0.01124041449 -0.004081703488 0.01024089785 -0.003720902187 0.008930978713 0.01855977111 0.004151630395 0.01601976281 0.01439252824 0.006924345181 0.02443390705 0.002657881196 0.02028622679 0.01705040944 7.923928947e-07 0.01479428932 -0.01476268615 -1.535615328e-05 0.01123626064 -0.0112201121 0.008021474961 -0.008036831114 4.145199576e-05 0.01483344733 1.273623099e-05 0.01126497641 0.008034211192 -2.864508207e-05 0.01505620074 -0.01503547005 -3.425631369e-05 0.01140315189 -0.01139754066 0.008026887197 -0.008061143511 -0.0001124718423 -0.01731419702 -3.996096091e-05 -0.01174533426 -0.006791412763 -0.0002233016964 0.01358077187 -0.01376096354 -9.724195604e-05 0.008844746911 -0.00897080665 0.004527934635 -0.004625176591 -0.0002420633813 -0.0001060263475 3.665394196e-06 0.02175879086 -0.0218433681 3.978342235e-05 0.01484224668 -0.01487836471 0.008672336242 -0.008632552819 -0.0001200432208 0.02164447124 -4.880933739e-05 0.0147710128 0.008623526904 -1.079753472e-05 0.01520299372 -0.01519050721 -1.320688884e-05 0.01147076671 -0.01146835735 0.007944725983 -0.007957932872 -7.750256331e-06 0.01507226134 -1.5543491e-05 0.01141094512 0.008011343706 -4.188667549e-05 0.01538103107 -0.01537527681 -3.578044137e-05 0.01151309146 -0.0115191977 0.007785155086 -0.007820935527 -3.963017312e-06 -0.01532435427 0.0153354351 -5.339391681e-06 -0.01151944562 0.011520822 -0.007897309991 0.0078919706 -5.588663031e-06 0.01521815311 -1.046845948e-05 0.01147564651 0.007934257524 2.564029077e-06 -0.01531652705 -1.199625345e-06 -0.01151568197 -0.007898509616 5.693841016e-05 0.01540386836 3.32840834e-05 0.01153674579 0.007818439169 1.978991673e-05 0.01555406941 -0.01553442924 9.154128808e-06 0.01160998697 -0.01159935118 0.007887598874 -0.007878444745 1.55863039e-05 0.01557261763 6.470291022e-06 0.01161910299 0.007894069165 -0.001280681471 0.001848889955 -0.004704577653 -0.0002594881738 0.0010988289 -0.002120022197 0.0002620794989 -0.0005215676725 -0.0001451255687 -0.03219559415 0.03205819619 0.0001076287169 -0.02400943931 0.02375668503 -0.009072841969 0.009180470686 -0.0001812029343 -0.02264552932 0.0225076792 -7.608949095e-05 -0.01543761273 0.01533249929 -0.00882431621 0.008748226719 -0.0001554740933 -6.31916039e-05 0.001685364467 -0.006175849957 0.007313177367 0.0007434037458 -0.004694624813 0.005636585535 -0.003551805697 0.004295209443 0.004112579391 0.00185989944 -0.0001374870443 0.01767374635 -0.01779003424 -6.007175256e-05 0.01201124574 -0.01208866103 0.006974367017 -0.007034438769 -0.0002179813095 0.01616067199 -8.588169128e-05 0.01086176754 0.006128694319 1.119615981e-05 0.01622332789 -0.01621260599 6.465334363e-06 0.01192817434 -0.01192344351 0.007776179783 -0.007769714449 -0.0001164767441 0.01603851183 -3.821826776e-05 0.01078350906 0.006090476051 7.736786622e-06 0.01623198554 3.91398468e-06 0.01193199714 0.007780093768 -4.1168147e-05 0.01623622847 -0.01623557466 -3.336068162e-05 0.01192056188 -0.01192836935 0.00771661931 -0.007749979991 -0.0003892929066 0.009180831622 -0.00950609256 -0.0001401478081 0.005034589741 -0.005283734839 0.001731118707 -0.001871266515 -7.475539565e-05 0.0003954588946 0.0001873241034 -0.0004046645464 -0.0001435395692 1.636034714e-05 0.02823304371 -0.02833773183 7.191925714e-05 0.019215847 -0.01927140591 0.01095916386 -0.0108872446 5.007670661e-05 0.02869930999 0.0001270863109 0.01957768082 0.01093256462 -0.0002153658981 0.02858267145 -8.90101784e-05 0.0194513251 0.01084355445 -2.121552845e-05 0.02812107004 4.186225522e-05 0.01915276922 0.01100102612 -0.0001536542308 -0.02770790259 -1.955790961e-05 -0.01884194192 -0.01085530998 -0.0001939984296 -0.02783782899 -8.57344018e-05 -0.01895020595 -0.01094104439 -5.878993301e-05 0.01945096987 -0.01955174638 -3.433602781e-06 0.01323931049 -0.01329466682 0.007738364868 -0.00774179847 0.001399441991 0.008342385091 0.000614328098 0.006421699429 0.004909537541 0.0006120870865 0.0108088522 -0.01027919411 0.000225759889 0.008277598881 -0.007891271682 0.006230627723 -0.006004867834 5.325419246e-06 0.01494271161 -0.01491230574 -1.014748712e-05 0.01133223721 -0.01131676431 0.008046516119 -0.008056663606 -7.607809056e-06 0.01496864723 -1.879145253e-05 0.01134342086 0.008027724667 -0.0001610052704 0.01756031559 -5.726620805e-05 0.01190750668 0.006917100809 -0.0002276777223 -0.02220605508 0.02206406776 -9.235092275e-05 -0.01514539746 0.01501007066 -0.008738807828 0.008646456906 0.0006111893707 0.000269058625 4.170942134e-05 -0.01513190156 0.01516036569 1.991898109e-05 -0.01144065063 0.01146244108 -0.007977328018 0.007997246999 3.175621826e-05 -0.01510561468 1.269202737e-05 -0.01142158644 -0.00796463599 -1.184917454e-05 -0.01536149031 0.01536733407 -1.12323274e-05 -0.01152280391 0.01152218706 -0.007875935304 0.007864702976 -6.369570241e-06 -0.01535372392 -6.951114427e-06 -0.01152222236 -0.007882886418 3.726821894e-05 0.01528538861 -0.01525967481 1.955131391e-05 0.01151590844 -0.01149819153 0.007957791047 -0.007938239733 5.072157448e-06 0.01530302714 -1.892817667e-06 0.01152287341 0.00795589823 2.710665112e-05 0.01547352546 -0.01545134591 1.487697275e-05 0.01157075234 -0.01155852266 0.007852600076 -0.007837723103 2.145408264e-05 0.01549566898 1.096610204e-05 0.01158124032 0.007863566178 1.558187348e-05 -0.01562769057 0.01564605738 6.158004659e-06 -0.01164824614 0.01165767001 -0.007915184513 0.007921342518 1.785824299e-05 -0.01560887312 7.269237138e-06 -0.01163765713 -0.007907915276 -2.422707548e-05 -1.992230939e-05 2.480836896e-05 -0.01632470255 0.01634241216 1.324368386e-05 -0.01199351082 0.0120050755 -0.007801735514 0.007814979199 1.299529156e-05 -0.01637459901 6.79761005e-06 -0.01202210688 -0.007833447155 2.744504062e-05 -0.01630418227 1.509866214e-05 -0.01198116444 -0.007786636852 3.280471301e-05 0.01625241684 1.675513891e-05 0.01193661145 0.007733374449 -0.0005872002919 -0.0002817068007 -0.0004122126363 -0.01054759835 0.01024745872 -0.0001716283561 -0.00620264555 0.005962061271 -0.002476666218 0.002305037862 -0.0006483824071 -0.0002672640162 -0.0009081231941 0.03244777608 -0.03252852315 -0.0004222501829 0.02480493045 -0.02529080346 0.009547169657 -0.009969419839 -0.000598801704 0.03237803452 -0.0002827052219 0.02448883397 0.009264464435 -0.0002069307752 -7.705491534e-05 -1.632628425e-05 -0.02229193747 2.328540528e-05 -0.01518500915 -0.008715522423 -0.0001005445809 0.01989171224 -0.02000173089 -3.084238107e-05 0.01356599874 -0.01363570094 0.007914145287 -0.007944987668 -4.002880201e-05 0.01936047367 1.144810523e-05 0.01318783358 0.007749812973 -0.0001835815232 0.01976789034 -8.951061218e-05 0.01347192783 0.007824634675 0.008570410396 0.003883495683 -0.0001799138412 -0.01838240066 -9.395273123e-05 -0.01251387796 -0.007376541648 -0.0001285784897 0.01791585875 -5.260491887e-05 0.01218163061 0.007134605922 5.678583921e-06 -0.01473438928 -1.234228104e-05 -0.01120209123 -0.008049173395 3.819554831e-05 4.302273144e-06 4.348285866e-05 0.01487485343 1.4855692e-05 0.01129360357 0.008049066884 5.406269771e-05 -0.01500046068 2.257004136e-05 -0.011366048 -0.008038573469 -0.0001509501108 -0.01743762444 -6.493988804e-05 -0.01183134448 -0.006856352651 -0.0003909374467 -0.01398835313 -0.0001756403393 -0.009186103757 -0.004800816929 -0.001853322409 -0.001231205871 -5.769685873e-05 -0.02194169637 3.615289027e-06 -0.01493967686 -0.00862893753 -0.0002131921158 0.02150753157 -0.0001128586403 0.01467067932 0.008510668264 -0.0002307640932 -0.0001003765319 -2.303793575e-05 -0.0151792463 -2.320617109e-05 -0.01146818912 -0.007981139043 -1.849132628e-05 0.01508765241 -2.480167745e-05 0.01141725547 0.007986542029 -3.016836303e-05 -0.01537162497 -2.812984267e-05 -0.01152123622 -0.00784906537 -6.170029303e-06 0.01534434368 -6.25758325e-06 0.01152090955 0.007885713016 -1.111529509e-05 0.01523496942 -1.517073556e-05 0.01147970195 0.007919086788 -3.481220484e-05 -0.01531086847 -2.976599868e-05 -0.01152072817 -0.007928275615 2.514436956e-05 0.01542971048 1.171935289e-05 0.01155017081 0.007830158522 1.75042426e-05 -0.0155152737 8.118776472e-06 -0.01158996572 -0.007870325968 3.004040653e-05 0.01568836874 -0.0156650641 1.315356562e-05 0.01168440063 -0.01166751378 0.007939530951 -0.007926377385 1.864931555e-05 0.01570450524 7.791774406e-06 0.01169525817 0.007947322725 1.191467065e-05 0.01558990303 4.093247209e-06 0.01162692441 0.007898162412 1.498113718e-05 -0.01584028492 0.01585179581 7.01354352e-06 -0.01176108549 0.01176905308 -0.007868661845 0.007875675389 -9.082972079e-06 -0.01583364505 -9.487786307e-06 -0.01176068067 -0.007878149631 1.428416041e-05 0.01580418254 -0.01579031527 6.396515567e-06 0.01175186542 -0.01174397778 0.0079285637 -0.007922167185 1.875402703e-05 0.01581669514 8.666361505e-06 0.01176195309 0.007937230062 2.691134185e-05 0.01572294635 1.312750573e-05 0.01170904201 0.007960450231 1.640952869e-05 0.01573737654 5.513170451e-06 0.01171993837 0.007965963401 1.361731141e-05 -0.01577502264 4.460042545e-06 -0.01173482051 -0.007917707142 1.988918394e-05 -0.01576093591 9.559377603e-06 -0.0117244907 -0.007908147764 6.328938303e-06 0.01586301283 2.118161105e-06 0.01177326386 0.00787779355 3.964510928e-06 0.01587341915 9.802542145e-07 0.01177624812 0.007878773804 -0.0006751183712 -0.0003121227945 -0.0007892394345 -0.005997680489 -0.0001751789025 -0.002734082728 -0.0006967465748 -0.00070254124 0.03256016769 -0.0003758000124 0.02550163094 0.01006012143 -0.000234500035 -0.03228787192 -2.774943089e-05 -0.02421618992 -0.0091005914 -0.000188620066 0.03198360926 -3.371539642e-07 0.02356840212 0.009180133532 -0.0002554363896 0.03187195897 -2.902886812e-05 0.0233419946 0.009151104664 -0.000276786604 -0.02388176107 0.02371143571 -0.0001490716226 -0.01634276359 0.0162150486 -0.009405644915 0.009256573293 -0.0001048826785 -8.464185014e-06 -0.0001192912122 0.02239067891 -3.482404675e-05 0.01524803212 0.008713402673 -0.0002395631801 0.02354810239 -0.0001149914182 0.01609047684 0.009141581875 -0.000162756782 0.02341021479 -6.11581717e-05 0.01598887823 0.009080423703 0.001971951859 -0.0279555215 -0.0006092977422 -0.0231552125 -0.01797582058 -6.354078427e-05 0.01848322293 -7.596893333e-06 0.0125696219 0.007394425667 -7.362795419e-05 -1.788401886e-05 -0.0001931367383 -0.0001001671529 8.312485814e-06 4.424106739e-06 -0.0001106466359 0.01591664566 -3.226921863e-05 0.01070513165 0.006058206833 -0.0001451219436 -6.223794622e-05 -9.278520612e-06 0.01623552566 -8.225984622e-06 0.01193094461 0.007771867784 -2.446305362e-05 -2.188779299e-05 0.0002031507752 0.0001190955665 -0.0006837795771 -0.009956875112 -0.0002590118298 -0.005708502585 -0.002130278344 -6.792403968e-05 -0.02845808469 1.908820565e-05 -0.01935841816 -0.0108681564 -6.830498811e-05 2.460195288e-05 -0.0002290016033 0.02796494782 -9.300366225e-05 0.01901677128 0.01090802245 -3.354339959e-05 3.302193117e-05 0.00082289673 -0.00968972828 0.0003550535938 -0.007423428546 -0.00564981424 0.001742005814 0.0007402766987 3.075745319e-05 7.59672181e-06 3.347594404e-05 1.084880228e-05 -0.0001369103519 -6.074815752e-05 -0.0001896205111 0.01415384855 -0.01430891521 -7.510799628e-05 0.00931916503 -0.009433677545 0.004916260417 -0.004991368413 -0.0002485047622 -0.0001154434884 -0.0001845296308 -0.01446877354 -7.454031813e-05 -0.009543666857 -0.005065908731 -0.0003311141309 -0.0001446084959 -0.0002875873544 -0.0004244109442 -8.791318278e-05 -1.751937528e-05 -1.03599143e-05 -1.610795639e-05 -1.757507076e-05 -2.190603851e-05 -1.658845011e-05 -1.563760651e-05 -1.51378795e-06 -2.826598374e-06 3.764252658e-05 1.915294483e-05 -2.976785322e-05 -2.762261453e-05 1.591643543e-05 7.564580603e-06 1.548518587e-05 6.759790393e-06 1.48786379e-05 5.034866287e-06 2.048558714e-05 9.752863499e-06 -1.382668117e-05 0.01583042784 -0.01582695124 -1.381105365e-05 0.01176169664 -0.01176171227 0.007895473061 -0.007909284114 -1.833939813e-05 -1.73234296e-05 -1.332185137e-05 -0.01582317374 -1.339032443e-05 -0.0117616438 -0.007922674439 -1.486491838e-05 -1.455562347e-05 -1.092538607e-05 -0.01574337868 0.01574775991 -1.242397173e-05 -0.01171909855 0.01172059714 -0.007947247424 0.007934823452 -1.955578923e-05 -1.8715977e-05 -1.283173571e-05 0.01575311563 -1.460028703e-05 0.01172236569 0.007920223165 -9.950386787e-06 -1.207540092e-05 5.366762865e-06 -0.01588269953 0.01589372338 1.746356694e-06 -0.01177881289 0.0117824333 -0.007878263125 0.007880009482 2.054089358e-06 -5.106793948e-07 7.738791416e-06 0.0159065975 2.460105613e-06 0.01178771198 0.007882469588 3.349669299e-06 5.480483078e-07 2.346566399e-05 0.01635950831 1.257625165e-05 0.01201596492 0.00782755545 1.20336698e-05 5.891704477e-06 4.120634488e-05 -0.01627928518 2.179338391e-05 -0.01196175148 -0.007764843468 5.660904168e-05 3.146901957e-05 -0.0004283182044 -0.0001747595181 -0.0007200244205 0.006749877162 -0.000188910697 0.003138152326 0.0008084975913 -0.0005158206154 -0.0001117510165 -0.0003015290741 -9.070159064e-05 -0.000436517087 -0.0001638730352 -8.190830383e-05 -0.03174691987 0.03164032127 8.890311589e-05 -0.02309888023 0.02292806881 -0.00910246045 0.009191363566 -0.0002917585747 -4.864421336e-05 3.598711895e-05 0.03154818568 0.0001604923425 0.02280356359 0.009351855909 -0.0001781649803 9.572428607e-05 -6.090321905e-05 2.11975057e-06 -0.0002004451272 -0.02329000126 0.02314994804 -9.0335955e-05 -0.01591107518 0.01580096601 -0.009062034006 0.008971698051 -9.619274727e-05 -1.838969661e-05 -0.0001712477188 0.0230151734 -7.016190398e-05 0.01569988019 0.008901536147 -0.0001069402923 -2.702240052e-05 -7.85669602e-05 -0.02011325656 -1.577375101e-05 -0.01369849415 -0.007960761419 -0.000176120888 -6.452473294e-05 -0.0001552855201 -0.01925583576 -7.327317146e-05 -0.01311805573 -0.007701296608 -0.0001182942157 -4.851636453e-05 -0.0001229471286 0.01965565539 -4.769461315e-05 0.01339667531 0.007776940062 -0.0001371500865 -3.51415912e-05 0.003794396851 0.0009254111388 ) ; boundaryField { topAndBottom { type calculated; value uniform 0; } inlet { type calculated; value nonuniform List<scalar> 40 ( -0.91665 -0.9167 -0.91665 -0.91665 -0.45835 -0.4583 -0.45835 -0.458335 -0.45833 -0.458335 -0.458335 -0.4583315 -0.4583335 -0.458335 -0.45833 -0.458335 -0.458335 -0.458315 -0.45835 -0.45835 -0.91665 -0.91935 -0.91685 -0.9138 -0.45835 -0.458315 -0.458335 -0.458335 -0.45833 -0.458335 -0.4583335 -0.4583315 -0.458335 -0.458335 -0.45833 -0.458335 -0.45835 -0.4583 -0.45835 -0.45835 ) ; } outlet { type calculated; value nonuniform List<scalar> 62 ( 1.004352381 1.004045971 1.003164244 1.001777055 0.8405699513 0.8391995271 0.8383772031 0.8379327655 0.2467904071 0.2451705074 0.2444636834 0.2412761131 0.2395470726 0.2309557444 0.2291037931 0.2307968519 0.2302652733 0.2273991031 0.2263358518 0.2232854473 0.2223517431 0.2197988572 0.2190291674 0.216978384 0.2163724285 0.2147727379 0.2143134178 0.213112672 0.5001341484 0.4994489462 0.4985662982 0.4976031145 0.4963662849 0.2472224429 0.2127661189 0.4240612093 0.4230927486 0.4222394749 0.4216059939 0.4210122949 0.2463047018 0.2457702926 0.2436265291 0.2425990668 0.2372550791 0.2342769231 0.2298608571 0.2307468346 0.2294333591 0.2284487477 0.2252873177 0.2242677416 0.2214521677 0.2206014234 0.2183056719 0.2176271909 0.2158082279 0.2152706345 0.2138775054 0.2134777654 0.2476114457 0.2124330905 ) ; } wing { type calculated; value nonuniform List<scalar> 378 ( 0 0 5.421010862e-20 0 0 -2.710505431e-20 0 0 0 0 0 5.421010862e-20 0 -2.710505431e-20 -2.710505431e-20 0 0 0 2.710505431e-20 0 -5.421010862e-20 -2.710505431e-20 -2.710505431e-20 0 -2.710505431e-20 0 0 0 0 0 2.710505431e-20 2.710505431e-20 -2.710505431e-20 2.710505431e-20 2.710505431e-20 -2.710505431e-20 0 -5.421010862e-20 2.710505431e-20 0 -2.710505431e-20 0 0 0 2.710505431e-20 0 2.710505431e-20 0 0 5.421010862e-20 0 2.710505431e-20 0 0 0 0 0 0 2.710505431e-20 0 2.710505431e-20 0 0 0 2.710505431e-20 0 0 2.710505431e-20 2.710505431e-20 2.710505431e-20 0 0 0 0 -2.710505431e-20 0 0 0 0 0 -2.710505431e-20 0 0 0 -2.710505431e-20 0 5.421010862e-20 0 0 0 0 -5.421010862e-20 0 0 2.710505431e-20 0 5.421010862e-20 0 0 2.710505431e-20 -2.710505431e-20 0 0 0 -2.710505431e-20 5.421010862e-20 0 0 2.710505431e-20 0 0 0 2.710505431e-20 5.421010862e-20 -5.421010862e-20 2.710505431e-20 2.710505431e-20 0 0 0 0 0 2.710505431e-20 -2.710505431e-20 2.710505431e-20 0 0 5.421010862e-20 0 2.710505431e-20 0 0 0 -2.710505431e-20 0 -2.710505431e-20 0 2.710505431e-20 -2.710505431e-20 2.710505431e-20 0 -2.710505431e-20 2.710505431e-20 0 0 -2.710505431e-20 2.710505431e-20 -2.710505431e-20 0 0 2.710505431e-20 5.421010862e-20 0 2.710505431e-20 -2.710505431e-20 0 0 2.710505431e-20 0 0 0 0 0 0 -2.710505431e-20 0 2.710505431e-20 2.710505431e-20 -2.710505431e-20 0 2.710505431e-20 -2.710505431e-20 -2.710505431e-20 2.710505431e-20 0 -2.710505431e-20 0 -2.710505431e-20 -2.710505431e-20 -2.710505431e-20 2.710505431e-20 2.710505431e-20 0 -5.421010862e-20 -2.710505431e-20 2.710505431e-20 -6.776263578e-21 6.776263578e-21 0 0 0 -2.710505431e-20 -2.710505431e-20 2.710505431e-20 -2.710505431e-20 0 0 0 0 0 -2.710505431e-20 0 -2.710505431e-20 0 -2.710505431e-20 5.421010862e-20 0 -2.710505431e-20 0 0 0 0 0 0 0 2.710505431e-20 0 5.421010862e-20 -2.710505431e-20 -2.710505431e-20 0 0 0 5.421010862e-20 0 0 -2.710505431e-20 0 0 0 2.710505431e-20 0 5.421010862e-20 0 -2.710505431e-20 2.710505431e-20 0 0 0 2.710505431e-20 -2.710505431e-20 0 0 -2.710505431e-20 -5.421010862e-20 0 -2.710505431e-20 -5.421010862e-20 0 0 2.710505431e-20 0 0 2.710505431e-20 0 0 0 -2.710505431e-20 -2.710505431e-20 5.421010862e-20 0 2.710505431e-20 -2.710505431e-20 0 2.710505431e-20 -2.710505431e-20 0 0 0 0 2.710505431e-20 5.421010862e-20 0 -2.710505431e-20 -2.710505431e-20 0 2.710505431e-20 -5.421010862e-20 5.421010862e-20 0 0 5.421010862e-20 0 0 -2.710505431e-20 0 0 0 0 0 2.710505431e-20 0 2.710505431e-20 0 2.710505431e-20 -2.710505431e-20 2.710505431e-20 0 2.710505431e-20 2.710505431e-20 -5.421010862e-20 2.710505431e-20 0 0 0 0 2.710505431e-20 0 0 0 0 -2.710505431e-20 0 0 0 0 0 2.710505431e-20 -2.710505431e-20 -2.710505431e-20 0 0 -2.710505431e-20 0 2.710505431e-20 -2.710505431e-20 0 0 2.710505431e-20 0 5.421010862e-20 0 5.421010862e-20 0 0 2.710505431e-20 0 0 0 -2.710505431e-20 0 0 0 2.710505431e-20 2.710505431e-20 2.710505431e-20 2.710505431e-20 0 0 -2.710505431e-20 -2.710505431e-20 0 0 -2.710505431e-20 0 0 -2.710505431e-20 0 -2.710505431e-20 0 2.710505431e-20 0 0 0 0 0 -2.710505431e-20 -2.710505431e-20 2.710505431e-20 0 -2.710505431e-20 -5.421010862e-20 0 0 -2.710505431e-20 -5.421010862e-20 1.355252716e-20 -1.355252716e-20 ) ; } front { type empty; value nonuniform 0(); } back { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
94b5e1170644dae19f6f528418e390620a888803
5e00242dc035fdab6aa6bbb40c6d7e6c119ad8e6
/Vault/Codeforces Rounds/EDUCFR41/EDUCFR41B.cpp
c1a779d7b10c3ca45290ebc1c0c65087624f8352
[]
no_license
AkiLotus/AkikazeCP
39b9c649383dcb7c71962a161e830b9a9a54a4b3
064db52198873bf61872ea66235d66b97fcde80e
refs/heads/master
2023-07-15T09:53:36.520644
2021-09-03T09:54:06
2021-09-03T09:54:06
141,382,884
9
1
null
null
null
null
UTF-8
C++
false
false
2,746
cpp
/** Template by Akikaze (秋風) - formerly proptit_4t41. Code written by a random fan of momocashew and Chiho. H△G x Mili - November 27th, 2013 Mag Mell (Mili) - Sep 17th, 2014 H△G x Mili Vol.2 - May 9th, 2015 Miracle Milk (Mili) - Oct 12th, 2016 青色フィルム (H△G) - February 14th, 2018 Millennium Mother (Mili) - April 25th, 2018 **/ /** -----PRAGMA----- **/ #pragma comment(linker, "/stack:200000000") #pragma GCC optimize("Ofast") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #include <bits/stdc++.h> using namespace std; /** -----BASIC MACROES----- **/ #define endl '\n' #define i64 long long #define ld long double #define pub push_back #define mp make_pair #define fi first #define se second const long long MOD = 1000000007LL, INF = 1e9, LINF = 1e18; const long double PI = 3.141592653589793116, EPS = 1e-9, GOLD = ((1+sqrt(5))/2); typedef vector<i64> vi; typedef vector<ld> vd; typedef vector<string> vs; typedef vector<bool> vb; typedef pair<i64, i64> pii; typedef pair<i64, pii> pip; typedef pair<pii, i64> ppi; /** -----BIT CONTROLS----- **/ template<class T> int getbit(T s, int i) { return (s >> 1) & 1; } template<class T> T onbit(T s, int i) { return s | (T(1) << i); } template<class T> T offbit(T s, int i) { return s & (~(T(1) << i)); } template<class T> int cntbit(T s) { return __builtin_popcount(s); } /** -----IDEAS/ALGORITHMS----- -------------------------- **/ /** -----CUSTOM TYPEDEFS/DEFINES----- **/ /** -----GLOBAL VARIABLES----- **/ i64 k, n; vi a, t, absSum, realSum; /** -----EXTENSIVE FUNCTIONS----- **/ /** -----COMPULSORY FUNCTIONS----- **/ void VarInput() { ios_base::sync_with_stdio(0); cin.tie(NULL); cin >> n >> k; a.resize(n); t = a; absSum.resize(n, 0); realSum.resize(n, 0); for (i64 i=0; i<n; i++) cin >> a[i]; for (i64 i=0; i<n; i++) cin >> t[i]; } void ProSolve() { absSum[0] = a[0]; realSum[0] = a[0] * t[0]; i64 ans = 0; for (i64 i=1; i<n; i++) { absSum[i] = absSum[i-1] + a[i]; realSum[i] = realSum[i-1] + a[i] * t[i]; } for (i64 i=0; i+k-1<n; i++) { i64 tmp = realSum[n-1] - realSum[i+k-1]; if (i > 0) tmp += realSum[i-1]; tmp += absSum[i+k-1]; if (i > 0) tmp -= absSum[i-1]; ans = max(ans, tmp); } cout << ans; } /** -----MAIN FUNCTION----- **/ int main() { #ifdef Akikaze //freopen("FILE.INP", "r", stdin); //freopen("FILE.OUT", "w", stdout); #endif VarInput(); #ifdef Akikaze auto TIME1 = chrono::steady_clock::now(); #endif ProSolve(); #ifdef Akikaze auto TIME2 = chrono::steady_clock::now(); auto DIFF = TIME2 - TIME1; cout << "\n\nTime elapsed: " << fixed << setprecision(18) << chrono::duration<double>(DIFF).count() << " seconds."; #endif return 0; }
[ "duybach.224575@gmail.com" ]
duybach.224575@gmail.com
c6984344f761e5e106502a5b208c8900b674e60b
47f2f7a7cc08a712cddae2043c42a0f632636012
/_posts/design-pattern/14-Command/codes/cpp/Project/Document.cpp
e23fc39e6e5503473fff236f97f4679a5d7b807f
[ "MIT" ]
permissive
raacker/raacker.github.io
ccd18e5d2b7ee51395f9ae052e43f9c270dcdd59
032192d6afc13a4d6656f7a564f7194baadfe8b3
refs/heads/master
2023-08-31T03:24:50.020523
2023-08-22T01:30:33
2023-08-22T01:30:47
64,533,325
0
1
null
null
null
null
UTF-8
C++
false
false
3,733
cpp
#include "Document.h" #include <string> #include <filesystem> #include <fstream> #include <iostream> #include <sstream> namespace TMIOSDP { class FileHandle { public: FileHandle(const std::string& path) : mFullPath(path) { } void open(std::ios_base::openmode mode) { std::fstream* pFile = new std::fstream(); pFile->open(mFullPath, mode); if (!pFile->is_open()) { delete pFile; } else { mpStream = pFile; } } void close() { if (mpStream != NULL) { std::fstream* pFile = dynamic_cast<std::fstream*>(mpStream); if (pFile != NULL) pFile->close(); delete mpStream; } mpStream = NULL; } void readContent() { std::ostringstream sstr; sstr << mpStream->rdbuf(); mFileContent = sstr.str(); } void saveAs(const std::string& _path) { std::filesystem::path path{ _path }; std::filesystem::create_directories(path.parent_path()); std::ofstream ofs(path); ofs << mFileContent; ofs.close(); } const std::string& content() { return mFileContent; } std::string parentPath() { return mFullPath.parent_path(); } std::string filename() { return mFullPath.filename(); } uintmax_t size() { return std::filesystem::file_size(mFullPath); } long tellp() { return mpStream->tellp(); } void seekp(long pos) { mpStream->seekp(pos); } long tellg() { return mpStream->tellg(); } void seekg(long pos) { mpStream->seekg(pos); } void read(long size, std::string& data) { mpStream->read(&data[0], size); } void write(const std::string& data) { *mpStream << data; } private: std::filesystem::path mFullPath; std::string mFileContent; std::iostream* mpStream; }; } using namespace TMIOSDP; Document::Document(const std::string& fullPath) { mpFileHandle = new FileHandle(fullPath); } Document::~Document() { mpFileHandle->close(); delete mpFileHandle; } void Document::open(std::ios_base::openmode mode) { mpFileHandle->open(mode); mpFileHandle->readContent(); } void Document::saveAs(const std::string& filePath) { mpFileHandle->saveAs(filePath); } void Document::close() { mpFileHandle->close(); } // This is not fancy but hey... void Document::describe() { std::cout << "File Name: " << mpFileHandle->filename() << std::endl; std::cout << "File Path: " << mpFileHandle->parentPath() << std::endl; std::cout << "File Size: " << mpFileHandle->size() << std::endl; std::cout << "File Content: " << std::endl; std::cout << mpFileHandle->content() << "\n" << std::endl; } uintmax_t Document::size() { return mpFileHandle->size(); } long Document::tellp() { return mpFileHandle->tellp(); } void Document::seekp(long pos) { mpFileHandle->seekp(pos); } long Document::tellg() { return mpFileHandle->tellg(); } void Document::seekg(long pos) { mpFileHandle->seekg(pos); } void Document::read(long size, std::string& data) { mpFileHandle->read(size, data); } void Document::write(const std::string& data) { mpFileHandle->write(data); }
[ "haven.cpp@gmail.com" ]
haven.cpp@gmail.com
d071205a6275c67070d73c76e43817a5e9e74d4f
955f830545c53f678573c563582269d225d42449
/writelog.cpp
9d9d4b6ede5885c8975fc3c16a28e071f26b1892
[]
no_license
hayoungdaddy/RTICOM2CORE
94cb9098d81939a2faf43ae066ed970e44157ce9
e4b7980d176568e314f41749f98894bab3e92dc2
refs/heads/main
2021-07-09T15:33:38.447460
2020-12-28T01:01:39
2020-12-28T01:01:39
224,776,107
0
0
null
null
null
null
UTF-8
C++
false
false
470
cpp
#include "common.h" #include "writelog.h" WriteLog::WriteLog() { } WriteLog::~WriteLog() { } void WriteLog::write(QString dir, QString str) { QDateTime now = QDateTime::currentDateTimeUtc(); QFile file(dir + "/RTICOM2CORE." + now.toString("yyyyMMdd") + ".log"); if(file.open(QIODevice::WriteOnly | QIODevice::Append)) { QTextStream stream( &file ); stream << now.toString("[hh:mm:ss] ") << str << "\n"; file.close(); } }
[ "sysop@localhost.localdomain" ]
sysop@localhost.localdomain
5a09396714cd527e83b3852c26e13b27a1cc1550
afb6f237afe9c170b44663b6d3e1f2ab231391f1
/modules-guide/guide_uart/guide_uart.cc
ab2151974ad8fe14293115fe8cb9f58e8eff87d3
[]
no_license
Starli16/TestModules
856dc32b3da35ae5db9491ea70eb8d2b2289be5f
53b1029ae6c1ef6f0295b7c54099d32aa7845c9b
refs/heads/master
2023-02-27T18:48:02.727429
2021-01-31T21:29:32
2021-01-31T21:29:32
328,325,633
0
0
null
null
null
null
UTF-8
C++
false
false
911
cc
#include "guide_uart.h" #include <cstdio> #include <iostream> #include <string> #include <cstring> using std::cout; using std::endl; using namespace std; bool guide_Uart::Init() { memset(uart_buf,0,sizeof(uart_buf)); uart_dev.SetOpt(9600, 8, 'N' ,1); is_running=0; Start(); return true; } bool guide_Uart::Proc() { // Timer callback { std::lock_guard<mutex> guard(uart_mutex); AINFO<<uart_buf; } return true; } void guide_Uart::Clear() { // shutdown is_running=0; } void guide_Uart::Start(){ is_running=1; AINFO<<"Uart Started"; auto async_result_ = Async(&guide_Uart::RecvThreadFunc, this); } void guide_Uart::RecvThreadFunc(){ while(is_running){ { char buf[BUFF_LENGTH]; uart_dev.Read(buf,sizeof(uart_buf)); { std::lock_guard<mutex> guard(uart_mutex); strcpy(uart_buf,buf); } AINFO<<"ReadOK"; Yield(); } } }
[ "lixingyu17@mails.tsinghua.edu.cn" ]
lixingyu17@mails.tsinghua.edu.cn
f8c3884ae3d93f810733bac626b5b8c1e81f869f
a81fc6340e4288df8bb561fdd4a072e4ee066449
/1D_Tissue_Strand_Model/lib/input_output.h
11ff353000ab3edb78e3e42aaae11d493979d13c
[]
no_license
drgrandilab/Ni-et-al-2020-Synergy-Multi-K-block-Human-Atrial-Models
e80cffe7323764412c14d78c87f5cd0a4abb7d92
3c51f166be2f6e409b85c45e1dbd2d5a776a278f
refs/heads/master
2022-11-09T19:32:17.884720
2020-06-23T01:27:14
2020-06-23T01:27:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,735
h
/* * input_output.c * * read in .gz .txt .bin file into arrays. * .gz read into char arrays. * * Haibo Ni <qiangzini@gmail.com> */ #include <stdio.h> #include <stdlib.h> #include <zlib.h> #include <math.h> #include <string.h> #include <iostream> #include <fstream> #include <cstdlib> /* read from gz txt bin file into char/ float arrays, with error handling */ /* output file into gz txt bin file into char/ float arrays, with error handling */ /* * Haibo Ni * 12/12/2014 * qiangzini@gmail.com * */ #ifndef INPUT_OUTPUT_H #define INPUT_OUTPUT_H char read_char_from_gz(const char *filename, char *array, long int num); char read_float_from_txt(const char *filename, float *array, long int num); char read_double_from_txt(const char *filename, double *array, long int num); char read_float_from_bin(const char *filename, float *array, long int num); char read_double_from_bin(const char *filename, double *array, long int num); void print_error_info_file_not_found(const char *filename); void print_error_info_array_not_malloced(const char *filename); void output_matrix(const char * filename, const double **matrix, int row, int col); char output_float_array_bin(const char *filename, const float *voltages, long int num); char output_double_array_bin(const char *filename, const double *voltages, long int num); void print_error_info_filename_empty(const char *filename); char output_double_array_txt(FILE *file, const double *array, long int num); char output_double_array_txt(const char *filename, const double *array, long int num); bool OutPutArrayToTxt(std::ofstream &output, const double *array, long int num ); template <typename T> void print_error_info_file_open_failure(T filename) ; #endif
[ "noreply@github.com" ]
noreply@github.com
7f3191d4238684aaa2e8305106c8cd89bc9e4f35
85ef9b1c0b13af144a0382c8be00f5a3ac5ab025
/leetcode/permutations.cpp
85042c054a22393813640673c8df3a09133393b1
[]
no_license
MonsieurWilson/cpplearn
bdc44826ff5c20ba039933e5d4b699d5794e3415
0c59da95e8e853661998e997944fa44f68881ed6
refs/heads/master
2020-04-04T17:54:11.477183
2019-01-19T15:37:07
2019-01-19T15:37:07
156,141,305
0
0
null
null
null
null
UTF-8
C++
false
false
907
cpp
/** * Copyright(C), 2018 * Name: permutations * Author: Wilson Lan * Description: * Given a collection of distinct integers, return all possible * permutations. */ class Solution { public: vector<vector<int>> permute(vector<int> &nums) { vector<vector<int>> permutations; permuteImpl(nums, 0, permutations); return permutations; } void permuteImpl(vector<int> &nums, int index, vector<vector<int>> &permutations) { int lens = nums.size(); if (index >= lens - 1) { permutations.push_back(nums); return; } for (int i = index; i < lens; ++i) { swap(nums[i], nums[index]); permuteImpl(nums, index+1, permutations); swap(nums[i], nums[index]); } } };
[ "xinyulan.thu@gmail.com" ]
xinyulan.thu@gmail.com
207bb1ff326c395f54822b121062a239c4bf1926
06fe16763861e556eeb71a8ae81ceff9b59581db
/ttt.cpp
9b27e2c3b8de9008b6b2a15607d75c843bad8fa7
[]
no_license
hehaoslj/FSimulator
9961dc8fee41e1f7fb5862e127294fef0b39c85c
6f4b79c23f3265ea11b31b09f70c822d8704e8fb
refs/heads/master
2020-05-29T08:48:47.889577
2017-06-12T08:01:56
2017-06-12T08:01:56
69,776,028
2
0
null
2017-06-11T17:21:02
2016-10-02T03:03:29
C++
UTF-8
C++
false
false
707
cpp
fprintf: printf write %s --> const char* fwprintf wsprintf %s --> const wchar_t* std::string --> std::base_string<char> s.c_str() --> const char* std::wstring --> std::base_string<wchar_t> ws.c_str() --> const wchar_t* wchar_t* --> char* WideCharToMultiByte char* --> wchar_t* L"1234" -->1234 wtoi "1234" --> 1234 atoi MultiByteToWideChar CreateWindow --> CreateWindowA CreateWindowW windows: widechar --> utf16(LE) wchar_t [] *, std::wstring wcout ANSI ASC-II codeset Unicode codeset 字节序 1234 3412 UTF-8 无字节序 总结 程序运行时 runtime wchar_t wstring --> utf16 程序外部 文件系统 数据库 char string --> utf8
[ "hehaoslj@sina.com" ]
hehaoslj@sina.com
032aacda7196fb95444ea9cdbd306a0d84faebea
8916f829f9a956224b79f901235880e6da76508a
/factorialexample.cpp
12d3f7a1a460ad6f133d82eb14c786c98a7b1375
[]
no_license
Joggyjagz7/100daysOfCode
79e6bce241a4114378362d666baa796c94247508
f87a95704ff770840b6ec7f4dbe540f29435819c
refs/heads/master
2022-02-28T06:35:02.432247
2019-10-24T03:14:34
2019-10-24T03:14:34
107,105,972
0
0
null
null
null
null
UTF-8
C++
false
false
615
cpp
#include <iostream> // sequence is 0, 1, 1, 2, 3, 5, 8, 13, ... int fib (int i) { int pred, result, temp; pred = 1; result = 0; while (i > 0) { temp = pred + result; result = pred; pred = temp; i = i-1; } return(result); } int main () { int n; cout << "Enter a natural number: "; cin >> n; while (n < 0) { cout << "Please re-enter: "; cin >> n; } cout << "fib(" << n << ") = " << fib(n) << endl; return(0); }
[ "noreply@github.com" ]
noreply@github.com
e47b6ed1d4737b9daf57be78c81bb122416617e8
a5d66c0094ba87fb4e3ab91f50d6c1389a374496
/Source/SoccerSimulator/SoccerField.h
48e87264ecc2e988169651f6d02eeee0efa5a47d
[]
no_license
punster94/SoccerSimulator
2a582d77a21a56d63b162a42cccda52ef5c5d9f9
c3ac23661ddd5ee612055c4c3fdc54889c24421b
refs/heads/master
2021-01-01T17:04:25.113053
2017-08-19T18:28:41
2017-08-19T18:28:41
97,994,024
1
0
null
null
null
null
UTF-8
C++
false
false
2,086
h
#pragma once #include "SoccerBall.h" #include "Goal.h" #include "SoccerTeam.h" #include "GameFramework/Actor.h" #include "SoccerField.generated.h" UCLASS() class SOCCERSIMULATOR_API ASoccerField : public AActor { GENERATED_BODY() public: ASoccerField(); protected: virtual void BeginPlay() override; public: virtual void Tick(float DeltaTime) override; bool Paused(); bool GameOn(); bool GoalKeeperHasBall(); FVector SupportAreaScaledBounds(); FVector PlayAreaScaledBounds(); FVector RegionScaledBounds(); FVector GetLocation(); FVector GetPlayAreaLocation(); void SetGameOn(bool bOn); FVector GetPositionOfRegionID(int Region); ASoccerBall* GetBall(); bool IsPositionInPlayArea(FVector Position); void SetGoalKeeperHasBall(bool HasBall); float CurrentDiagonalRatio(); UFUNCTION(BlueprintImplementableEvent) void OnGoal(FVector GoalPosition); UFUNCTION(BlueprintImplementableEvent) void OnShotAtGoal(); protected: UPROPERTY(VisibleAnywhere) USceneComponent* DefaultComponent; UPROPERTY(VisibleAnywhere) UBoxComponent* SupportArea; UPROPERTY(VisibleAnywhere) UBoxComponent* PlayArea; UPROPERTY(VisibleAnywhere) UBoxComponent* RegionDefinitionArea; UPROPERTY(VisibleAnywhere) UChildActorComponent* SoccerBallComponent; UPROPERTY(VisibleAnywhere) UChildActorComponent* BlueGoalComponent; UPROPERTY(VisibleAnywhere) UChildActorComponent* RedGoalComponent; UPROPERTY(VisibleAnywhere) UChildActorComponent* BlueTeamComponent; UPROPERTY(VisibleAnywhere) UChildActorComponent* RedTeamComponent; UPROPERTY(EditAnywhere) int32 XRegions; UPROPERTY(EditAnywhere) int32 YRegions; UPROPERTY(BlueprintReadWrite) bool bPaused; private: bool bGameOn; bool bGoalKeeperHasBall; ASoccerBall* SoccerBall; AGoal* BlueGoal; AGoal* RedGoal; ASoccerTeam* BlueTeam; ASoccerTeam* RedTeam; FVector InitialPosition; FVector InitialBounds; FVector InitialUnscaledBounds; float MaximumPlayAreaDiagonal; float CurrentPlayAreaDiagonalRatio; float CalculateXYDiagonal(FVector Extent); void UpdatePlayArea(); };
[ "gingerbread614@gmail.com" ]
gingerbread614@gmail.com
42f54e0461198e4d8f5874e74a74db43c39be6c9
0c6b408a89caf2b385651990891c74fe8fba2dd9
/test/dma/test_dma.ino
d4e3178d91f8a854c838a88a581e3cc04cca12e6
[ "MIT" ]
permissive
k323r/flugkatze
b8c466b77141bf564e1ab4e0f421ab0616975757
498e83d8ae30154e50e1000a395ae648f292112a
refs/heads/master
2020-12-21T03:55:13.622325
2018-04-04T23:46:47
2018-04-04T23:46:47
56,000,984
0
0
null
null
null
null
UTF-8
C++
false
false
454
ino
class test_dma { private: float private_data; public: float public_data; void init() { public_data = 27; private_data = 28; } float * return_adress_public () { return &public_data; } }; test_dma bla; //Setup routine void setup(){ Serial.begin(9600); bla.init(); Serial.print("init done\n"); } //Main program loop void loop(){ Serial.print("address: "); Serial.print(bla.return_adress_public()); delay(1000); }
[ "aljoscha.sander@gmail.com" ]
aljoscha.sander@gmail.com
8175c4156deb9d295ed310cd43ff2e92be6c7809
ce4efaa1e20622c8f111c117849eebc94c8c60f1
/tms_ss/tms_ss_xtion/estimateExtrinsicParameters/include/myutility.h
2c366b8b746b79bfc19e4d8f22e72b8cea7c960b
[]
no_license
duanliying/ros_tms
3a438df38555c270b29f7061950caced9a54e702
51ecc3540900cfe208d8c2ca1ecaf2184d407ca7
refs/heads/master
2021-06-21T22:54:09.258363
2016-02-12T08:18:03
2016-02-12T08:18:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
462
h
#ifndef _MY_UTILITY_H_ #define _MY_UTILITY_H_ #include <opencv2/opencv.hpp> #ifdef __linux__ #include <termios.h> #include <unistd.h> #endif #define KEYCODE_d 0x64 #define KEYCODE_p 0x70 #define KEYCODE_q 0x71 #define KEYCODE_r 0x72 class KeyboardEventReader { public: KeyboardEventReader(); ~KeyboardEventReader(); bool getKeycode(char &c); private: int kfd; bool dirty; struct termios cooked; struct termios raw; }; #endif
[ "onishi@irvs.ait.kyushu-u.ac.jp" ]
onishi@irvs.ait.kyushu-u.ac.jp
d805a0176e4af6e0ade6bc6263d2134c16e5efd1
2cd6edd02450849015bf535eb473a750dace67a8
/final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalwrapup_hls/solution1/syn/systemc/pool_hw.cpp
7c4850a16993d9ace79f434baf87501223774c7b
[ "MIT" ]
permissive
prajwaltr/MSoC-HLS
fde436f7031cc7477a93f079a1b3407558988e07
d876b6bdfe45caba63811b16b273a9723e9baf65
refs/heads/main
2023-06-05T00:52:40.419332
2021-06-15T02:30:37
2021-06-15T02:30:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
867,442
cpp
// ============================================================== // RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and OpenCL // Version: 2019.2 // Copyright (C) 1986-2019 Xilinx, Inc. All Rights Reserved. // // =========================================================== #include "pool_hw.h" #include "AESL_pkg.h" using namespace std; namespace ap_rtl { const sc_logic pool_hw::ap_const_logic_1 = sc_dt::Log_1; const sc_logic pool_hw::ap_const_logic_0 = sc_dt::Log_0; const sc_lv<5> pool_hw::ap_ST_fsm_state1 = "1"; const sc_lv<5> pool_hw::ap_ST_fsm_state2 = "10"; const sc_lv<5> pool_hw::ap_ST_fsm_state3 = "100"; const sc_lv<5> pool_hw::ap_ST_fsm_state4 = "1000"; const sc_lv<5> pool_hw::ap_ST_fsm_state5 = "10000"; const bool pool_hw::ap_const_boolean_1 = true; const sc_lv<32> pool_hw::ap_const_lv32_0 = "00000000000000000000000000000000"; const sc_lv<32> pool_hw::ap_const_lv32_2 = "10"; const sc_lv<1> pool_hw::ap_const_lv1_0 = "0"; const sc_lv<1> pool_hw::ap_const_lv1_1 = "1"; const sc_lv<32> pool_hw::ap_const_lv32_3 = "11"; const bool pool_hw::ap_const_boolean_0 = false; const sc_lv<16> pool_hw::ap_const_lv16_0 = "0000000000000000"; const sc_lv<32> pool_hw::ap_const_lv32_1 = "1"; const sc_lv<6> pool_hw::ap_const_lv6_0 = "000000"; const sc_lv<32> pool_hw::ap_const_lv32_4 = "100"; const sc_lv<32> pool_hw::ap_const_lv32_74 = "1110100"; const sc_lv<6> pool_hw::ap_const_lv6_38 = "111000"; const sc_lv<6> pool_hw::ap_const_lv6_37 = "110111"; const sc_lv<6> pool_hw::ap_const_lv6_1 = "1"; const sc_lv<16> pool_hw::ap_const_lv16_1 = "1"; const sc_lv<16> pool_hw::ap_const_lv16_2 = "10"; const sc_lv<16> pool_hw::ap_const_lv16_3 = "11"; const sc_lv<16> pool_hw::ap_const_lv16_4 = "100"; const sc_lv<16> pool_hw::ap_const_lv16_5 = "101"; pool_hw::pool_hw(sc_module_name name) : sc_module(name), mVcdFile(0) { ifm_buff0_0_U = new pool_hw_ifm_buff0_0("ifm_buff0_0_U"); ifm_buff0_0_U->clk(ap_clk); ifm_buff0_0_U->reset(ap_rst); ifm_buff0_0_U->address0(ifm_buff0_0_address0); ifm_buff0_0_U->ce0(ifm_buff0_0_ce0); ifm_buff0_0_U->we0(ifm_buff0_0_we0); ifm_buff0_0_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_0_d0); ifm_buff0_0_U->q0(ifm_buff0_0_q0); ifm_buff0_0_U->address1(ifm_buff0_0_address1); ifm_buff0_0_U->ce1(ifm_buff0_0_ce1); ifm_buff0_0_U->q1(ifm_buff0_0_q1); ifm_buff0_1_U = new pool_hw_ifm_buff0_0("ifm_buff0_1_U"); ifm_buff0_1_U->clk(ap_clk); ifm_buff0_1_U->reset(ap_rst); ifm_buff0_1_U->address0(ifm_buff0_1_address0); ifm_buff0_1_U->ce0(ifm_buff0_1_ce0); ifm_buff0_1_U->we0(ifm_buff0_1_we0); ifm_buff0_1_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_1_d0); ifm_buff0_1_U->q0(ifm_buff0_1_q0); ifm_buff0_1_U->address1(ifm_buff0_1_address1); ifm_buff0_1_U->ce1(ifm_buff0_1_ce1); ifm_buff0_1_U->q1(ifm_buff0_1_q1); ifm_buff0_2_U = new pool_hw_ifm_buff0_0("ifm_buff0_2_U"); ifm_buff0_2_U->clk(ap_clk); ifm_buff0_2_U->reset(ap_rst); ifm_buff0_2_U->address0(ifm_buff0_2_address0); ifm_buff0_2_U->ce0(ifm_buff0_2_ce0); ifm_buff0_2_U->we0(ifm_buff0_2_we0); ifm_buff0_2_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_2_d0); ifm_buff0_2_U->q0(ifm_buff0_2_q0); ifm_buff0_2_U->address1(ifm_buff0_2_address1); ifm_buff0_2_U->ce1(ifm_buff0_2_ce1); ifm_buff0_2_U->q1(ifm_buff0_2_q1); ifm_buff0_3_U = new pool_hw_ifm_buff0_0("ifm_buff0_3_U"); ifm_buff0_3_U->clk(ap_clk); ifm_buff0_3_U->reset(ap_rst); ifm_buff0_3_U->address0(ifm_buff0_3_address0); ifm_buff0_3_U->ce0(ifm_buff0_3_ce0); ifm_buff0_3_U->we0(ifm_buff0_3_we0); ifm_buff0_3_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_3_d0); ifm_buff0_3_U->q0(ifm_buff0_3_q0); ifm_buff0_3_U->address1(ifm_buff0_3_address1); ifm_buff0_3_U->ce1(ifm_buff0_3_ce1); ifm_buff0_3_U->q1(ifm_buff0_3_q1); ifm_buff0_4_U = new pool_hw_ifm_buff0_0("ifm_buff0_4_U"); ifm_buff0_4_U->clk(ap_clk); ifm_buff0_4_U->reset(ap_rst); ifm_buff0_4_U->address0(ifm_buff0_4_address0); ifm_buff0_4_U->ce0(ifm_buff0_4_ce0); ifm_buff0_4_U->we0(ifm_buff0_4_we0); ifm_buff0_4_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_4_d0); ifm_buff0_4_U->q0(ifm_buff0_4_q0); ifm_buff0_4_U->address1(ifm_buff0_4_address1); ifm_buff0_4_U->ce1(ifm_buff0_4_ce1); ifm_buff0_4_U->q1(ifm_buff0_4_q1); ifm_buff0_5_U = new pool_hw_ifm_buff0_0("ifm_buff0_5_U"); ifm_buff0_5_U->clk(ap_clk); ifm_buff0_5_U->reset(ap_rst); ifm_buff0_5_U->address0(ifm_buff0_5_address0); ifm_buff0_5_U->ce0(ifm_buff0_5_ce0); ifm_buff0_5_U->we0(ifm_buff0_5_we0); ifm_buff0_5_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_5_d0); ifm_buff0_5_U->q0(ifm_buff0_5_q0); ifm_buff0_5_U->address1(ifm_buff0_5_address1); ifm_buff0_5_U->ce1(ifm_buff0_5_ce1); ifm_buff0_5_U->q1(ifm_buff0_5_q1); ifm_buff0_6_U = new pool_hw_ifm_buff0_0("ifm_buff0_6_U"); ifm_buff0_6_U->clk(ap_clk); ifm_buff0_6_U->reset(ap_rst); ifm_buff0_6_U->address0(ifm_buff0_6_address0); ifm_buff0_6_U->ce0(ifm_buff0_6_ce0); ifm_buff0_6_U->we0(ifm_buff0_6_we0); ifm_buff0_6_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_6_d0); ifm_buff0_6_U->q0(ifm_buff0_6_q0); ifm_buff0_6_U->address1(ifm_buff0_6_address1); ifm_buff0_6_U->ce1(ifm_buff0_6_ce1); ifm_buff0_6_U->q1(ifm_buff0_6_q1); ifm_buff0_7_U = new pool_hw_ifm_buff0_0("ifm_buff0_7_U"); ifm_buff0_7_U->clk(ap_clk); ifm_buff0_7_U->reset(ap_rst); ifm_buff0_7_U->address0(ifm_buff0_7_address0); ifm_buff0_7_U->ce0(ifm_buff0_7_ce0); ifm_buff0_7_U->we0(ifm_buff0_7_we0); ifm_buff0_7_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_7_d0); ifm_buff0_7_U->q0(ifm_buff0_7_q0); ifm_buff0_7_U->address1(ifm_buff0_7_address1); ifm_buff0_7_U->ce1(ifm_buff0_7_ce1); ifm_buff0_7_U->q1(ifm_buff0_7_q1); ifm_buff0_8_U = new pool_hw_ifm_buff0_0("ifm_buff0_8_U"); ifm_buff0_8_U->clk(ap_clk); ifm_buff0_8_U->reset(ap_rst); ifm_buff0_8_U->address0(ifm_buff0_8_address0); ifm_buff0_8_U->ce0(ifm_buff0_8_ce0); ifm_buff0_8_U->we0(ifm_buff0_8_we0); ifm_buff0_8_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_8_d0); ifm_buff0_8_U->q0(ifm_buff0_8_q0); ifm_buff0_8_U->address1(ifm_buff0_8_address1); ifm_buff0_8_U->ce1(ifm_buff0_8_ce1); ifm_buff0_8_U->q1(ifm_buff0_8_q1); ifm_buff0_9_U = new pool_hw_ifm_buff0_0("ifm_buff0_9_U"); ifm_buff0_9_U->clk(ap_clk); ifm_buff0_9_U->reset(ap_rst); ifm_buff0_9_U->address0(ifm_buff0_9_address0); ifm_buff0_9_U->ce0(ifm_buff0_9_ce0); ifm_buff0_9_U->we0(ifm_buff0_9_we0); ifm_buff0_9_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_9_d0); ifm_buff0_9_U->q0(ifm_buff0_9_q0); ifm_buff0_9_U->address1(ifm_buff0_9_address1); ifm_buff0_9_U->ce1(ifm_buff0_9_ce1); ifm_buff0_9_U->q1(ifm_buff0_9_q1); ifm_buff0_10_U = new pool_hw_ifm_buff0_0("ifm_buff0_10_U"); ifm_buff0_10_U->clk(ap_clk); ifm_buff0_10_U->reset(ap_rst); ifm_buff0_10_U->address0(ifm_buff0_10_address0); ifm_buff0_10_U->ce0(ifm_buff0_10_ce0); ifm_buff0_10_U->we0(ifm_buff0_10_we0); ifm_buff0_10_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_10_d0); ifm_buff0_10_U->q0(ifm_buff0_10_q0); ifm_buff0_10_U->address1(ifm_buff0_10_address1); ifm_buff0_10_U->ce1(ifm_buff0_10_ce1); ifm_buff0_10_U->q1(ifm_buff0_10_q1); ifm_buff0_11_U = new pool_hw_ifm_buff0_0("ifm_buff0_11_U"); ifm_buff0_11_U->clk(ap_clk); ifm_buff0_11_U->reset(ap_rst); ifm_buff0_11_U->address0(ifm_buff0_11_address0); ifm_buff0_11_U->ce0(ifm_buff0_11_ce0); ifm_buff0_11_U->we0(ifm_buff0_11_we0); ifm_buff0_11_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_11_d0); ifm_buff0_11_U->q0(ifm_buff0_11_q0); ifm_buff0_11_U->address1(ifm_buff0_11_address1); ifm_buff0_11_U->ce1(ifm_buff0_11_ce1); ifm_buff0_11_U->q1(ifm_buff0_11_q1); ifm_buff0_12_U = new pool_hw_ifm_buff0_0("ifm_buff0_12_U"); ifm_buff0_12_U->clk(ap_clk); ifm_buff0_12_U->reset(ap_rst); ifm_buff0_12_U->address0(ifm_buff0_12_address0); ifm_buff0_12_U->ce0(ifm_buff0_12_ce0); ifm_buff0_12_U->we0(ifm_buff0_12_we0); ifm_buff0_12_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_12_d0); ifm_buff0_12_U->q0(ifm_buff0_12_q0); ifm_buff0_12_U->address1(ifm_buff0_12_address1); ifm_buff0_12_U->ce1(ifm_buff0_12_ce1); ifm_buff0_12_U->q1(ifm_buff0_12_q1); ifm_buff0_13_U = new pool_hw_ifm_buff0_0("ifm_buff0_13_U"); ifm_buff0_13_U->clk(ap_clk); ifm_buff0_13_U->reset(ap_rst); ifm_buff0_13_U->address0(ifm_buff0_13_address0); ifm_buff0_13_U->ce0(ifm_buff0_13_ce0); ifm_buff0_13_U->we0(ifm_buff0_13_we0); ifm_buff0_13_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_13_d0); ifm_buff0_13_U->q0(ifm_buff0_13_q0); ifm_buff0_13_U->address1(ifm_buff0_13_address1); ifm_buff0_13_U->ce1(ifm_buff0_13_ce1); ifm_buff0_13_U->q1(ifm_buff0_13_q1); ifm_buff0_14_U = new pool_hw_ifm_buff0_0("ifm_buff0_14_U"); ifm_buff0_14_U->clk(ap_clk); ifm_buff0_14_U->reset(ap_rst); ifm_buff0_14_U->address0(ifm_buff0_14_address0); ifm_buff0_14_U->ce0(ifm_buff0_14_ce0); ifm_buff0_14_U->we0(ifm_buff0_14_we0); ifm_buff0_14_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_14_d0); ifm_buff0_14_U->q0(ifm_buff0_14_q0); ifm_buff0_14_U->address1(ifm_buff0_14_address1); ifm_buff0_14_U->ce1(ifm_buff0_14_ce1); ifm_buff0_14_U->q1(ifm_buff0_14_q1); ifm_buff0_15_U = new pool_hw_ifm_buff0_0("ifm_buff0_15_U"); ifm_buff0_15_U->clk(ap_clk); ifm_buff0_15_U->reset(ap_rst); ifm_buff0_15_U->address0(ifm_buff0_15_address0); ifm_buff0_15_U->ce0(ifm_buff0_15_ce0); ifm_buff0_15_U->we0(ifm_buff0_15_we0); ifm_buff0_15_U->d0(grp_write_row_ifm_fu_482_ifm_buff0_15_d0); ifm_buff0_15_U->q0(ifm_buff0_15_q0); ifm_buff0_15_U->address1(ifm_buff0_15_address1); ifm_buff0_15_U->ce1(ifm_buff0_15_ce1); ifm_buff0_15_U->q1(ifm_buff0_15_q1); ifm_buff1_0_U = new pool_hw_ifm_buff0_0("ifm_buff1_0_U"); ifm_buff1_0_U->clk(ap_clk); ifm_buff1_0_U->reset(ap_rst); ifm_buff1_0_U->address0(ifm_buff1_0_address0); ifm_buff1_0_U->ce0(ifm_buff1_0_ce0); ifm_buff1_0_U->we0(ifm_buff1_0_we0); ifm_buff1_0_U->d0(ifm_buff1_0_d0); ifm_buff1_0_U->q0(ifm_buff1_0_q0); ifm_buff1_0_U->address1(ifm_buff1_0_address1); ifm_buff1_0_U->ce1(ifm_buff1_0_ce1); ifm_buff1_0_U->q1(ifm_buff1_0_q1); ifm_buff1_1_U = new pool_hw_ifm_buff0_0("ifm_buff1_1_U"); ifm_buff1_1_U->clk(ap_clk); ifm_buff1_1_U->reset(ap_rst); ifm_buff1_1_U->address0(ifm_buff1_1_address0); ifm_buff1_1_U->ce0(ifm_buff1_1_ce0); ifm_buff1_1_U->we0(ifm_buff1_1_we0); ifm_buff1_1_U->d0(ifm_buff1_1_d0); ifm_buff1_1_U->q0(ifm_buff1_1_q0); ifm_buff1_1_U->address1(ifm_buff1_1_address1); ifm_buff1_1_U->ce1(ifm_buff1_1_ce1); ifm_buff1_1_U->q1(ifm_buff1_1_q1); ifm_buff1_2_U = new pool_hw_ifm_buff0_0("ifm_buff1_2_U"); ifm_buff1_2_U->clk(ap_clk); ifm_buff1_2_U->reset(ap_rst); ifm_buff1_2_U->address0(ifm_buff1_2_address0); ifm_buff1_2_U->ce0(ifm_buff1_2_ce0); ifm_buff1_2_U->we0(ifm_buff1_2_we0); ifm_buff1_2_U->d0(ifm_buff1_2_d0); ifm_buff1_2_U->q0(ifm_buff1_2_q0); ifm_buff1_2_U->address1(ifm_buff1_2_address1); ifm_buff1_2_U->ce1(ifm_buff1_2_ce1); ifm_buff1_2_U->q1(ifm_buff1_2_q1); ifm_buff1_3_U = new pool_hw_ifm_buff0_0("ifm_buff1_3_U"); ifm_buff1_3_U->clk(ap_clk); ifm_buff1_3_U->reset(ap_rst); ifm_buff1_3_U->address0(ifm_buff1_3_address0); ifm_buff1_3_U->ce0(ifm_buff1_3_ce0); ifm_buff1_3_U->we0(ifm_buff1_3_we0); ifm_buff1_3_U->d0(ifm_buff1_3_d0); ifm_buff1_3_U->q0(ifm_buff1_3_q0); ifm_buff1_3_U->address1(ifm_buff1_3_address1); ifm_buff1_3_U->ce1(ifm_buff1_3_ce1); ifm_buff1_3_U->q1(ifm_buff1_3_q1); ifm_buff1_4_U = new pool_hw_ifm_buff0_0("ifm_buff1_4_U"); ifm_buff1_4_U->clk(ap_clk); ifm_buff1_4_U->reset(ap_rst); ifm_buff1_4_U->address0(ifm_buff1_4_address0); ifm_buff1_4_U->ce0(ifm_buff1_4_ce0); ifm_buff1_4_U->we0(ifm_buff1_4_we0); ifm_buff1_4_U->d0(ifm_buff1_4_d0); ifm_buff1_4_U->q0(ifm_buff1_4_q0); ifm_buff1_4_U->address1(ifm_buff1_4_address1); ifm_buff1_4_U->ce1(ifm_buff1_4_ce1); ifm_buff1_4_U->q1(ifm_buff1_4_q1); ifm_buff1_5_U = new pool_hw_ifm_buff0_0("ifm_buff1_5_U"); ifm_buff1_5_U->clk(ap_clk); ifm_buff1_5_U->reset(ap_rst); ifm_buff1_5_U->address0(ifm_buff1_5_address0); ifm_buff1_5_U->ce0(ifm_buff1_5_ce0); ifm_buff1_5_U->we0(ifm_buff1_5_we0); ifm_buff1_5_U->d0(ifm_buff1_5_d0); ifm_buff1_5_U->q0(ifm_buff1_5_q0); ifm_buff1_5_U->address1(ifm_buff1_5_address1); ifm_buff1_5_U->ce1(ifm_buff1_5_ce1); ifm_buff1_5_U->q1(ifm_buff1_5_q1); ifm_buff1_6_U = new pool_hw_ifm_buff0_0("ifm_buff1_6_U"); ifm_buff1_6_U->clk(ap_clk); ifm_buff1_6_U->reset(ap_rst); ifm_buff1_6_U->address0(ifm_buff1_6_address0); ifm_buff1_6_U->ce0(ifm_buff1_6_ce0); ifm_buff1_6_U->we0(ifm_buff1_6_we0); ifm_buff1_6_U->d0(ifm_buff1_6_d0); ifm_buff1_6_U->q0(ifm_buff1_6_q0); ifm_buff1_6_U->address1(ifm_buff1_6_address1); ifm_buff1_6_U->ce1(ifm_buff1_6_ce1); ifm_buff1_6_U->q1(ifm_buff1_6_q1); ifm_buff1_7_U = new pool_hw_ifm_buff0_0("ifm_buff1_7_U"); ifm_buff1_7_U->clk(ap_clk); ifm_buff1_7_U->reset(ap_rst); ifm_buff1_7_U->address0(ifm_buff1_7_address0); ifm_buff1_7_U->ce0(ifm_buff1_7_ce0); ifm_buff1_7_U->we0(ifm_buff1_7_we0); ifm_buff1_7_U->d0(ifm_buff1_7_d0); ifm_buff1_7_U->q0(ifm_buff1_7_q0); ifm_buff1_7_U->address1(ifm_buff1_7_address1); ifm_buff1_7_U->ce1(ifm_buff1_7_ce1); ifm_buff1_7_U->q1(ifm_buff1_7_q1); ifm_buff1_8_U = new pool_hw_ifm_buff0_0("ifm_buff1_8_U"); ifm_buff1_8_U->clk(ap_clk); ifm_buff1_8_U->reset(ap_rst); ifm_buff1_8_U->address0(ifm_buff1_8_address0); ifm_buff1_8_U->ce0(ifm_buff1_8_ce0); ifm_buff1_8_U->we0(ifm_buff1_8_we0); ifm_buff1_8_U->d0(ifm_buff1_8_d0); ifm_buff1_8_U->q0(ifm_buff1_8_q0); ifm_buff1_8_U->address1(ifm_buff1_8_address1); ifm_buff1_8_U->ce1(ifm_buff1_8_ce1); ifm_buff1_8_U->q1(ifm_buff1_8_q1); ifm_buff1_9_U = new pool_hw_ifm_buff0_0("ifm_buff1_9_U"); ifm_buff1_9_U->clk(ap_clk); ifm_buff1_9_U->reset(ap_rst); ifm_buff1_9_U->address0(ifm_buff1_9_address0); ifm_buff1_9_U->ce0(ifm_buff1_9_ce0); ifm_buff1_9_U->we0(ifm_buff1_9_we0); ifm_buff1_9_U->d0(ifm_buff1_9_d0); ifm_buff1_9_U->q0(ifm_buff1_9_q0); ifm_buff1_9_U->address1(ifm_buff1_9_address1); ifm_buff1_9_U->ce1(ifm_buff1_9_ce1); ifm_buff1_9_U->q1(ifm_buff1_9_q1); ifm_buff1_10_U = new pool_hw_ifm_buff0_0("ifm_buff1_10_U"); ifm_buff1_10_U->clk(ap_clk); ifm_buff1_10_U->reset(ap_rst); ifm_buff1_10_U->address0(ifm_buff1_10_address0); ifm_buff1_10_U->ce0(ifm_buff1_10_ce0); ifm_buff1_10_U->we0(ifm_buff1_10_we0); ifm_buff1_10_U->d0(ifm_buff1_10_d0); ifm_buff1_10_U->q0(ifm_buff1_10_q0); ifm_buff1_10_U->address1(ifm_buff1_10_address1); ifm_buff1_10_U->ce1(ifm_buff1_10_ce1); ifm_buff1_10_U->q1(ifm_buff1_10_q1); ifm_buff1_11_U = new pool_hw_ifm_buff0_0("ifm_buff1_11_U"); ifm_buff1_11_U->clk(ap_clk); ifm_buff1_11_U->reset(ap_rst); ifm_buff1_11_U->address0(ifm_buff1_11_address0); ifm_buff1_11_U->ce0(ifm_buff1_11_ce0); ifm_buff1_11_U->we0(ifm_buff1_11_we0); ifm_buff1_11_U->d0(ifm_buff1_11_d0); ifm_buff1_11_U->q0(ifm_buff1_11_q0); ifm_buff1_11_U->address1(ifm_buff1_11_address1); ifm_buff1_11_U->ce1(ifm_buff1_11_ce1); ifm_buff1_11_U->q1(ifm_buff1_11_q1); ifm_buff1_12_U = new pool_hw_ifm_buff0_0("ifm_buff1_12_U"); ifm_buff1_12_U->clk(ap_clk); ifm_buff1_12_U->reset(ap_rst); ifm_buff1_12_U->address0(ifm_buff1_12_address0); ifm_buff1_12_U->ce0(ifm_buff1_12_ce0); ifm_buff1_12_U->we0(ifm_buff1_12_we0); ifm_buff1_12_U->d0(ifm_buff1_12_d0); ifm_buff1_12_U->q0(ifm_buff1_12_q0); ifm_buff1_12_U->address1(ifm_buff1_12_address1); ifm_buff1_12_U->ce1(ifm_buff1_12_ce1); ifm_buff1_12_U->q1(ifm_buff1_12_q1); ifm_buff1_13_U = new pool_hw_ifm_buff0_0("ifm_buff1_13_U"); ifm_buff1_13_U->clk(ap_clk); ifm_buff1_13_U->reset(ap_rst); ifm_buff1_13_U->address0(ifm_buff1_13_address0); ifm_buff1_13_U->ce0(ifm_buff1_13_ce0); ifm_buff1_13_U->we0(ifm_buff1_13_we0); ifm_buff1_13_U->d0(ifm_buff1_13_d0); ifm_buff1_13_U->q0(ifm_buff1_13_q0); ifm_buff1_13_U->address1(ifm_buff1_13_address1); ifm_buff1_13_U->ce1(ifm_buff1_13_ce1); ifm_buff1_13_U->q1(ifm_buff1_13_q1); ifm_buff1_14_U = new pool_hw_ifm_buff0_0("ifm_buff1_14_U"); ifm_buff1_14_U->clk(ap_clk); ifm_buff1_14_U->reset(ap_rst); ifm_buff1_14_U->address0(ifm_buff1_14_address0); ifm_buff1_14_U->ce0(ifm_buff1_14_ce0); ifm_buff1_14_U->we0(ifm_buff1_14_we0); ifm_buff1_14_U->d0(ifm_buff1_14_d0); ifm_buff1_14_U->q0(ifm_buff1_14_q0); ifm_buff1_14_U->address1(ifm_buff1_14_address1); ifm_buff1_14_U->ce1(ifm_buff1_14_ce1); ifm_buff1_14_U->q1(ifm_buff1_14_q1); ifm_buff1_15_U = new pool_hw_ifm_buff0_0("ifm_buff1_15_U"); ifm_buff1_15_U->clk(ap_clk); ifm_buff1_15_U->reset(ap_rst); ifm_buff1_15_U->address0(ifm_buff1_15_address0); ifm_buff1_15_U->ce0(ifm_buff1_15_ce0); ifm_buff1_15_U->we0(ifm_buff1_15_we0); ifm_buff1_15_U->d0(ifm_buff1_15_d0); ifm_buff1_15_U->q0(ifm_buff1_15_q0); ifm_buff1_15_U->address1(ifm_buff1_15_address1); ifm_buff1_15_U->ce1(ifm_buff1_15_ce1); ifm_buff1_15_U->q1(ifm_buff1_15_q1); ifm_buff2_0_U = new pool_hw_ifm_buff0_0("ifm_buff2_0_U"); ifm_buff2_0_U->clk(ap_clk); ifm_buff2_0_U->reset(ap_rst); ifm_buff2_0_U->address0(ifm_buff2_0_address0); ifm_buff2_0_U->ce0(ifm_buff2_0_ce0); ifm_buff2_0_U->we0(ifm_buff2_0_we0); ifm_buff2_0_U->d0(ifm_buff2_0_d0); ifm_buff2_0_U->q0(ifm_buff2_0_q0); ifm_buff2_0_U->address1(ifm_buff2_0_address1); ifm_buff2_0_U->ce1(ifm_buff2_0_ce1); ifm_buff2_0_U->q1(ifm_buff2_0_q1); ifm_buff2_1_U = new pool_hw_ifm_buff0_0("ifm_buff2_1_U"); ifm_buff2_1_U->clk(ap_clk); ifm_buff2_1_U->reset(ap_rst); ifm_buff2_1_U->address0(ifm_buff2_1_address0); ifm_buff2_1_U->ce0(ifm_buff2_1_ce0); ifm_buff2_1_U->we0(ifm_buff2_1_we0); ifm_buff2_1_U->d0(ifm_buff2_1_d0); ifm_buff2_1_U->q0(ifm_buff2_1_q0); ifm_buff2_1_U->address1(ifm_buff2_1_address1); ifm_buff2_1_U->ce1(ifm_buff2_1_ce1); ifm_buff2_1_U->q1(ifm_buff2_1_q1); ifm_buff2_2_U = new pool_hw_ifm_buff0_0("ifm_buff2_2_U"); ifm_buff2_2_U->clk(ap_clk); ifm_buff2_2_U->reset(ap_rst); ifm_buff2_2_U->address0(ifm_buff2_2_address0); ifm_buff2_2_U->ce0(ifm_buff2_2_ce0); ifm_buff2_2_U->we0(ifm_buff2_2_we0); ifm_buff2_2_U->d0(ifm_buff2_2_d0); ifm_buff2_2_U->q0(ifm_buff2_2_q0); ifm_buff2_2_U->address1(ifm_buff2_2_address1); ifm_buff2_2_U->ce1(ifm_buff2_2_ce1); ifm_buff2_2_U->q1(ifm_buff2_2_q1); ifm_buff2_3_U = new pool_hw_ifm_buff0_0("ifm_buff2_3_U"); ifm_buff2_3_U->clk(ap_clk); ifm_buff2_3_U->reset(ap_rst); ifm_buff2_3_U->address0(ifm_buff2_3_address0); ifm_buff2_3_U->ce0(ifm_buff2_3_ce0); ifm_buff2_3_U->we0(ifm_buff2_3_we0); ifm_buff2_3_U->d0(ifm_buff2_3_d0); ifm_buff2_3_U->q0(ifm_buff2_3_q0); ifm_buff2_3_U->address1(ifm_buff2_3_address1); ifm_buff2_3_U->ce1(ifm_buff2_3_ce1); ifm_buff2_3_U->q1(ifm_buff2_3_q1); ifm_buff2_4_U = new pool_hw_ifm_buff0_0("ifm_buff2_4_U"); ifm_buff2_4_U->clk(ap_clk); ifm_buff2_4_U->reset(ap_rst); ifm_buff2_4_U->address0(ifm_buff2_4_address0); ifm_buff2_4_U->ce0(ifm_buff2_4_ce0); ifm_buff2_4_U->we0(ifm_buff2_4_we0); ifm_buff2_4_U->d0(ifm_buff2_4_d0); ifm_buff2_4_U->q0(ifm_buff2_4_q0); ifm_buff2_4_U->address1(ifm_buff2_4_address1); ifm_buff2_4_U->ce1(ifm_buff2_4_ce1); ifm_buff2_4_U->q1(ifm_buff2_4_q1); ifm_buff2_5_U = new pool_hw_ifm_buff0_0("ifm_buff2_5_U"); ifm_buff2_5_U->clk(ap_clk); ifm_buff2_5_U->reset(ap_rst); ifm_buff2_5_U->address0(ifm_buff2_5_address0); ifm_buff2_5_U->ce0(ifm_buff2_5_ce0); ifm_buff2_5_U->we0(ifm_buff2_5_we0); ifm_buff2_5_U->d0(ifm_buff2_5_d0); ifm_buff2_5_U->q0(ifm_buff2_5_q0); ifm_buff2_5_U->address1(ifm_buff2_5_address1); ifm_buff2_5_U->ce1(ifm_buff2_5_ce1); ifm_buff2_5_U->q1(ifm_buff2_5_q1); ifm_buff2_6_U = new pool_hw_ifm_buff0_0("ifm_buff2_6_U"); ifm_buff2_6_U->clk(ap_clk); ifm_buff2_6_U->reset(ap_rst); ifm_buff2_6_U->address0(ifm_buff2_6_address0); ifm_buff2_6_U->ce0(ifm_buff2_6_ce0); ifm_buff2_6_U->we0(ifm_buff2_6_we0); ifm_buff2_6_U->d0(ifm_buff2_6_d0); ifm_buff2_6_U->q0(ifm_buff2_6_q0); ifm_buff2_6_U->address1(ifm_buff2_6_address1); ifm_buff2_6_U->ce1(ifm_buff2_6_ce1); ifm_buff2_6_U->q1(ifm_buff2_6_q1); ifm_buff2_7_U = new pool_hw_ifm_buff0_0("ifm_buff2_7_U"); ifm_buff2_7_U->clk(ap_clk); ifm_buff2_7_U->reset(ap_rst); ifm_buff2_7_U->address0(ifm_buff2_7_address0); ifm_buff2_7_U->ce0(ifm_buff2_7_ce0); ifm_buff2_7_U->we0(ifm_buff2_7_we0); ifm_buff2_7_U->d0(ifm_buff2_7_d0); ifm_buff2_7_U->q0(ifm_buff2_7_q0); ifm_buff2_7_U->address1(ifm_buff2_7_address1); ifm_buff2_7_U->ce1(ifm_buff2_7_ce1); ifm_buff2_7_U->q1(ifm_buff2_7_q1); ifm_buff2_8_U = new pool_hw_ifm_buff0_0("ifm_buff2_8_U"); ifm_buff2_8_U->clk(ap_clk); ifm_buff2_8_U->reset(ap_rst); ifm_buff2_8_U->address0(ifm_buff2_8_address0); ifm_buff2_8_U->ce0(ifm_buff2_8_ce0); ifm_buff2_8_U->we0(ifm_buff2_8_we0); ifm_buff2_8_U->d0(ifm_buff2_8_d0); ifm_buff2_8_U->q0(ifm_buff2_8_q0); ifm_buff2_8_U->address1(ifm_buff2_8_address1); ifm_buff2_8_U->ce1(ifm_buff2_8_ce1); ifm_buff2_8_U->q1(ifm_buff2_8_q1); ifm_buff2_9_U = new pool_hw_ifm_buff0_0("ifm_buff2_9_U"); ifm_buff2_9_U->clk(ap_clk); ifm_buff2_9_U->reset(ap_rst); ifm_buff2_9_U->address0(ifm_buff2_9_address0); ifm_buff2_9_U->ce0(ifm_buff2_9_ce0); ifm_buff2_9_U->we0(ifm_buff2_9_we0); ifm_buff2_9_U->d0(ifm_buff2_9_d0); ifm_buff2_9_U->q0(ifm_buff2_9_q0); ifm_buff2_9_U->address1(ifm_buff2_9_address1); ifm_buff2_9_U->ce1(ifm_buff2_9_ce1); ifm_buff2_9_U->q1(ifm_buff2_9_q1); ifm_buff2_10_U = new pool_hw_ifm_buff0_0("ifm_buff2_10_U"); ifm_buff2_10_U->clk(ap_clk); ifm_buff2_10_U->reset(ap_rst); ifm_buff2_10_U->address0(ifm_buff2_10_address0); ifm_buff2_10_U->ce0(ifm_buff2_10_ce0); ifm_buff2_10_U->we0(ifm_buff2_10_we0); ifm_buff2_10_U->d0(ifm_buff2_10_d0); ifm_buff2_10_U->q0(ifm_buff2_10_q0); ifm_buff2_10_U->address1(ifm_buff2_10_address1); ifm_buff2_10_U->ce1(ifm_buff2_10_ce1); ifm_buff2_10_U->q1(ifm_buff2_10_q1); ifm_buff2_11_U = new pool_hw_ifm_buff0_0("ifm_buff2_11_U"); ifm_buff2_11_U->clk(ap_clk); ifm_buff2_11_U->reset(ap_rst); ifm_buff2_11_U->address0(ifm_buff2_11_address0); ifm_buff2_11_U->ce0(ifm_buff2_11_ce0); ifm_buff2_11_U->we0(ifm_buff2_11_we0); ifm_buff2_11_U->d0(ifm_buff2_11_d0); ifm_buff2_11_U->q0(ifm_buff2_11_q0); ifm_buff2_11_U->address1(ifm_buff2_11_address1); ifm_buff2_11_U->ce1(ifm_buff2_11_ce1); ifm_buff2_11_U->q1(ifm_buff2_11_q1); ifm_buff2_12_U = new pool_hw_ifm_buff0_0("ifm_buff2_12_U"); ifm_buff2_12_U->clk(ap_clk); ifm_buff2_12_U->reset(ap_rst); ifm_buff2_12_U->address0(ifm_buff2_12_address0); ifm_buff2_12_U->ce0(ifm_buff2_12_ce0); ifm_buff2_12_U->we0(ifm_buff2_12_we0); ifm_buff2_12_U->d0(ifm_buff2_12_d0); ifm_buff2_12_U->q0(ifm_buff2_12_q0); ifm_buff2_12_U->address1(ifm_buff2_12_address1); ifm_buff2_12_U->ce1(ifm_buff2_12_ce1); ifm_buff2_12_U->q1(ifm_buff2_12_q1); ifm_buff2_13_U = new pool_hw_ifm_buff0_0("ifm_buff2_13_U"); ifm_buff2_13_U->clk(ap_clk); ifm_buff2_13_U->reset(ap_rst); ifm_buff2_13_U->address0(ifm_buff2_13_address0); ifm_buff2_13_U->ce0(ifm_buff2_13_ce0); ifm_buff2_13_U->we0(ifm_buff2_13_we0); ifm_buff2_13_U->d0(ifm_buff2_13_d0); ifm_buff2_13_U->q0(ifm_buff2_13_q0); ifm_buff2_13_U->address1(ifm_buff2_13_address1); ifm_buff2_13_U->ce1(ifm_buff2_13_ce1); ifm_buff2_13_U->q1(ifm_buff2_13_q1); ifm_buff2_14_U = new pool_hw_ifm_buff0_0("ifm_buff2_14_U"); ifm_buff2_14_U->clk(ap_clk); ifm_buff2_14_U->reset(ap_rst); ifm_buff2_14_U->address0(ifm_buff2_14_address0); ifm_buff2_14_U->ce0(ifm_buff2_14_ce0); ifm_buff2_14_U->we0(ifm_buff2_14_we0); ifm_buff2_14_U->d0(ifm_buff2_14_d0); ifm_buff2_14_U->q0(ifm_buff2_14_q0); ifm_buff2_14_U->address1(ifm_buff2_14_address1); ifm_buff2_14_U->ce1(ifm_buff2_14_ce1); ifm_buff2_14_U->q1(ifm_buff2_14_q1); ifm_buff2_15_U = new pool_hw_ifm_buff0_0("ifm_buff2_15_U"); ifm_buff2_15_U->clk(ap_clk); ifm_buff2_15_U->reset(ap_rst); ifm_buff2_15_U->address0(ifm_buff2_15_address0); ifm_buff2_15_U->ce0(ifm_buff2_15_ce0); ifm_buff2_15_U->we0(ifm_buff2_15_we0); ifm_buff2_15_U->d0(ifm_buff2_15_d0); ifm_buff2_15_U->q0(ifm_buff2_15_q0); ifm_buff2_15_U->address1(ifm_buff2_15_address1); ifm_buff2_15_U->ce1(ifm_buff2_15_ce1); ifm_buff2_15_U->q1(ifm_buff2_15_q1); ofm_buff0_0_U = new pool_hw_ofm_buff0_0("ofm_buff0_0_U"); ofm_buff0_0_U->clk(ap_clk); ofm_buff0_0_U->reset(ap_rst); ofm_buff0_0_U->address0(ofm_buff0_0_address0); ofm_buff0_0_U->ce0(ofm_buff0_0_ce0); ofm_buff0_0_U->we0(ofm_buff0_0_we0); ofm_buff0_0_U->d0(grp_pool_write_fu_405_ofm_buff0_0_d0); ofm_buff0_0_U->q0(ofm_buff0_0_q0); ofm_buff0_1_U = new pool_hw_ofm_buff0_0("ofm_buff0_1_U"); ofm_buff0_1_U->clk(ap_clk); ofm_buff0_1_U->reset(ap_rst); ofm_buff0_1_U->address0(ofm_buff0_1_address0); ofm_buff0_1_U->ce0(ofm_buff0_1_ce0); ofm_buff0_1_U->we0(ofm_buff0_1_we0); ofm_buff0_1_U->d0(grp_pool_write_fu_405_ofm_buff0_1_d0); ofm_buff0_1_U->q0(ofm_buff0_1_q0); ofm_buff0_2_U = new pool_hw_ofm_buff0_0("ofm_buff0_2_U"); ofm_buff0_2_U->clk(ap_clk); ofm_buff0_2_U->reset(ap_rst); ofm_buff0_2_U->address0(ofm_buff0_2_address0); ofm_buff0_2_U->ce0(ofm_buff0_2_ce0); ofm_buff0_2_U->we0(ofm_buff0_2_we0); ofm_buff0_2_U->d0(grp_pool_write_fu_405_ofm_buff0_2_d0); ofm_buff0_2_U->q0(ofm_buff0_2_q0); ofm_buff0_3_U = new pool_hw_ofm_buff0_0("ofm_buff0_3_U"); ofm_buff0_3_U->clk(ap_clk); ofm_buff0_3_U->reset(ap_rst); ofm_buff0_3_U->address0(ofm_buff0_3_address0); ofm_buff0_3_U->ce0(ofm_buff0_3_ce0); ofm_buff0_3_U->we0(ofm_buff0_3_we0); ofm_buff0_3_U->d0(grp_pool_write_fu_405_ofm_buff0_3_d0); ofm_buff0_3_U->q0(ofm_buff0_3_q0); ofm_buff0_4_U = new pool_hw_ofm_buff0_0("ofm_buff0_4_U"); ofm_buff0_4_U->clk(ap_clk); ofm_buff0_4_U->reset(ap_rst); ofm_buff0_4_U->address0(ofm_buff0_4_address0); ofm_buff0_4_U->ce0(ofm_buff0_4_ce0); ofm_buff0_4_U->we0(ofm_buff0_4_we0); ofm_buff0_4_U->d0(grp_pool_write_fu_405_ofm_buff0_4_d0); ofm_buff0_4_U->q0(ofm_buff0_4_q0); ofm_buff0_5_U = new pool_hw_ofm_buff0_0("ofm_buff0_5_U"); ofm_buff0_5_U->clk(ap_clk); ofm_buff0_5_U->reset(ap_rst); ofm_buff0_5_U->address0(ofm_buff0_5_address0); ofm_buff0_5_U->ce0(ofm_buff0_5_ce0); ofm_buff0_5_U->we0(ofm_buff0_5_we0); ofm_buff0_5_U->d0(grp_pool_write_fu_405_ofm_buff0_5_d0); ofm_buff0_5_U->q0(ofm_buff0_5_q0); ofm_buff0_6_U = new pool_hw_ofm_buff0_0("ofm_buff0_6_U"); ofm_buff0_6_U->clk(ap_clk); ofm_buff0_6_U->reset(ap_rst); ofm_buff0_6_U->address0(ofm_buff0_6_address0); ofm_buff0_6_U->ce0(ofm_buff0_6_ce0); ofm_buff0_6_U->we0(ofm_buff0_6_we0); ofm_buff0_6_U->d0(grp_pool_write_fu_405_ofm_buff0_6_d0); ofm_buff0_6_U->q0(ofm_buff0_6_q0); ofm_buff0_7_U = new pool_hw_ofm_buff0_0("ofm_buff0_7_U"); ofm_buff0_7_U->clk(ap_clk); ofm_buff0_7_U->reset(ap_rst); ofm_buff0_7_U->address0(ofm_buff0_7_address0); ofm_buff0_7_U->ce0(ofm_buff0_7_ce0); ofm_buff0_7_U->we0(ofm_buff0_7_we0); ofm_buff0_7_U->d0(grp_pool_write_fu_405_ofm_buff0_7_d0); ofm_buff0_7_U->q0(ofm_buff0_7_q0); ofm_buff0_8_U = new pool_hw_ofm_buff0_0("ofm_buff0_8_U"); ofm_buff0_8_U->clk(ap_clk); ofm_buff0_8_U->reset(ap_rst); ofm_buff0_8_U->address0(ofm_buff0_8_address0); ofm_buff0_8_U->ce0(ofm_buff0_8_ce0); ofm_buff0_8_U->we0(ofm_buff0_8_we0); ofm_buff0_8_U->d0(grp_pool_write_fu_405_ofm_buff0_8_d0); ofm_buff0_8_U->q0(ofm_buff0_8_q0); ofm_buff0_9_U = new pool_hw_ofm_buff0_0("ofm_buff0_9_U"); ofm_buff0_9_U->clk(ap_clk); ofm_buff0_9_U->reset(ap_rst); ofm_buff0_9_U->address0(ofm_buff0_9_address0); ofm_buff0_9_U->ce0(ofm_buff0_9_ce0); ofm_buff0_9_U->we0(ofm_buff0_9_we0); ofm_buff0_9_U->d0(grp_pool_write_fu_405_ofm_buff0_9_d0); ofm_buff0_9_U->q0(ofm_buff0_9_q0); ofm_buff0_10_U = new pool_hw_ofm_buff0_0("ofm_buff0_10_U"); ofm_buff0_10_U->clk(ap_clk); ofm_buff0_10_U->reset(ap_rst); ofm_buff0_10_U->address0(ofm_buff0_10_address0); ofm_buff0_10_U->ce0(ofm_buff0_10_ce0); ofm_buff0_10_U->we0(ofm_buff0_10_we0); ofm_buff0_10_U->d0(grp_pool_write_fu_405_ofm_buff0_10_d0); ofm_buff0_10_U->q0(ofm_buff0_10_q0); ofm_buff0_11_U = new pool_hw_ofm_buff0_0("ofm_buff0_11_U"); ofm_buff0_11_U->clk(ap_clk); ofm_buff0_11_U->reset(ap_rst); ofm_buff0_11_U->address0(ofm_buff0_11_address0); ofm_buff0_11_U->ce0(ofm_buff0_11_ce0); ofm_buff0_11_U->we0(ofm_buff0_11_we0); ofm_buff0_11_U->d0(grp_pool_write_fu_405_ofm_buff0_11_d0); ofm_buff0_11_U->q0(ofm_buff0_11_q0); ofm_buff0_12_U = new pool_hw_ofm_buff0_0("ofm_buff0_12_U"); ofm_buff0_12_U->clk(ap_clk); ofm_buff0_12_U->reset(ap_rst); ofm_buff0_12_U->address0(ofm_buff0_12_address0); ofm_buff0_12_U->ce0(ofm_buff0_12_ce0); ofm_buff0_12_U->we0(ofm_buff0_12_we0); ofm_buff0_12_U->d0(grp_pool_write_fu_405_ofm_buff0_12_d0); ofm_buff0_12_U->q0(ofm_buff0_12_q0); ofm_buff0_13_U = new pool_hw_ofm_buff0_0("ofm_buff0_13_U"); ofm_buff0_13_U->clk(ap_clk); ofm_buff0_13_U->reset(ap_rst); ofm_buff0_13_U->address0(ofm_buff0_13_address0); ofm_buff0_13_U->ce0(ofm_buff0_13_ce0); ofm_buff0_13_U->we0(ofm_buff0_13_we0); ofm_buff0_13_U->d0(grp_pool_write_fu_405_ofm_buff0_13_d0); ofm_buff0_13_U->q0(ofm_buff0_13_q0); ofm_buff0_14_U = new pool_hw_ofm_buff0_0("ofm_buff0_14_U"); ofm_buff0_14_U->clk(ap_clk); ofm_buff0_14_U->reset(ap_rst); ofm_buff0_14_U->address0(ofm_buff0_14_address0); ofm_buff0_14_U->ce0(ofm_buff0_14_ce0); ofm_buff0_14_U->we0(ofm_buff0_14_we0); ofm_buff0_14_U->d0(grp_pool_write_fu_405_ofm_buff0_14_d0); ofm_buff0_14_U->q0(ofm_buff0_14_q0); ofm_buff0_15_U = new pool_hw_ofm_buff0_0("ofm_buff0_15_U"); ofm_buff0_15_U->clk(ap_clk); ofm_buff0_15_U->reset(ap_rst); ofm_buff0_15_U->address0(ofm_buff0_15_address0); ofm_buff0_15_U->ce0(ofm_buff0_15_ce0); ofm_buff0_15_U->we0(ofm_buff0_15_we0); ofm_buff0_15_U->d0(grp_pool_write_fu_405_ofm_buff0_15_d0); ofm_buff0_15_U->q0(ofm_buff0_15_q0); ofm_buff1_0_U = new pool_hw_ofm_buff0_0("ofm_buff1_0_U"); ofm_buff1_0_U->clk(ap_clk); ofm_buff1_0_U->reset(ap_rst); ofm_buff1_0_U->address0(ofm_buff1_0_address0); ofm_buff1_0_U->ce0(ofm_buff1_0_ce0); ofm_buff1_0_U->we0(ofm_buff1_0_we0); ofm_buff1_0_U->d0(grp_pool_write_fu_405_ofm_buff0_0_d0); ofm_buff1_0_U->q0(ofm_buff1_0_q0); ofm_buff1_1_U = new pool_hw_ofm_buff0_0("ofm_buff1_1_U"); ofm_buff1_1_U->clk(ap_clk); ofm_buff1_1_U->reset(ap_rst); ofm_buff1_1_U->address0(ofm_buff1_1_address0); ofm_buff1_1_U->ce0(ofm_buff1_1_ce0); ofm_buff1_1_U->we0(ofm_buff1_1_we0); ofm_buff1_1_U->d0(grp_pool_write_fu_405_ofm_buff0_1_d0); ofm_buff1_1_U->q0(ofm_buff1_1_q0); ofm_buff1_2_U = new pool_hw_ofm_buff0_0("ofm_buff1_2_U"); ofm_buff1_2_U->clk(ap_clk); ofm_buff1_2_U->reset(ap_rst); ofm_buff1_2_U->address0(ofm_buff1_2_address0); ofm_buff1_2_U->ce0(ofm_buff1_2_ce0); ofm_buff1_2_U->we0(ofm_buff1_2_we0); ofm_buff1_2_U->d0(grp_pool_write_fu_405_ofm_buff0_2_d0); ofm_buff1_2_U->q0(ofm_buff1_2_q0); ofm_buff1_3_U = new pool_hw_ofm_buff0_0("ofm_buff1_3_U"); ofm_buff1_3_U->clk(ap_clk); ofm_buff1_3_U->reset(ap_rst); ofm_buff1_3_U->address0(ofm_buff1_3_address0); ofm_buff1_3_U->ce0(ofm_buff1_3_ce0); ofm_buff1_3_U->we0(ofm_buff1_3_we0); ofm_buff1_3_U->d0(grp_pool_write_fu_405_ofm_buff0_3_d0); ofm_buff1_3_U->q0(ofm_buff1_3_q0); ofm_buff1_4_U = new pool_hw_ofm_buff0_0("ofm_buff1_4_U"); ofm_buff1_4_U->clk(ap_clk); ofm_buff1_4_U->reset(ap_rst); ofm_buff1_4_U->address0(ofm_buff1_4_address0); ofm_buff1_4_U->ce0(ofm_buff1_4_ce0); ofm_buff1_4_U->we0(ofm_buff1_4_we0); ofm_buff1_4_U->d0(grp_pool_write_fu_405_ofm_buff0_4_d0); ofm_buff1_4_U->q0(ofm_buff1_4_q0); ofm_buff1_5_U = new pool_hw_ofm_buff0_0("ofm_buff1_5_U"); ofm_buff1_5_U->clk(ap_clk); ofm_buff1_5_U->reset(ap_rst); ofm_buff1_5_U->address0(ofm_buff1_5_address0); ofm_buff1_5_U->ce0(ofm_buff1_5_ce0); ofm_buff1_5_U->we0(ofm_buff1_5_we0); ofm_buff1_5_U->d0(grp_pool_write_fu_405_ofm_buff0_5_d0); ofm_buff1_5_U->q0(ofm_buff1_5_q0); ofm_buff1_6_U = new pool_hw_ofm_buff0_0("ofm_buff1_6_U"); ofm_buff1_6_U->clk(ap_clk); ofm_buff1_6_U->reset(ap_rst); ofm_buff1_6_U->address0(ofm_buff1_6_address0); ofm_buff1_6_U->ce0(ofm_buff1_6_ce0); ofm_buff1_6_U->we0(ofm_buff1_6_we0); ofm_buff1_6_U->d0(grp_pool_write_fu_405_ofm_buff0_6_d0); ofm_buff1_6_U->q0(ofm_buff1_6_q0); ofm_buff1_7_U = new pool_hw_ofm_buff0_0("ofm_buff1_7_U"); ofm_buff1_7_U->clk(ap_clk); ofm_buff1_7_U->reset(ap_rst); ofm_buff1_7_U->address0(ofm_buff1_7_address0); ofm_buff1_7_U->ce0(ofm_buff1_7_ce0); ofm_buff1_7_U->we0(ofm_buff1_7_we0); ofm_buff1_7_U->d0(grp_pool_write_fu_405_ofm_buff0_7_d0); ofm_buff1_7_U->q0(ofm_buff1_7_q0); ofm_buff1_8_U = new pool_hw_ofm_buff0_0("ofm_buff1_8_U"); ofm_buff1_8_U->clk(ap_clk); ofm_buff1_8_U->reset(ap_rst); ofm_buff1_8_U->address0(ofm_buff1_8_address0); ofm_buff1_8_U->ce0(ofm_buff1_8_ce0); ofm_buff1_8_U->we0(ofm_buff1_8_we0); ofm_buff1_8_U->d0(grp_pool_write_fu_405_ofm_buff0_8_d0); ofm_buff1_8_U->q0(ofm_buff1_8_q0); ofm_buff1_9_U = new pool_hw_ofm_buff0_0("ofm_buff1_9_U"); ofm_buff1_9_U->clk(ap_clk); ofm_buff1_9_U->reset(ap_rst); ofm_buff1_9_U->address0(ofm_buff1_9_address0); ofm_buff1_9_U->ce0(ofm_buff1_9_ce0); ofm_buff1_9_U->we0(ofm_buff1_9_we0); ofm_buff1_9_U->d0(grp_pool_write_fu_405_ofm_buff0_9_d0); ofm_buff1_9_U->q0(ofm_buff1_9_q0); ofm_buff1_10_U = new pool_hw_ofm_buff0_0("ofm_buff1_10_U"); ofm_buff1_10_U->clk(ap_clk); ofm_buff1_10_U->reset(ap_rst); ofm_buff1_10_U->address0(ofm_buff1_10_address0); ofm_buff1_10_U->ce0(ofm_buff1_10_ce0); ofm_buff1_10_U->we0(ofm_buff1_10_we0); ofm_buff1_10_U->d0(grp_pool_write_fu_405_ofm_buff0_10_d0); ofm_buff1_10_U->q0(ofm_buff1_10_q0); ofm_buff1_11_U = new pool_hw_ofm_buff0_0("ofm_buff1_11_U"); ofm_buff1_11_U->clk(ap_clk); ofm_buff1_11_U->reset(ap_rst); ofm_buff1_11_U->address0(ofm_buff1_11_address0); ofm_buff1_11_U->ce0(ofm_buff1_11_ce0); ofm_buff1_11_U->we0(ofm_buff1_11_we0); ofm_buff1_11_U->d0(grp_pool_write_fu_405_ofm_buff0_11_d0); ofm_buff1_11_U->q0(ofm_buff1_11_q0); ofm_buff1_12_U = new pool_hw_ofm_buff0_0("ofm_buff1_12_U"); ofm_buff1_12_U->clk(ap_clk); ofm_buff1_12_U->reset(ap_rst); ofm_buff1_12_U->address0(ofm_buff1_12_address0); ofm_buff1_12_U->ce0(ofm_buff1_12_ce0); ofm_buff1_12_U->we0(ofm_buff1_12_we0); ofm_buff1_12_U->d0(grp_pool_write_fu_405_ofm_buff0_12_d0); ofm_buff1_12_U->q0(ofm_buff1_12_q0); ofm_buff1_13_U = new pool_hw_ofm_buff0_0("ofm_buff1_13_U"); ofm_buff1_13_U->clk(ap_clk); ofm_buff1_13_U->reset(ap_rst); ofm_buff1_13_U->address0(ofm_buff1_13_address0); ofm_buff1_13_U->ce0(ofm_buff1_13_ce0); ofm_buff1_13_U->we0(ofm_buff1_13_we0); ofm_buff1_13_U->d0(grp_pool_write_fu_405_ofm_buff0_13_d0); ofm_buff1_13_U->q0(ofm_buff1_13_q0); ofm_buff1_14_U = new pool_hw_ofm_buff0_0("ofm_buff1_14_U"); ofm_buff1_14_U->clk(ap_clk); ofm_buff1_14_U->reset(ap_rst); ofm_buff1_14_U->address0(ofm_buff1_14_address0); ofm_buff1_14_U->ce0(ofm_buff1_14_ce0); ofm_buff1_14_U->we0(ofm_buff1_14_we0); ofm_buff1_14_U->d0(grp_pool_write_fu_405_ofm_buff0_14_d0); ofm_buff1_14_U->q0(ofm_buff1_14_q0); ofm_buff1_15_U = new pool_hw_ofm_buff0_0("ofm_buff1_15_U"); ofm_buff1_15_U->clk(ap_clk); ofm_buff1_15_U->reset(ap_rst); ofm_buff1_15_U->address0(ofm_buff1_15_address0); ofm_buff1_15_U->ce0(ofm_buff1_15_ce0); ofm_buff1_15_U->we0(ofm_buff1_15_we0); ofm_buff1_15_U->d0(grp_pool_write_fu_405_ofm_buff0_15_d0); ofm_buff1_15_U->q0(ofm_buff1_15_q0); grp_pool_write_fu_405 = new pool_write("grp_pool_write_fu_405"); grp_pool_write_fu_405->ap_clk(ap_clk); grp_pool_write_fu_405->ap_rst(ap_rst); grp_pool_write_fu_405->ap_start(grp_pool_write_fu_405_ap_start); grp_pool_write_fu_405->ap_done(grp_pool_write_fu_405_ap_done); grp_pool_write_fu_405->ap_idle(grp_pool_write_fu_405_ap_idle); grp_pool_write_fu_405->ap_ready(grp_pool_write_fu_405_ap_ready); grp_pool_write_fu_405->ifm_buff0_0_address0(grp_pool_write_fu_405_ifm_buff0_0_address0); grp_pool_write_fu_405->ifm_buff0_0_ce0(grp_pool_write_fu_405_ifm_buff0_0_ce0); grp_pool_write_fu_405->ifm_buff0_0_q0(grp_pool_write_fu_405_ifm_buff0_0_q0); grp_pool_write_fu_405->ifm_buff0_0_address1(grp_pool_write_fu_405_ifm_buff0_0_address1); grp_pool_write_fu_405->ifm_buff0_0_ce1(grp_pool_write_fu_405_ifm_buff0_0_ce1); grp_pool_write_fu_405->ifm_buff0_0_q1(grp_pool_write_fu_405_ifm_buff0_0_q1); grp_pool_write_fu_405->ifm_buff0_1_address0(grp_pool_write_fu_405_ifm_buff0_1_address0); grp_pool_write_fu_405->ifm_buff0_1_ce0(grp_pool_write_fu_405_ifm_buff0_1_ce0); grp_pool_write_fu_405->ifm_buff0_1_q0(grp_pool_write_fu_405_ifm_buff0_1_q0); grp_pool_write_fu_405->ifm_buff0_1_address1(grp_pool_write_fu_405_ifm_buff0_1_address1); grp_pool_write_fu_405->ifm_buff0_1_ce1(grp_pool_write_fu_405_ifm_buff0_1_ce1); grp_pool_write_fu_405->ifm_buff0_1_q1(grp_pool_write_fu_405_ifm_buff0_1_q1); grp_pool_write_fu_405->ifm_buff0_2_address0(grp_pool_write_fu_405_ifm_buff0_2_address0); grp_pool_write_fu_405->ifm_buff0_2_ce0(grp_pool_write_fu_405_ifm_buff0_2_ce0); grp_pool_write_fu_405->ifm_buff0_2_q0(grp_pool_write_fu_405_ifm_buff0_2_q0); grp_pool_write_fu_405->ifm_buff0_2_address1(grp_pool_write_fu_405_ifm_buff0_2_address1); grp_pool_write_fu_405->ifm_buff0_2_ce1(grp_pool_write_fu_405_ifm_buff0_2_ce1); grp_pool_write_fu_405->ifm_buff0_2_q1(grp_pool_write_fu_405_ifm_buff0_2_q1); grp_pool_write_fu_405->ifm_buff0_3_address0(grp_pool_write_fu_405_ifm_buff0_3_address0); grp_pool_write_fu_405->ifm_buff0_3_ce0(grp_pool_write_fu_405_ifm_buff0_3_ce0); grp_pool_write_fu_405->ifm_buff0_3_q0(grp_pool_write_fu_405_ifm_buff0_3_q0); grp_pool_write_fu_405->ifm_buff0_3_address1(grp_pool_write_fu_405_ifm_buff0_3_address1); grp_pool_write_fu_405->ifm_buff0_3_ce1(grp_pool_write_fu_405_ifm_buff0_3_ce1); grp_pool_write_fu_405->ifm_buff0_3_q1(grp_pool_write_fu_405_ifm_buff0_3_q1); grp_pool_write_fu_405->ifm_buff0_4_address0(grp_pool_write_fu_405_ifm_buff0_4_address0); grp_pool_write_fu_405->ifm_buff0_4_ce0(grp_pool_write_fu_405_ifm_buff0_4_ce0); grp_pool_write_fu_405->ifm_buff0_4_q0(grp_pool_write_fu_405_ifm_buff0_4_q0); grp_pool_write_fu_405->ifm_buff0_4_address1(grp_pool_write_fu_405_ifm_buff0_4_address1); grp_pool_write_fu_405->ifm_buff0_4_ce1(grp_pool_write_fu_405_ifm_buff0_4_ce1); grp_pool_write_fu_405->ifm_buff0_4_q1(grp_pool_write_fu_405_ifm_buff0_4_q1); grp_pool_write_fu_405->ifm_buff0_5_address0(grp_pool_write_fu_405_ifm_buff0_5_address0); grp_pool_write_fu_405->ifm_buff0_5_ce0(grp_pool_write_fu_405_ifm_buff0_5_ce0); grp_pool_write_fu_405->ifm_buff0_5_q0(grp_pool_write_fu_405_ifm_buff0_5_q0); grp_pool_write_fu_405->ifm_buff0_5_address1(grp_pool_write_fu_405_ifm_buff0_5_address1); grp_pool_write_fu_405->ifm_buff0_5_ce1(grp_pool_write_fu_405_ifm_buff0_5_ce1); grp_pool_write_fu_405->ifm_buff0_5_q1(grp_pool_write_fu_405_ifm_buff0_5_q1); grp_pool_write_fu_405->ifm_buff0_6_address0(grp_pool_write_fu_405_ifm_buff0_6_address0); grp_pool_write_fu_405->ifm_buff0_6_ce0(grp_pool_write_fu_405_ifm_buff0_6_ce0); grp_pool_write_fu_405->ifm_buff0_6_q0(grp_pool_write_fu_405_ifm_buff0_6_q0); grp_pool_write_fu_405->ifm_buff0_6_address1(grp_pool_write_fu_405_ifm_buff0_6_address1); grp_pool_write_fu_405->ifm_buff0_6_ce1(grp_pool_write_fu_405_ifm_buff0_6_ce1); grp_pool_write_fu_405->ifm_buff0_6_q1(grp_pool_write_fu_405_ifm_buff0_6_q1); grp_pool_write_fu_405->ifm_buff0_7_address0(grp_pool_write_fu_405_ifm_buff0_7_address0); grp_pool_write_fu_405->ifm_buff0_7_ce0(grp_pool_write_fu_405_ifm_buff0_7_ce0); grp_pool_write_fu_405->ifm_buff0_7_q0(grp_pool_write_fu_405_ifm_buff0_7_q0); grp_pool_write_fu_405->ifm_buff0_7_address1(grp_pool_write_fu_405_ifm_buff0_7_address1); grp_pool_write_fu_405->ifm_buff0_7_ce1(grp_pool_write_fu_405_ifm_buff0_7_ce1); grp_pool_write_fu_405->ifm_buff0_7_q1(grp_pool_write_fu_405_ifm_buff0_7_q1); grp_pool_write_fu_405->ifm_buff0_8_address0(grp_pool_write_fu_405_ifm_buff0_8_address0); grp_pool_write_fu_405->ifm_buff0_8_ce0(grp_pool_write_fu_405_ifm_buff0_8_ce0); grp_pool_write_fu_405->ifm_buff0_8_q0(grp_pool_write_fu_405_ifm_buff0_8_q0); grp_pool_write_fu_405->ifm_buff0_8_address1(grp_pool_write_fu_405_ifm_buff0_8_address1); grp_pool_write_fu_405->ifm_buff0_8_ce1(grp_pool_write_fu_405_ifm_buff0_8_ce1); grp_pool_write_fu_405->ifm_buff0_8_q1(grp_pool_write_fu_405_ifm_buff0_8_q1); grp_pool_write_fu_405->ifm_buff0_9_address0(grp_pool_write_fu_405_ifm_buff0_9_address0); grp_pool_write_fu_405->ifm_buff0_9_ce0(grp_pool_write_fu_405_ifm_buff0_9_ce0); grp_pool_write_fu_405->ifm_buff0_9_q0(grp_pool_write_fu_405_ifm_buff0_9_q0); grp_pool_write_fu_405->ifm_buff0_9_address1(grp_pool_write_fu_405_ifm_buff0_9_address1); grp_pool_write_fu_405->ifm_buff0_9_ce1(grp_pool_write_fu_405_ifm_buff0_9_ce1); grp_pool_write_fu_405->ifm_buff0_9_q1(grp_pool_write_fu_405_ifm_buff0_9_q1); grp_pool_write_fu_405->ifm_buff0_10_address0(grp_pool_write_fu_405_ifm_buff0_10_address0); grp_pool_write_fu_405->ifm_buff0_10_ce0(grp_pool_write_fu_405_ifm_buff0_10_ce0); grp_pool_write_fu_405->ifm_buff0_10_q0(grp_pool_write_fu_405_ifm_buff0_10_q0); grp_pool_write_fu_405->ifm_buff0_10_address1(grp_pool_write_fu_405_ifm_buff0_10_address1); grp_pool_write_fu_405->ifm_buff0_10_ce1(grp_pool_write_fu_405_ifm_buff0_10_ce1); grp_pool_write_fu_405->ifm_buff0_10_q1(grp_pool_write_fu_405_ifm_buff0_10_q1); grp_pool_write_fu_405->ifm_buff0_11_address0(grp_pool_write_fu_405_ifm_buff0_11_address0); grp_pool_write_fu_405->ifm_buff0_11_ce0(grp_pool_write_fu_405_ifm_buff0_11_ce0); grp_pool_write_fu_405->ifm_buff0_11_q0(grp_pool_write_fu_405_ifm_buff0_11_q0); grp_pool_write_fu_405->ifm_buff0_11_address1(grp_pool_write_fu_405_ifm_buff0_11_address1); grp_pool_write_fu_405->ifm_buff0_11_ce1(grp_pool_write_fu_405_ifm_buff0_11_ce1); grp_pool_write_fu_405->ifm_buff0_11_q1(grp_pool_write_fu_405_ifm_buff0_11_q1); grp_pool_write_fu_405->ifm_buff0_12_address0(grp_pool_write_fu_405_ifm_buff0_12_address0); grp_pool_write_fu_405->ifm_buff0_12_ce0(grp_pool_write_fu_405_ifm_buff0_12_ce0); grp_pool_write_fu_405->ifm_buff0_12_q0(grp_pool_write_fu_405_ifm_buff0_12_q0); grp_pool_write_fu_405->ifm_buff0_12_address1(grp_pool_write_fu_405_ifm_buff0_12_address1); grp_pool_write_fu_405->ifm_buff0_12_ce1(grp_pool_write_fu_405_ifm_buff0_12_ce1); grp_pool_write_fu_405->ifm_buff0_12_q1(grp_pool_write_fu_405_ifm_buff0_12_q1); grp_pool_write_fu_405->ifm_buff0_13_address0(grp_pool_write_fu_405_ifm_buff0_13_address0); grp_pool_write_fu_405->ifm_buff0_13_ce0(grp_pool_write_fu_405_ifm_buff0_13_ce0); grp_pool_write_fu_405->ifm_buff0_13_q0(grp_pool_write_fu_405_ifm_buff0_13_q0); grp_pool_write_fu_405->ifm_buff0_13_address1(grp_pool_write_fu_405_ifm_buff0_13_address1); grp_pool_write_fu_405->ifm_buff0_13_ce1(grp_pool_write_fu_405_ifm_buff0_13_ce1); grp_pool_write_fu_405->ifm_buff0_13_q1(grp_pool_write_fu_405_ifm_buff0_13_q1); grp_pool_write_fu_405->ifm_buff0_14_address0(grp_pool_write_fu_405_ifm_buff0_14_address0); grp_pool_write_fu_405->ifm_buff0_14_ce0(grp_pool_write_fu_405_ifm_buff0_14_ce0); grp_pool_write_fu_405->ifm_buff0_14_q0(grp_pool_write_fu_405_ifm_buff0_14_q0); grp_pool_write_fu_405->ifm_buff0_14_address1(grp_pool_write_fu_405_ifm_buff0_14_address1); grp_pool_write_fu_405->ifm_buff0_14_ce1(grp_pool_write_fu_405_ifm_buff0_14_ce1); grp_pool_write_fu_405->ifm_buff0_14_q1(grp_pool_write_fu_405_ifm_buff0_14_q1); grp_pool_write_fu_405->ifm_buff0_15_address0(grp_pool_write_fu_405_ifm_buff0_15_address0); grp_pool_write_fu_405->ifm_buff0_15_ce0(grp_pool_write_fu_405_ifm_buff0_15_ce0); grp_pool_write_fu_405->ifm_buff0_15_q0(grp_pool_write_fu_405_ifm_buff0_15_q0); grp_pool_write_fu_405->ifm_buff0_15_address1(grp_pool_write_fu_405_ifm_buff0_15_address1); grp_pool_write_fu_405->ifm_buff0_15_ce1(grp_pool_write_fu_405_ifm_buff0_15_ce1); grp_pool_write_fu_405->ifm_buff0_15_q1(grp_pool_write_fu_405_ifm_buff0_15_q1); grp_pool_write_fu_405->ifm_buff1_0_address0(grp_pool_write_fu_405_ifm_buff1_0_address0); grp_pool_write_fu_405->ifm_buff1_0_ce0(grp_pool_write_fu_405_ifm_buff1_0_ce0); grp_pool_write_fu_405->ifm_buff1_0_q0(grp_pool_write_fu_405_ifm_buff1_0_q0); grp_pool_write_fu_405->ifm_buff1_0_address1(grp_pool_write_fu_405_ifm_buff1_0_address1); grp_pool_write_fu_405->ifm_buff1_0_ce1(grp_pool_write_fu_405_ifm_buff1_0_ce1); grp_pool_write_fu_405->ifm_buff1_0_q1(grp_pool_write_fu_405_ifm_buff1_0_q1); grp_pool_write_fu_405->ifm_buff1_1_address0(grp_pool_write_fu_405_ifm_buff1_1_address0); grp_pool_write_fu_405->ifm_buff1_1_ce0(grp_pool_write_fu_405_ifm_buff1_1_ce0); grp_pool_write_fu_405->ifm_buff1_1_q0(grp_pool_write_fu_405_ifm_buff1_1_q0); grp_pool_write_fu_405->ifm_buff1_1_address1(grp_pool_write_fu_405_ifm_buff1_1_address1); grp_pool_write_fu_405->ifm_buff1_1_ce1(grp_pool_write_fu_405_ifm_buff1_1_ce1); grp_pool_write_fu_405->ifm_buff1_1_q1(grp_pool_write_fu_405_ifm_buff1_1_q1); grp_pool_write_fu_405->ifm_buff1_2_address0(grp_pool_write_fu_405_ifm_buff1_2_address0); grp_pool_write_fu_405->ifm_buff1_2_ce0(grp_pool_write_fu_405_ifm_buff1_2_ce0); grp_pool_write_fu_405->ifm_buff1_2_q0(grp_pool_write_fu_405_ifm_buff1_2_q0); grp_pool_write_fu_405->ifm_buff1_2_address1(grp_pool_write_fu_405_ifm_buff1_2_address1); grp_pool_write_fu_405->ifm_buff1_2_ce1(grp_pool_write_fu_405_ifm_buff1_2_ce1); grp_pool_write_fu_405->ifm_buff1_2_q1(grp_pool_write_fu_405_ifm_buff1_2_q1); grp_pool_write_fu_405->ifm_buff1_3_address0(grp_pool_write_fu_405_ifm_buff1_3_address0); grp_pool_write_fu_405->ifm_buff1_3_ce0(grp_pool_write_fu_405_ifm_buff1_3_ce0); grp_pool_write_fu_405->ifm_buff1_3_q0(grp_pool_write_fu_405_ifm_buff1_3_q0); grp_pool_write_fu_405->ifm_buff1_3_address1(grp_pool_write_fu_405_ifm_buff1_3_address1); grp_pool_write_fu_405->ifm_buff1_3_ce1(grp_pool_write_fu_405_ifm_buff1_3_ce1); grp_pool_write_fu_405->ifm_buff1_3_q1(grp_pool_write_fu_405_ifm_buff1_3_q1); grp_pool_write_fu_405->ifm_buff1_4_address0(grp_pool_write_fu_405_ifm_buff1_4_address0); grp_pool_write_fu_405->ifm_buff1_4_ce0(grp_pool_write_fu_405_ifm_buff1_4_ce0); grp_pool_write_fu_405->ifm_buff1_4_q0(grp_pool_write_fu_405_ifm_buff1_4_q0); grp_pool_write_fu_405->ifm_buff1_4_address1(grp_pool_write_fu_405_ifm_buff1_4_address1); grp_pool_write_fu_405->ifm_buff1_4_ce1(grp_pool_write_fu_405_ifm_buff1_4_ce1); grp_pool_write_fu_405->ifm_buff1_4_q1(grp_pool_write_fu_405_ifm_buff1_4_q1); grp_pool_write_fu_405->ifm_buff1_5_address0(grp_pool_write_fu_405_ifm_buff1_5_address0); grp_pool_write_fu_405->ifm_buff1_5_ce0(grp_pool_write_fu_405_ifm_buff1_5_ce0); grp_pool_write_fu_405->ifm_buff1_5_q0(grp_pool_write_fu_405_ifm_buff1_5_q0); grp_pool_write_fu_405->ifm_buff1_5_address1(grp_pool_write_fu_405_ifm_buff1_5_address1); grp_pool_write_fu_405->ifm_buff1_5_ce1(grp_pool_write_fu_405_ifm_buff1_5_ce1); grp_pool_write_fu_405->ifm_buff1_5_q1(grp_pool_write_fu_405_ifm_buff1_5_q1); grp_pool_write_fu_405->ifm_buff1_6_address0(grp_pool_write_fu_405_ifm_buff1_6_address0); grp_pool_write_fu_405->ifm_buff1_6_ce0(grp_pool_write_fu_405_ifm_buff1_6_ce0); grp_pool_write_fu_405->ifm_buff1_6_q0(grp_pool_write_fu_405_ifm_buff1_6_q0); grp_pool_write_fu_405->ifm_buff1_6_address1(grp_pool_write_fu_405_ifm_buff1_6_address1); grp_pool_write_fu_405->ifm_buff1_6_ce1(grp_pool_write_fu_405_ifm_buff1_6_ce1); grp_pool_write_fu_405->ifm_buff1_6_q1(grp_pool_write_fu_405_ifm_buff1_6_q1); grp_pool_write_fu_405->ifm_buff1_7_address0(grp_pool_write_fu_405_ifm_buff1_7_address0); grp_pool_write_fu_405->ifm_buff1_7_ce0(grp_pool_write_fu_405_ifm_buff1_7_ce0); grp_pool_write_fu_405->ifm_buff1_7_q0(grp_pool_write_fu_405_ifm_buff1_7_q0); grp_pool_write_fu_405->ifm_buff1_7_address1(grp_pool_write_fu_405_ifm_buff1_7_address1); grp_pool_write_fu_405->ifm_buff1_7_ce1(grp_pool_write_fu_405_ifm_buff1_7_ce1); grp_pool_write_fu_405->ifm_buff1_7_q1(grp_pool_write_fu_405_ifm_buff1_7_q1); grp_pool_write_fu_405->ifm_buff1_8_address0(grp_pool_write_fu_405_ifm_buff1_8_address0); grp_pool_write_fu_405->ifm_buff1_8_ce0(grp_pool_write_fu_405_ifm_buff1_8_ce0); grp_pool_write_fu_405->ifm_buff1_8_q0(grp_pool_write_fu_405_ifm_buff1_8_q0); grp_pool_write_fu_405->ifm_buff1_8_address1(grp_pool_write_fu_405_ifm_buff1_8_address1); grp_pool_write_fu_405->ifm_buff1_8_ce1(grp_pool_write_fu_405_ifm_buff1_8_ce1); grp_pool_write_fu_405->ifm_buff1_8_q1(grp_pool_write_fu_405_ifm_buff1_8_q1); grp_pool_write_fu_405->ifm_buff1_9_address0(grp_pool_write_fu_405_ifm_buff1_9_address0); grp_pool_write_fu_405->ifm_buff1_9_ce0(grp_pool_write_fu_405_ifm_buff1_9_ce0); grp_pool_write_fu_405->ifm_buff1_9_q0(grp_pool_write_fu_405_ifm_buff1_9_q0); grp_pool_write_fu_405->ifm_buff1_9_address1(grp_pool_write_fu_405_ifm_buff1_9_address1); grp_pool_write_fu_405->ifm_buff1_9_ce1(grp_pool_write_fu_405_ifm_buff1_9_ce1); grp_pool_write_fu_405->ifm_buff1_9_q1(grp_pool_write_fu_405_ifm_buff1_9_q1); grp_pool_write_fu_405->ifm_buff1_10_address0(grp_pool_write_fu_405_ifm_buff1_10_address0); grp_pool_write_fu_405->ifm_buff1_10_ce0(grp_pool_write_fu_405_ifm_buff1_10_ce0); grp_pool_write_fu_405->ifm_buff1_10_q0(grp_pool_write_fu_405_ifm_buff1_10_q0); grp_pool_write_fu_405->ifm_buff1_10_address1(grp_pool_write_fu_405_ifm_buff1_10_address1); grp_pool_write_fu_405->ifm_buff1_10_ce1(grp_pool_write_fu_405_ifm_buff1_10_ce1); grp_pool_write_fu_405->ifm_buff1_10_q1(grp_pool_write_fu_405_ifm_buff1_10_q1); grp_pool_write_fu_405->ifm_buff1_11_address0(grp_pool_write_fu_405_ifm_buff1_11_address0); grp_pool_write_fu_405->ifm_buff1_11_ce0(grp_pool_write_fu_405_ifm_buff1_11_ce0); grp_pool_write_fu_405->ifm_buff1_11_q0(grp_pool_write_fu_405_ifm_buff1_11_q0); grp_pool_write_fu_405->ifm_buff1_11_address1(grp_pool_write_fu_405_ifm_buff1_11_address1); grp_pool_write_fu_405->ifm_buff1_11_ce1(grp_pool_write_fu_405_ifm_buff1_11_ce1); grp_pool_write_fu_405->ifm_buff1_11_q1(grp_pool_write_fu_405_ifm_buff1_11_q1); grp_pool_write_fu_405->ifm_buff1_12_address0(grp_pool_write_fu_405_ifm_buff1_12_address0); grp_pool_write_fu_405->ifm_buff1_12_ce0(grp_pool_write_fu_405_ifm_buff1_12_ce0); grp_pool_write_fu_405->ifm_buff1_12_q0(grp_pool_write_fu_405_ifm_buff1_12_q0); grp_pool_write_fu_405->ifm_buff1_12_address1(grp_pool_write_fu_405_ifm_buff1_12_address1); grp_pool_write_fu_405->ifm_buff1_12_ce1(grp_pool_write_fu_405_ifm_buff1_12_ce1); grp_pool_write_fu_405->ifm_buff1_12_q1(grp_pool_write_fu_405_ifm_buff1_12_q1); grp_pool_write_fu_405->ifm_buff1_13_address0(grp_pool_write_fu_405_ifm_buff1_13_address0); grp_pool_write_fu_405->ifm_buff1_13_ce0(grp_pool_write_fu_405_ifm_buff1_13_ce0); grp_pool_write_fu_405->ifm_buff1_13_q0(grp_pool_write_fu_405_ifm_buff1_13_q0); grp_pool_write_fu_405->ifm_buff1_13_address1(grp_pool_write_fu_405_ifm_buff1_13_address1); grp_pool_write_fu_405->ifm_buff1_13_ce1(grp_pool_write_fu_405_ifm_buff1_13_ce1); grp_pool_write_fu_405->ifm_buff1_13_q1(grp_pool_write_fu_405_ifm_buff1_13_q1); grp_pool_write_fu_405->ifm_buff1_14_address0(grp_pool_write_fu_405_ifm_buff1_14_address0); grp_pool_write_fu_405->ifm_buff1_14_ce0(grp_pool_write_fu_405_ifm_buff1_14_ce0); grp_pool_write_fu_405->ifm_buff1_14_q0(grp_pool_write_fu_405_ifm_buff1_14_q0); grp_pool_write_fu_405->ifm_buff1_14_address1(grp_pool_write_fu_405_ifm_buff1_14_address1); grp_pool_write_fu_405->ifm_buff1_14_ce1(grp_pool_write_fu_405_ifm_buff1_14_ce1); grp_pool_write_fu_405->ifm_buff1_14_q1(grp_pool_write_fu_405_ifm_buff1_14_q1); grp_pool_write_fu_405->ifm_buff1_15_address0(grp_pool_write_fu_405_ifm_buff1_15_address0); grp_pool_write_fu_405->ifm_buff1_15_ce0(grp_pool_write_fu_405_ifm_buff1_15_ce0); grp_pool_write_fu_405->ifm_buff1_15_q0(grp_pool_write_fu_405_ifm_buff1_15_q0); grp_pool_write_fu_405->ifm_buff1_15_address1(grp_pool_write_fu_405_ifm_buff1_15_address1); grp_pool_write_fu_405->ifm_buff1_15_ce1(grp_pool_write_fu_405_ifm_buff1_15_ce1); grp_pool_write_fu_405->ifm_buff1_15_q1(grp_pool_write_fu_405_ifm_buff1_15_q1); grp_pool_write_fu_405->ofm_buff0_0_address0(grp_pool_write_fu_405_ofm_buff0_0_address0); grp_pool_write_fu_405->ofm_buff0_0_ce0(grp_pool_write_fu_405_ofm_buff0_0_ce0); grp_pool_write_fu_405->ofm_buff0_0_we0(grp_pool_write_fu_405_ofm_buff0_0_we0); grp_pool_write_fu_405->ofm_buff0_0_d0(grp_pool_write_fu_405_ofm_buff0_0_d0); grp_pool_write_fu_405->ofm_buff0_1_address0(grp_pool_write_fu_405_ofm_buff0_1_address0); grp_pool_write_fu_405->ofm_buff0_1_ce0(grp_pool_write_fu_405_ofm_buff0_1_ce0); grp_pool_write_fu_405->ofm_buff0_1_we0(grp_pool_write_fu_405_ofm_buff0_1_we0); grp_pool_write_fu_405->ofm_buff0_1_d0(grp_pool_write_fu_405_ofm_buff0_1_d0); grp_pool_write_fu_405->ofm_buff0_2_address0(grp_pool_write_fu_405_ofm_buff0_2_address0); grp_pool_write_fu_405->ofm_buff0_2_ce0(grp_pool_write_fu_405_ofm_buff0_2_ce0); grp_pool_write_fu_405->ofm_buff0_2_we0(grp_pool_write_fu_405_ofm_buff0_2_we0); grp_pool_write_fu_405->ofm_buff0_2_d0(grp_pool_write_fu_405_ofm_buff0_2_d0); grp_pool_write_fu_405->ofm_buff0_3_address0(grp_pool_write_fu_405_ofm_buff0_3_address0); grp_pool_write_fu_405->ofm_buff0_3_ce0(grp_pool_write_fu_405_ofm_buff0_3_ce0); grp_pool_write_fu_405->ofm_buff0_3_we0(grp_pool_write_fu_405_ofm_buff0_3_we0); grp_pool_write_fu_405->ofm_buff0_3_d0(grp_pool_write_fu_405_ofm_buff0_3_d0); grp_pool_write_fu_405->ofm_buff0_4_address0(grp_pool_write_fu_405_ofm_buff0_4_address0); grp_pool_write_fu_405->ofm_buff0_4_ce0(grp_pool_write_fu_405_ofm_buff0_4_ce0); grp_pool_write_fu_405->ofm_buff0_4_we0(grp_pool_write_fu_405_ofm_buff0_4_we0); grp_pool_write_fu_405->ofm_buff0_4_d0(grp_pool_write_fu_405_ofm_buff0_4_d0); grp_pool_write_fu_405->ofm_buff0_5_address0(grp_pool_write_fu_405_ofm_buff0_5_address0); grp_pool_write_fu_405->ofm_buff0_5_ce0(grp_pool_write_fu_405_ofm_buff0_5_ce0); grp_pool_write_fu_405->ofm_buff0_5_we0(grp_pool_write_fu_405_ofm_buff0_5_we0); grp_pool_write_fu_405->ofm_buff0_5_d0(grp_pool_write_fu_405_ofm_buff0_5_d0); grp_pool_write_fu_405->ofm_buff0_6_address0(grp_pool_write_fu_405_ofm_buff0_6_address0); grp_pool_write_fu_405->ofm_buff0_6_ce0(grp_pool_write_fu_405_ofm_buff0_6_ce0); grp_pool_write_fu_405->ofm_buff0_6_we0(grp_pool_write_fu_405_ofm_buff0_6_we0); grp_pool_write_fu_405->ofm_buff0_6_d0(grp_pool_write_fu_405_ofm_buff0_6_d0); grp_pool_write_fu_405->ofm_buff0_7_address0(grp_pool_write_fu_405_ofm_buff0_7_address0); grp_pool_write_fu_405->ofm_buff0_7_ce0(grp_pool_write_fu_405_ofm_buff0_7_ce0); grp_pool_write_fu_405->ofm_buff0_7_we0(grp_pool_write_fu_405_ofm_buff0_7_we0); grp_pool_write_fu_405->ofm_buff0_7_d0(grp_pool_write_fu_405_ofm_buff0_7_d0); grp_pool_write_fu_405->ofm_buff0_8_address0(grp_pool_write_fu_405_ofm_buff0_8_address0); grp_pool_write_fu_405->ofm_buff0_8_ce0(grp_pool_write_fu_405_ofm_buff0_8_ce0); grp_pool_write_fu_405->ofm_buff0_8_we0(grp_pool_write_fu_405_ofm_buff0_8_we0); grp_pool_write_fu_405->ofm_buff0_8_d0(grp_pool_write_fu_405_ofm_buff0_8_d0); grp_pool_write_fu_405->ofm_buff0_9_address0(grp_pool_write_fu_405_ofm_buff0_9_address0); grp_pool_write_fu_405->ofm_buff0_9_ce0(grp_pool_write_fu_405_ofm_buff0_9_ce0); grp_pool_write_fu_405->ofm_buff0_9_we0(grp_pool_write_fu_405_ofm_buff0_9_we0); grp_pool_write_fu_405->ofm_buff0_9_d0(grp_pool_write_fu_405_ofm_buff0_9_d0); grp_pool_write_fu_405->ofm_buff0_10_address0(grp_pool_write_fu_405_ofm_buff0_10_address0); grp_pool_write_fu_405->ofm_buff0_10_ce0(grp_pool_write_fu_405_ofm_buff0_10_ce0); grp_pool_write_fu_405->ofm_buff0_10_we0(grp_pool_write_fu_405_ofm_buff0_10_we0); grp_pool_write_fu_405->ofm_buff0_10_d0(grp_pool_write_fu_405_ofm_buff0_10_d0); grp_pool_write_fu_405->ofm_buff0_11_address0(grp_pool_write_fu_405_ofm_buff0_11_address0); grp_pool_write_fu_405->ofm_buff0_11_ce0(grp_pool_write_fu_405_ofm_buff0_11_ce0); grp_pool_write_fu_405->ofm_buff0_11_we0(grp_pool_write_fu_405_ofm_buff0_11_we0); grp_pool_write_fu_405->ofm_buff0_11_d0(grp_pool_write_fu_405_ofm_buff0_11_d0); grp_pool_write_fu_405->ofm_buff0_12_address0(grp_pool_write_fu_405_ofm_buff0_12_address0); grp_pool_write_fu_405->ofm_buff0_12_ce0(grp_pool_write_fu_405_ofm_buff0_12_ce0); grp_pool_write_fu_405->ofm_buff0_12_we0(grp_pool_write_fu_405_ofm_buff0_12_we0); grp_pool_write_fu_405->ofm_buff0_12_d0(grp_pool_write_fu_405_ofm_buff0_12_d0); grp_pool_write_fu_405->ofm_buff0_13_address0(grp_pool_write_fu_405_ofm_buff0_13_address0); grp_pool_write_fu_405->ofm_buff0_13_ce0(grp_pool_write_fu_405_ofm_buff0_13_ce0); grp_pool_write_fu_405->ofm_buff0_13_we0(grp_pool_write_fu_405_ofm_buff0_13_we0); grp_pool_write_fu_405->ofm_buff0_13_d0(grp_pool_write_fu_405_ofm_buff0_13_d0); grp_pool_write_fu_405->ofm_buff0_14_address0(grp_pool_write_fu_405_ofm_buff0_14_address0); grp_pool_write_fu_405->ofm_buff0_14_ce0(grp_pool_write_fu_405_ofm_buff0_14_ce0); grp_pool_write_fu_405->ofm_buff0_14_we0(grp_pool_write_fu_405_ofm_buff0_14_we0); grp_pool_write_fu_405->ofm_buff0_14_d0(grp_pool_write_fu_405_ofm_buff0_14_d0); grp_pool_write_fu_405->ofm_buff0_15_address0(grp_pool_write_fu_405_ofm_buff0_15_address0); grp_pool_write_fu_405->ofm_buff0_15_ce0(grp_pool_write_fu_405_ofm_buff0_15_ce0); grp_pool_write_fu_405->ofm_buff0_15_we0(grp_pool_write_fu_405_ofm_buff0_15_we0); grp_pool_write_fu_405->ofm_buff0_15_d0(grp_pool_write_fu_405_ofm_buff0_15_d0); grp_conv_read_fu_457 = new conv_read("grp_conv_read_fu_457"); grp_conv_read_fu_457->ap_clk(ap_clk); grp_conv_read_fu_457->ap_rst(ap_rst); grp_conv_read_fu_457->ap_start(grp_conv_read_fu_457_ap_start); grp_conv_read_fu_457->ap_done(grp_conv_read_fu_457_ap_done); grp_conv_read_fu_457->ap_idle(grp_conv_read_fu_457_ap_idle); grp_conv_read_fu_457->ap_ready(grp_conv_read_fu_457_ap_ready); grp_conv_read_fu_457->cofm_TDATA(grp_conv_read_fu_457_cofm_TDATA); grp_conv_read_fu_457->cofm_TVALID(grp_conv_read_fu_457_cofm_TVALID); grp_conv_read_fu_457->cofm_TREADY(grp_conv_read_fu_457_cofm_TREADY); grp_conv_read_fu_457->ofm_buff0_0_address0(grp_conv_read_fu_457_ofm_buff0_0_address0); grp_conv_read_fu_457->ofm_buff0_0_ce0(grp_conv_read_fu_457_ofm_buff0_0_ce0); grp_conv_read_fu_457->ofm_buff0_0_q0(grp_conv_read_fu_457_ofm_buff0_0_q0); grp_conv_read_fu_457->ofm_buff0_1_address0(grp_conv_read_fu_457_ofm_buff0_1_address0); grp_conv_read_fu_457->ofm_buff0_1_ce0(grp_conv_read_fu_457_ofm_buff0_1_ce0); grp_conv_read_fu_457->ofm_buff0_1_q0(grp_conv_read_fu_457_ofm_buff0_1_q0); grp_conv_read_fu_457->ofm_buff0_2_address0(grp_conv_read_fu_457_ofm_buff0_2_address0); grp_conv_read_fu_457->ofm_buff0_2_ce0(grp_conv_read_fu_457_ofm_buff0_2_ce0); grp_conv_read_fu_457->ofm_buff0_2_q0(grp_conv_read_fu_457_ofm_buff0_2_q0); grp_conv_read_fu_457->ofm_buff0_3_address0(grp_conv_read_fu_457_ofm_buff0_3_address0); grp_conv_read_fu_457->ofm_buff0_3_ce0(grp_conv_read_fu_457_ofm_buff0_3_ce0); grp_conv_read_fu_457->ofm_buff0_3_q0(grp_conv_read_fu_457_ofm_buff0_3_q0); grp_conv_read_fu_457->ofm_buff0_4_address0(grp_conv_read_fu_457_ofm_buff0_4_address0); grp_conv_read_fu_457->ofm_buff0_4_ce0(grp_conv_read_fu_457_ofm_buff0_4_ce0); grp_conv_read_fu_457->ofm_buff0_4_q0(grp_conv_read_fu_457_ofm_buff0_4_q0); grp_conv_read_fu_457->ofm_buff0_5_address0(grp_conv_read_fu_457_ofm_buff0_5_address0); grp_conv_read_fu_457->ofm_buff0_5_ce0(grp_conv_read_fu_457_ofm_buff0_5_ce0); grp_conv_read_fu_457->ofm_buff0_5_q0(grp_conv_read_fu_457_ofm_buff0_5_q0); grp_conv_read_fu_457->ofm_buff0_6_address0(grp_conv_read_fu_457_ofm_buff0_6_address0); grp_conv_read_fu_457->ofm_buff0_6_ce0(grp_conv_read_fu_457_ofm_buff0_6_ce0); grp_conv_read_fu_457->ofm_buff0_6_q0(grp_conv_read_fu_457_ofm_buff0_6_q0); grp_conv_read_fu_457->ofm_buff0_7_address0(grp_conv_read_fu_457_ofm_buff0_7_address0); grp_conv_read_fu_457->ofm_buff0_7_ce0(grp_conv_read_fu_457_ofm_buff0_7_ce0); grp_conv_read_fu_457->ofm_buff0_7_q0(grp_conv_read_fu_457_ofm_buff0_7_q0); grp_conv_read_fu_457->ofm_buff0_8_address0(grp_conv_read_fu_457_ofm_buff0_8_address0); grp_conv_read_fu_457->ofm_buff0_8_ce0(grp_conv_read_fu_457_ofm_buff0_8_ce0); grp_conv_read_fu_457->ofm_buff0_8_q0(grp_conv_read_fu_457_ofm_buff0_8_q0); grp_conv_read_fu_457->ofm_buff0_9_address0(grp_conv_read_fu_457_ofm_buff0_9_address0); grp_conv_read_fu_457->ofm_buff0_9_ce0(grp_conv_read_fu_457_ofm_buff0_9_ce0); grp_conv_read_fu_457->ofm_buff0_9_q0(grp_conv_read_fu_457_ofm_buff0_9_q0); grp_conv_read_fu_457->ofm_buff0_10_address0(grp_conv_read_fu_457_ofm_buff0_10_address0); grp_conv_read_fu_457->ofm_buff0_10_ce0(grp_conv_read_fu_457_ofm_buff0_10_ce0); grp_conv_read_fu_457->ofm_buff0_10_q0(grp_conv_read_fu_457_ofm_buff0_10_q0); grp_conv_read_fu_457->ofm_buff0_11_address0(grp_conv_read_fu_457_ofm_buff0_11_address0); grp_conv_read_fu_457->ofm_buff0_11_ce0(grp_conv_read_fu_457_ofm_buff0_11_ce0); grp_conv_read_fu_457->ofm_buff0_11_q0(grp_conv_read_fu_457_ofm_buff0_11_q0); grp_conv_read_fu_457->ofm_buff0_12_address0(grp_conv_read_fu_457_ofm_buff0_12_address0); grp_conv_read_fu_457->ofm_buff0_12_ce0(grp_conv_read_fu_457_ofm_buff0_12_ce0); grp_conv_read_fu_457->ofm_buff0_12_q0(grp_conv_read_fu_457_ofm_buff0_12_q0); grp_conv_read_fu_457->ofm_buff0_13_address0(grp_conv_read_fu_457_ofm_buff0_13_address0); grp_conv_read_fu_457->ofm_buff0_13_ce0(grp_conv_read_fu_457_ofm_buff0_13_ce0); grp_conv_read_fu_457->ofm_buff0_13_q0(grp_conv_read_fu_457_ofm_buff0_13_q0); grp_conv_read_fu_457->ofm_buff0_14_address0(grp_conv_read_fu_457_ofm_buff0_14_address0); grp_conv_read_fu_457->ofm_buff0_14_ce0(grp_conv_read_fu_457_ofm_buff0_14_ce0); grp_conv_read_fu_457->ofm_buff0_14_q0(grp_conv_read_fu_457_ofm_buff0_14_q0); grp_conv_read_fu_457->ofm_buff0_15_address0(grp_conv_read_fu_457_ofm_buff0_15_address0); grp_conv_read_fu_457->ofm_buff0_15_ce0(grp_conv_read_fu_457_ofm_buff0_15_ce0); grp_conv_read_fu_457->ofm_buff0_15_q0(grp_conv_read_fu_457_ofm_buff0_15_q0); grp_conv_read_fu_457->cofm_counter_read(reg_599); grp_conv_read_fu_457->enable(grp_conv_read_fu_457_enable); grp_conv_read_fu_457->ap_return(grp_conv_read_fu_457_ap_return); grp_write_row_ifm_fu_482 = new write_row_ifm("grp_write_row_ifm_fu_482"); grp_write_row_ifm_fu_482->ap_clk(ap_clk); grp_write_row_ifm_fu_482->ap_rst(ap_rst); grp_write_row_ifm_fu_482->ap_start(grp_write_row_ifm_fu_482_ap_start); grp_write_row_ifm_fu_482->ap_done(grp_write_row_ifm_fu_482_ap_done); grp_write_row_ifm_fu_482->ap_idle(grp_write_row_ifm_fu_482_ap_idle); grp_write_row_ifm_fu_482->ap_ready(grp_write_row_ifm_fu_482_ap_ready); grp_write_row_ifm_fu_482->cifm_TDATA(cifm_TDATA); grp_write_row_ifm_fu_482->cifm_TVALID(cifm_TVALID); grp_write_row_ifm_fu_482->cifm_TREADY(grp_write_row_ifm_fu_482_cifm_TREADY); grp_write_row_ifm_fu_482->ifm_buff0_0_address0(grp_write_row_ifm_fu_482_ifm_buff0_0_address0); grp_write_row_ifm_fu_482->ifm_buff0_0_ce0(grp_write_row_ifm_fu_482_ifm_buff0_0_ce0); grp_write_row_ifm_fu_482->ifm_buff0_0_we0(grp_write_row_ifm_fu_482_ifm_buff0_0_we0); grp_write_row_ifm_fu_482->ifm_buff0_0_d0(grp_write_row_ifm_fu_482_ifm_buff0_0_d0); grp_write_row_ifm_fu_482->ifm_buff0_1_address0(grp_write_row_ifm_fu_482_ifm_buff0_1_address0); grp_write_row_ifm_fu_482->ifm_buff0_1_ce0(grp_write_row_ifm_fu_482_ifm_buff0_1_ce0); grp_write_row_ifm_fu_482->ifm_buff0_1_we0(grp_write_row_ifm_fu_482_ifm_buff0_1_we0); grp_write_row_ifm_fu_482->ifm_buff0_1_d0(grp_write_row_ifm_fu_482_ifm_buff0_1_d0); grp_write_row_ifm_fu_482->ifm_buff0_2_address0(grp_write_row_ifm_fu_482_ifm_buff0_2_address0); grp_write_row_ifm_fu_482->ifm_buff0_2_ce0(grp_write_row_ifm_fu_482_ifm_buff0_2_ce0); grp_write_row_ifm_fu_482->ifm_buff0_2_we0(grp_write_row_ifm_fu_482_ifm_buff0_2_we0); grp_write_row_ifm_fu_482->ifm_buff0_2_d0(grp_write_row_ifm_fu_482_ifm_buff0_2_d0); grp_write_row_ifm_fu_482->ifm_buff0_3_address0(grp_write_row_ifm_fu_482_ifm_buff0_3_address0); grp_write_row_ifm_fu_482->ifm_buff0_3_ce0(grp_write_row_ifm_fu_482_ifm_buff0_3_ce0); grp_write_row_ifm_fu_482->ifm_buff0_3_we0(grp_write_row_ifm_fu_482_ifm_buff0_3_we0); grp_write_row_ifm_fu_482->ifm_buff0_3_d0(grp_write_row_ifm_fu_482_ifm_buff0_3_d0); grp_write_row_ifm_fu_482->ifm_buff0_4_address0(grp_write_row_ifm_fu_482_ifm_buff0_4_address0); grp_write_row_ifm_fu_482->ifm_buff0_4_ce0(grp_write_row_ifm_fu_482_ifm_buff0_4_ce0); grp_write_row_ifm_fu_482->ifm_buff0_4_we0(grp_write_row_ifm_fu_482_ifm_buff0_4_we0); grp_write_row_ifm_fu_482->ifm_buff0_4_d0(grp_write_row_ifm_fu_482_ifm_buff0_4_d0); grp_write_row_ifm_fu_482->ifm_buff0_5_address0(grp_write_row_ifm_fu_482_ifm_buff0_5_address0); grp_write_row_ifm_fu_482->ifm_buff0_5_ce0(grp_write_row_ifm_fu_482_ifm_buff0_5_ce0); grp_write_row_ifm_fu_482->ifm_buff0_5_we0(grp_write_row_ifm_fu_482_ifm_buff0_5_we0); grp_write_row_ifm_fu_482->ifm_buff0_5_d0(grp_write_row_ifm_fu_482_ifm_buff0_5_d0); grp_write_row_ifm_fu_482->ifm_buff0_6_address0(grp_write_row_ifm_fu_482_ifm_buff0_6_address0); grp_write_row_ifm_fu_482->ifm_buff0_6_ce0(grp_write_row_ifm_fu_482_ifm_buff0_6_ce0); grp_write_row_ifm_fu_482->ifm_buff0_6_we0(grp_write_row_ifm_fu_482_ifm_buff0_6_we0); grp_write_row_ifm_fu_482->ifm_buff0_6_d0(grp_write_row_ifm_fu_482_ifm_buff0_6_d0); grp_write_row_ifm_fu_482->ifm_buff0_7_address0(grp_write_row_ifm_fu_482_ifm_buff0_7_address0); grp_write_row_ifm_fu_482->ifm_buff0_7_ce0(grp_write_row_ifm_fu_482_ifm_buff0_7_ce0); grp_write_row_ifm_fu_482->ifm_buff0_7_we0(grp_write_row_ifm_fu_482_ifm_buff0_7_we0); grp_write_row_ifm_fu_482->ifm_buff0_7_d0(grp_write_row_ifm_fu_482_ifm_buff0_7_d0); grp_write_row_ifm_fu_482->ifm_buff0_8_address0(grp_write_row_ifm_fu_482_ifm_buff0_8_address0); grp_write_row_ifm_fu_482->ifm_buff0_8_ce0(grp_write_row_ifm_fu_482_ifm_buff0_8_ce0); grp_write_row_ifm_fu_482->ifm_buff0_8_we0(grp_write_row_ifm_fu_482_ifm_buff0_8_we0); grp_write_row_ifm_fu_482->ifm_buff0_8_d0(grp_write_row_ifm_fu_482_ifm_buff0_8_d0); grp_write_row_ifm_fu_482->ifm_buff0_9_address0(grp_write_row_ifm_fu_482_ifm_buff0_9_address0); grp_write_row_ifm_fu_482->ifm_buff0_9_ce0(grp_write_row_ifm_fu_482_ifm_buff0_9_ce0); grp_write_row_ifm_fu_482->ifm_buff0_9_we0(grp_write_row_ifm_fu_482_ifm_buff0_9_we0); grp_write_row_ifm_fu_482->ifm_buff0_9_d0(grp_write_row_ifm_fu_482_ifm_buff0_9_d0); grp_write_row_ifm_fu_482->ifm_buff0_10_address0(grp_write_row_ifm_fu_482_ifm_buff0_10_address0); grp_write_row_ifm_fu_482->ifm_buff0_10_ce0(grp_write_row_ifm_fu_482_ifm_buff0_10_ce0); grp_write_row_ifm_fu_482->ifm_buff0_10_we0(grp_write_row_ifm_fu_482_ifm_buff0_10_we0); grp_write_row_ifm_fu_482->ifm_buff0_10_d0(grp_write_row_ifm_fu_482_ifm_buff0_10_d0); grp_write_row_ifm_fu_482->ifm_buff0_11_address0(grp_write_row_ifm_fu_482_ifm_buff0_11_address0); grp_write_row_ifm_fu_482->ifm_buff0_11_ce0(grp_write_row_ifm_fu_482_ifm_buff0_11_ce0); grp_write_row_ifm_fu_482->ifm_buff0_11_we0(grp_write_row_ifm_fu_482_ifm_buff0_11_we0); grp_write_row_ifm_fu_482->ifm_buff0_11_d0(grp_write_row_ifm_fu_482_ifm_buff0_11_d0); grp_write_row_ifm_fu_482->ifm_buff0_12_address0(grp_write_row_ifm_fu_482_ifm_buff0_12_address0); grp_write_row_ifm_fu_482->ifm_buff0_12_ce0(grp_write_row_ifm_fu_482_ifm_buff0_12_ce0); grp_write_row_ifm_fu_482->ifm_buff0_12_we0(grp_write_row_ifm_fu_482_ifm_buff0_12_we0); grp_write_row_ifm_fu_482->ifm_buff0_12_d0(grp_write_row_ifm_fu_482_ifm_buff0_12_d0); grp_write_row_ifm_fu_482->ifm_buff0_13_address0(grp_write_row_ifm_fu_482_ifm_buff0_13_address0); grp_write_row_ifm_fu_482->ifm_buff0_13_ce0(grp_write_row_ifm_fu_482_ifm_buff0_13_ce0); grp_write_row_ifm_fu_482->ifm_buff0_13_we0(grp_write_row_ifm_fu_482_ifm_buff0_13_we0); grp_write_row_ifm_fu_482->ifm_buff0_13_d0(grp_write_row_ifm_fu_482_ifm_buff0_13_d0); grp_write_row_ifm_fu_482->ifm_buff0_14_address0(grp_write_row_ifm_fu_482_ifm_buff0_14_address0); grp_write_row_ifm_fu_482->ifm_buff0_14_ce0(grp_write_row_ifm_fu_482_ifm_buff0_14_ce0); grp_write_row_ifm_fu_482->ifm_buff0_14_we0(grp_write_row_ifm_fu_482_ifm_buff0_14_we0); grp_write_row_ifm_fu_482->ifm_buff0_14_d0(grp_write_row_ifm_fu_482_ifm_buff0_14_d0); grp_write_row_ifm_fu_482->ifm_buff0_15_address0(grp_write_row_ifm_fu_482_ifm_buff0_15_address0); grp_write_row_ifm_fu_482->ifm_buff0_15_ce0(grp_write_row_ifm_fu_482_ifm_buff0_15_ce0); grp_write_row_ifm_fu_482->ifm_buff0_15_we0(grp_write_row_ifm_fu_482_ifm_buff0_15_we0); grp_write_row_ifm_fu_482->ifm_buff0_15_d0(grp_write_row_ifm_fu_482_ifm_buff0_15_d0); grp_write_row_ifm_fu_482->cifm_counter_read(reg_594); grp_write_row_ifm_fu_482->enable(grp_write_row_ifm_fu_482_enable); grp_write_row_ifm_fu_482->ap_return(grp_write_row_ifm_fu_482_ap_return); grp_load_cifm_data_pool_fu_506 = new load_cifm_data_pool("grp_load_cifm_data_pool_fu_506"); grp_load_cifm_data_pool_fu_506->ap_clk(ap_clk); grp_load_cifm_data_pool_fu_506->ap_rst(ap_rst); grp_load_cifm_data_pool_fu_506->ap_start(grp_load_cifm_data_pool_fu_506_ap_start); grp_load_cifm_data_pool_fu_506->ap_done(grp_load_cifm_data_pool_fu_506_ap_done); grp_load_cifm_data_pool_fu_506->ap_idle(grp_load_cifm_data_pool_fu_506_ap_idle); grp_load_cifm_data_pool_fu_506->ap_ready(grp_load_cifm_data_pool_fu_506_ap_ready); grp_load_cifm_data_pool_fu_506->cifm_TDATA(cifm_TDATA); grp_load_cifm_data_pool_fu_506->cifm_TVALID(cifm_TVALID); grp_load_cifm_data_pool_fu_506->cifm_TREADY(grp_load_cifm_data_pool_fu_506_cifm_TREADY); grp_load_cifm_data_pool_fu_506->ifm_buff0_0_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_0_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_0_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_0_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_0_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_0_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_0_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_0_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_1_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_1_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_1_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_1_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_1_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_1_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_1_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_1_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_2_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_2_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_2_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_2_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_2_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_2_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_2_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_2_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_3_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_3_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_3_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_3_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_3_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_3_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_3_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_3_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_4_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_4_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_4_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_4_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_4_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_4_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_4_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_4_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_5_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_5_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_5_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_5_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_5_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_5_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_5_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_5_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_6_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_6_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_6_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_6_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_6_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_6_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_6_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_6_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_7_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_7_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_7_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_7_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_7_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_7_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_7_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_7_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_8_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_8_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_8_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_8_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_8_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_8_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_8_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_8_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_9_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_9_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_9_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_9_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_9_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_9_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_9_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_9_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_10_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_10_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_10_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_10_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_10_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_10_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_10_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_10_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_11_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_11_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_11_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_11_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_11_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_11_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_11_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_11_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_12_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_12_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_12_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_12_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_12_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_12_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_12_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_12_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_13_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_13_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_13_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_13_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_13_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_13_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_13_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_13_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_14_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_14_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_14_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_14_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_14_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_14_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_14_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_14_d0); grp_load_cifm_data_pool_fu_506->ifm_buff0_15_address0(grp_load_cifm_data_pool_fu_506_ifm_buff0_15_address0); grp_load_cifm_data_pool_fu_506->ifm_buff0_15_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff0_15_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff0_15_we0(grp_load_cifm_data_pool_fu_506_ifm_buff0_15_we0); grp_load_cifm_data_pool_fu_506->ifm_buff0_15_d0(grp_load_cifm_data_pool_fu_506_ifm_buff0_15_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_0_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_0_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_0_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_0_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_0_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_0_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_0_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_0_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_1_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_1_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_1_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_1_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_1_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_1_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_1_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_1_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_2_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_2_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_2_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_2_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_2_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_2_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_2_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_2_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_3_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_3_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_3_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_3_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_3_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_3_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_3_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_3_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_4_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_4_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_4_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_4_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_4_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_4_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_4_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_4_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_5_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_5_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_5_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_5_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_5_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_5_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_5_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_5_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_6_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_6_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_6_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_6_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_6_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_6_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_6_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_6_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_7_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_7_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_7_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_7_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_7_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_7_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_7_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_7_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_8_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_8_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_8_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_8_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_8_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_8_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_8_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_8_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_9_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_9_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_9_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_9_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_9_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_9_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_9_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_9_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_10_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_10_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_10_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_10_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_10_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_10_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_10_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_10_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_11_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_11_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_11_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_11_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_11_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_11_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_11_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_11_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_12_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_12_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_12_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_12_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_12_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_12_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_12_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_12_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_13_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_13_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_13_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_13_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_13_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_13_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_13_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_13_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_14_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_14_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_14_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_14_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_14_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_14_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_14_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_14_d0); grp_load_cifm_data_pool_fu_506->ifm_buff1_15_address0(grp_load_cifm_data_pool_fu_506_ifm_buff1_15_address0); grp_load_cifm_data_pool_fu_506->ifm_buff1_15_ce0(grp_load_cifm_data_pool_fu_506_ifm_buff1_15_ce0); grp_load_cifm_data_pool_fu_506->ifm_buff1_15_we0(grp_load_cifm_data_pool_fu_506_ifm_buff1_15_we0); grp_load_cifm_data_pool_fu_506->ifm_buff1_15_d0(grp_load_cifm_data_pool_fu_506_ifm_buff1_15_d0); SC_METHOD(thread_ap_clk_no_reset_); dont_initialize(); sensitive << ( ap_clk.pos() ); 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_state3); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state4); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state5); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_block_state4_on_subcall_done); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( grp_write_row_ifm_fu_482_ap_done ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( grp_pool_write_fu_405_ap_done ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( grp_conv_read_fu_457_ap_done ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); SC_METHOD(thread_ap_done); sensitive << ( ap_start ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( grp_conv_read_fu_457_ap_done ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ap_idle); sensitive << ( ap_start ); sensitive << ( ap_CS_fsm_state1 ); SC_METHOD(thread_ap_predicate_op140_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); sensitive << ( icmp_ln307_reg_729 ); sensitive << ( icmp_ln316_reg_733 ); SC_METHOD(thread_ap_predicate_op141_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); sensitive << ( icmp_ln307_reg_729 ); sensitive << ( icmp_ln316_reg_733 ); SC_METHOD(thread_ap_predicate_op142_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); sensitive << ( icmp_ln307_reg_729 ); sensitive << ( icmp_ln316_reg_733 ); SC_METHOD(thread_ap_predicate_op146_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); sensitive << ( icmp_ln307_reg_729 ); SC_METHOD(thread_ap_predicate_op147_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); sensitive << ( icmp_ln307_reg_729 ); SC_METHOD(thread_ap_predicate_op148_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); sensitive << ( icmp_ln307_reg_729 ); SC_METHOD(thread_ap_predicate_op152_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); SC_METHOD(thread_ap_predicate_op153_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); SC_METHOD(thread_ap_predicate_op154_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); sensitive << ( icmp_ln298_reg_725 ); SC_METHOD(thread_ap_predicate_op158_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); SC_METHOD(thread_ap_predicate_op159_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); SC_METHOD(thread_ap_predicate_op160_call_state4); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln289_reg_721 ); SC_METHOD(thread_ap_ready); sensitive << ( grp_conv_read_fu_457_ap_done ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_cifm_TREADY); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_cifm_TREADY ); sensitive << ( grp_load_cifm_data_pool_fu_506_cifm_TREADY ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_cofm_TDATA); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_conv_read_fu_457_cofm_TDATA ); sensitive << ( grp_conv_read_fu_457_cofm_TVALID ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_cofm_TVALID); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_conv_read_fu_457_cofm_TVALID ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ap_start); sensitive << ( grp_conv_read_fu_457_ap_start_reg ); SC_METHOD(thread_grp_conv_read_fu_457_cofm_TREADY); sensitive << ( cofm_TREADY ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_enable); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( icmp_ln283_reg_737 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_0_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_0_q0 ); sensitive << ( ofm_buff1_0_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_10_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_10_q0 ); sensitive << ( ofm_buff1_10_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_11_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_11_q0 ); sensitive << ( ofm_buff1_11_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_12_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_12_q0 ); sensitive << ( ofm_buff1_12_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_13_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_13_q0 ); sensitive << ( ofm_buff1_13_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_14_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_14_q0 ); sensitive << ( ofm_buff1_14_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_15_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_15_q0 ); sensitive << ( ofm_buff1_15_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_1_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_1_q0 ); sensitive << ( ofm_buff1_1_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_2_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_2_q0 ); sensitive << ( ofm_buff1_2_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_3_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_3_q0 ); sensitive << ( ofm_buff1_3_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_4_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_4_q0 ); sensitive << ( ofm_buff1_4_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_5_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_5_q0 ); sensitive << ( ofm_buff1_5_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_6_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_6_q0 ); sensitive << ( ofm_buff1_6_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_7_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_7_q0 ); sensitive << ( ofm_buff1_7_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_8_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_8_q0 ); sensitive << ( ofm_buff1_8_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_conv_read_fu_457_ofm_buff0_9_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( ofm_buff0_9_q0 ); sensitive << ( ofm_buff1_9_q0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_grp_load_cifm_data_pool_fu_506_ap_start); sensitive << ( grp_load_cifm_data_pool_fu_506_ap_start_reg ); SC_METHOD(thread_grp_pool_write_fu_405_ap_start); sensitive << ( grp_pool_write_fu_405_ap_start_reg ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_0_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_0_q0 ); sensitive << ( ifm_buff1_0_q0 ); sensitive << ( ifm_buff2_0_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_0_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_0_q1 ); sensitive << ( ifm_buff1_0_q1 ); sensitive << ( ifm_buff2_0_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_10_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_10_q0 ); sensitive << ( ifm_buff1_10_q0 ); sensitive << ( ifm_buff2_10_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_10_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_10_q1 ); sensitive << ( ifm_buff1_10_q1 ); sensitive << ( ifm_buff2_10_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_11_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_11_q0 ); sensitive << ( ifm_buff1_11_q0 ); sensitive << ( ifm_buff2_11_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_11_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_11_q1 ); sensitive << ( ifm_buff1_11_q1 ); sensitive << ( ifm_buff2_11_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_12_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_12_q0 ); sensitive << ( ifm_buff1_12_q0 ); sensitive << ( ifm_buff2_12_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_12_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_12_q1 ); sensitive << ( ifm_buff1_12_q1 ); sensitive << ( ifm_buff2_12_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_13_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_13_q0 ); sensitive << ( ifm_buff1_13_q0 ); sensitive << ( ifm_buff2_13_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_13_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_13_q1 ); sensitive << ( ifm_buff1_13_q1 ); sensitive << ( ifm_buff2_13_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_14_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_14_q0 ); sensitive << ( ifm_buff1_14_q0 ); sensitive << ( ifm_buff2_14_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_14_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_14_q1 ); sensitive << ( ifm_buff1_14_q1 ); sensitive << ( ifm_buff2_14_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_15_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_15_q0 ); sensitive << ( ifm_buff1_15_q0 ); sensitive << ( ifm_buff2_15_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_15_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_15_q1 ); sensitive << ( ifm_buff1_15_q1 ); sensitive << ( ifm_buff2_15_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_1_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_1_q0 ); sensitive << ( ifm_buff1_1_q0 ); sensitive << ( ifm_buff2_1_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_1_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_1_q1 ); sensitive << ( ifm_buff1_1_q1 ); sensitive << ( ifm_buff2_1_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_2_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_2_q0 ); sensitive << ( ifm_buff1_2_q0 ); sensitive << ( ifm_buff2_2_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_2_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_2_q1 ); sensitive << ( ifm_buff1_2_q1 ); sensitive << ( ifm_buff2_2_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_3_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_3_q0 ); sensitive << ( ifm_buff1_3_q0 ); sensitive << ( ifm_buff2_3_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_3_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_3_q1 ); sensitive << ( ifm_buff1_3_q1 ); sensitive << ( ifm_buff2_3_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_4_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_4_q0 ); sensitive << ( ifm_buff1_4_q0 ); sensitive << ( ifm_buff2_4_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_4_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_4_q1 ); sensitive << ( ifm_buff1_4_q1 ); sensitive << ( ifm_buff2_4_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_5_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_5_q0 ); sensitive << ( ifm_buff1_5_q0 ); sensitive << ( ifm_buff2_5_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_5_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_5_q1 ); sensitive << ( ifm_buff1_5_q1 ); sensitive << ( ifm_buff2_5_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_6_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_6_q0 ); sensitive << ( ifm_buff1_6_q0 ); sensitive << ( ifm_buff2_6_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_6_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_6_q1 ); sensitive << ( ifm_buff1_6_q1 ); sensitive << ( ifm_buff2_6_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_7_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_7_q0 ); sensitive << ( ifm_buff1_7_q0 ); sensitive << ( ifm_buff2_7_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_7_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_7_q1 ); sensitive << ( ifm_buff1_7_q1 ); sensitive << ( ifm_buff2_7_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_8_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_8_q0 ); sensitive << ( ifm_buff1_8_q0 ); sensitive << ( ifm_buff2_8_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_8_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_8_q1 ); sensitive << ( ifm_buff1_8_q1 ); sensitive << ( ifm_buff2_8_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_9_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_9_q0 ); sensitive << ( ifm_buff1_9_q0 ); sensitive << ( ifm_buff2_9_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff0_9_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_9_q1 ); sensitive << ( ifm_buff1_9_q1 ); sensitive << ( ifm_buff2_9_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_0_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_0_q0 ); sensitive << ( ifm_buff1_0_q0 ); sensitive << ( ifm_buff2_0_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_0_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_0_q1 ); sensitive << ( ifm_buff1_0_q1 ); sensitive << ( ifm_buff2_0_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_10_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_10_q0 ); sensitive << ( ifm_buff1_10_q0 ); sensitive << ( ifm_buff2_10_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_10_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_10_q1 ); sensitive << ( ifm_buff1_10_q1 ); sensitive << ( ifm_buff2_10_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_11_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_11_q0 ); sensitive << ( ifm_buff1_11_q0 ); sensitive << ( ifm_buff2_11_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_11_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_11_q1 ); sensitive << ( ifm_buff1_11_q1 ); sensitive << ( ifm_buff2_11_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_12_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_12_q0 ); sensitive << ( ifm_buff1_12_q0 ); sensitive << ( ifm_buff2_12_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_12_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_12_q1 ); sensitive << ( ifm_buff1_12_q1 ); sensitive << ( ifm_buff2_12_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_13_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_13_q0 ); sensitive << ( ifm_buff1_13_q0 ); sensitive << ( ifm_buff2_13_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_13_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_13_q1 ); sensitive << ( ifm_buff1_13_q1 ); sensitive << ( ifm_buff2_13_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_14_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_14_q0 ); sensitive << ( ifm_buff1_14_q0 ); sensitive << ( ifm_buff2_14_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_14_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_14_q1 ); sensitive << ( ifm_buff1_14_q1 ); sensitive << ( ifm_buff2_14_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_15_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_15_q0 ); sensitive << ( ifm_buff1_15_q0 ); sensitive << ( ifm_buff2_15_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_15_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_15_q1 ); sensitive << ( ifm_buff1_15_q1 ); sensitive << ( ifm_buff2_15_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_1_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_1_q0 ); sensitive << ( ifm_buff1_1_q0 ); sensitive << ( ifm_buff2_1_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_1_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_1_q1 ); sensitive << ( ifm_buff1_1_q1 ); sensitive << ( ifm_buff2_1_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_2_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_2_q0 ); sensitive << ( ifm_buff1_2_q0 ); sensitive << ( ifm_buff2_2_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_2_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_2_q1 ); sensitive << ( ifm_buff1_2_q1 ); sensitive << ( ifm_buff2_2_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_3_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_3_q0 ); sensitive << ( ifm_buff1_3_q0 ); sensitive << ( ifm_buff2_3_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_3_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_3_q1 ); sensitive << ( ifm_buff1_3_q1 ); sensitive << ( ifm_buff2_3_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_4_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_4_q0 ); sensitive << ( ifm_buff1_4_q0 ); sensitive << ( ifm_buff2_4_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_4_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_4_q1 ); sensitive << ( ifm_buff1_4_q1 ); sensitive << ( ifm_buff2_4_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_5_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_5_q0 ); sensitive << ( ifm_buff1_5_q0 ); sensitive << ( ifm_buff2_5_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_5_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_5_q1 ); sensitive << ( ifm_buff1_5_q1 ); sensitive << ( ifm_buff2_5_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_6_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_6_q0 ); sensitive << ( ifm_buff1_6_q0 ); sensitive << ( ifm_buff2_6_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_6_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_6_q1 ); sensitive << ( ifm_buff1_6_q1 ); sensitive << ( ifm_buff2_6_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_7_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_7_q0 ); sensitive << ( ifm_buff1_7_q0 ); sensitive << ( ifm_buff2_7_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_7_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_7_q1 ); sensitive << ( ifm_buff1_7_q1 ); sensitive << ( ifm_buff2_7_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_8_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_8_q0 ); sensitive << ( ifm_buff1_8_q0 ); sensitive << ( ifm_buff2_8_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_8_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_8_q1 ); sensitive << ( ifm_buff1_8_q1 ); sensitive << ( ifm_buff2_8_q1 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_9_q0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_9_q0 ); sensitive << ( ifm_buff1_9_q0 ); sensitive << ( ifm_buff2_9_q0 ); SC_METHOD(thread_grp_pool_write_fu_405_ifm_buff1_9_q1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( ifm_buff0_9_q1 ); sensitive << ( ifm_buff1_9_q1 ); sensitive << ( ifm_buff2_9_q1 ); SC_METHOD(thread_grp_write_row_ifm_fu_482_ap_start); sensitive << ( grp_write_row_ifm_fu_482_ap_start_reg ); SC_METHOD(thread_grp_write_row_ifm_fu_482_enable); sensitive << ( icmp_ln280_reg_707 ); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); SC_METHOD(thread_icmp_ln275_fu_614_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( row_0_reg_394 ); SC_METHOD(thread_icmp_ln278_fu_633_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( rotate_counter_0_reg_382 ); SC_METHOD(thread_icmp_ln280_fu_620_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( row_0_reg_394 ); SC_METHOD(thread_icmp_ln283_fu_663_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( icmp_ln278_fu_633_p2 ); sensitive << ( row_0_reg_394 ); SC_METHOD(thread_icmp_ln289_fu_639_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( icmp_ln278_fu_633_p2 ); sensitive << ( rotate_counter_0_reg_382 ); SC_METHOD(thread_icmp_ln298_fu_645_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( icmp_ln278_fu_633_p2 ); sensitive << ( icmp_ln289_fu_639_p2 ); sensitive << ( rotate_counter_0_reg_382 ); SC_METHOD(thread_icmp_ln307_fu_651_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( icmp_ln278_fu_633_p2 ); sensitive << ( icmp_ln289_fu_639_p2 ); sensitive << ( icmp_ln298_fu_645_p2 ); sensitive << ( rotate_counter_0_reg_382 ); SC_METHOD(thread_icmp_ln316_fu_657_p2); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( icmp_ln278_fu_633_p2 ); sensitive << ( icmp_ln289_fu_639_p2 ); sensitive << ( icmp_ln298_fu_645_p2 ); sensitive << ( icmp_ln307_fu_651_p2 ); sensitive << ( rotate_counter_0_reg_382 ); SC_METHOD(thread_icmp_ln328_fu_676_p2); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_block_state4_on_subcall_done ); sensitive << ( rotate_counter_fu_670_p2 ); SC_METHOD(thread_ifm_buff0_0_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_address0 ); SC_METHOD(thread_ifm_buff0_0_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_address1 ); SC_METHOD(thread_ifm_buff0_0_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_ce0 ); SC_METHOD(thread_ifm_buff0_0_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_ce1 ); SC_METHOD(thread_ifm_buff0_0_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_we0 ); SC_METHOD(thread_ifm_buff0_10_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_address0 ); SC_METHOD(thread_ifm_buff0_10_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_address1 ); SC_METHOD(thread_ifm_buff0_10_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_ce0 ); SC_METHOD(thread_ifm_buff0_10_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_ce1 ); SC_METHOD(thread_ifm_buff0_10_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_we0 ); SC_METHOD(thread_ifm_buff0_11_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_address0 ); SC_METHOD(thread_ifm_buff0_11_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_address1 ); SC_METHOD(thread_ifm_buff0_11_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_ce0 ); SC_METHOD(thread_ifm_buff0_11_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_ce1 ); SC_METHOD(thread_ifm_buff0_11_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_we0 ); SC_METHOD(thread_ifm_buff0_12_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_address0 ); SC_METHOD(thread_ifm_buff0_12_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_address1 ); SC_METHOD(thread_ifm_buff0_12_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_ce0 ); SC_METHOD(thread_ifm_buff0_12_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_ce1 ); SC_METHOD(thread_ifm_buff0_12_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_we0 ); SC_METHOD(thread_ifm_buff0_13_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_address0 ); SC_METHOD(thread_ifm_buff0_13_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_address1 ); SC_METHOD(thread_ifm_buff0_13_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_ce0 ); SC_METHOD(thread_ifm_buff0_13_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_ce1 ); SC_METHOD(thread_ifm_buff0_13_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_we0 ); SC_METHOD(thread_ifm_buff0_14_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_address0 ); SC_METHOD(thread_ifm_buff0_14_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_address1 ); SC_METHOD(thread_ifm_buff0_14_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_ce0 ); SC_METHOD(thread_ifm_buff0_14_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_ce1 ); SC_METHOD(thread_ifm_buff0_14_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_we0 ); SC_METHOD(thread_ifm_buff0_15_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_address0 ); SC_METHOD(thread_ifm_buff0_15_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_address1 ); SC_METHOD(thread_ifm_buff0_15_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_ce0 ); SC_METHOD(thread_ifm_buff0_15_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_ce1 ); SC_METHOD(thread_ifm_buff0_15_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_we0 ); SC_METHOD(thread_ifm_buff0_1_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_address0 ); SC_METHOD(thread_ifm_buff0_1_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_address1 ); SC_METHOD(thread_ifm_buff0_1_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_ce0 ); SC_METHOD(thread_ifm_buff0_1_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_ce1 ); SC_METHOD(thread_ifm_buff0_1_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_we0 ); SC_METHOD(thread_ifm_buff0_2_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_address0 ); SC_METHOD(thread_ifm_buff0_2_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_address1 ); SC_METHOD(thread_ifm_buff0_2_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_ce0 ); SC_METHOD(thread_ifm_buff0_2_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_ce1 ); SC_METHOD(thread_ifm_buff0_2_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_we0 ); SC_METHOD(thread_ifm_buff0_3_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_address0 ); SC_METHOD(thread_ifm_buff0_3_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_address1 ); SC_METHOD(thread_ifm_buff0_3_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_ce0 ); SC_METHOD(thread_ifm_buff0_3_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_ce1 ); SC_METHOD(thread_ifm_buff0_3_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_we0 ); SC_METHOD(thread_ifm_buff0_4_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_address0 ); SC_METHOD(thread_ifm_buff0_4_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_address1 ); SC_METHOD(thread_ifm_buff0_4_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_ce0 ); SC_METHOD(thread_ifm_buff0_4_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_ce1 ); SC_METHOD(thread_ifm_buff0_4_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_we0 ); SC_METHOD(thread_ifm_buff0_5_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_address0 ); SC_METHOD(thread_ifm_buff0_5_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_address1 ); SC_METHOD(thread_ifm_buff0_5_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_ce0 ); SC_METHOD(thread_ifm_buff0_5_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_ce1 ); SC_METHOD(thread_ifm_buff0_5_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_we0 ); SC_METHOD(thread_ifm_buff0_6_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_address0 ); SC_METHOD(thread_ifm_buff0_6_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_address1 ); SC_METHOD(thread_ifm_buff0_6_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_ce0 ); SC_METHOD(thread_ifm_buff0_6_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_ce1 ); SC_METHOD(thread_ifm_buff0_6_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_we0 ); SC_METHOD(thread_ifm_buff0_7_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_address0 ); SC_METHOD(thread_ifm_buff0_7_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_address1 ); SC_METHOD(thread_ifm_buff0_7_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_ce0 ); SC_METHOD(thread_ifm_buff0_7_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_ce1 ); SC_METHOD(thread_ifm_buff0_7_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_we0 ); SC_METHOD(thread_ifm_buff0_8_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_address0 ); SC_METHOD(thread_ifm_buff0_8_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_address1 ); SC_METHOD(thread_ifm_buff0_8_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_ce0 ); SC_METHOD(thread_ifm_buff0_8_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_ce1 ); SC_METHOD(thread_ifm_buff0_8_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_we0 ); SC_METHOD(thread_ifm_buff0_9_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_address0 ); SC_METHOD(thread_ifm_buff0_9_address1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_address1 ); SC_METHOD(thread_ifm_buff0_9_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_ce0 ); SC_METHOD(thread_ifm_buff0_9_ce1); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_ce1 ); SC_METHOD(thread_ifm_buff0_9_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op146_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_we0 ); SC_METHOD(thread_ifm_buff1_0_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_0_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_0_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_address1 ); SC_METHOD(thread_ifm_buff1_0_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_0_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_0_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_ce1 ); SC_METHOD(thread_ifm_buff1_0_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_0_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_0_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_0_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_10_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_10_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_10_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_address1 ); SC_METHOD(thread_ifm_buff1_10_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_10_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_10_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_ce1 ); SC_METHOD(thread_ifm_buff1_10_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_10_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_10_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_10_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_11_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_11_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_11_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_address1 ); SC_METHOD(thread_ifm_buff1_11_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_11_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_11_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_ce1 ); SC_METHOD(thread_ifm_buff1_11_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_11_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_11_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_11_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_12_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_12_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_12_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_address1 ); SC_METHOD(thread_ifm_buff1_12_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_12_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_12_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_ce1 ); SC_METHOD(thread_ifm_buff1_12_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_12_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_12_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_12_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_13_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_13_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_13_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_address1 ); SC_METHOD(thread_ifm_buff1_13_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_13_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_13_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_ce1 ); SC_METHOD(thread_ifm_buff1_13_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_13_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_13_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_13_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_14_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_14_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_14_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_address1 ); SC_METHOD(thread_ifm_buff1_14_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_14_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_14_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_ce1 ); SC_METHOD(thread_ifm_buff1_14_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_14_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_14_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_14_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_15_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_15_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_15_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_address1 ); SC_METHOD(thread_ifm_buff1_15_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_15_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_15_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_ce1 ); SC_METHOD(thread_ifm_buff1_15_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_15_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_15_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_15_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_1_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_1_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_1_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_address1 ); SC_METHOD(thread_ifm_buff1_1_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_1_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_1_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_ce1 ); SC_METHOD(thread_ifm_buff1_1_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_1_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_1_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_1_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_2_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_2_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_2_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_address1 ); SC_METHOD(thread_ifm_buff1_2_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_2_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_2_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_ce1 ); SC_METHOD(thread_ifm_buff1_2_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_2_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_2_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_2_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_3_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_3_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_3_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_address1 ); SC_METHOD(thread_ifm_buff1_3_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_3_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_3_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_ce1 ); SC_METHOD(thread_ifm_buff1_3_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_3_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_3_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_3_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_4_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_4_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_4_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_address1 ); SC_METHOD(thread_ifm_buff1_4_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_4_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_4_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_ce1 ); SC_METHOD(thread_ifm_buff1_4_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_4_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_4_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_4_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_5_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_5_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_5_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_address1 ); SC_METHOD(thread_ifm_buff1_5_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_5_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_5_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_ce1 ); SC_METHOD(thread_ifm_buff1_5_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_5_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_5_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_5_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_6_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_6_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_6_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_address1 ); SC_METHOD(thread_ifm_buff1_6_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_6_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_6_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_ce1 ); SC_METHOD(thread_ifm_buff1_6_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_6_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_6_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_6_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_7_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_7_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_7_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_address1 ); SC_METHOD(thread_ifm_buff1_7_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_7_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_7_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_ce1 ); SC_METHOD(thread_ifm_buff1_7_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_7_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_7_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_7_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_8_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_8_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_8_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_address1 ); SC_METHOD(thread_ifm_buff1_8_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_8_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_8_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_ce1 ); SC_METHOD(thread_ifm_buff1_8_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_8_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_8_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_8_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_9_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_9_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_9_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_address1 ); SC_METHOD(thread_ifm_buff1_9_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_9_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_9_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_ce1 ); SC_METHOD(thread_ifm_buff1_9_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_9_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff1_9_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op140_call_state4 ); sensitive << ( ap_predicate_op158_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff0_9_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_0_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_0_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_0_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_address1 ); SC_METHOD(thread_ifm_buff2_0_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_0_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_0_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_0_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_0_ce1 ); SC_METHOD(thread_ifm_buff2_0_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_0_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_0_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_0_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_0_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_10_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_10_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_10_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_address1 ); SC_METHOD(thread_ifm_buff2_10_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_10_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_10_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_10_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_10_ce1 ); SC_METHOD(thread_ifm_buff2_10_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_10_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_10_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_10_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_10_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_11_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_11_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_11_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_address1 ); SC_METHOD(thread_ifm_buff2_11_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_11_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_11_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_11_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_11_ce1 ); SC_METHOD(thread_ifm_buff2_11_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_11_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_11_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_11_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_11_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_12_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_12_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_12_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_address1 ); SC_METHOD(thread_ifm_buff2_12_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_12_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_12_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_12_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_12_ce1 ); SC_METHOD(thread_ifm_buff2_12_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_12_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_12_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_12_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_12_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_13_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_13_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_13_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_address1 ); SC_METHOD(thread_ifm_buff2_13_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_13_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_13_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_13_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_13_ce1 ); SC_METHOD(thread_ifm_buff2_13_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_13_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_13_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_13_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_13_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_14_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_14_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_14_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_address1 ); SC_METHOD(thread_ifm_buff2_14_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_14_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_14_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_14_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_14_ce1 ); SC_METHOD(thread_ifm_buff2_14_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_14_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_14_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_14_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_14_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_15_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_15_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_15_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_address1 ); SC_METHOD(thread_ifm_buff2_15_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_15_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_15_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_15_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_15_ce1 ); SC_METHOD(thread_ifm_buff2_15_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_15_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_15_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_15_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_15_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_1_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_1_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_1_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_address1 ); SC_METHOD(thread_ifm_buff2_1_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_1_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_1_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_1_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_1_ce1 ); SC_METHOD(thread_ifm_buff2_1_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_1_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_1_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_1_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_1_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_2_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_2_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_2_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_address1 ); SC_METHOD(thread_ifm_buff2_2_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_2_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_2_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_2_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_2_ce1 ); SC_METHOD(thread_ifm_buff2_2_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_2_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_2_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_2_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_2_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_3_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_3_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_3_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_address1 ); SC_METHOD(thread_ifm_buff2_3_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_3_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_3_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_3_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_3_ce1 ); SC_METHOD(thread_ifm_buff2_3_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_3_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_3_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_3_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_3_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_4_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_4_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_4_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_address1 ); SC_METHOD(thread_ifm_buff2_4_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_4_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_4_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_4_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_4_ce1 ); SC_METHOD(thread_ifm_buff2_4_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_4_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_4_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_4_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_4_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_5_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_5_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_5_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_address1 ); SC_METHOD(thread_ifm_buff2_5_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_5_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_5_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_5_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_5_ce1 ); SC_METHOD(thread_ifm_buff2_5_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_5_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_5_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_5_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_5_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_6_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_6_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_6_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_address1 ); SC_METHOD(thread_ifm_buff2_6_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_6_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_6_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_6_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_6_ce1 ); SC_METHOD(thread_ifm_buff2_6_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_6_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_6_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_6_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_6_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_7_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_7_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_7_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_address1 ); SC_METHOD(thread_ifm_buff2_7_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_7_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_7_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_7_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_7_ce1 ); SC_METHOD(thread_ifm_buff2_7_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_7_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_7_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_7_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_7_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_8_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_8_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_8_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_address1 ); SC_METHOD(thread_ifm_buff2_8_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_8_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_8_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_8_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_8_ce1 ); SC_METHOD(thread_ifm_buff2_8_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_8_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_8_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_8_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_8_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_9_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_address0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_address0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_address0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_9_address0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_9_address1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_address1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_address1 ); SC_METHOD(thread_ifm_buff2_9_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_ce0 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_ce0 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_ce0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_9_ce0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_9_ce1); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ifm_buff0_9_ce1 ); sensitive << ( grp_pool_write_fu_405_ifm_buff1_9_ce1 ); SC_METHOD(thread_ifm_buff2_9_d0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_d0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_9_d0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ifm_buff2_9_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op152_call_state4 ); sensitive << ( grp_write_row_ifm_fu_482_ifm_buff0_9_we0 ); sensitive << ( grp_load_cifm_data_pool_fu_506_ifm_buff1_9_we0 ); sensitive << ( ap_CS_fsm_state2 ); SC_METHOD(thread_ofm_buff0_0_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_0_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_0_address0 ); SC_METHOD(thread_ofm_buff0_0_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_0_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_0_ce0 ); SC_METHOD(thread_ofm_buff0_0_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_0_we0 ); SC_METHOD(thread_ofm_buff0_10_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_10_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_10_address0 ); SC_METHOD(thread_ofm_buff0_10_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_10_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_10_ce0 ); SC_METHOD(thread_ofm_buff0_10_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_10_we0 ); SC_METHOD(thread_ofm_buff0_11_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_11_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_11_address0 ); SC_METHOD(thread_ofm_buff0_11_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_11_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_11_ce0 ); SC_METHOD(thread_ofm_buff0_11_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_11_we0 ); SC_METHOD(thread_ofm_buff0_12_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_12_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_12_address0 ); SC_METHOD(thread_ofm_buff0_12_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_12_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_12_ce0 ); SC_METHOD(thread_ofm_buff0_12_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_12_we0 ); SC_METHOD(thread_ofm_buff0_13_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_13_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_13_address0 ); SC_METHOD(thread_ofm_buff0_13_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_13_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_13_ce0 ); SC_METHOD(thread_ofm_buff0_13_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_13_we0 ); SC_METHOD(thread_ofm_buff0_14_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_14_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_14_address0 ); SC_METHOD(thread_ofm_buff0_14_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_14_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_14_ce0 ); SC_METHOD(thread_ofm_buff0_14_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_14_we0 ); SC_METHOD(thread_ofm_buff0_15_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_15_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_15_address0 ); SC_METHOD(thread_ofm_buff0_15_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_15_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_15_ce0 ); SC_METHOD(thread_ofm_buff0_15_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_15_we0 ); SC_METHOD(thread_ofm_buff0_1_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_1_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_1_address0 ); SC_METHOD(thread_ofm_buff0_1_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_1_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_1_ce0 ); SC_METHOD(thread_ofm_buff0_1_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_1_we0 ); SC_METHOD(thread_ofm_buff0_2_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_2_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_2_address0 ); SC_METHOD(thread_ofm_buff0_2_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_2_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_2_ce0 ); SC_METHOD(thread_ofm_buff0_2_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_2_we0 ); SC_METHOD(thread_ofm_buff0_3_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_3_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_3_address0 ); SC_METHOD(thread_ofm_buff0_3_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_3_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_3_ce0 ); SC_METHOD(thread_ofm_buff0_3_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_3_we0 ); SC_METHOD(thread_ofm_buff0_4_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_4_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_4_address0 ); SC_METHOD(thread_ofm_buff0_4_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_4_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_4_ce0 ); SC_METHOD(thread_ofm_buff0_4_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_4_we0 ); SC_METHOD(thread_ofm_buff0_5_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_5_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_5_address0 ); SC_METHOD(thread_ofm_buff0_5_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_5_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_5_ce0 ); SC_METHOD(thread_ofm_buff0_5_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_5_we0 ); SC_METHOD(thread_ofm_buff0_6_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_6_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_6_address0 ); SC_METHOD(thread_ofm_buff0_6_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_6_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_6_ce0 ); SC_METHOD(thread_ofm_buff0_6_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_6_we0 ); SC_METHOD(thread_ofm_buff0_7_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_7_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_7_address0 ); SC_METHOD(thread_ofm_buff0_7_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_7_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_7_ce0 ); SC_METHOD(thread_ofm_buff0_7_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_7_we0 ); SC_METHOD(thread_ofm_buff0_8_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_8_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_8_address0 ); SC_METHOD(thread_ofm_buff0_8_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_8_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_8_ce0 ); SC_METHOD(thread_ofm_buff0_8_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_8_we0 ); SC_METHOD(thread_ofm_buff0_9_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_9_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_9_address0 ); SC_METHOD(thread_ofm_buff0_9_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op148_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( ap_predicate_op160_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_9_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_9_ce0 ); SC_METHOD(thread_ofm_buff0_9_we0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op141_call_state4 ); sensitive << ( ap_predicate_op153_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_9_we0 ); SC_METHOD(thread_ofm_buff1_0_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_0_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_0_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_0_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_0_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_0_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_0_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_0_we0 ); SC_METHOD(thread_ofm_buff1_10_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_10_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_10_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_10_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_10_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_10_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_10_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_10_we0 ); SC_METHOD(thread_ofm_buff1_11_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_11_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_11_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_11_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_11_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_11_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_11_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_11_we0 ); SC_METHOD(thread_ofm_buff1_12_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_12_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_12_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_12_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_12_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_12_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_12_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_12_we0 ); SC_METHOD(thread_ofm_buff1_13_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_13_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_13_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_13_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_13_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_13_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_13_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_13_we0 ); SC_METHOD(thread_ofm_buff1_14_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_14_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_14_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_14_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_14_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_14_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_14_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_14_we0 ); SC_METHOD(thread_ofm_buff1_15_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_15_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_15_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_15_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_15_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_15_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_15_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_15_we0 ); SC_METHOD(thread_ofm_buff1_1_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_1_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_1_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_1_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_1_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_1_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_1_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_1_we0 ); SC_METHOD(thread_ofm_buff1_2_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_2_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_2_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_2_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_2_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_2_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_2_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_2_we0 ); SC_METHOD(thread_ofm_buff1_3_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_3_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_3_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_3_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_3_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_3_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_3_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_3_we0 ); SC_METHOD(thread_ofm_buff1_4_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_4_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_4_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_4_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_4_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_4_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_4_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_4_we0 ); SC_METHOD(thread_ofm_buff1_5_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_5_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_5_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_5_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_5_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_5_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_5_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_5_we0 ); SC_METHOD(thread_ofm_buff1_6_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_6_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_6_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_6_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_6_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_6_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_6_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_6_we0 ); SC_METHOD(thread_ofm_buff1_7_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_7_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_7_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_7_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_7_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_7_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_7_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_7_we0 ); SC_METHOD(thread_ofm_buff1_8_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_8_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_8_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_8_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_8_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_8_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_8_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_8_we0 ); SC_METHOD(thread_ofm_buff1_9_address0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_9_address0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_9_address0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_9_ce0); sensitive << ( icmp_ln278_reg_717 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op142_call_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op154_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_9_ce0 ); sensitive << ( grp_conv_read_fu_457_ofm_buff0_9_ce0 ); sensitive << ( ap_CS_fsm_state5 ); SC_METHOD(thread_ofm_buff1_9_we0); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( ap_predicate_op147_call_state4 ); sensitive << ( ap_predicate_op159_call_state4 ); sensitive << ( grp_pool_write_fu_405_ofm_buff0_9_we0 ); SC_METHOD(thread_rotate_counter_fu_670_p2); sensitive << ( rotate_counter_0_reg_382 ); SC_METHOD(thread_row_fu_627_p2); sensitive << ( row_0_reg_394 ); SC_METHOD(thread_select_ln328_fu_682_p3); sensitive << ( rotate_counter_fu_670_p2 ); sensitive << ( icmp_ln328_fu_676_p2 ); SC_METHOD(thread_ap_NS_fsm); sensitive << ( ap_start ); sensitive << ( ap_CS_fsm ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( ap_CS_fsm_state3 ); sensitive << ( icmp_ln275_fu_614_p2 ); sensitive << ( ap_CS_fsm_state4 ); sensitive << ( grp_conv_read_fu_457_ap_done ); sensitive << ( ap_block_state4_on_subcall_done ); sensitive << ( grp_load_cifm_data_pool_fu_506_ap_done ); sensitive << ( ap_CS_fsm_state2 ); sensitive << ( ap_CS_fsm_state5 ); ap_CS_fsm = "00001"; grp_pool_write_fu_405_ap_start_reg = SC_LOGIC_0; grp_conv_read_fu_457_ap_start_reg = SC_LOGIC_0; grp_write_row_ifm_fu_482_ap_start_reg = SC_LOGIC_0; grp_load_cifm_data_pool_fu_506_ap_start_reg = SC_LOGIC_0; static int apTFileNum = 0; stringstream apTFilenSS; apTFilenSS << "pool_hw_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_idle, "(port)ap_idle"); sc_trace(mVcdFile, ap_ready, "(port)ap_ready"); sc_trace(mVcdFile, cifm_TDATA, "(port)cifm_TDATA"); sc_trace(mVcdFile, cifm_TVALID, "(port)cifm_TVALID"); sc_trace(mVcdFile, cifm_TREADY, "(port)cifm_TREADY"); sc_trace(mVcdFile, cofm_TDATA, "(port)cofm_TDATA"); sc_trace(mVcdFile, cofm_TVALID, "(port)cofm_TVALID"); sc_trace(mVcdFile, cofm_TREADY, "(port)cofm_TREADY"); #endif #ifdef __HLS_TRACE_LEVEL_INT__ sc_trace(mVcdFile, ap_CS_fsm, "ap_CS_fsm"); sc_trace(mVcdFile, ap_CS_fsm_state1, "ap_CS_fsm_state1"); sc_trace(mVcdFile, reg_594, "reg_594"); sc_trace(mVcdFile, ap_CS_fsm_state3, "ap_CS_fsm_state3"); sc_trace(mVcdFile, icmp_ln275_fu_614_p2, "icmp_ln275_fu_614_p2"); sc_trace(mVcdFile, icmp_ln278_fu_633_p2, "icmp_ln278_fu_633_p2"); sc_trace(mVcdFile, icmp_ln289_fu_639_p2, "icmp_ln289_fu_639_p2"); sc_trace(mVcdFile, icmp_ln298_fu_645_p2, "icmp_ln298_fu_645_p2"); sc_trace(mVcdFile, icmp_ln307_fu_651_p2, "icmp_ln307_fu_651_p2"); sc_trace(mVcdFile, icmp_ln316_fu_657_p2, "icmp_ln316_fu_657_p2"); sc_trace(mVcdFile, reg_599, "reg_599"); sc_trace(mVcdFile, icmp_ln280_fu_620_p2, "icmp_ln280_fu_620_p2"); sc_trace(mVcdFile, icmp_ln280_reg_707, "icmp_ln280_reg_707"); sc_trace(mVcdFile, row_fu_627_p2, "row_fu_627_p2"); sc_trace(mVcdFile, row_reg_712, "row_reg_712"); sc_trace(mVcdFile, icmp_ln278_reg_717, "icmp_ln278_reg_717"); sc_trace(mVcdFile, icmp_ln289_reg_721, "icmp_ln289_reg_721"); sc_trace(mVcdFile, icmp_ln298_reg_725, "icmp_ln298_reg_725"); sc_trace(mVcdFile, icmp_ln307_reg_729, "icmp_ln307_reg_729"); sc_trace(mVcdFile, icmp_ln316_reg_733, "icmp_ln316_reg_733"); sc_trace(mVcdFile, icmp_ln283_fu_663_p2, "icmp_ln283_fu_663_p2"); sc_trace(mVcdFile, icmp_ln283_reg_737, "icmp_ln283_reg_737"); sc_trace(mVcdFile, select_ln328_fu_682_p3, "select_ln328_fu_682_p3"); sc_trace(mVcdFile, ap_CS_fsm_state4, "ap_CS_fsm_state4"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ap_ready, "grp_write_row_ifm_fu_482_ap_ready"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ap_done, "grp_write_row_ifm_fu_482_ap_done"); sc_trace(mVcdFile, ap_predicate_op140_call_state4, "ap_predicate_op140_call_state4"); sc_trace(mVcdFile, grp_pool_write_fu_405_ap_ready, "grp_pool_write_fu_405_ap_ready"); sc_trace(mVcdFile, grp_pool_write_fu_405_ap_done, "grp_pool_write_fu_405_ap_done"); sc_trace(mVcdFile, ap_predicate_op141_call_state4, "ap_predicate_op141_call_state4"); sc_trace(mVcdFile, grp_conv_read_fu_457_ap_ready, "grp_conv_read_fu_457_ap_ready"); sc_trace(mVcdFile, grp_conv_read_fu_457_ap_done, "grp_conv_read_fu_457_ap_done"); sc_trace(mVcdFile, ap_predicate_op142_call_state4, "ap_predicate_op142_call_state4"); sc_trace(mVcdFile, ap_predicate_op146_call_state4, "ap_predicate_op146_call_state4"); sc_trace(mVcdFile, ap_predicate_op147_call_state4, "ap_predicate_op147_call_state4"); sc_trace(mVcdFile, ap_predicate_op148_call_state4, "ap_predicate_op148_call_state4"); sc_trace(mVcdFile, ap_predicate_op152_call_state4, "ap_predicate_op152_call_state4"); sc_trace(mVcdFile, ap_predicate_op153_call_state4, "ap_predicate_op153_call_state4"); sc_trace(mVcdFile, ap_predicate_op154_call_state4, "ap_predicate_op154_call_state4"); sc_trace(mVcdFile, ap_predicate_op158_call_state4, "ap_predicate_op158_call_state4"); sc_trace(mVcdFile, ap_predicate_op159_call_state4, "ap_predicate_op159_call_state4"); sc_trace(mVcdFile, ap_predicate_op160_call_state4, "ap_predicate_op160_call_state4"); sc_trace(mVcdFile, ap_block_state4_on_subcall_done, "ap_block_state4_on_subcall_done"); sc_trace(mVcdFile, ifm_buff0_0_address0, "ifm_buff0_0_address0"); sc_trace(mVcdFile, ifm_buff0_0_ce0, "ifm_buff0_0_ce0"); sc_trace(mVcdFile, ifm_buff0_0_we0, "ifm_buff0_0_we0"); sc_trace(mVcdFile, ifm_buff0_0_q0, "ifm_buff0_0_q0"); sc_trace(mVcdFile, ifm_buff0_0_address1, "ifm_buff0_0_address1"); sc_trace(mVcdFile, ifm_buff0_0_ce1, "ifm_buff0_0_ce1"); sc_trace(mVcdFile, ifm_buff0_0_q1, "ifm_buff0_0_q1"); sc_trace(mVcdFile, ifm_buff0_1_address0, "ifm_buff0_1_address0"); sc_trace(mVcdFile, ifm_buff0_1_ce0, "ifm_buff0_1_ce0"); sc_trace(mVcdFile, ifm_buff0_1_we0, "ifm_buff0_1_we0"); sc_trace(mVcdFile, ifm_buff0_1_q0, "ifm_buff0_1_q0"); sc_trace(mVcdFile, ifm_buff0_1_address1, "ifm_buff0_1_address1"); sc_trace(mVcdFile, ifm_buff0_1_ce1, "ifm_buff0_1_ce1"); sc_trace(mVcdFile, ifm_buff0_1_q1, "ifm_buff0_1_q1"); sc_trace(mVcdFile, ifm_buff0_2_address0, "ifm_buff0_2_address0"); sc_trace(mVcdFile, ifm_buff0_2_ce0, "ifm_buff0_2_ce0"); sc_trace(mVcdFile, ifm_buff0_2_we0, "ifm_buff0_2_we0"); sc_trace(mVcdFile, ifm_buff0_2_q0, "ifm_buff0_2_q0"); sc_trace(mVcdFile, ifm_buff0_2_address1, "ifm_buff0_2_address1"); sc_trace(mVcdFile, ifm_buff0_2_ce1, "ifm_buff0_2_ce1"); sc_trace(mVcdFile, ifm_buff0_2_q1, "ifm_buff0_2_q1"); sc_trace(mVcdFile, ifm_buff0_3_address0, "ifm_buff0_3_address0"); sc_trace(mVcdFile, ifm_buff0_3_ce0, "ifm_buff0_3_ce0"); sc_trace(mVcdFile, ifm_buff0_3_we0, "ifm_buff0_3_we0"); sc_trace(mVcdFile, ifm_buff0_3_q0, "ifm_buff0_3_q0"); sc_trace(mVcdFile, ifm_buff0_3_address1, "ifm_buff0_3_address1"); sc_trace(mVcdFile, ifm_buff0_3_ce1, "ifm_buff0_3_ce1"); sc_trace(mVcdFile, ifm_buff0_3_q1, "ifm_buff0_3_q1"); sc_trace(mVcdFile, ifm_buff0_4_address0, "ifm_buff0_4_address0"); sc_trace(mVcdFile, ifm_buff0_4_ce0, "ifm_buff0_4_ce0"); sc_trace(mVcdFile, ifm_buff0_4_we0, "ifm_buff0_4_we0"); sc_trace(mVcdFile, ifm_buff0_4_q0, "ifm_buff0_4_q0"); sc_trace(mVcdFile, ifm_buff0_4_address1, "ifm_buff0_4_address1"); sc_trace(mVcdFile, ifm_buff0_4_ce1, "ifm_buff0_4_ce1"); sc_trace(mVcdFile, ifm_buff0_4_q1, "ifm_buff0_4_q1"); sc_trace(mVcdFile, ifm_buff0_5_address0, "ifm_buff0_5_address0"); sc_trace(mVcdFile, ifm_buff0_5_ce0, "ifm_buff0_5_ce0"); sc_trace(mVcdFile, ifm_buff0_5_we0, "ifm_buff0_5_we0"); sc_trace(mVcdFile, ifm_buff0_5_q0, "ifm_buff0_5_q0"); sc_trace(mVcdFile, ifm_buff0_5_address1, "ifm_buff0_5_address1"); sc_trace(mVcdFile, ifm_buff0_5_ce1, "ifm_buff0_5_ce1"); sc_trace(mVcdFile, ifm_buff0_5_q1, "ifm_buff0_5_q1"); sc_trace(mVcdFile, ifm_buff0_6_address0, "ifm_buff0_6_address0"); sc_trace(mVcdFile, ifm_buff0_6_ce0, "ifm_buff0_6_ce0"); sc_trace(mVcdFile, ifm_buff0_6_we0, "ifm_buff0_6_we0"); sc_trace(mVcdFile, ifm_buff0_6_q0, "ifm_buff0_6_q0"); sc_trace(mVcdFile, ifm_buff0_6_address1, "ifm_buff0_6_address1"); sc_trace(mVcdFile, ifm_buff0_6_ce1, "ifm_buff0_6_ce1"); sc_trace(mVcdFile, ifm_buff0_6_q1, "ifm_buff0_6_q1"); sc_trace(mVcdFile, ifm_buff0_7_address0, "ifm_buff0_7_address0"); sc_trace(mVcdFile, ifm_buff0_7_ce0, "ifm_buff0_7_ce0"); sc_trace(mVcdFile, ifm_buff0_7_we0, "ifm_buff0_7_we0"); sc_trace(mVcdFile, ifm_buff0_7_q0, "ifm_buff0_7_q0"); sc_trace(mVcdFile, ifm_buff0_7_address1, "ifm_buff0_7_address1"); sc_trace(mVcdFile, ifm_buff0_7_ce1, "ifm_buff0_7_ce1"); sc_trace(mVcdFile, ifm_buff0_7_q1, "ifm_buff0_7_q1"); sc_trace(mVcdFile, ifm_buff0_8_address0, "ifm_buff0_8_address0"); sc_trace(mVcdFile, ifm_buff0_8_ce0, "ifm_buff0_8_ce0"); sc_trace(mVcdFile, ifm_buff0_8_we0, "ifm_buff0_8_we0"); sc_trace(mVcdFile, ifm_buff0_8_q0, "ifm_buff0_8_q0"); sc_trace(mVcdFile, ifm_buff0_8_address1, "ifm_buff0_8_address1"); sc_trace(mVcdFile, ifm_buff0_8_ce1, "ifm_buff0_8_ce1"); sc_trace(mVcdFile, ifm_buff0_8_q1, "ifm_buff0_8_q1"); sc_trace(mVcdFile, ifm_buff0_9_address0, "ifm_buff0_9_address0"); sc_trace(mVcdFile, ifm_buff0_9_ce0, "ifm_buff0_9_ce0"); sc_trace(mVcdFile, ifm_buff0_9_we0, "ifm_buff0_9_we0"); sc_trace(mVcdFile, ifm_buff0_9_q0, "ifm_buff0_9_q0"); sc_trace(mVcdFile, ifm_buff0_9_address1, "ifm_buff0_9_address1"); sc_trace(mVcdFile, ifm_buff0_9_ce1, "ifm_buff0_9_ce1"); sc_trace(mVcdFile, ifm_buff0_9_q1, "ifm_buff0_9_q1"); sc_trace(mVcdFile, ifm_buff0_10_address0, "ifm_buff0_10_address0"); sc_trace(mVcdFile, ifm_buff0_10_ce0, "ifm_buff0_10_ce0"); sc_trace(mVcdFile, ifm_buff0_10_we0, "ifm_buff0_10_we0"); sc_trace(mVcdFile, ifm_buff0_10_q0, "ifm_buff0_10_q0"); sc_trace(mVcdFile, ifm_buff0_10_address1, "ifm_buff0_10_address1"); sc_trace(mVcdFile, ifm_buff0_10_ce1, "ifm_buff0_10_ce1"); sc_trace(mVcdFile, ifm_buff0_10_q1, "ifm_buff0_10_q1"); sc_trace(mVcdFile, ifm_buff0_11_address0, "ifm_buff0_11_address0"); sc_trace(mVcdFile, ifm_buff0_11_ce0, "ifm_buff0_11_ce0"); sc_trace(mVcdFile, ifm_buff0_11_we0, "ifm_buff0_11_we0"); sc_trace(mVcdFile, ifm_buff0_11_q0, "ifm_buff0_11_q0"); sc_trace(mVcdFile, ifm_buff0_11_address1, "ifm_buff0_11_address1"); sc_trace(mVcdFile, ifm_buff0_11_ce1, "ifm_buff0_11_ce1"); sc_trace(mVcdFile, ifm_buff0_11_q1, "ifm_buff0_11_q1"); sc_trace(mVcdFile, ifm_buff0_12_address0, "ifm_buff0_12_address0"); sc_trace(mVcdFile, ifm_buff0_12_ce0, "ifm_buff0_12_ce0"); sc_trace(mVcdFile, ifm_buff0_12_we0, "ifm_buff0_12_we0"); sc_trace(mVcdFile, ifm_buff0_12_q0, "ifm_buff0_12_q0"); sc_trace(mVcdFile, ifm_buff0_12_address1, "ifm_buff0_12_address1"); sc_trace(mVcdFile, ifm_buff0_12_ce1, "ifm_buff0_12_ce1"); sc_trace(mVcdFile, ifm_buff0_12_q1, "ifm_buff0_12_q1"); sc_trace(mVcdFile, ifm_buff0_13_address0, "ifm_buff0_13_address0"); sc_trace(mVcdFile, ifm_buff0_13_ce0, "ifm_buff0_13_ce0"); sc_trace(mVcdFile, ifm_buff0_13_we0, "ifm_buff0_13_we0"); sc_trace(mVcdFile, ifm_buff0_13_q0, "ifm_buff0_13_q0"); sc_trace(mVcdFile, ifm_buff0_13_address1, "ifm_buff0_13_address1"); sc_trace(mVcdFile, ifm_buff0_13_ce1, "ifm_buff0_13_ce1"); sc_trace(mVcdFile, ifm_buff0_13_q1, "ifm_buff0_13_q1"); sc_trace(mVcdFile, ifm_buff0_14_address0, "ifm_buff0_14_address0"); sc_trace(mVcdFile, ifm_buff0_14_ce0, "ifm_buff0_14_ce0"); sc_trace(mVcdFile, ifm_buff0_14_we0, "ifm_buff0_14_we0"); sc_trace(mVcdFile, ifm_buff0_14_q0, "ifm_buff0_14_q0"); sc_trace(mVcdFile, ifm_buff0_14_address1, "ifm_buff0_14_address1"); sc_trace(mVcdFile, ifm_buff0_14_ce1, "ifm_buff0_14_ce1"); sc_trace(mVcdFile, ifm_buff0_14_q1, "ifm_buff0_14_q1"); sc_trace(mVcdFile, ifm_buff0_15_address0, "ifm_buff0_15_address0"); sc_trace(mVcdFile, ifm_buff0_15_ce0, "ifm_buff0_15_ce0"); sc_trace(mVcdFile, ifm_buff0_15_we0, "ifm_buff0_15_we0"); sc_trace(mVcdFile, ifm_buff0_15_q0, "ifm_buff0_15_q0"); sc_trace(mVcdFile, ifm_buff0_15_address1, "ifm_buff0_15_address1"); sc_trace(mVcdFile, ifm_buff0_15_ce1, "ifm_buff0_15_ce1"); sc_trace(mVcdFile, ifm_buff0_15_q1, "ifm_buff0_15_q1"); sc_trace(mVcdFile, ifm_buff1_0_address0, "ifm_buff1_0_address0"); sc_trace(mVcdFile, ifm_buff1_0_ce0, "ifm_buff1_0_ce0"); sc_trace(mVcdFile, ifm_buff1_0_we0, "ifm_buff1_0_we0"); sc_trace(mVcdFile, ifm_buff1_0_d0, "ifm_buff1_0_d0"); sc_trace(mVcdFile, ifm_buff1_0_q0, "ifm_buff1_0_q0"); sc_trace(mVcdFile, ifm_buff1_0_address1, "ifm_buff1_0_address1"); sc_trace(mVcdFile, ifm_buff1_0_ce1, "ifm_buff1_0_ce1"); sc_trace(mVcdFile, ifm_buff1_0_q1, "ifm_buff1_0_q1"); sc_trace(mVcdFile, ifm_buff1_1_address0, "ifm_buff1_1_address0"); sc_trace(mVcdFile, ifm_buff1_1_ce0, "ifm_buff1_1_ce0"); sc_trace(mVcdFile, ifm_buff1_1_we0, "ifm_buff1_1_we0"); sc_trace(mVcdFile, ifm_buff1_1_d0, "ifm_buff1_1_d0"); sc_trace(mVcdFile, ifm_buff1_1_q0, "ifm_buff1_1_q0"); sc_trace(mVcdFile, ifm_buff1_1_address1, "ifm_buff1_1_address1"); sc_trace(mVcdFile, ifm_buff1_1_ce1, "ifm_buff1_1_ce1"); sc_trace(mVcdFile, ifm_buff1_1_q1, "ifm_buff1_1_q1"); sc_trace(mVcdFile, ifm_buff1_2_address0, "ifm_buff1_2_address0"); sc_trace(mVcdFile, ifm_buff1_2_ce0, "ifm_buff1_2_ce0"); sc_trace(mVcdFile, ifm_buff1_2_we0, "ifm_buff1_2_we0"); sc_trace(mVcdFile, ifm_buff1_2_d0, "ifm_buff1_2_d0"); sc_trace(mVcdFile, ifm_buff1_2_q0, "ifm_buff1_2_q0"); sc_trace(mVcdFile, ifm_buff1_2_address1, "ifm_buff1_2_address1"); sc_trace(mVcdFile, ifm_buff1_2_ce1, "ifm_buff1_2_ce1"); sc_trace(mVcdFile, ifm_buff1_2_q1, "ifm_buff1_2_q1"); sc_trace(mVcdFile, ifm_buff1_3_address0, "ifm_buff1_3_address0"); sc_trace(mVcdFile, ifm_buff1_3_ce0, "ifm_buff1_3_ce0"); sc_trace(mVcdFile, ifm_buff1_3_we0, "ifm_buff1_3_we0"); sc_trace(mVcdFile, ifm_buff1_3_d0, "ifm_buff1_3_d0"); sc_trace(mVcdFile, ifm_buff1_3_q0, "ifm_buff1_3_q0"); sc_trace(mVcdFile, ifm_buff1_3_address1, "ifm_buff1_3_address1"); sc_trace(mVcdFile, ifm_buff1_3_ce1, "ifm_buff1_3_ce1"); sc_trace(mVcdFile, ifm_buff1_3_q1, "ifm_buff1_3_q1"); sc_trace(mVcdFile, ifm_buff1_4_address0, "ifm_buff1_4_address0"); sc_trace(mVcdFile, ifm_buff1_4_ce0, "ifm_buff1_4_ce0"); sc_trace(mVcdFile, ifm_buff1_4_we0, "ifm_buff1_4_we0"); sc_trace(mVcdFile, ifm_buff1_4_d0, "ifm_buff1_4_d0"); sc_trace(mVcdFile, ifm_buff1_4_q0, "ifm_buff1_4_q0"); sc_trace(mVcdFile, ifm_buff1_4_address1, "ifm_buff1_4_address1"); sc_trace(mVcdFile, ifm_buff1_4_ce1, "ifm_buff1_4_ce1"); sc_trace(mVcdFile, ifm_buff1_4_q1, "ifm_buff1_4_q1"); sc_trace(mVcdFile, ifm_buff1_5_address0, "ifm_buff1_5_address0"); sc_trace(mVcdFile, ifm_buff1_5_ce0, "ifm_buff1_5_ce0"); sc_trace(mVcdFile, ifm_buff1_5_we0, "ifm_buff1_5_we0"); sc_trace(mVcdFile, ifm_buff1_5_d0, "ifm_buff1_5_d0"); sc_trace(mVcdFile, ifm_buff1_5_q0, "ifm_buff1_5_q0"); sc_trace(mVcdFile, ifm_buff1_5_address1, "ifm_buff1_5_address1"); sc_trace(mVcdFile, ifm_buff1_5_ce1, "ifm_buff1_5_ce1"); sc_trace(mVcdFile, ifm_buff1_5_q1, "ifm_buff1_5_q1"); sc_trace(mVcdFile, ifm_buff1_6_address0, "ifm_buff1_6_address0"); sc_trace(mVcdFile, ifm_buff1_6_ce0, "ifm_buff1_6_ce0"); sc_trace(mVcdFile, ifm_buff1_6_we0, "ifm_buff1_6_we0"); sc_trace(mVcdFile, ifm_buff1_6_d0, "ifm_buff1_6_d0"); sc_trace(mVcdFile, ifm_buff1_6_q0, "ifm_buff1_6_q0"); sc_trace(mVcdFile, ifm_buff1_6_address1, "ifm_buff1_6_address1"); sc_trace(mVcdFile, ifm_buff1_6_ce1, "ifm_buff1_6_ce1"); sc_trace(mVcdFile, ifm_buff1_6_q1, "ifm_buff1_6_q1"); sc_trace(mVcdFile, ifm_buff1_7_address0, "ifm_buff1_7_address0"); sc_trace(mVcdFile, ifm_buff1_7_ce0, "ifm_buff1_7_ce0"); sc_trace(mVcdFile, ifm_buff1_7_we0, "ifm_buff1_7_we0"); sc_trace(mVcdFile, ifm_buff1_7_d0, "ifm_buff1_7_d0"); sc_trace(mVcdFile, ifm_buff1_7_q0, "ifm_buff1_7_q0"); sc_trace(mVcdFile, ifm_buff1_7_address1, "ifm_buff1_7_address1"); sc_trace(mVcdFile, ifm_buff1_7_ce1, "ifm_buff1_7_ce1"); sc_trace(mVcdFile, ifm_buff1_7_q1, "ifm_buff1_7_q1"); sc_trace(mVcdFile, ifm_buff1_8_address0, "ifm_buff1_8_address0"); sc_trace(mVcdFile, ifm_buff1_8_ce0, "ifm_buff1_8_ce0"); sc_trace(mVcdFile, ifm_buff1_8_we0, "ifm_buff1_8_we0"); sc_trace(mVcdFile, ifm_buff1_8_d0, "ifm_buff1_8_d0"); sc_trace(mVcdFile, ifm_buff1_8_q0, "ifm_buff1_8_q0"); sc_trace(mVcdFile, ifm_buff1_8_address1, "ifm_buff1_8_address1"); sc_trace(mVcdFile, ifm_buff1_8_ce1, "ifm_buff1_8_ce1"); sc_trace(mVcdFile, ifm_buff1_8_q1, "ifm_buff1_8_q1"); sc_trace(mVcdFile, ifm_buff1_9_address0, "ifm_buff1_9_address0"); sc_trace(mVcdFile, ifm_buff1_9_ce0, "ifm_buff1_9_ce0"); sc_trace(mVcdFile, ifm_buff1_9_we0, "ifm_buff1_9_we0"); sc_trace(mVcdFile, ifm_buff1_9_d0, "ifm_buff1_9_d0"); sc_trace(mVcdFile, ifm_buff1_9_q0, "ifm_buff1_9_q0"); sc_trace(mVcdFile, ifm_buff1_9_address1, "ifm_buff1_9_address1"); sc_trace(mVcdFile, ifm_buff1_9_ce1, "ifm_buff1_9_ce1"); sc_trace(mVcdFile, ifm_buff1_9_q1, "ifm_buff1_9_q1"); sc_trace(mVcdFile, ifm_buff1_10_address0, "ifm_buff1_10_address0"); sc_trace(mVcdFile, ifm_buff1_10_ce0, "ifm_buff1_10_ce0"); sc_trace(mVcdFile, ifm_buff1_10_we0, "ifm_buff1_10_we0"); sc_trace(mVcdFile, ifm_buff1_10_d0, "ifm_buff1_10_d0"); sc_trace(mVcdFile, ifm_buff1_10_q0, "ifm_buff1_10_q0"); sc_trace(mVcdFile, ifm_buff1_10_address1, "ifm_buff1_10_address1"); sc_trace(mVcdFile, ifm_buff1_10_ce1, "ifm_buff1_10_ce1"); sc_trace(mVcdFile, ifm_buff1_10_q1, "ifm_buff1_10_q1"); sc_trace(mVcdFile, ifm_buff1_11_address0, "ifm_buff1_11_address0"); sc_trace(mVcdFile, ifm_buff1_11_ce0, "ifm_buff1_11_ce0"); sc_trace(mVcdFile, ifm_buff1_11_we0, "ifm_buff1_11_we0"); sc_trace(mVcdFile, ifm_buff1_11_d0, "ifm_buff1_11_d0"); sc_trace(mVcdFile, ifm_buff1_11_q0, "ifm_buff1_11_q0"); sc_trace(mVcdFile, ifm_buff1_11_address1, "ifm_buff1_11_address1"); sc_trace(mVcdFile, ifm_buff1_11_ce1, "ifm_buff1_11_ce1"); sc_trace(mVcdFile, ifm_buff1_11_q1, "ifm_buff1_11_q1"); sc_trace(mVcdFile, ifm_buff1_12_address0, "ifm_buff1_12_address0"); sc_trace(mVcdFile, ifm_buff1_12_ce0, "ifm_buff1_12_ce0"); sc_trace(mVcdFile, ifm_buff1_12_we0, "ifm_buff1_12_we0"); sc_trace(mVcdFile, ifm_buff1_12_d0, "ifm_buff1_12_d0"); sc_trace(mVcdFile, ifm_buff1_12_q0, "ifm_buff1_12_q0"); sc_trace(mVcdFile, ifm_buff1_12_address1, "ifm_buff1_12_address1"); sc_trace(mVcdFile, ifm_buff1_12_ce1, "ifm_buff1_12_ce1"); sc_trace(mVcdFile, ifm_buff1_12_q1, "ifm_buff1_12_q1"); sc_trace(mVcdFile, ifm_buff1_13_address0, "ifm_buff1_13_address0"); sc_trace(mVcdFile, ifm_buff1_13_ce0, "ifm_buff1_13_ce0"); sc_trace(mVcdFile, ifm_buff1_13_we0, "ifm_buff1_13_we0"); sc_trace(mVcdFile, ifm_buff1_13_d0, "ifm_buff1_13_d0"); sc_trace(mVcdFile, ifm_buff1_13_q0, "ifm_buff1_13_q0"); sc_trace(mVcdFile, ifm_buff1_13_address1, "ifm_buff1_13_address1"); sc_trace(mVcdFile, ifm_buff1_13_ce1, "ifm_buff1_13_ce1"); sc_trace(mVcdFile, ifm_buff1_13_q1, "ifm_buff1_13_q1"); sc_trace(mVcdFile, ifm_buff1_14_address0, "ifm_buff1_14_address0"); sc_trace(mVcdFile, ifm_buff1_14_ce0, "ifm_buff1_14_ce0"); sc_trace(mVcdFile, ifm_buff1_14_we0, "ifm_buff1_14_we0"); sc_trace(mVcdFile, ifm_buff1_14_d0, "ifm_buff1_14_d0"); sc_trace(mVcdFile, ifm_buff1_14_q0, "ifm_buff1_14_q0"); sc_trace(mVcdFile, ifm_buff1_14_address1, "ifm_buff1_14_address1"); sc_trace(mVcdFile, ifm_buff1_14_ce1, "ifm_buff1_14_ce1"); sc_trace(mVcdFile, ifm_buff1_14_q1, "ifm_buff1_14_q1"); sc_trace(mVcdFile, ifm_buff1_15_address0, "ifm_buff1_15_address0"); sc_trace(mVcdFile, ifm_buff1_15_ce0, "ifm_buff1_15_ce0"); sc_trace(mVcdFile, ifm_buff1_15_we0, "ifm_buff1_15_we0"); sc_trace(mVcdFile, ifm_buff1_15_d0, "ifm_buff1_15_d0"); sc_trace(mVcdFile, ifm_buff1_15_q0, "ifm_buff1_15_q0"); sc_trace(mVcdFile, ifm_buff1_15_address1, "ifm_buff1_15_address1"); sc_trace(mVcdFile, ifm_buff1_15_ce1, "ifm_buff1_15_ce1"); sc_trace(mVcdFile, ifm_buff1_15_q1, "ifm_buff1_15_q1"); sc_trace(mVcdFile, ifm_buff2_0_address0, "ifm_buff2_0_address0"); sc_trace(mVcdFile, ifm_buff2_0_ce0, "ifm_buff2_0_ce0"); sc_trace(mVcdFile, ifm_buff2_0_we0, "ifm_buff2_0_we0"); sc_trace(mVcdFile, ifm_buff2_0_d0, "ifm_buff2_0_d0"); sc_trace(mVcdFile, ifm_buff2_0_q0, "ifm_buff2_0_q0"); sc_trace(mVcdFile, ifm_buff2_0_address1, "ifm_buff2_0_address1"); sc_trace(mVcdFile, ifm_buff2_0_ce1, "ifm_buff2_0_ce1"); sc_trace(mVcdFile, ifm_buff2_0_q1, "ifm_buff2_0_q1"); sc_trace(mVcdFile, ifm_buff2_1_address0, "ifm_buff2_1_address0"); sc_trace(mVcdFile, ifm_buff2_1_ce0, "ifm_buff2_1_ce0"); sc_trace(mVcdFile, ifm_buff2_1_we0, "ifm_buff2_1_we0"); sc_trace(mVcdFile, ifm_buff2_1_d0, "ifm_buff2_1_d0"); sc_trace(mVcdFile, ifm_buff2_1_q0, "ifm_buff2_1_q0"); sc_trace(mVcdFile, ifm_buff2_1_address1, "ifm_buff2_1_address1"); sc_trace(mVcdFile, ifm_buff2_1_ce1, "ifm_buff2_1_ce1"); sc_trace(mVcdFile, ifm_buff2_1_q1, "ifm_buff2_1_q1"); sc_trace(mVcdFile, ifm_buff2_2_address0, "ifm_buff2_2_address0"); sc_trace(mVcdFile, ifm_buff2_2_ce0, "ifm_buff2_2_ce0"); sc_trace(mVcdFile, ifm_buff2_2_we0, "ifm_buff2_2_we0"); sc_trace(mVcdFile, ifm_buff2_2_d0, "ifm_buff2_2_d0"); sc_trace(mVcdFile, ifm_buff2_2_q0, "ifm_buff2_2_q0"); sc_trace(mVcdFile, ifm_buff2_2_address1, "ifm_buff2_2_address1"); sc_trace(mVcdFile, ifm_buff2_2_ce1, "ifm_buff2_2_ce1"); sc_trace(mVcdFile, ifm_buff2_2_q1, "ifm_buff2_2_q1"); sc_trace(mVcdFile, ifm_buff2_3_address0, "ifm_buff2_3_address0"); sc_trace(mVcdFile, ifm_buff2_3_ce0, "ifm_buff2_3_ce0"); sc_trace(mVcdFile, ifm_buff2_3_we0, "ifm_buff2_3_we0"); sc_trace(mVcdFile, ifm_buff2_3_d0, "ifm_buff2_3_d0"); sc_trace(mVcdFile, ifm_buff2_3_q0, "ifm_buff2_3_q0"); sc_trace(mVcdFile, ifm_buff2_3_address1, "ifm_buff2_3_address1"); sc_trace(mVcdFile, ifm_buff2_3_ce1, "ifm_buff2_3_ce1"); sc_trace(mVcdFile, ifm_buff2_3_q1, "ifm_buff2_3_q1"); sc_trace(mVcdFile, ifm_buff2_4_address0, "ifm_buff2_4_address0"); sc_trace(mVcdFile, ifm_buff2_4_ce0, "ifm_buff2_4_ce0"); sc_trace(mVcdFile, ifm_buff2_4_we0, "ifm_buff2_4_we0"); sc_trace(mVcdFile, ifm_buff2_4_d0, "ifm_buff2_4_d0"); sc_trace(mVcdFile, ifm_buff2_4_q0, "ifm_buff2_4_q0"); sc_trace(mVcdFile, ifm_buff2_4_address1, "ifm_buff2_4_address1"); sc_trace(mVcdFile, ifm_buff2_4_ce1, "ifm_buff2_4_ce1"); sc_trace(mVcdFile, ifm_buff2_4_q1, "ifm_buff2_4_q1"); sc_trace(mVcdFile, ifm_buff2_5_address0, "ifm_buff2_5_address0"); sc_trace(mVcdFile, ifm_buff2_5_ce0, "ifm_buff2_5_ce0"); sc_trace(mVcdFile, ifm_buff2_5_we0, "ifm_buff2_5_we0"); sc_trace(mVcdFile, ifm_buff2_5_d0, "ifm_buff2_5_d0"); sc_trace(mVcdFile, ifm_buff2_5_q0, "ifm_buff2_5_q0"); sc_trace(mVcdFile, ifm_buff2_5_address1, "ifm_buff2_5_address1"); sc_trace(mVcdFile, ifm_buff2_5_ce1, "ifm_buff2_5_ce1"); sc_trace(mVcdFile, ifm_buff2_5_q1, "ifm_buff2_5_q1"); sc_trace(mVcdFile, ifm_buff2_6_address0, "ifm_buff2_6_address0"); sc_trace(mVcdFile, ifm_buff2_6_ce0, "ifm_buff2_6_ce0"); sc_trace(mVcdFile, ifm_buff2_6_we0, "ifm_buff2_6_we0"); sc_trace(mVcdFile, ifm_buff2_6_d0, "ifm_buff2_6_d0"); sc_trace(mVcdFile, ifm_buff2_6_q0, "ifm_buff2_6_q0"); sc_trace(mVcdFile, ifm_buff2_6_address1, "ifm_buff2_6_address1"); sc_trace(mVcdFile, ifm_buff2_6_ce1, "ifm_buff2_6_ce1"); sc_trace(mVcdFile, ifm_buff2_6_q1, "ifm_buff2_6_q1"); sc_trace(mVcdFile, ifm_buff2_7_address0, "ifm_buff2_7_address0"); sc_trace(mVcdFile, ifm_buff2_7_ce0, "ifm_buff2_7_ce0"); sc_trace(mVcdFile, ifm_buff2_7_we0, "ifm_buff2_7_we0"); sc_trace(mVcdFile, ifm_buff2_7_d0, "ifm_buff2_7_d0"); sc_trace(mVcdFile, ifm_buff2_7_q0, "ifm_buff2_7_q0"); sc_trace(mVcdFile, ifm_buff2_7_address1, "ifm_buff2_7_address1"); sc_trace(mVcdFile, ifm_buff2_7_ce1, "ifm_buff2_7_ce1"); sc_trace(mVcdFile, ifm_buff2_7_q1, "ifm_buff2_7_q1"); sc_trace(mVcdFile, ifm_buff2_8_address0, "ifm_buff2_8_address0"); sc_trace(mVcdFile, ifm_buff2_8_ce0, "ifm_buff2_8_ce0"); sc_trace(mVcdFile, ifm_buff2_8_we0, "ifm_buff2_8_we0"); sc_trace(mVcdFile, ifm_buff2_8_d0, "ifm_buff2_8_d0"); sc_trace(mVcdFile, ifm_buff2_8_q0, "ifm_buff2_8_q0"); sc_trace(mVcdFile, ifm_buff2_8_address1, "ifm_buff2_8_address1"); sc_trace(mVcdFile, ifm_buff2_8_ce1, "ifm_buff2_8_ce1"); sc_trace(mVcdFile, ifm_buff2_8_q1, "ifm_buff2_8_q1"); sc_trace(mVcdFile, ifm_buff2_9_address0, "ifm_buff2_9_address0"); sc_trace(mVcdFile, ifm_buff2_9_ce0, "ifm_buff2_9_ce0"); sc_trace(mVcdFile, ifm_buff2_9_we0, "ifm_buff2_9_we0"); sc_trace(mVcdFile, ifm_buff2_9_d0, "ifm_buff2_9_d0"); sc_trace(mVcdFile, ifm_buff2_9_q0, "ifm_buff2_9_q0"); sc_trace(mVcdFile, ifm_buff2_9_address1, "ifm_buff2_9_address1"); sc_trace(mVcdFile, ifm_buff2_9_ce1, "ifm_buff2_9_ce1"); sc_trace(mVcdFile, ifm_buff2_9_q1, "ifm_buff2_9_q1"); sc_trace(mVcdFile, ifm_buff2_10_address0, "ifm_buff2_10_address0"); sc_trace(mVcdFile, ifm_buff2_10_ce0, "ifm_buff2_10_ce0"); sc_trace(mVcdFile, ifm_buff2_10_we0, "ifm_buff2_10_we0"); sc_trace(mVcdFile, ifm_buff2_10_d0, "ifm_buff2_10_d0"); sc_trace(mVcdFile, ifm_buff2_10_q0, "ifm_buff2_10_q0"); sc_trace(mVcdFile, ifm_buff2_10_address1, "ifm_buff2_10_address1"); sc_trace(mVcdFile, ifm_buff2_10_ce1, "ifm_buff2_10_ce1"); sc_trace(mVcdFile, ifm_buff2_10_q1, "ifm_buff2_10_q1"); sc_trace(mVcdFile, ifm_buff2_11_address0, "ifm_buff2_11_address0"); sc_trace(mVcdFile, ifm_buff2_11_ce0, "ifm_buff2_11_ce0"); sc_trace(mVcdFile, ifm_buff2_11_we0, "ifm_buff2_11_we0"); sc_trace(mVcdFile, ifm_buff2_11_d0, "ifm_buff2_11_d0"); sc_trace(mVcdFile, ifm_buff2_11_q0, "ifm_buff2_11_q0"); sc_trace(mVcdFile, ifm_buff2_11_address1, "ifm_buff2_11_address1"); sc_trace(mVcdFile, ifm_buff2_11_ce1, "ifm_buff2_11_ce1"); sc_trace(mVcdFile, ifm_buff2_11_q1, "ifm_buff2_11_q1"); sc_trace(mVcdFile, ifm_buff2_12_address0, "ifm_buff2_12_address0"); sc_trace(mVcdFile, ifm_buff2_12_ce0, "ifm_buff2_12_ce0"); sc_trace(mVcdFile, ifm_buff2_12_we0, "ifm_buff2_12_we0"); sc_trace(mVcdFile, ifm_buff2_12_d0, "ifm_buff2_12_d0"); sc_trace(mVcdFile, ifm_buff2_12_q0, "ifm_buff2_12_q0"); sc_trace(mVcdFile, ifm_buff2_12_address1, "ifm_buff2_12_address1"); sc_trace(mVcdFile, ifm_buff2_12_ce1, "ifm_buff2_12_ce1"); sc_trace(mVcdFile, ifm_buff2_12_q1, "ifm_buff2_12_q1"); sc_trace(mVcdFile, ifm_buff2_13_address0, "ifm_buff2_13_address0"); sc_trace(mVcdFile, ifm_buff2_13_ce0, "ifm_buff2_13_ce0"); sc_trace(mVcdFile, ifm_buff2_13_we0, "ifm_buff2_13_we0"); sc_trace(mVcdFile, ifm_buff2_13_d0, "ifm_buff2_13_d0"); sc_trace(mVcdFile, ifm_buff2_13_q0, "ifm_buff2_13_q0"); sc_trace(mVcdFile, ifm_buff2_13_address1, "ifm_buff2_13_address1"); sc_trace(mVcdFile, ifm_buff2_13_ce1, "ifm_buff2_13_ce1"); sc_trace(mVcdFile, ifm_buff2_13_q1, "ifm_buff2_13_q1"); sc_trace(mVcdFile, ifm_buff2_14_address0, "ifm_buff2_14_address0"); sc_trace(mVcdFile, ifm_buff2_14_ce0, "ifm_buff2_14_ce0"); sc_trace(mVcdFile, ifm_buff2_14_we0, "ifm_buff2_14_we0"); sc_trace(mVcdFile, ifm_buff2_14_d0, "ifm_buff2_14_d0"); sc_trace(mVcdFile, ifm_buff2_14_q0, "ifm_buff2_14_q0"); sc_trace(mVcdFile, ifm_buff2_14_address1, "ifm_buff2_14_address1"); sc_trace(mVcdFile, ifm_buff2_14_ce1, "ifm_buff2_14_ce1"); sc_trace(mVcdFile, ifm_buff2_14_q1, "ifm_buff2_14_q1"); sc_trace(mVcdFile, ifm_buff2_15_address0, "ifm_buff2_15_address0"); sc_trace(mVcdFile, ifm_buff2_15_ce0, "ifm_buff2_15_ce0"); sc_trace(mVcdFile, ifm_buff2_15_we0, "ifm_buff2_15_we0"); sc_trace(mVcdFile, ifm_buff2_15_d0, "ifm_buff2_15_d0"); sc_trace(mVcdFile, ifm_buff2_15_q0, "ifm_buff2_15_q0"); sc_trace(mVcdFile, ifm_buff2_15_address1, "ifm_buff2_15_address1"); sc_trace(mVcdFile, ifm_buff2_15_ce1, "ifm_buff2_15_ce1"); sc_trace(mVcdFile, ifm_buff2_15_q1, "ifm_buff2_15_q1"); sc_trace(mVcdFile, ofm_buff0_0_address0, "ofm_buff0_0_address0"); sc_trace(mVcdFile, ofm_buff0_0_ce0, "ofm_buff0_0_ce0"); sc_trace(mVcdFile, ofm_buff0_0_we0, "ofm_buff0_0_we0"); sc_trace(mVcdFile, ofm_buff0_0_q0, "ofm_buff0_0_q0"); sc_trace(mVcdFile, ofm_buff0_1_address0, "ofm_buff0_1_address0"); sc_trace(mVcdFile, ofm_buff0_1_ce0, "ofm_buff0_1_ce0"); sc_trace(mVcdFile, ofm_buff0_1_we0, "ofm_buff0_1_we0"); sc_trace(mVcdFile, ofm_buff0_1_q0, "ofm_buff0_1_q0"); sc_trace(mVcdFile, ofm_buff0_2_address0, "ofm_buff0_2_address0"); sc_trace(mVcdFile, ofm_buff0_2_ce0, "ofm_buff0_2_ce0"); sc_trace(mVcdFile, ofm_buff0_2_we0, "ofm_buff0_2_we0"); sc_trace(mVcdFile, ofm_buff0_2_q0, "ofm_buff0_2_q0"); sc_trace(mVcdFile, ofm_buff0_3_address0, "ofm_buff0_3_address0"); sc_trace(mVcdFile, ofm_buff0_3_ce0, "ofm_buff0_3_ce0"); sc_trace(mVcdFile, ofm_buff0_3_we0, "ofm_buff0_3_we0"); sc_trace(mVcdFile, ofm_buff0_3_q0, "ofm_buff0_3_q0"); sc_trace(mVcdFile, ofm_buff0_4_address0, "ofm_buff0_4_address0"); sc_trace(mVcdFile, ofm_buff0_4_ce0, "ofm_buff0_4_ce0"); sc_trace(mVcdFile, ofm_buff0_4_we0, "ofm_buff0_4_we0"); sc_trace(mVcdFile, ofm_buff0_4_q0, "ofm_buff0_4_q0"); sc_trace(mVcdFile, ofm_buff0_5_address0, "ofm_buff0_5_address0"); sc_trace(mVcdFile, ofm_buff0_5_ce0, "ofm_buff0_5_ce0"); sc_trace(mVcdFile, ofm_buff0_5_we0, "ofm_buff0_5_we0"); sc_trace(mVcdFile, ofm_buff0_5_q0, "ofm_buff0_5_q0"); sc_trace(mVcdFile, ofm_buff0_6_address0, "ofm_buff0_6_address0"); sc_trace(mVcdFile, ofm_buff0_6_ce0, "ofm_buff0_6_ce0"); sc_trace(mVcdFile, ofm_buff0_6_we0, "ofm_buff0_6_we0"); sc_trace(mVcdFile, ofm_buff0_6_q0, "ofm_buff0_6_q0"); sc_trace(mVcdFile, ofm_buff0_7_address0, "ofm_buff0_7_address0"); sc_trace(mVcdFile, ofm_buff0_7_ce0, "ofm_buff0_7_ce0"); sc_trace(mVcdFile, ofm_buff0_7_we0, "ofm_buff0_7_we0"); sc_trace(mVcdFile, ofm_buff0_7_q0, "ofm_buff0_7_q0"); sc_trace(mVcdFile, ofm_buff0_8_address0, "ofm_buff0_8_address0"); sc_trace(mVcdFile, ofm_buff0_8_ce0, "ofm_buff0_8_ce0"); sc_trace(mVcdFile, ofm_buff0_8_we0, "ofm_buff0_8_we0"); sc_trace(mVcdFile, ofm_buff0_8_q0, "ofm_buff0_8_q0"); sc_trace(mVcdFile, ofm_buff0_9_address0, "ofm_buff0_9_address0"); sc_trace(mVcdFile, ofm_buff0_9_ce0, "ofm_buff0_9_ce0"); sc_trace(mVcdFile, ofm_buff0_9_we0, "ofm_buff0_9_we0"); sc_trace(mVcdFile, ofm_buff0_9_q0, "ofm_buff0_9_q0"); sc_trace(mVcdFile, ofm_buff0_10_address0, "ofm_buff0_10_address0"); sc_trace(mVcdFile, ofm_buff0_10_ce0, "ofm_buff0_10_ce0"); sc_trace(mVcdFile, ofm_buff0_10_we0, "ofm_buff0_10_we0"); sc_trace(mVcdFile, ofm_buff0_10_q0, "ofm_buff0_10_q0"); sc_trace(mVcdFile, ofm_buff0_11_address0, "ofm_buff0_11_address0"); sc_trace(mVcdFile, ofm_buff0_11_ce0, "ofm_buff0_11_ce0"); sc_trace(mVcdFile, ofm_buff0_11_we0, "ofm_buff0_11_we0"); sc_trace(mVcdFile, ofm_buff0_11_q0, "ofm_buff0_11_q0"); sc_trace(mVcdFile, ofm_buff0_12_address0, "ofm_buff0_12_address0"); sc_trace(mVcdFile, ofm_buff0_12_ce0, "ofm_buff0_12_ce0"); sc_trace(mVcdFile, ofm_buff0_12_we0, "ofm_buff0_12_we0"); sc_trace(mVcdFile, ofm_buff0_12_q0, "ofm_buff0_12_q0"); sc_trace(mVcdFile, ofm_buff0_13_address0, "ofm_buff0_13_address0"); sc_trace(mVcdFile, ofm_buff0_13_ce0, "ofm_buff0_13_ce0"); sc_trace(mVcdFile, ofm_buff0_13_we0, "ofm_buff0_13_we0"); sc_trace(mVcdFile, ofm_buff0_13_q0, "ofm_buff0_13_q0"); sc_trace(mVcdFile, ofm_buff0_14_address0, "ofm_buff0_14_address0"); sc_trace(mVcdFile, ofm_buff0_14_ce0, "ofm_buff0_14_ce0"); sc_trace(mVcdFile, ofm_buff0_14_we0, "ofm_buff0_14_we0"); sc_trace(mVcdFile, ofm_buff0_14_q0, "ofm_buff0_14_q0"); sc_trace(mVcdFile, ofm_buff0_15_address0, "ofm_buff0_15_address0"); sc_trace(mVcdFile, ofm_buff0_15_ce0, "ofm_buff0_15_ce0"); sc_trace(mVcdFile, ofm_buff0_15_we0, "ofm_buff0_15_we0"); sc_trace(mVcdFile, ofm_buff0_15_q0, "ofm_buff0_15_q0"); sc_trace(mVcdFile, ofm_buff1_0_address0, "ofm_buff1_0_address0"); sc_trace(mVcdFile, ofm_buff1_0_ce0, "ofm_buff1_0_ce0"); sc_trace(mVcdFile, ofm_buff1_0_we0, "ofm_buff1_0_we0"); sc_trace(mVcdFile, ofm_buff1_0_q0, "ofm_buff1_0_q0"); sc_trace(mVcdFile, ofm_buff1_1_address0, "ofm_buff1_1_address0"); sc_trace(mVcdFile, ofm_buff1_1_ce0, "ofm_buff1_1_ce0"); sc_trace(mVcdFile, ofm_buff1_1_we0, "ofm_buff1_1_we0"); sc_trace(mVcdFile, ofm_buff1_1_q0, "ofm_buff1_1_q0"); sc_trace(mVcdFile, ofm_buff1_2_address0, "ofm_buff1_2_address0"); sc_trace(mVcdFile, ofm_buff1_2_ce0, "ofm_buff1_2_ce0"); sc_trace(mVcdFile, ofm_buff1_2_we0, "ofm_buff1_2_we0"); sc_trace(mVcdFile, ofm_buff1_2_q0, "ofm_buff1_2_q0"); sc_trace(mVcdFile, ofm_buff1_3_address0, "ofm_buff1_3_address0"); sc_trace(mVcdFile, ofm_buff1_3_ce0, "ofm_buff1_3_ce0"); sc_trace(mVcdFile, ofm_buff1_3_we0, "ofm_buff1_3_we0"); sc_trace(mVcdFile, ofm_buff1_3_q0, "ofm_buff1_3_q0"); sc_trace(mVcdFile, ofm_buff1_4_address0, "ofm_buff1_4_address0"); sc_trace(mVcdFile, ofm_buff1_4_ce0, "ofm_buff1_4_ce0"); sc_trace(mVcdFile, ofm_buff1_4_we0, "ofm_buff1_4_we0"); sc_trace(mVcdFile, ofm_buff1_4_q0, "ofm_buff1_4_q0"); sc_trace(mVcdFile, ofm_buff1_5_address0, "ofm_buff1_5_address0"); sc_trace(mVcdFile, ofm_buff1_5_ce0, "ofm_buff1_5_ce0"); sc_trace(mVcdFile, ofm_buff1_5_we0, "ofm_buff1_5_we0"); sc_trace(mVcdFile, ofm_buff1_5_q0, "ofm_buff1_5_q0"); sc_trace(mVcdFile, ofm_buff1_6_address0, "ofm_buff1_6_address0"); sc_trace(mVcdFile, ofm_buff1_6_ce0, "ofm_buff1_6_ce0"); sc_trace(mVcdFile, ofm_buff1_6_we0, "ofm_buff1_6_we0"); sc_trace(mVcdFile, ofm_buff1_6_q0, "ofm_buff1_6_q0"); sc_trace(mVcdFile, ofm_buff1_7_address0, "ofm_buff1_7_address0"); sc_trace(mVcdFile, ofm_buff1_7_ce0, "ofm_buff1_7_ce0"); sc_trace(mVcdFile, ofm_buff1_7_we0, "ofm_buff1_7_we0"); sc_trace(mVcdFile, ofm_buff1_7_q0, "ofm_buff1_7_q0"); sc_trace(mVcdFile, ofm_buff1_8_address0, "ofm_buff1_8_address0"); sc_trace(mVcdFile, ofm_buff1_8_ce0, "ofm_buff1_8_ce0"); sc_trace(mVcdFile, ofm_buff1_8_we0, "ofm_buff1_8_we0"); sc_trace(mVcdFile, ofm_buff1_8_q0, "ofm_buff1_8_q0"); sc_trace(mVcdFile, ofm_buff1_9_address0, "ofm_buff1_9_address0"); sc_trace(mVcdFile, ofm_buff1_9_ce0, "ofm_buff1_9_ce0"); sc_trace(mVcdFile, ofm_buff1_9_we0, "ofm_buff1_9_we0"); sc_trace(mVcdFile, ofm_buff1_9_q0, "ofm_buff1_9_q0"); sc_trace(mVcdFile, ofm_buff1_10_address0, "ofm_buff1_10_address0"); sc_trace(mVcdFile, ofm_buff1_10_ce0, "ofm_buff1_10_ce0"); sc_trace(mVcdFile, ofm_buff1_10_we0, "ofm_buff1_10_we0"); sc_trace(mVcdFile, ofm_buff1_10_q0, "ofm_buff1_10_q0"); sc_trace(mVcdFile, ofm_buff1_11_address0, "ofm_buff1_11_address0"); sc_trace(mVcdFile, ofm_buff1_11_ce0, "ofm_buff1_11_ce0"); sc_trace(mVcdFile, ofm_buff1_11_we0, "ofm_buff1_11_we0"); sc_trace(mVcdFile, ofm_buff1_11_q0, "ofm_buff1_11_q0"); sc_trace(mVcdFile, ofm_buff1_12_address0, "ofm_buff1_12_address0"); sc_trace(mVcdFile, ofm_buff1_12_ce0, "ofm_buff1_12_ce0"); sc_trace(mVcdFile, ofm_buff1_12_we0, "ofm_buff1_12_we0"); sc_trace(mVcdFile, ofm_buff1_12_q0, "ofm_buff1_12_q0"); sc_trace(mVcdFile, ofm_buff1_13_address0, "ofm_buff1_13_address0"); sc_trace(mVcdFile, ofm_buff1_13_ce0, "ofm_buff1_13_ce0"); sc_trace(mVcdFile, ofm_buff1_13_we0, "ofm_buff1_13_we0"); sc_trace(mVcdFile, ofm_buff1_13_q0, "ofm_buff1_13_q0"); sc_trace(mVcdFile, ofm_buff1_14_address0, "ofm_buff1_14_address0"); sc_trace(mVcdFile, ofm_buff1_14_ce0, "ofm_buff1_14_ce0"); sc_trace(mVcdFile, ofm_buff1_14_we0, "ofm_buff1_14_we0"); sc_trace(mVcdFile, ofm_buff1_14_q0, "ofm_buff1_14_q0"); sc_trace(mVcdFile, ofm_buff1_15_address0, "ofm_buff1_15_address0"); sc_trace(mVcdFile, ofm_buff1_15_ce0, "ofm_buff1_15_ce0"); sc_trace(mVcdFile, ofm_buff1_15_we0, "ofm_buff1_15_we0"); sc_trace(mVcdFile, ofm_buff1_15_q0, "ofm_buff1_15_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ap_start, "grp_pool_write_fu_405_ap_start"); sc_trace(mVcdFile, grp_pool_write_fu_405_ap_idle, "grp_pool_write_fu_405_ap_idle"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_0_address0, "grp_pool_write_fu_405_ifm_buff0_0_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_0_ce0, "grp_pool_write_fu_405_ifm_buff0_0_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_0_q0, "grp_pool_write_fu_405_ifm_buff0_0_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_0_address1, "grp_pool_write_fu_405_ifm_buff0_0_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_0_ce1, "grp_pool_write_fu_405_ifm_buff0_0_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_0_q1, "grp_pool_write_fu_405_ifm_buff0_0_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_1_address0, "grp_pool_write_fu_405_ifm_buff0_1_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_1_ce0, "grp_pool_write_fu_405_ifm_buff0_1_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_1_q0, "grp_pool_write_fu_405_ifm_buff0_1_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_1_address1, "grp_pool_write_fu_405_ifm_buff0_1_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_1_ce1, "grp_pool_write_fu_405_ifm_buff0_1_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_1_q1, "grp_pool_write_fu_405_ifm_buff0_1_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_2_address0, "grp_pool_write_fu_405_ifm_buff0_2_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_2_ce0, "grp_pool_write_fu_405_ifm_buff0_2_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_2_q0, "grp_pool_write_fu_405_ifm_buff0_2_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_2_address1, "grp_pool_write_fu_405_ifm_buff0_2_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_2_ce1, "grp_pool_write_fu_405_ifm_buff0_2_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_2_q1, "grp_pool_write_fu_405_ifm_buff0_2_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_3_address0, "grp_pool_write_fu_405_ifm_buff0_3_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_3_ce0, "grp_pool_write_fu_405_ifm_buff0_3_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_3_q0, "grp_pool_write_fu_405_ifm_buff0_3_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_3_address1, "grp_pool_write_fu_405_ifm_buff0_3_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_3_ce1, "grp_pool_write_fu_405_ifm_buff0_3_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_3_q1, "grp_pool_write_fu_405_ifm_buff0_3_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_4_address0, "grp_pool_write_fu_405_ifm_buff0_4_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_4_ce0, "grp_pool_write_fu_405_ifm_buff0_4_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_4_q0, "grp_pool_write_fu_405_ifm_buff0_4_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_4_address1, "grp_pool_write_fu_405_ifm_buff0_4_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_4_ce1, "grp_pool_write_fu_405_ifm_buff0_4_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_4_q1, "grp_pool_write_fu_405_ifm_buff0_4_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_5_address0, "grp_pool_write_fu_405_ifm_buff0_5_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_5_ce0, "grp_pool_write_fu_405_ifm_buff0_5_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_5_q0, "grp_pool_write_fu_405_ifm_buff0_5_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_5_address1, "grp_pool_write_fu_405_ifm_buff0_5_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_5_ce1, "grp_pool_write_fu_405_ifm_buff0_5_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_5_q1, "grp_pool_write_fu_405_ifm_buff0_5_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_6_address0, "grp_pool_write_fu_405_ifm_buff0_6_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_6_ce0, "grp_pool_write_fu_405_ifm_buff0_6_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_6_q0, "grp_pool_write_fu_405_ifm_buff0_6_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_6_address1, "grp_pool_write_fu_405_ifm_buff0_6_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_6_ce1, "grp_pool_write_fu_405_ifm_buff0_6_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_6_q1, "grp_pool_write_fu_405_ifm_buff0_6_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_7_address0, "grp_pool_write_fu_405_ifm_buff0_7_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_7_ce0, "grp_pool_write_fu_405_ifm_buff0_7_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_7_q0, "grp_pool_write_fu_405_ifm_buff0_7_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_7_address1, "grp_pool_write_fu_405_ifm_buff0_7_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_7_ce1, "grp_pool_write_fu_405_ifm_buff0_7_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_7_q1, "grp_pool_write_fu_405_ifm_buff0_7_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_8_address0, "grp_pool_write_fu_405_ifm_buff0_8_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_8_ce0, "grp_pool_write_fu_405_ifm_buff0_8_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_8_q0, "grp_pool_write_fu_405_ifm_buff0_8_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_8_address1, "grp_pool_write_fu_405_ifm_buff0_8_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_8_ce1, "grp_pool_write_fu_405_ifm_buff0_8_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_8_q1, "grp_pool_write_fu_405_ifm_buff0_8_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_9_address0, "grp_pool_write_fu_405_ifm_buff0_9_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_9_ce0, "grp_pool_write_fu_405_ifm_buff0_9_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_9_q0, "grp_pool_write_fu_405_ifm_buff0_9_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_9_address1, "grp_pool_write_fu_405_ifm_buff0_9_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_9_ce1, "grp_pool_write_fu_405_ifm_buff0_9_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_9_q1, "grp_pool_write_fu_405_ifm_buff0_9_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_10_address0, "grp_pool_write_fu_405_ifm_buff0_10_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_10_ce0, "grp_pool_write_fu_405_ifm_buff0_10_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_10_q0, "grp_pool_write_fu_405_ifm_buff0_10_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_10_address1, "grp_pool_write_fu_405_ifm_buff0_10_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_10_ce1, "grp_pool_write_fu_405_ifm_buff0_10_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_10_q1, "grp_pool_write_fu_405_ifm_buff0_10_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_11_address0, "grp_pool_write_fu_405_ifm_buff0_11_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_11_ce0, "grp_pool_write_fu_405_ifm_buff0_11_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_11_q0, "grp_pool_write_fu_405_ifm_buff0_11_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_11_address1, "grp_pool_write_fu_405_ifm_buff0_11_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_11_ce1, "grp_pool_write_fu_405_ifm_buff0_11_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_11_q1, "grp_pool_write_fu_405_ifm_buff0_11_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_12_address0, "grp_pool_write_fu_405_ifm_buff0_12_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_12_ce0, "grp_pool_write_fu_405_ifm_buff0_12_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_12_q0, "grp_pool_write_fu_405_ifm_buff0_12_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_12_address1, "grp_pool_write_fu_405_ifm_buff0_12_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_12_ce1, "grp_pool_write_fu_405_ifm_buff0_12_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_12_q1, "grp_pool_write_fu_405_ifm_buff0_12_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_13_address0, "grp_pool_write_fu_405_ifm_buff0_13_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_13_ce0, "grp_pool_write_fu_405_ifm_buff0_13_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_13_q0, "grp_pool_write_fu_405_ifm_buff0_13_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_13_address1, "grp_pool_write_fu_405_ifm_buff0_13_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_13_ce1, "grp_pool_write_fu_405_ifm_buff0_13_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_13_q1, "grp_pool_write_fu_405_ifm_buff0_13_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_14_address0, "grp_pool_write_fu_405_ifm_buff0_14_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_14_ce0, "grp_pool_write_fu_405_ifm_buff0_14_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_14_q0, "grp_pool_write_fu_405_ifm_buff0_14_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_14_address1, "grp_pool_write_fu_405_ifm_buff0_14_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_14_ce1, "grp_pool_write_fu_405_ifm_buff0_14_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_14_q1, "grp_pool_write_fu_405_ifm_buff0_14_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_15_address0, "grp_pool_write_fu_405_ifm_buff0_15_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_15_ce0, "grp_pool_write_fu_405_ifm_buff0_15_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_15_q0, "grp_pool_write_fu_405_ifm_buff0_15_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_15_address1, "grp_pool_write_fu_405_ifm_buff0_15_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_15_ce1, "grp_pool_write_fu_405_ifm_buff0_15_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff0_15_q1, "grp_pool_write_fu_405_ifm_buff0_15_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_0_address0, "grp_pool_write_fu_405_ifm_buff1_0_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_0_ce0, "grp_pool_write_fu_405_ifm_buff1_0_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_0_q0, "grp_pool_write_fu_405_ifm_buff1_0_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_0_address1, "grp_pool_write_fu_405_ifm_buff1_0_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_0_ce1, "grp_pool_write_fu_405_ifm_buff1_0_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_0_q1, "grp_pool_write_fu_405_ifm_buff1_0_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_1_address0, "grp_pool_write_fu_405_ifm_buff1_1_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_1_ce0, "grp_pool_write_fu_405_ifm_buff1_1_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_1_q0, "grp_pool_write_fu_405_ifm_buff1_1_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_1_address1, "grp_pool_write_fu_405_ifm_buff1_1_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_1_ce1, "grp_pool_write_fu_405_ifm_buff1_1_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_1_q1, "grp_pool_write_fu_405_ifm_buff1_1_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_2_address0, "grp_pool_write_fu_405_ifm_buff1_2_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_2_ce0, "grp_pool_write_fu_405_ifm_buff1_2_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_2_q0, "grp_pool_write_fu_405_ifm_buff1_2_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_2_address1, "grp_pool_write_fu_405_ifm_buff1_2_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_2_ce1, "grp_pool_write_fu_405_ifm_buff1_2_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_2_q1, "grp_pool_write_fu_405_ifm_buff1_2_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_3_address0, "grp_pool_write_fu_405_ifm_buff1_3_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_3_ce0, "grp_pool_write_fu_405_ifm_buff1_3_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_3_q0, "grp_pool_write_fu_405_ifm_buff1_3_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_3_address1, "grp_pool_write_fu_405_ifm_buff1_3_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_3_ce1, "grp_pool_write_fu_405_ifm_buff1_3_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_3_q1, "grp_pool_write_fu_405_ifm_buff1_3_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_4_address0, "grp_pool_write_fu_405_ifm_buff1_4_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_4_ce0, "grp_pool_write_fu_405_ifm_buff1_4_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_4_q0, "grp_pool_write_fu_405_ifm_buff1_4_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_4_address1, "grp_pool_write_fu_405_ifm_buff1_4_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_4_ce1, "grp_pool_write_fu_405_ifm_buff1_4_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_4_q1, "grp_pool_write_fu_405_ifm_buff1_4_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_5_address0, "grp_pool_write_fu_405_ifm_buff1_5_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_5_ce0, "grp_pool_write_fu_405_ifm_buff1_5_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_5_q0, "grp_pool_write_fu_405_ifm_buff1_5_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_5_address1, "grp_pool_write_fu_405_ifm_buff1_5_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_5_ce1, "grp_pool_write_fu_405_ifm_buff1_5_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_5_q1, "grp_pool_write_fu_405_ifm_buff1_5_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_6_address0, "grp_pool_write_fu_405_ifm_buff1_6_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_6_ce0, "grp_pool_write_fu_405_ifm_buff1_6_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_6_q0, "grp_pool_write_fu_405_ifm_buff1_6_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_6_address1, "grp_pool_write_fu_405_ifm_buff1_6_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_6_ce1, "grp_pool_write_fu_405_ifm_buff1_6_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_6_q1, "grp_pool_write_fu_405_ifm_buff1_6_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_7_address0, "grp_pool_write_fu_405_ifm_buff1_7_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_7_ce0, "grp_pool_write_fu_405_ifm_buff1_7_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_7_q0, "grp_pool_write_fu_405_ifm_buff1_7_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_7_address1, "grp_pool_write_fu_405_ifm_buff1_7_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_7_ce1, "grp_pool_write_fu_405_ifm_buff1_7_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_7_q1, "grp_pool_write_fu_405_ifm_buff1_7_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_8_address0, "grp_pool_write_fu_405_ifm_buff1_8_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_8_ce0, "grp_pool_write_fu_405_ifm_buff1_8_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_8_q0, "grp_pool_write_fu_405_ifm_buff1_8_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_8_address1, "grp_pool_write_fu_405_ifm_buff1_8_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_8_ce1, "grp_pool_write_fu_405_ifm_buff1_8_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_8_q1, "grp_pool_write_fu_405_ifm_buff1_8_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_9_address0, "grp_pool_write_fu_405_ifm_buff1_9_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_9_ce0, "grp_pool_write_fu_405_ifm_buff1_9_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_9_q0, "grp_pool_write_fu_405_ifm_buff1_9_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_9_address1, "grp_pool_write_fu_405_ifm_buff1_9_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_9_ce1, "grp_pool_write_fu_405_ifm_buff1_9_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_9_q1, "grp_pool_write_fu_405_ifm_buff1_9_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_10_address0, "grp_pool_write_fu_405_ifm_buff1_10_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_10_ce0, "grp_pool_write_fu_405_ifm_buff1_10_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_10_q0, "grp_pool_write_fu_405_ifm_buff1_10_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_10_address1, "grp_pool_write_fu_405_ifm_buff1_10_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_10_ce1, "grp_pool_write_fu_405_ifm_buff1_10_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_10_q1, "grp_pool_write_fu_405_ifm_buff1_10_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_11_address0, "grp_pool_write_fu_405_ifm_buff1_11_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_11_ce0, "grp_pool_write_fu_405_ifm_buff1_11_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_11_q0, "grp_pool_write_fu_405_ifm_buff1_11_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_11_address1, "grp_pool_write_fu_405_ifm_buff1_11_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_11_ce1, "grp_pool_write_fu_405_ifm_buff1_11_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_11_q1, "grp_pool_write_fu_405_ifm_buff1_11_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_12_address0, "grp_pool_write_fu_405_ifm_buff1_12_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_12_ce0, "grp_pool_write_fu_405_ifm_buff1_12_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_12_q0, "grp_pool_write_fu_405_ifm_buff1_12_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_12_address1, "grp_pool_write_fu_405_ifm_buff1_12_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_12_ce1, "grp_pool_write_fu_405_ifm_buff1_12_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_12_q1, "grp_pool_write_fu_405_ifm_buff1_12_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_13_address0, "grp_pool_write_fu_405_ifm_buff1_13_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_13_ce0, "grp_pool_write_fu_405_ifm_buff1_13_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_13_q0, "grp_pool_write_fu_405_ifm_buff1_13_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_13_address1, "grp_pool_write_fu_405_ifm_buff1_13_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_13_ce1, "grp_pool_write_fu_405_ifm_buff1_13_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_13_q1, "grp_pool_write_fu_405_ifm_buff1_13_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_14_address0, "grp_pool_write_fu_405_ifm_buff1_14_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_14_ce0, "grp_pool_write_fu_405_ifm_buff1_14_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_14_q0, "grp_pool_write_fu_405_ifm_buff1_14_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_14_address1, "grp_pool_write_fu_405_ifm_buff1_14_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_14_ce1, "grp_pool_write_fu_405_ifm_buff1_14_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_14_q1, "grp_pool_write_fu_405_ifm_buff1_14_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_15_address0, "grp_pool_write_fu_405_ifm_buff1_15_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_15_ce0, "grp_pool_write_fu_405_ifm_buff1_15_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_15_q0, "grp_pool_write_fu_405_ifm_buff1_15_q0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_15_address1, "grp_pool_write_fu_405_ifm_buff1_15_address1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_15_ce1, "grp_pool_write_fu_405_ifm_buff1_15_ce1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ifm_buff1_15_q1, "grp_pool_write_fu_405_ifm_buff1_15_q1"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_0_address0, "grp_pool_write_fu_405_ofm_buff0_0_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_0_ce0, "grp_pool_write_fu_405_ofm_buff0_0_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_0_we0, "grp_pool_write_fu_405_ofm_buff0_0_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_0_d0, "grp_pool_write_fu_405_ofm_buff0_0_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_1_address0, "grp_pool_write_fu_405_ofm_buff0_1_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_1_ce0, "grp_pool_write_fu_405_ofm_buff0_1_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_1_we0, "grp_pool_write_fu_405_ofm_buff0_1_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_1_d0, "grp_pool_write_fu_405_ofm_buff0_1_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_2_address0, "grp_pool_write_fu_405_ofm_buff0_2_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_2_ce0, "grp_pool_write_fu_405_ofm_buff0_2_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_2_we0, "grp_pool_write_fu_405_ofm_buff0_2_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_2_d0, "grp_pool_write_fu_405_ofm_buff0_2_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_3_address0, "grp_pool_write_fu_405_ofm_buff0_3_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_3_ce0, "grp_pool_write_fu_405_ofm_buff0_3_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_3_we0, "grp_pool_write_fu_405_ofm_buff0_3_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_3_d0, "grp_pool_write_fu_405_ofm_buff0_3_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_4_address0, "grp_pool_write_fu_405_ofm_buff0_4_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_4_ce0, "grp_pool_write_fu_405_ofm_buff0_4_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_4_we0, "grp_pool_write_fu_405_ofm_buff0_4_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_4_d0, "grp_pool_write_fu_405_ofm_buff0_4_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_5_address0, "grp_pool_write_fu_405_ofm_buff0_5_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_5_ce0, "grp_pool_write_fu_405_ofm_buff0_5_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_5_we0, "grp_pool_write_fu_405_ofm_buff0_5_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_5_d0, "grp_pool_write_fu_405_ofm_buff0_5_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_6_address0, "grp_pool_write_fu_405_ofm_buff0_6_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_6_ce0, "grp_pool_write_fu_405_ofm_buff0_6_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_6_we0, "grp_pool_write_fu_405_ofm_buff0_6_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_6_d0, "grp_pool_write_fu_405_ofm_buff0_6_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_7_address0, "grp_pool_write_fu_405_ofm_buff0_7_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_7_ce0, "grp_pool_write_fu_405_ofm_buff0_7_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_7_we0, "grp_pool_write_fu_405_ofm_buff0_7_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_7_d0, "grp_pool_write_fu_405_ofm_buff0_7_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_8_address0, "grp_pool_write_fu_405_ofm_buff0_8_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_8_ce0, "grp_pool_write_fu_405_ofm_buff0_8_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_8_we0, "grp_pool_write_fu_405_ofm_buff0_8_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_8_d0, "grp_pool_write_fu_405_ofm_buff0_8_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_9_address0, "grp_pool_write_fu_405_ofm_buff0_9_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_9_ce0, "grp_pool_write_fu_405_ofm_buff0_9_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_9_we0, "grp_pool_write_fu_405_ofm_buff0_9_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_9_d0, "grp_pool_write_fu_405_ofm_buff0_9_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_10_address0, "grp_pool_write_fu_405_ofm_buff0_10_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_10_ce0, "grp_pool_write_fu_405_ofm_buff0_10_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_10_we0, "grp_pool_write_fu_405_ofm_buff0_10_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_10_d0, "grp_pool_write_fu_405_ofm_buff0_10_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_11_address0, "grp_pool_write_fu_405_ofm_buff0_11_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_11_ce0, "grp_pool_write_fu_405_ofm_buff0_11_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_11_we0, "grp_pool_write_fu_405_ofm_buff0_11_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_11_d0, "grp_pool_write_fu_405_ofm_buff0_11_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_12_address0, "grp_pool_write_fu_405_ofm_buff0_12_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_12_ce0, "grp_pool_write_fu_405_ofm_buff0_12_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_12_we0, "grp_pool_write_fu_405_ofm_buff0_12_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_12_d0, "grp_pool_write_fu_405_ofm_buff0_12_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_13_address0, "grp_pool_write_fu_405_ofm_buff0_13_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_13_ce0, "grp_pool_write_fu_405_ofm_buff0_13_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_13_we0, "grp_pool_write_fu_405_ofm_buff0_13_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_13_d0, "grp_pool_write_fu_405_ofm_buff0_13_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_14_address0, "grp_pool_write_fu_405_ofm_buff0_14_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_14_ce0, "grp_pool_write_fu_405_ofm_buff0_14_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_14_we0, "grp_pool_write_fu_405_ofm_buff0_14_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_14_d0, "grp_pool_write_fu_405_ofm_buff0_14_d0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_15_address0, "grp_pool_write_fu_405_ofm_buff0_15_address0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_15_ce0, "grp_pool_write_fu_405_ofm_buff0_15_ce0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_15_we0, "grp_pool_write_fu_405_ofm_buff0_15_we0"); sc_trace(mVcdFile, grp_pool_write_fu_405_ofm_buff0_15_d0, "grp_pool_write_fu_405_ofm_buff0_15_d0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ap_start, "grp_conv_read_fu_457_ap_start"); sc_trace(mVcdFile, grp_conv_read_fu_457_ap_idle, "grp_conv_read_fu_457_ap_idle"); sc_trace(mVcdFile, grp_conv_read_fu_457_cofm_TDATA, "grp_conv_read_fu_457_cofm_TDATA"); sc_trace(mVcdFile, grp_conv_read_fu_457_cofm_TVALID, "grp_conv_read_fu_457_cofm_TVALID"); sc_trace(mVcdFile, grp_conv_read_fu_457_cofm_TREADY, "grp_conv_read_fu_457_cofm_TREADY"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_0_address0, "grp_conv_read_fu_457_ofm_buff0_0_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_0_ce0, "grp_conv_read_fu_457_ofm_buff0_0_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_0_q0, "grp_conv_read_fu_457_ofm_buff0_0_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_1_address0, "grp_conv_read_fu_457_ofm_buff0_1_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_1_ce0, "grp_conv_read_fu_457_ofm_buff0_1_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_1_q0, "grp_conv_read_fu_457_ofm_buff0_1_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_2_address0, "grp_conv_read_fu_457_ofm_buff0_2_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_2_ce0, "grp_conv_read_fu_457_ofm_buff0_2_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_2_q0, "grp_conv_read_fu_457_ofm_buff0_2_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_3_address0, "grp_conv_read_fu_457_ofm_buff0_3_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_3_ce0, "grp_conv_read_fu_457_ofm_buff0_3_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_3_q0, "grp_conv_read_fu_457_ofm_buff0_3_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_4_address0, "grp_conv_read_fu_457_ofm_buff0_4_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_4_ce0, "grp_conv_read_fu_457_ofm_buff0_4_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_4_q0, "grp_conv_read_fu_457_ofm_buff0_4_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_5_address0, "grp_conv_read_fu_457_ofm_buff0_5_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_5_ce0, "grp_conv_read_fu_457_ofm_buff0_5_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_5_q0, "grp_conv_read_fu_457_ofm_buff0_5_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_6_address0, "grp_conv_read_fu_457_ofm_buff0_6_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_6_ce0, "grp_conv_read_fu_457_ofm_buff0_6_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_6_q0, "grp_conv_read_fu_457_ofm_buff0_6_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_7_address0, "grp_conv_read_fu_457_ofm_buff0_7_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_7_ce0, "grp_conv_read_fu_457_ofm_buff0_7_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_7_q0, "grp_conv_read_fu_457_ofm_buff0_7_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_8_address0, "grp_conv_read_fu_457_ofm_buff0_8_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_8_ce0, "grp_conv_read_fu_457_ofm_buff0_8_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_8_q0, "grp_conv_read_fu_457_ofm_buff0_8_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_9_address0, "grp_conv_read_fu_457_ofm_buff0_9_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_9_ce0, "grp_conv_read_fu_457_ofm_buff0_9_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_9_q0, "grp_conv_read_fu_457_ofm_buff0_9_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_10_address0, "grp_conv_read_fu_457_ofm_buff0_10_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_10_ce0, "grp_conv_read_fu_457_ofm_buff0_10_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_10_q0, "grp_conv_read_fu_457_ofm_buff0_10_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_11_address0, "grp_conv_read_fu_457_ofm_buff0_11_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_11_ce0, "grp_conv_read_fu_457_ofm_buff0_11_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_11_q0, "grp_conv_read_fu_457_ofm_buff0_11_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_12_address0, "grp_conv_read_fu_457_ofm_buff0_12_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_12_ce0, "grp_conv_read_fu_457_ofm_buff0_12_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_12_q0, "grp_conv_read_fu_457_ofm_buff0_12_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_13_address0, "grp_conv_read_fu_457_ofm_buff0_13_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_13_ce0, "grp_conv_read_fu_457_ofm_buff0_13_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_13_q0, "grp_conv_read_fu_457_ofm_buff0_13_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_14_address0, "grp_conv_read_fu_457_ofm_buff0_14_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_14_ce0, "grp_conv_read_fu_457_ofm_buff0_14_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_14_q0, "grp_conv_read_fu_457_ofm_buff0_14_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_15_address0, "grp_conv_read_fu_457_ofm_buff0_15_address0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_15_ce0, "grp_conv_read_fu_457_ofm_buff0_15_ce0"); sc_trace(mVcdFile, grp_conv_read_fu_457_ofm_buff0_15_q0, "grp_conv_read_fu_457_ofm_buff0_15_q0"); sc_trace(mVcdFile, grp_conv_read_fu_457_enable, "grp_conv_read_fu_457_enable"); sc_trace(mVcdFile, grp_conv_read_fu_457_ap_return, "grp_conv_read_fu_457_ap_return"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ap_start, "grp_write_row_ifm_fu_482_ap_start"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ap_idle, "grp_write_row_ifm_fu_482_ap_idle"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_cifm_TREADY, "grp_write_row_ifm_fu_482_cifm_TREADY"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_0_address0, "grp_write_row_ifm_fu_482_ifm_buff0_0_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_0_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_0_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_0_we0, "grp_write_row_ifm_fu_482_ifm_buff0_0_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_0_d0, "grp_write_row_ifm_fu_482_ifm_buff0_0_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_1_address0, "grp_write_row_ifm_fu_482_ifm_buff0_1_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_1_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_1_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_1_we0, "grp_write_row_ifm_fu_482_ifm_buff0_1_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_1_d0, "grp_write_row_ifm_fu_482_ifm_buff0_1_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_2_address0, "grp_write_row_ifm_fu_482_ifm_buff0_2_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_2_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_2_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_2_we0, "grp_write_row_ifm_fu_482_ifm_buff0_2_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_2_d0, "grp_write_row_ifm_fu_482_ifm_buff0_2_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_3_address0, "grp_write_row_ifm_fu_482_ifm_buff0_3_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_3_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_3_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_3_we0, "grp_write_row_ifm_fu_482_ifm_buff0_3_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_3_d0, "grp_write_row_ifm_fu_482_ifm_buff0_3_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_4_address0, "grp_write_row_ifm_fu_482_ifm_buff0_4_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_4_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_4_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_4_we0, "grp_write_row_ifm_fu_482_ifm_buff0_4_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_4_d0, "grp_write_row_ifm_fu_482_ifm_buff0_4_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_5_address0, "grp_write_row_ifm_fu_482_ifm_buff0_5_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_5_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_5_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_5_we0, "grp_write_row_ifm_fu_482_ifm_buff0_5_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_5_d0, "grp_write_row_ifm_fu_482_ifm_buff0_5_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_6_address0, "grp_write_row_ifm_fu_482_ifm_buff0_6_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_6_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_6_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_6_we0, "grp_write_row_ifm_fu_482_ifm_buff0_6_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_6_d0, "grp_write_row_ifm_fu_482_ifm_buff0_6_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_7_address0, "grp_write_row_ifm_fu_482_ifm_buff0_7_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_7_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_7_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_7_we0, "grp_write_row_ifm_fu_482_ifm_buff0_7_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_7_d0, "grp_write_row_ifm_fu_482_ifm_buff0_7_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_8_address0, "grp_write_row_ifm_fu_482_ifm_buff0_8_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_8_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_8_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_8_we0, "grp_write_row_ifm_fu_482_ifm_buff0_8_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_8_d0, "grp_write_row_ifm_fu_482_ifm_buff0_8_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_9_address0, "grp_write_row_ifm_fu_482_ifm_buff0_9_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_9_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_9_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_9_we0, "grp_write_row_ifm_fu_482_ifm_buff0_9_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_9_d0, "grp_write_row_ifm_fu_482_ifm_buff0_9_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_10_address0, "grp_write_row_ifm_fu_482_ifm_buff0_10_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_10_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_10_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_10_we0, "grp_write_row_ifm_fu_482_ifm_buff0_10_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_10_d0, "grp_write_row_ifm_fu_482_ifm_buff0_10_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_11_address0, "grp_write_row_ifm_fu_482_ifm_buff0_11_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_11_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_11_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_11_we0, "grp_write_row_ifm_fu_482_ifm_buff0_11_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_11_d0, "grp_write_row_ifm_fu_482_ifm_buff0_11_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_12_address0, "grp_write_row_ifm_fu_482_ifm_buff0_12_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_12_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_12_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_12_we0, "grp_write_row_ifm_fu_482_ifm_buff0_12_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_12_d0, "grp_write_row_ifm_fu_482_ifm_buff0_12_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_13_address0, "grp_write_row_ifm_fu_482_ifm_buff0_13_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_13_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_13_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_13_we0, "grp_write_row_ifm_fu_482_ifm_buff0_13_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_13_d0, "grp_write_row_ifm_fu_482_ifm_buff0_13_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_14_address0, "grp_write_row_ifm_fu_482_ifm_buff0_14_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_14_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_14_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_14_we0, "grp_write_row_ifm_fu_482_ifm_buff0_14_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_14_d0, "grp_write_row_ifm_fu_482_ifm_buff0_14_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_15_address0, "grp_write_row_ifm_fu_482_ifm_buff0_15_address0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_15_ce0, "grp_write_row_ifm_fu_482_ifm_buff0_15_ce0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_15_we0, "grp_write_row_ifm_fu_482_ifm_buff0_15_we0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ifm_buff0_15_d0, "grp_write_row_ifm_fu_482_ifm_buff0_15_d0"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_enable, "grp_write_row_ifm_fu_482_enable"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ap_return, "grp_write_row_ifm_fu_482_ap_return"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ap_start, "grp_load_cifm_data_pool_fu_506_ap_start"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ap_done, "grp_load_cifm_data_pool_fu_506_ap_done"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ap_idle, "grp_load_cifm_data_pool_fu_506_ap_idle"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ap_ready, "grp_load_cifm_data_pool_fu_506_ap_ready"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_cifm_TREADY, "grp_load_cifm_data_pool_fu_506_cifm_TREADY"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_0_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_0_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_0_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_0_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_0_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_0_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_0_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_0_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_1_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_1_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_1_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_1_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_1_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_1_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_1_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_1_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_2_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_2_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_2_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_2_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_2_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_2_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_2_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_2_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_3_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_3_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_3_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_3_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_3_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_3_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_3_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_3_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_4_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_4_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_4_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_4_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_4_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_4_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_4_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_4_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_5_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_5_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_5_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_5_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_5_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_5_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_5_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_5_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_6_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_6_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_6_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_6_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_6_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_6_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_6_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_6_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_7_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_7_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_7_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_7_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_7_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_7_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_7_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_7_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_8_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_8_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_8_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_8_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_8_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_8_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_8_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_8_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_9_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_9_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_9_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_9_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_9_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_9_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_9_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_9_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_10_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_10_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_10_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_10_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_10_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_10_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_10_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_10_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_11_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_11_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_11_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_11_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_11_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_11_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_11_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_11_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_12_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_12_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_12_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_12_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_12_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_12_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_12_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_12_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_13_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_13_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_13_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_13_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_13_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_13_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_13_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_13_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_14_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_14_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_14_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_14_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_14_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_14_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_14_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_14_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_15_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_15_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_15_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_15_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_15_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_15_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff0_15_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff0_15_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_0_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_0_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_0_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_0_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_0_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_0_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_0_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_0_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_1_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_1_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_1_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_1_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_1_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_1_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_1_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_1_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_2_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_2_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_2_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_2_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_2_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_2_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_2_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_2_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_3_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_3_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_3_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_3_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_3_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_3_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_3_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_3_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_4_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_4_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_4_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_4_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_4_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_4_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_4_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_4_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_5_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_5_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_5_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_5_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_5_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_5_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_5_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_5_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_6_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_6_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_6_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_6_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_6_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_6_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_6_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_6_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_7_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_7_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_7_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_7_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_7_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_7_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_7_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_7_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_8_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_8_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_8_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_8_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_8_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_8_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_8_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_8_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_9_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_9_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_9_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_9_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_9_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_9_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_9_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_9_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_10_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_10_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_10_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_10_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_10_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_10_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_10_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_10_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_11_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_11_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_11_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_11_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_11_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_11_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_11_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_11_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_12_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_12_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_12_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_12_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_12_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_12_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_12_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_12_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_13_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_13_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_13_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_13_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_13_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_13_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_13_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_13_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_14_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_14_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_14_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_14_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_14_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_14_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_14_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_14_d0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_15_address0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_15_address0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_15_ce0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_15_ce0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_15_we0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_15_we0"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ifm_buff1_15_d0, "grp_load_cifm_data_pool_fu_506_ifm_buff1_15_d0"); sc_trace(mVcdFile, rotate_counter_0_reg_382, "rotate_counter_0_reg_382"); sc_trace(mVcdFile, ap_CS_fsm_state2, "ap_CS_fsm_state2"); sc_trace(mVcdFile, row_0_reg_394, "row_0_reg_394"); sc_trace(mVcdFile, grp_pool_write_fu_405_ap_start_reg, "grp_pool_write_fu_405_ap_start_reg"); sc_trace(mVcdFile, grp_conv_read_fu_457_ap_start_reg, "grp_conv_read_fu_457_ap_start_reg"); sc_trace(mVcdFile, ap_CS_fsm_state5, "ap_CS_fsm_state5"); sc_trace(mVcdFile, grp_write_row_ifm_fu_482_ap_start_reg, "grp_write_row_ifm_fu_482_ap_start_reg"); sc_trace(mVcdFile, grp_load_cifm_data_pool_fu_506_ap_start_reg, "grp_load_cifm_data_pool_fu_506_ap_start_reg"); sc_trace(mVcdFile, cifm_counter_5_fu_54, "cifm_counter_5_fu_54"); sc_trace(mVcdFile, cofm_counter_5_fu_58, "cofm_counter_5_fu_58"); sc_trace(mVcdFile, rotate_counter_fu_670_p2, "rotate_counter_fu_670_p2"); sc_trace(mVcdFile, icmp_ln328_fu_676_p2, "icmp_ln328_fu_676_p2"); sc_trace(mVcdFile, ap_NS_fsm, "ap_NS_fsm"); #endif } } pool_hw::~pool_hw() { if (mVcdFile) sc_close_vcd_trace_file(mVcdFile); delete ifm_buff0_0_U; delete ifm_buff0_1_U; delete ifm_buff0_2_U; delete ifm_buff0_3_U; delete ifm_buff0_4_U; delete ifm_buff0_5_U; delete ifm_buff0_6_U; delete ifm_buff0_7_U; delete ifm_buff0_8_U; delete ifm_buff0_9_U; delete ifm_buff0_10_U; delete ifm_buff0_11_U; delete ifm_buff0_12_U; delete ifm_buff0_13_U; delete ifm_buff0_14_U; delete ifm_buff0_15_U; delete ifm_buff1_0_U; delete ifm_buff1_1_U; delete ifm_buff1_2_U; delete ifm_buff1_3_U; delete ifm_buff1_4_U; delete ifm_buff1_5_U; delete ifm_buff1_6_U; delete ifm_buff1_7_U; delete ifm_buff1_8_U; delete ifm_buff1_9_U; delete ifm_buff1_10_U; delete ifm_buff1_11_U; delete ifm_buff1_12_U; delete ifm_buff1_13_U; delete ifm_buff1_14_U; delete ifm_buff1_15_U; delete ifm_buff2_0_U; delete ifm_buff2_1_U; delete ifm_buff2_2_U; delete ifm_buff2_3_U; delete ifm_buff2_4_U; delete ifm_buff2_5_U; delete ifm_buff2_6_U; delete ifm_buff2_7_U; delete ifm_buff2_8_U; delete ifm_buff2_9_U; delete ifm_buff2_10_U; delete ifm_buff2_11_U; delete ifm_buff2_12_U; delete ifm_buff2_13_U; delete ifm_buff2_14_U; delete ifm_buff2_15_U; delete ofm_buff0_0_U; delete ofm_buff0_1_U; delete ofm_buff0_2_U; delete ofm_buff0_3_U; delete ofm_buff0_4_U; delete ofm_buff0_5_U; delete ofm_buff0_6_U; delete ofm_buff0_7_U; delete ofm_buff0_8_U; delete ofm_buff0_9_U; delete ofm_buff0_10_U; delete ofm_buff0_11_U; delete ofm_buff0_12_U; delete ofm_buff0_13_U; delete ofm_buff0_14_U; delete ofm_buff0_15_U; delete ofm_buff1_0_U; delete ofm_buff1_1_U; delete ofm_buff1_2_U; delete ofm_buff1_3_U; delete ofm_buff1_4_U; delete ofm_buff1_5_U; delete ofm_buff1_6_U; delete ofm_buff1_7_U; delete ofm_buff1_8_U; delete ofm_buff1_9_U; delete ofm_buff1_10_U; delete ofm_buff1_11_U; delete ofm_buff1_12_U; delete ofm_buff1_13_U; delete ofm_buff1_14_U; delete ofm_buff1_15_U; delete grp_pool_write_fu_405; delete grp_conv_read_fu_457; delete grp_write_row_ifm_fu_482; delete grp_load_cifm_data_pool_fu_506; } void pool_hw::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 (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln316_reg_733.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)))) { cifm_counter_5_fu_54 = grp_write_row_ifm_fu_482_ap_return.read(); } else 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_1))) { cifm_counter_5_fu_54 = ap_const_lv32_74; } if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln316_reg_733.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0)))) { cofm_counter_5_fu_58 = grp_conv_read_fu_457_ap_return.read(); } else 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_1))) { cofm_counter_5_fu_58 = ap_const_lv32_0; } if ( ap_rst.read() == ap_const_logic_1) { grp_conv_read_fu_457_ap_start_reg = ap_const_logic_0; } else { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_fu_651_p2.read()) && esl_seteq<1,1,1>(icmp_ln316_fu_657_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(icmp_ln307_fu_651_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(icmp_ln298_fu_645_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(icmp_ln289_fu_639_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(icmp_ln278_fu_633_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_1)))) { grp_conv_read_fu_457_ap_start_reg = ap_const_logic_1; } else if (esl_seteq<1,1,1>(ap_const_logic_1, grp_conv_read_fu_457_ap_ready.read())) { grp_conv_read_fu_457_ap_start_reg = ap_const_logic_0; } } if ( ap_rst.read() == ap_const_logic_1) { grp_load_cifm_data_pool_fu_506_ap_start_reg = ap_const_logic_0; } else { 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_1))) { grp_load_cifm_data_pool_fu_506_ap_start_reg = ap_const_logic_1; } else if (esl_seteq<1,1,1>(ap_const_logic_1, grp_load_cifm_data_pool_fu_506_ap_ready.read())) { grp_load_cifm_data_pool_fu_506_ap_start_reg = ap_const_logic_0; } } if ( ap_rst.read() == ap_const_logic_1) { grp_pool_write_fu_405_ap_start_reg = ap_const_logic_0; } else { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_fu_651_p2.read()) && esl_seteq<1,1,1>(icmp_ln316_fu_657_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(icmp_ln307_fu_651_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(icmp_ln298_fu_645_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(icmp_ln289_fu_639_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(icmp_ln278_fu_633_p2.read(), ap_const_lv1_1)))) { grp_pool_write_fu_405_ap_start_reg = ap_const_logic_1; } else if (esl_seteq<1,1,1>(ap_const_logic_1, grp_pool_write_fu_405_ap_ready.read())) { grp_pool_write_fu_405_ap_start_reg = ap_const_logic_0; } } if ( ap_rst.read() == ap_const_logic_1) { grp_write_row_ifm_fu_482_ap_start_reg = ap_const_logic_0; } else { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_fu_651_p2.read()) && esl_seteq<1,1,1>(icmp_ln316_fu_657_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(icmp_ln307_fu_651_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(icmp_ln298_fu_645_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(icmp_ln289_fu_639_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(icmp_ln278_fu_633_p2.read(), ap_const_lv1_1)))) { grp_write_row_ifm_fu_482_ap_start_reg = ap_const_logic_1; } else if (esl_seteq<1,1,1>(ap_const_logic_1, grp_write_row_ifm_fu_482_ap_ready.read())) { grp_write_row_ifm_fu_482_ap_start_reg = ap_const_logic_0; } } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0))) { rotate_counter_0_reg_382 = select_ln328_fu_682_p3.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()) && esl_seteq<1,1,1>(grp_load_cifm_data_pool_fu_506_ap_done.read(), ap_const_logic_1))) { rotate_counter_0_reg_382 = ap_const_lv16_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0))) { row_0_reg_394 = row_reg_712.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()) && esl_seteq<1,1,1>(grp_load_cifm_data_pool_fu_506_ap_done.read(), ap_const_logic_1))) { row_0_reg_394 = ap_const_lv6_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0))) { icmp_ln278_reg_717 = icmp_ln278_fu_633_p2.read(); } if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read())) { icmp_ln280_reg_707 = icmp_ln280_fu_620_p2.read(); row_reg_712 = row_fu_627_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(icmp_ln278_fu_633_p2.read(), ap_const_lv1_1))) { icmp_ln283_reg_737 = icmp_ln283_fu_663_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()))) { icmp_ln289_reg_721 = icmp_ln289_fu_639_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()))) { icmp_ln298_reg_725 = icmp_ln298_fu_645_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()))) { icmp_ln307_reg_729 = icmp_ln307_fu_651_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_fu_651_p2.read()))) { icmp_ln316_reg_733 = icmp_ln316_fu_657_p2.read(); } if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_fu_651_p2.read()) && esl_seteq<1,1,1>(icmp_ln316_fu_657_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(icmp_ln307_fu_651_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(icmp_ln298_fu_645_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(icmp_ln289_fu_639_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(icmp_ln278_fu_633_p2.read(), ap_const_lv1_1)))) { reg_594 = cifm_counter_5_fu_54.read(); } if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_fu_651_p2.read()) && esl_seteq<1,1,1>(icmp_ln316_fu_657_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_fu_645_p2.read()) && esl_seteq<1,1,1>(icmp_ln307_fu_651_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_fu_639_p2.read()) && esl_seteq<1,1,1>(icmp_ln298_fu_645_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_fu_633_p2.read()) && esl_seteq<1,1,1>(icmp_ln289_fu_639_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(icmp_ln278_fu_633_p2.read(), ap_const_lv1_1)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_1)))) { reg_599 = cofm_counter_5_fu_58.read(); } } void pool_hw::thread_ap_CS_fsm_state1() { ap_CS_fsm_state1 = ap_CS_fsm.read()[0]; } void pool_hw::thread_ap_CS_fsm_state2() { ap_CS_fsm_state2 = ap_CS_fsm.read()[1]; } void pool_hw::thread_ap_CS_fsm_state3() { ap_CS_fsm_state3 = ap_CS_fsm.read()[2]; } void pool_hw::thread_ap_CS_fsm_state4() { ap_CS_fsm_state4 = ap_CS_fsm.read()[3]; } void pool_hw::thread_ap_CS_fsm_state5() { ap_CS_fsm_state5 = ap_CS_fsm.read()[4]; } void pool_hw::thread_ap_block_state4_on_subcall_done() { ap_block_state4_on_subcall_done = ((esl_seteq<1,1,1>(ap_const_logic_0, grp_write_row_ifm_fu_482_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_pool_write_fu_405_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_conv_read_fu_457_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_write_row_ifm_fu_482_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_pool_write_fu_405_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_conv_read_fu_457_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_write_row_ifm_fu_482_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_pool_write_fu_405_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_conv_read_fu_457_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_write_row_ifm_fu_482_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_pool_write_fu_405_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_conv_read_fu_457_ap_done.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_write_row_ifm_fu_482_ap_done.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_pool_write_fu_405_ap_done.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_0, grp_conv_read_fu_457_ap_done.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read()))); } void pool_hw::thread_ap_done() { if (((esl_seteq<1,1,1>(ap_const_logic_0, ap_start.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()) && esl_seteq<1,1,1>(grp_conv_read_fu_457_ap_done.read(), ap_const_logic_1)))) { ap_done = ap_const_logic_1; } else { ap_done = ap_const_logic_0; } } void pool_hw::thread_ap_idle() { if ((esl_seteq<1,1,1>(ap_const_logic_0, ap_start.read()) && 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 pool_hw::thread_ap_predicate_op140_call_state4() { ap_predicate_op140_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln316_reg_733.read())); } void pool_hw::thread_ap_predicate_op141_call_state4() { ap_predicate_op141_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln316_reg_733.read())); } void pool_hw::thread_ap_predicate_op142_call_state4() { ap_predicate_op142_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln307_reg_729.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln316_reg_733.read())); } void pool_hw::thread_ap_predicate_op146_call_state4() { ap_predicate_op146_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln307_reg_729.read())); } void pool_hw::thread_ap_predicate_op147_call_state4() { ap_predicate_op147_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln307_reg_729.read())); } void pool_hw::thread_ap_predicate_op148_call_state4() { ap_predicate_op148_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln298_reg_725.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln307_reg_729.read())); } void pool_hw::thread_ap_predicate_op152_call_state4() { ap_predicate_op152_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln298_reg_725.read())); } void pool_hw::thread_ap_predicate_op153_call_state4() { ap_predicate_op153_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln298_reg_725.read())); } void pool_hw::thread_ap_predicate_op154_call_state4() { ap_predicate_op154_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln289_reg_721.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln298_reg_725.read())); } void pool_hw::thread_ap_predicate_op158_call_state4() { ap_predicate_op158_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln289_reg_721.read())); } void pool_hw::thread_ap_predicate_op159_call_state4() { ap_predicate_op159_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln289_reg_721.read())); } void pool_hw::thread_ap_predicate_op160_call_state4() { ap_predicate_op160_call_state4 = (esl_seteq<1,1,1>(ap_const_lv1_0, icmp_ln278_reg_717.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln289_reg_721.read())); } void pool_hw::thread_ap_ready() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()) && esl_seteq<1,1,1>(grp_conv_read_fu_457_ap_done.read(), ap_const_logic_1))) { ap_ready = ap_const_logic_1; } else { ap_ready = ap_const_logic_0; } } void pool_hw::thread_cifm_TREADY() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { cifm_TREADY = grp_load_cifm_data_pool_fu_506_cifm_TREADY.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { cifm_TREADY = grp_write_row_ifm_fu_482_cifm_TREADY.read(); } else { cifm_TREADY = ap_const_logic_0; } } void pool_hw::thread_cofm_TDATA() { cofm_TDATA = grp_conv_read_fu_457_cofm_TDATA.read(); } void pool_hw::thread_cofm_TVALID() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { cofm_TVALID = grp_conv_read_fu_457_cofm_TVALID.read(); } else { cofm_TVALID = ap_const_logic_0; } } void pool_hw::thread_grp_conv_read_fu_457_ap_start() { grp_conv_read_fu_457_ap_start = grp_conv_read_fu_457_ap_start_reg.read(); } void pool_hw::thread_grp_conv_read_fu_457_cofm_TREADY() { grp_conv_read_fu_457_cofm_TREADY = ((cofm_TREADY.read() & ap_CS_fsm_state4.read()) | (cofm_TREADY.read() & ap_CS_fsm_state5.read())); } void pool_hw::thread_grp_conv_read_fu_457_enable() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read()))) { grp_conv_read_fu_457_enable = (sc_logic) (icmp_ln283_reg_737.read()[0]); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_enable = (sc_logic) (ap_const_lv1_1[0]); } else { grp_conv_read_fu_457_enable = sc_logic('X'); } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_0_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_0_q0 = ofm_buff0_0_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_0_q0 = ofm_buff1_0_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_0_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_10_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_10_q0 = ofm_buff0_10_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_10_q0 = ofm_buff1_10_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_10_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_11_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_11_q0 = ofm_buff0_11_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_11_q0 = ofm_buff1_11_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_11_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_12_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_12_q0 = ofm_buff0_12_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_12_q0 = ofm_buff1_12_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_12_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_13_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_13_q0 = ofm_buff0_13_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_13_q0 = ofm_buff1_13_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_13_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_14_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_14_q0 = ofm_buff0_14_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_14_q0 = ofm_buff1_14_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_14_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_15_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_15_q0 = ofm_buff0_15_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_15_q0 = ofm_buff1_15_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_15_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_1_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_1_q0 = ofm_buff0_1_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_1_q0 = ofm_buff1_1_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_1_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_2_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_2_q0 = ofm_buff0_2_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_2_q0 = ofm_buff1_2_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_2_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_3_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_3_q0 = ofm_buff0_3_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_3_q0 = ofm_buff1_3_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_3_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_4_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_4_q0 = ofm_buff0_4_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_4_q0 = ofm_buff1_4_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_4_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_5_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_5_q0 = ofm_buff0_5_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_5_q0 = ofm_buff1_5_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_5_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_6_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_6_q0 = ofm_buff0_6_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_6_q0 = ofm_buff1_6_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_6_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_7_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_7_q0 = ofm_buff0_7_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_7_q0 = ofm_buff1_7_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_7_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_8_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_8_q0 = ofm_buff0_8_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_8_q0 = ofm_buff1_8_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_8_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_conv_read_fu_457_ofm_buff0_9_q0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { grp_conv_read_fu_457_ofm_buff0_9_q0 = ofm_buff0_9_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { grp_conv_read_fu_457_ofm_buff0_9_q0 = ofm_buff1_9_q0.read(); } else { grp_conv_read_fu_457_ofm_buff0_9_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_load_cifm_data_pool_fu_506_ap_start() { grp_load_cifm_data_pool_fu_506_ap_start = grp_load_cifm_data_pool_fu_506_ap_start_reg.read(); } void pool_hw::thread_grp_pool_write_fu_405_ap_start() { grp_pool_write_fu_405_ap_start = grp_pool_write_fu_405_ap_start_reg.read(); } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_0_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_0_q0 = ifm_buff0_0_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_0_q0 = ifm_buff1_0_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_0_q0 = ifm_buff2_0_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_0_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_0_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_0_q1 = ifm_buff0_0_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_0_q1 = ifm_buff1_0_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_0_q1 = ifm_buff2_0_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_0_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_10_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_10_q0 = ifm_buff0_10_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_10_q0 = ifm_buff1_10_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_10_q0 = ifm_buff2_10_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_10_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_10_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_10_q1 = ifm_buff0_10_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_10_q1 = ifm_buff1_10_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_10_q1 = ifm_buff2_10_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_10_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_11_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_11_q0 = ifm_buff0_11_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_11_q0 = ifm_buff1_11_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_11_q0 = ifm_buff2_11_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_11_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_11_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_11_q1 = ifm_buff0_11_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_11_q1 = ifm_buff1_11_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_11_q1 = ifm_buff2_11_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_11_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_12_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_12_q0 = ifm_buff0_12_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_12_q0 = ifm_buff1_12_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_12_q0 = ifm_buff2_12_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_12_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_12_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_12_q1 = ifm_buff0_12_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_12_q1 = ifm_buff1_12_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_12_q1 = ifm_buff2_12_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_12_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_13_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_13_q0 = ifm_buff0_13_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_13_q0 = ifm_buff1_13_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_13_q0 = ifm_buff2_13_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_13_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_13_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_13_q1 = ifm_buff0_13_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_13_q1 = ifm_buff1_13_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_13_q1 = ifm_buff2_13_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_13_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_14_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_14_q0 = ifm_buff0_14_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_14_q0 = ifm_buff1_14_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_14_q0 = ifm_buff2_14_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_14_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_14_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_14_q1 = ifm_buff0_14_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_14_q1 = ifm_buff1_14_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_14_q1 = ifm_buff2_14_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_14_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_15_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_15_q0 = ifm_buff0_15_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_15_q0 = ifm_buff1_15_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_15_q0 = ifm_buff2_15_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_15_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_15_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_15_q1 = ifm_buff0_15_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_15_q1 = ifm_buff1_15_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_15_q1 = ifm_buff2_15_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_15_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_1_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_1_q0 = ifm_buff0_1_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_1_q0 = ifm_buff1_1_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_1_q0 = ifm_buff2_1_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_1_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_1_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_1_q1 = ifm_buff0_1_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_1_q1 = ifm_buff1_1_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_1_q1 = ifm_buff2_1_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_1_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_2_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_2_q0 = ifm_buff0_2_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_2_q0 = ifm_buff1_2_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_2_q0 = ifm_buff2_2_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_2_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_2_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_2_q1 = ifm_buff0_2_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_2_q1 = ifm_buff1_2_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_2_q1 = ifm_buff2_2_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_2_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_3_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_3_q0 = ifm_buff0_3_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_3_q0 = ifm_buff1_3_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_3_q0 = ifm_buff2_3_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_3_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_3_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_3_q1 = ifm_buff0_3_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_3_q1 = ifm_buff1_3_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_3_q1 = ifm_buff2_3_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_3_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_4_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_4_q0 = ifm_buff0_4_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_4_q0 = ifm_buff1_4_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_4_q0 = ifm_buff2_4_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_4_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_4_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_4_q1 = ifm_buff0_4_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_4_q1 = ifm_buff1_4_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_4_q1 = ifm_buff2_4_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_4_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_5_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_5_q0 = ifm_buff0_5_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_5_q0 = ifm_buff1_5_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_5_q0 = ifm_buff2_5_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_5_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_5_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_5_q1 = ifm_buff0_5_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_5_q1 = ifm_buff1_5_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_5_q1 = ifm_buff2_5_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_5_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_6_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_6_q0 = ifm_buff0_6_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_6_q0 = ifm_buff1_6_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_6_q0 = ifm_buff2_6_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_6_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_6_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_6_q1 = ifm_buff0_6_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_6_q1 = ifm_buff1_6_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_6_q1 = ifm_buff2_6_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_6_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_7_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_7_q0 = ifm_buff0_7_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_7_q0 = ifm_buff1_7_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_7_q0 = ifm_buff2_7_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_7_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_7_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_7_q1 = ifm_buff0_7_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_7_q1 = ifm_buff1_7_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_7_q1 = ifm_buff2_7_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_7_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_8_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_8_q0 = ifm_buff0_8_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_8_q0 = ifm_buff1_8_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_8_q0 = ifm_buff2_8_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_8_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_8_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_8_q1 = ifm_buff0_8_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_8_q1 = ifm_buff1_8_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_8_q1 = ifm_buff2_8_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_8_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_9_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_9_q0 = ifm_buff0_9_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_9_q0 = ifm_buff1_9_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_9_q0 = ifm_buff2_9_q0.read(); } else { grp_pool_write_fu_405_ifm_buff0_9_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff0_9_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff0_9_q1 = ifm_buff0_9_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff0_9_q1 = ifm_buff1_9_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff0_9_q1 = ifm_buff2_9_q1.read(); } else { grp_pool_write_fu_405_ifm_buff0_9_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_0_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_0_q0 = ifm_buff1_0_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_0_q0 = ifm_buff2_0_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_0_q0 = ifm_buff0_0_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_0_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_0_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_0_q1 = ifm_buff1_0_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_0_q1 = ifm_buff2_0_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_0_q1 = ifm_buff0_0_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_0_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_10_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_10_q0 = ifm_buff1_10_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_10_q0 = ifm_buff2_10_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_10_q0 = ifm_buff0_10_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_10_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_10_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_10_q1 = ifm_buff1_10_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_10_q1 = ifm_buff2_10_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_10_q1 = ifm_buff0_10_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_10_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_11_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_11_q0 = ifm_buff1_11_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_11_q0 = ifm_buff2_11_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_11_q0 = ifm_buff0_11_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_11_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_11_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_11_q1 = ifm_buff1_11_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_11_q1 = ifm_buff2_11_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_11_q1 = ifm_buff0_11_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_11_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_12_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_12_q0 = ifm_buff1_12_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_12_q0 = ifm_buff2_12_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_12_q0 = ifm_buff0_12_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_12_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_12_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_12_q1 = ifm_buff1_12_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_12_q1 = ifm_buff2_12_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_12_q1 = ifm_buff0_12_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_12_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_13_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_13_q0 = ifm_buff1_13_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_13_q0 = ifm_buff2_13_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_13_q0 = ifm_buff0_13_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_13_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_13_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_13_q1 = ifm_buff1_13_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_13_q1 = ifm_buff2_13_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_13_q1 = ifm_buff0_13_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_13_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_14_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_14_q0 = ifm_buff1_14_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_14_q0 = ifm_buff2_14_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_14_q0 = ifm_buff0_14_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_14_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_14_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_14_q1 = ifm_buff1_14_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_14_q1 = ifm_buff2_14_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_14_q1 = ifm_buff0_14_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_14_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_15_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_15_q0 = ifm_buff1_15_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_15_q0 = ifm_buff2_15_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_15_q0 = ifm_buff0_15_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_15_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_15_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_15_q1 = ifm_buff1_15_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_15_q1 = ifm_buff2_15_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_15_q1 = ifm_buff0_15_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_15_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_1_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_1_q0 = ifm_buff1_1_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_1_q0 = ifm_buff2_1_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_1_q0 = ifm_buff0_1_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_1_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_1_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_1_q1 = ifm_buff1_1_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_1_q1 = ifm_buff2_1_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_1_q1 = ifm_buff0_1_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_1_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_2_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_2_q0 = ifm_buff1_2_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_2_q0 = ifm_buff2_2_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_2_q0 = ifm_buff0_2_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_2_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_2_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_2_q1 = ifm_buff1_2_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_2_q1 = ifm_buff2_2_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_2_q1 = ifm_buff0_2_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_2_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_3_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_3_q0 = ifm_buff1_3_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_3_q0 = ifm_buff2_3_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_3_q0 = ifm_buff0_3_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_3_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_3_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_3_q1 = ifm_buff1_3_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_3_q1 = ifm_buff2_3_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_3_q1 = ifm_buff0_3_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_3_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_4_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_4_q0 = ifm_buff1_4_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_4_q0 = ifm_buff2_4_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_4_q0 = ifm_buff0_4_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_4_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_4_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_4_q1 = ifm_buff1_4_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_4_q1 = ifm_buff2_4_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_4_q1 = ifm_buff0_4_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_4_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_5_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_5_q0 = ifm_buff1_5_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_5_q0 = ifm_buff2_5_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_5_q0 = ifm_buff0_5_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_5_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_5_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_5_q1 = ifm_buff1_5_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_5_q1 = ifm_buff2_5_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_5_q1 = ifm_buff0_5_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_5_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_6_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_6_q0 = ifm_buff1_6_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_6_q0 = ifm_buff2_6_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_6_q0 = ifm_buff0_6_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_6_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_6_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_6_q1 = ifm_buff1_6_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_6_q1 = ifm_buff2_6_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_6_q1 = ifm_buff0_6_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_6_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_7_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_7_q0 = ifm_buff1_7_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_7_q0 = ifm_buff2_7_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_7_q0 = ifm_buff0_7_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_7_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_7_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_7_q1 = ifm_buff1_7_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_7_q1 = ifm_buff2_7_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_7_q1 = ifm_buff0_7_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_7_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_8_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_8_q0 = ifm_buff1_8_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_8_q0 = ifm_buff2_8_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_8_q0 = ifm_buff0_8_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_8_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_8_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_8_q1 = ifm_buff1_8_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_8_q1 = ifm_buff2_8_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_8_q1 = ifm_buff0_8_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_8_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_9_q0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_9_q0 = ifm_buff1_9_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_9_q0 = ifm_buff2_9_q0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_9_q0 = ifm_buff0_9_q0.read(); } else { grp_pool_write_fu_405_ifm_buff1_9_q0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_pool_write_fu_405_ifm_buff1_9_q1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { grp_pool_write_fu_405_ifm_buff1_9_q1 = ifm_buff1_9_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { grp_pool_write_fu_405_ifm_buff1_9_q1 = ifm_buff2_9_q1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { grp_pool_write_fu_405_ifm_buff1_9_q1 = ifm_buff0_9_q1.read(); } else { grp_pool_write_fu_405_ifm_buff1_9_q1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_grp_write_row_ifm_fu_482_ap_start() { grp_write_row_ifm_fu_482_ap_start = grp_write_row_ifm_fu_482_ap_start_reg.read(); } void pool_hw::thread_grp_write_row_ifm_fu_482_enable() { grp_write_row_ifm_fu_482_enable = (sc_logic) (icmp_ln280_reg_707.read()[0]); } void pool_hw::thread_icmp_ln275_fu_614_p2() { icmp_ln275_fu_614_p2 = (!row_0_reg_394.read().is_01() || !ap_const_lv6_38.is_01())? sc_lv<1>(): sc_lv<1>(row_0_reg_394.read() == ap_const_lv6_38); } void pool_hw::thread_icmp_ln278_fu_633_p2() { icmp_ln278_fu_633_p2 = (!rotate_counter_0_reg_382.read().is_01() || !ap_const_lv16_0.is_01())? sc_lv<1>(): sc_lv<1>(rotate_counter_0_reg_382.read() == ap_const_lv16_0); } void pool_hw::thread_icmp_ln280_fu_620_p2() { icmp_ln280_fu_620_p2 = (!row_0_reg_394.read().is_01() || !ap_const_lv6_37.is_01())? sc_lv<1>(): sc_lv<1>(row_0_reg_394.read() != ap_const_lv6_37); } void pool_hw::thread_icmp_ln283_fu_663_p2() { icmp_ln283_fu_663_p2 = (!row_0_reg_394.read().is_01() || !ap_const_lv6_0.is_01())? sc_lv<1>(): sc_lv<1>(row_0_reg_394.read() != ap_const_lv6_0); } void pool_hw::thread_icmp_ln289_fu_639_p2() { icmp_ln289_fu_639_p2 = (!rotate_counter_0_reg_382.read().is_01() || !ap_const_lv16_1.is_01())? sc_lv<1>(): sc_lv<1>(rotate_counter_0_reg_382.read() == ap_const_lv16_1); } void pool_hw::thread_icmp_ln298_fu_645_p2() { icmp_ln298_fu_645_p2 = (!rotate_counter_0_reg_382.read().is_01() || !ap_const_lv16_2.is_01())? sc_lv<1>(): sc_lv<1>(rotate_counter_0_reg_382.read() == ap_const_lv16_2); } void pool_hw::thread_icmp_ln307_fu_651_p2() { icmp_ln307_fu_651_p2 = (!rotate_counter_0_reg_382.read().is_01() || !ap_const_lv16_3.is_01())? sc_lv<1>(): sc_lv<1>(rotate_counter_0_reg_382.read() == ap_const_lv16_3); } void pool_hw::thread_icmp_ln316_fu_657_p2() { icmp_ln316_fu_657_p2 = (!rotate_counter_0_reg_382.read().is_01() || !ap_const_lv16_4.is_01())? sc_lv<1>(): sc_lv<1>(rotate_counter_0_reg_382.read() == ap_const_lv16_4); } void pool_hw::thread_icmp_ln328_fu_676_p2() { icmp_ln328_fu_676_p2 = (!rotate_counter_fu_670_p2.read().is_01() || !ap_const_lv16_5.is_01())? sc_lv<1>(): sc_lv<1>(rotate_counter_fu_670_p2.read() == ap_const_lv16_5); } void pool_hw::thread_ifm_buff0_0_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_0_address0 = grp_write_row_ifm_fu_482_ifm_buff0_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_0_address0 = grp_pool_write_fu_405_ifm_buff1_0_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_0_address0 = grp_pool_write_fu_405_ifm_buff0_0_address0.read(); } else { ifm_buff0_0_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_0_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_0_address1 = grp_pool_write_fu_405_ifm_buff1_0_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_0_address1 = grp_pool_write_fu_405_ifm_buff0_0_address1.read(); } else { ifm_buff0_0_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_0_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_0_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_0_ce0 = grp_pool_write_fu_405_ifm_buff1_0_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_0_ce0 = grp_pool_write_fu_405_ifm_buff0_0_ce0.read(); } else { ifm_buff0_0_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_0_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_0_ce1 = grp_pool_write_fu_405_ifm_buff1_0_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_0_ce1 = grp_pool_write_fu_405_ifm_buff0_0_ce1.read(); } else { ifm_buff0_0_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_0_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_0_we0 = grp_write_row_ifm_fu_482_ifm_buff0_0_we0.read(); } else { ifm_buff0_0_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_10_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_10_address0 = grp_write_row_ifm_fu_482_ifm_buff0_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_10_address0 = grp_pool_write_fu_405_ifm_buff1_10_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_10_address0 = grp_pool_write_fu_405_ifm_buff0_10_address0.read(); } else { ifm_buff0_10_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_10_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_10_address1 = grp_pool_write_fu_405_ifm_buff1_10_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_10_address1 = grp_pool_write_fu_405_ifm_buff0_10_address1.read(); } else { ifm_buff0_10_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_10_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_10_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_10_ce0 = grp_pool_write_fu_405_ifm_buff1_10_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_10_ce0 = grp_pool_write_fu_405_ifm_buff0_10_ce0.read(); } else { ifm_buff0_10_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_10_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_10_ce1 = grp_pool_write_fu_405_ifm_buff1_10_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_10_ce1 = grp_pool_write_fu_405_ifm_buff0_10_ce1.read(); } else { ifm_buff0_10_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_10_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_10_we0 = grp_write_row_ifm_fu_482_ifm_buff0_10_we0.read(); } else { ifm_buff0_10_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_11_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_11_address0 = grp_write_row_ifm_fu_482_ifm_buff0_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_11_address0 = grp_pool_write_fu_405_ifm_buff1_11_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_11_address0 = grp_pool_write_fu_405_ifm_buff0_11_address0.read(); } else { ifm_buff0_11_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_11_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_11_address1 = grp_pool_write_fu_405_ifm_buff1_11_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_11_address1 = grp_pool_write_fu_405_ifm_buff0_11_address1.read(); } else { ifm_buff0_11_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_11_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_11_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_11_ce0 = grp_pool_write_fu_405_ifm_buff1_11_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_11_ce0 = grp_pool_write_fu_405_ifm_buff0_11_ce0.read(); } else { ifm_buff0_11_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_11_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_11_ce1 = grp_pool_write_fu_405_ifm_buff1_11_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_11_ce1 = grp_pool_write_fu_405_ifm_buff0_11_ce1.read(); } else { ifm_buff0_11_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_11_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_11_we0 = grp_write_row_ifm_fu_482_ifm_buff0_11_we0.read(); } else { ifm_buff0_11_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_12_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_12_address0 = grp_write_row_ifm_fu_482_ifm_buff0_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_12_address0 = grp_pool_write_fu_405_ifm_buff1_12_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_12_address0 = grp_pool_write_fu_405_ifm_buff0_12_address0.read(); } else { ifm_buff0_12_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_12_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_12_address1 = grp_pool_write_fu_405_ifm_buff1_12_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_12_address1 = grp_pool_write_fu_405_ifm_buff0_12_address1.read(); } else { ifm_buff0_12_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_12_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_12_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_12_ce0 = grp_pool_write_fu_405_ifm_buff1_12_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_12_ce0 = grp_pool_write_fu_405_ifm_buff0_12_ce0.read(); } else { ifm_buff0_12_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_12_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_12_ce1 = grp_pool_write_fu_405_ifm_buff1_12_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_12_ce1 = grp_pool_write_fu_405_ifm_buff0_12_ce1.read(); } else { ifm_buff0_12_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_12_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_12_we0 = grp_write_row_ifm_fu_482_ifm_buff0_12_we0.read(); } else { ifm_buff0_12_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_13_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_13_address0 = grp_write_row_ifm_fu_482_ifm_buff0_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_13_address0 = grp_pool_write_fu_405_ifm_buff1_13_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_13_address0 = grp_pool_write_fu_405_ifm_buff0_13_address0.read(); } else { ifm_buff0_13_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_13_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_13_address1 = grp_pool_write_fu_405_ifm_buff1_13_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_13_address1 = grp_pool_write_fu_405_ifm_buff0_13_address1.read(); } else { ifm_buff0_13_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_13_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_13_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_13_ce0 = grp_pool_write_fu_405_ifm_buff1_13_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_13_ce0 = grp_pool_write_fu_405_ifm_buff0_13_ce0.read(); } else { ifm_buff0_13_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_13_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_13_ce1 = grp_pool_write_fu_405_ifm_buff1_13_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_13_ce1 = grp_pool_write_fu_405_ifm_buff0_13_ce1.read(); } else { ifm_buff0_13_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_13_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_13_we0 = grp_write_row_ifm_fu_482_ifm_buff0_13_we0.read(); } else { ifm_buff0_13_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_14_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_14_address0 = grp_write_row_ifm_fu_482_ifm_buff0_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_14_address0 = grp_pool_write_fu_405_ifm_buff1_14_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_14_address0 = grp_pool_write_fu_405_ifm_buff0_14_address0.read(); } else { ifm_buff0_14_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_14_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_14_address1 = grp_pool_write_fu_405_ifm_buff1_14_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_14_address1 = grp_pool_write_fu_405_ifm_buff0_14_address1.read(); } else { ifm_buff0_14_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_14_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_14_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_14_ce0 = grp_pool_write_fu_405_ifm_buff1_14_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_14_ce0 = grp_pool_write_fu_405_ifm_buff0_14_ce0.read(); } else { ifm_buff0_14_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_14_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_14_ce1 = grp_pool_write_fu_405_ifm_buff1_14_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_14_ce1 = grp_pool_write_fu_405_ifm_buff0_14_ce1.read(); } else { ifm_buff0_14_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_14_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_14_we0 = grp_write_row_ifm_fu_482_ifm_buff0_14_we0.read(); } else { ifm_buff0_14_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_15_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_15_address0 = grp_write_row_ifm_fu_482_ifm_buff0_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_15_address0 = grp_pool_write_fu_405_ifm_buff1_15_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_15_address0 = grp_pool_write_fu_405_ifm_buff0_15_address0.read(); } else { ifm_buff0_15_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_15_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_15_address1 = grp_pool_write_fu_405_ifm_buff1_15_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_15_address1 = grp_pool_write_fu_405_ifm_buff0_15_address1.read(); } else { ifm_buff0_15_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_15_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_15_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_15_ce0 = grp_pool_write_fu_405_ifm_buff1_15_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_15_ce0 = grp_pool_write_fu_405_ifm_buff0_15_ce0.read(); } else { ifm_buff0_15_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_15_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_15_ce1 = grp_pool_write_fu_405_ifm_buff1_15_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_15_ce1 = grp_pool_write_fu_405_ifm_buff0_15_ce1.read(); } else { ifm_buff0_15_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_15_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_15_we0 = grp_write_row_ifm_fu_482_ifm_buff0_15_we0.read(); } else { ifm_buff0_15_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_1_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_1_address0 = grp_write_row_ifm_fu_482_ifm_buff0_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_1_address0 = grp_pool_write_fu_405_ifm_buff1_1_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_1_address0 = grp_pool_write_fu_405_ifm_buff0_1_address0.read(); } else { ifm_buff0_1_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_1_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_1_address1 = grp_pool_write_fu_405_ifm_buff1_1_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_1_address1 = grp_pool_write_fu_405_ifm_buff0_1_address1.read(); } else { ifm_buff0_1_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_1_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_1_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_1_ce0 = grp_pool_write_fu_405_ifm_buff1_1_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_1_ce0 = grp_pool_write_fu_405_ifm_buff0_1_ce0.read(); } else { ifm_buff0_1_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_1_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_1_ce1 = grp_pool_write_fu_405_ifm_buff1_1_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_1_ce1 = grp_pool_write_fu_405_ifm_buff0_1_ce1.read(); } else { ifm_buff0_1_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_1_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_1_we0 = grp_write_row_ifm_fu_482_ifm_buff0_1_we0.read(); } else { ifm_buff0_1_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_2_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_2_address0 = grp_write_row_ifm_fu_482_ifm_buff0_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_2_address0 = grp_pool_write_fu_405_ifm_buff1_2_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_2_address0 = grp_pool_write_fu_405_ifm_buff0_2_address0.read(); } else { ifm_buff0_2_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_2_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_2_address1 = grp_pool_write_fu_405_ifm_buff1_2_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_2_address1 = grp_pool_write_fu_405_ifm_buff0_2_address1.read(); } else { ifm_buff0_2_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_2_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_2_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_2_ce0 = grp_pool_write_fu_405_ifm_buff1_2_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_2_ce0 = grp_pool_write_fu_405_ifm_buff0_2_ce0.read(); } else { ifm_buff0_2_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_2_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_2_ce1 = grp_pool_write_fu_405_ifm_buff1_2_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_2_ce1 = grp_pool_write_fu_405_ifm_buff0_2_ce1.read(); } else { ifm_buff0_2_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_2_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_2_we0 = grp_write_row_ifm_fu_482_ifm_buff0_2_we0.read(); } else { ifm_buff0_2_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_3_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_3_address0 = grp_write_row_ifm_fu_482_ifm_buff0_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_3_address0 = grp_pool_write_fu_405_ifm_buff1_3_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_3_address0 = grp_pool_write_fu_405_ifm_buff0_3_address0.read(); } else { ifm_buff0_3_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_3_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_3_address1 = grp_pool_write_fu_405_ifm_buff1_3_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_3_address1 = grp_pool_write_fu_405_ifm_buff0_3_address1.read(); } else { ifm_buff0_3_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_3_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_3_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_3_ce0 = grp_pool_write_fu_405_ifm_buff1_3_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_3_ce0 = grp_pool_write_fu_405_ifm_buff0_3_ce0.read(); } else { ifm_buff0_3_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_3_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_3_ce1 = grp_pool_write_fu_405_ifm_buff1_3_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_3_ce1 = grp_pool_write_fu_405_ifm_buff0_3_ce1.read(); } else { ifm_buff0_3_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_3_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_3_we0 = grp_write_row_ifm_fu_482_ifm_buff0_3_we0.read(); } else { ifm_buff0_3_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_4_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_4_address0 = grp_write_row_ifm_fu_482_ifm_buff0_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_4_address0 = grp_pool_write_fu_405_ifm_buff1_4_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_4_address0 = grp_pool_write_fu_405_ifm_buff0_4_address0.read(); } else { ifm_buff0_4_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_4_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_4_address1 = grp_pool_write_fu_405_ifm_buff1_4_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_4_address1 = grp_pool_write_fu_405_ifm_buff0_4_address1.read(); } else { ifm_buff0_4_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_4_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_4_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_4_ce0 = grp_pool_write_fu_405_ifm_buff1_4_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_4_ce0 = grp_pool_write_fu_405_ifm_buff0_4_ce0.read(); } else { ifm_buff0_4_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_4_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_4_ce1 = grp_pool_write_fu_405_ifm_buff1_4_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_4_ce1 = grp_pool_write_fu_405_ifm_buff0_4_ce1.read(); } else { ifm_buff0_4_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_4_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_4_we0 = grp_write_row_ifm_fu_482_ifm_buff0_4_we0.read(); } else { ifm_buff0_4_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_5_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_5_address0 = grp_write_row_ifm_fu_482_ifm_buff0_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_5_address0 = grp_pool_write_fu_405_ifm_buff1_5_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_5_address0 = grp_pool_write_fu_405_ifm_buff0_5_address0.read(); } else { ifm_buff0_5_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_5_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_5_address1 = grp_pool_write_fu_405_ifm_buff1_5_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_5_address1 = grp_pool_write_fu_405_ifm_buff0_5_address1.read(); } else { ifm_buff0_5_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_5_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_5_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_5_ce0 = grp_pool_write_fu_405_ifm_buff1_5_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_5_ce0 = grp_pool_write_fu_405_ifm_buff0_5_ce0.read(); } else { ifm_buff0_5_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_5_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_5_ce1 = grp_pool_write_fu_405_ifm_buff1_5_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_5_ce1 = grp_pool_write_fu_405_ifm_buff0_5_ce1.read(); } else { ifm_buff0_5_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_5_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_5_we0 = grp_write_row_ifm_fu_482_ifm_buff0_5_we0.read(); } else { ifm_buff0_5_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_6_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_6_address0 = grp_write_row_ifm_fu_482_ifm_buff0_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_6_address0 = grp_pool_write_fu_405_ifm_buff1_6_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_6_address0 = grp_pool_write_fu_405_ifm_buff0_6_address0.read(); } else { ifm_buff0_6_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_6_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_6_address1 = grp_pool_write_fu_405_ifm_buff1_6_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_6_address1 = grp_pool_write_fu_405_ifm_buff0_6_address1.read(); } else { ifm_buff0_6_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_6_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_6_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_6_ce0 = grp_pool_write_fu_405_ifm_buff1_6_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_6_ce0 = grp_pool_write_fu_405_ifm_buff0_6_ce0.read(); } else { ifm_buff0_6_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_6_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_6_ce1 = grp_pool_write_fu_405_ifm_buff1_6_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_6_ce1 = grp_pool_write_fu_405_ifm_buff0_6_ce1.read(); } else { ifm_buff0_6_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_6_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_6_we0 = grp_write_row_ifm_fu_482_ifm_buff0_6_we0.read(); } else { ifm_buff0_6_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_7_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_7_address0 = grp_write_row_ifm_fu_482_ifm_buff0_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_7_address0 = grp_pool_write_fu_405_ifm_buff1_7_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_7_address0 = grp_pool_write_fu_405_ifm_buff0_7_address0.read(); } else { ifm_buff0_7_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_7_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_7_address1 = grp_pool_write_fu_405_ifm_buff1_7_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_7_address1 = grp_pool_write_fu_405_ifm_buff0_7_address1.read(); } else { ifm_buff0_7_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_7_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_7_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_7_ce0 = grp_pool_write_fu_405_ifm_buff1_7_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_7_ce0 = grp_pool_write_fu_405_ifm_buff0_7_ce0.read(); } else { ifm_buff0_7_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_7_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_7_ce1 = grp_pool_write_fu_405_ifm_buff1_7_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_7_ce1 = grp_pool_write_fu_405_ifm_buff0_7_ce1.read(); } else { ifm_buff0_7_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_7_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_7_we0 = grp_write_row_ifm_fu_482_ifm_buff0_7_we0.read(); } else { ifm_buff0_7_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_8_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_8_address0 = grp_write_row_ifm_fu_482_ifm_buff0_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_8_address0 = grp_pool_write_fu_405_ifm_buff1_8_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_8_address0 = grp_pool_write_fu_405_ifm_buff0_8_address0.read(); } else { ifm_buff0_8_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_8_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_8_address1 = grp_pool_write_fu_405_ifm_buff1_8_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_8_address1 = grp_pool_write_fu_405_ifm_buff0_8_address1.read(); } else { ifm_buff0_8_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_8_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_8_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_8_ce0 = grp_pool_write_fu_405_ifm_buff1_8_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_8_ce0 = grp_pool_write_fu_405_ifm_buff0_8_ce0.read(); } else { ifm_buff0_8_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_8_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_8_ce1 = grp_pool_write_fu_405_ifm_buff1_8_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_8_ce1 = grp_pool_write_fu_405_ifm_buff0_8_ce1.read(); } else { ifm_buff0_8_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_8_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_8_we0 = grp_write_row_ifm_fu_482_ifm_buff0_8_we0.read(); } else { ifm_buff0_8_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_9_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_9_address0 = grp_write_row_ifm_fu_482_ifm_buff0_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_9_address0 = grp_pool_write_fu_405_ifm_buff1_9_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_9_address0 = grp_pool_write_fu_405_ifm_buff0_9_address0.read(); } else { ifm_buff0_9_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_9_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_9_address1 = grp_pool_write_fu_405_ifm_buff1_9_address1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_9_address1 = grp_pool_write_fu_405_ifm_buff0_9_address1.read(); } else { ifm_buff0_9_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff0_9_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_9_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_9_ce0 = grp_pool_write_fu_405_ifm_buff1_9_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_9_ce0 = grp_pool_write_fu_405_ifm_buff0_9_ce0.read(); } else { ifm_buff0_9_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_9_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff0_9_ce1 = grp_pool_write_fu_405_ifm_buff1_9_ce1.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff0_9_ce1 = grp_pool_write_fu_405_ifm_buff0_9_ce1.read(); } else { ifm_buff0_9_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff0_9_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op146_call_state4.read())))) { ifm_buff0_9_we0 = grp_write_row_ifm_fu_482_ifm_buff0_9_we0.read(); } else { ifm_buff0_9_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_0_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_0_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_0_address0 = grp_write_row_ifm_fu_482_ifm_buff0_0_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_0_address0 = grp_pool_write_fu_405_ifm_buff1_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_0_address0 = grp_pool_write_fu_405_ifm_buff0_0_address0.read(); } else { ifm_buff1_0_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_0_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_0_address1 = grp_pool_write_fu_405_ifm_buff1_0_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_0_address1 = grp_pool_write_fu_405_ifm_buff0_0_address1.read(); } else { ifm_buff1_0_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_0_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_0_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_0_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_0_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_0_ce0 = grp_pool_write_fu_405_ifm_buff1_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_0_ce0 = grp_pool_write_fu_405_ifm_buff0_0_ce0.read(); } else { ifm_buff1_0_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_0_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_0_ce1 = grp_pool_write_fu_405_ifm_buff1_0_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_0_ce1 = grp_pool_write_fu_405_ifm_buff0_0_ce1.read(); } else { ifm_buff1_0_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_0_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_0_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_0_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_0_d0 = grp_write_row_ifm_fu_482_ifm_buff0_0_d0.read(); } else { ifm_buff1_0_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_0_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_0_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_0_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_0_we0 = grp_write_row_ifm_fu_482_ifm_buff0_0_we0.read(); } else { ifm_buff1_0_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_10_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_10_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_10_address0 = grp_write_row_ifm_fu_482_ifm_buff0_10_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_10_address0 = grp_pool_write_fu_405_ifm_buff1_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_10_address0 = grp_pool_write_fu_405_ifm_buff0_10_address0.read(); } else { ifm_buff1_10_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_10_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_10_address1 = grp_pool_write_fu_405_ifm_buff1_10_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_10_address1 = grp_pool_write_fu_405_ifm_buff0_10_address1.read(); } else { ifm_buff1_10_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_10_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_10_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_10_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_10_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_10_ce0 = grp_pool_write_fu_405_ifm_buff1_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_10_ce0 = grp_pool_write_fu_405_ifm_buff0_10_ce0.read(); } else { ifm_buff1_10_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_10_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_10_ce1 = grp_pool_write_fu_405_ifm_buff1_10_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_10_ce1 = grp_pool_write_fu_405_ifm_buff0_10_ce1.read(); } else { ifm_buff1_10_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_10_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_10_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_10_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_10_d0 = grp_write_row_ifm_fu_482_ifm_buff0_10_d0.read(); } else { ifm_buff1_10_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_10_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_10_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_10_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_10_we0 = grp_write_row_ifm_fu_482_ifm_buff0_10_we0.read(); } else { ifm_buff1_10_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_11_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_11_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_11_address0 = grp_write_row_ifm_fu_482_ifm_buff0_11_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_11_address0 = grp_pool_write_fu_405_ifm_buff1_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_11_address0 = grp_pool_write_fu_405_ifm_buff0_11_address0.read(); } else { ifm_buff1_11_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_11_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_11_address1 = grp_pool_write_fu_405_ifm_buff1_11_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_11_address1 = grp_pool_write_fu_405_ifm_buff0_11_address1.read(); } else { ifm_buff1_11_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_11_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_11_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_11_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_11_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_11_ce0 = grp_pool_write_fu_405_ifm_buff1_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_11_ce0 = grp_pool_write_fu_405_ifm_buff0_11_ce0.read(); } else { ifm_buff1_11_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_11_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_11_ce1 = grp_pool_write_fu_405_ifm_buff1_11_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_11_ce1 = grp_pool_write_fu_405_ifm_buff0_11_ce1.read(); } else { ifm_buff1_11_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_11_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_11_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_11_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_11_d0 = grp_write_row_ifm_fu_482_ifm_buff0_11_d0.read(); } else { ifm_buff1_11_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_11_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_11_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_11_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_11_we0 = grp_write_row_ifm_fu_482_ifm_buff0_11_we0.read(); } else { ifm_buff1_11_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_12_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_12_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_12_address0 = grp_write_row_ifm_fu_482_ifm_buff0_12_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_12_address0 = grp_pool_write_fu_405_ifm_buff1_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_12_address0 = grp_pool_write_fu_405_ifm_buff0_12_address0.read(); } else { ifm_buff1_12_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_12_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_12_address1 = grp_pool_write_fu_405_ifm_buff1_12_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_12_address1 = grp_pool_write_fu_405_ifm_buff0_12_address1.read(); } else { ifm_buff1_12_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_12_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_12_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_12_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_12_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_12_ce0 = grp_pool_write_fu_405_ifm_buff1_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_12_ce0 = grp_pool_write_fu_405_ifm_buff0_12_ce0.read(); } else { ifm_buff1_12_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_12_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_12_ce1 = grp_pool_write_fu_405_ifm_buff1_12_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_12_ce1 = grp_pool_write_fu_405_ifm_buff0_12_ce1.read(); } else { ifm_buff1_12_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_12_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_12_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_12_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_12_d0 = grp_write_row_ifm_fu_482_ifm_buff0_12_d0.read(); } else { ifm_buff1_12_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_12_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_12_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_12_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_12_we0 = grp_write_row_ifm_fu_482_ifm_buff0_12_we0.read(); } else { ifm_buff1_12_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_13_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_13_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_13_address0 = grp_write_row_ifm_fu_482_ifm_buff0_13_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_13_address0 = grp_pool_write_fu_405_ifm_buff1_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_13_address0 = grp_pool_write_fu_405_ifm_buff0_13_address0.read(); } else { ifm_buff1_13_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_13_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_13_address1 = grp_pool_write_fu_405_ifm_buff1_13_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_13_address1 = grp_pool_write_fu_405_ifm_buff0_13_address1.read(); } else { ifm_buff1_13_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_13_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_13_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_13_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_13_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_13_ce0 = grp_pool_write_fu_405_ifm_buff1_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_13_ce0 = grp_pool_write_fu_405_ifm_buff0_13_ce0.read(); } else { ifm_buff1_13_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_13_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_13_ce1 = grp_pool_write_fu_405_ifm_buff1_13_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_13_ce1 = grp_pool_write_fu_405_ifm_buff0_13_ce1.read(); } else { ifm_buff1_13_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_13_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_13_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_13_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_13_d0 = grp_write_row_ifm_fu_482_ifm_buff0_13_d0.read(); } else { ifm_buff1_13_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_13_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_13_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_13_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_13_we0 = grp_write_row_ifm_fu_482_ifm_buff0_13_we0.read(); } else { ifm_buff1_13_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_14_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_14_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_14_address0 = grp_write_row_ifm_fu_482_ifm_buff0_14_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_14_address0 = grp_pool_write_fu_405_ifm_buff1_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_14_address0 = grp_pool_write_fu_405_ifm_buff0_14_address0.read(); } else { ifm_buff1_14_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_14_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_14_address1 = grp_pool_write_fu_405_ifm_buff1_14_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_14_address1 = grp_pool_write_fu_405_ifm_buff0_14_address1.read(); } else { ifm_buff1_14_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_14_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_14_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_14_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_14_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_14_ce0 = grp_pool_write_fu_405_ifm_buff1_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_14_ce0 = grp_pool_write_fu_405_ifm_buff0_14_ce0.read(); } else { ifm_buff1_14_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_14_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_14_ce1 = grp_pool_write_fu_405_ifm_buff1_14_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_14_ce1 = grp_pool_write_fu_405_ifm_buff0_14_ce1.read(); } else { ifm_buff1_14_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_14_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_14_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_14_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_14_d0 = grp_write_row_ifm_fu_482_ifm_buff0_14_d0.read(); } else { ifm_buff1_14_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_14_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_14_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_14_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_14_we0 = grp_write_row_ifm_fu_482_ifm_buff0_14_we0.read(); } else { ifm_buff1_14_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_15_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_15_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_15_address0 = grp_write_row_ifm_fu_482_ifm_buff0_15_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_15_address0 = grp_pool_write_fu_405_ifm_buff1_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_15_address0 = grp_pool_write_fu_405_ifm_buff0_15_address0.read(); } else { ifm_buff1_15_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_15_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_15_address1 = grp_pool_write_fu_405_ifm_buff1_15_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_15_address1 = grp_pool_write_fu_405_ifm_buff0_15_address1.read(); } else { ifm_buff1_15_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_15_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_15_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_15_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_15_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_15_ce0 = grp_pool_write_fu_405_ifm_buff1_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_15_ce0 = grp_pool_write_fu_405_ifm_buff0_15_ce0.read(); } else { ifm_buff1_15_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_15_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_15_ce1 = grp_pool_write_fu_405_ifm_buff1_15_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_15_ce1 = grp_pool_write_fu_405_ifm_buff0_15_ce1.read(); } else { ifm_buff1_15_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_15_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_15_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_15_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_15_d0 = grp_write_row_ifm_fu_482_ifm_buff0_15_d0.read(); } else { ifm_buff1_15_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_15_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_15_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_15_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_15_we0 = grp_write_row_ifm_fu_482_ifm_buff0_15_we0.read(); } else { ifm_buff1_15_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_1_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_1_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_1_address0 = grp_write_row_ifm_fu_482_ifm_buff0_1_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_1_address0 = grp_pool_write_fu_405_ifm_buff1_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_1_address0 = grp_pool_write_fu_405_ifm_buff0_1_address0.read(); } else { ifm_buff1_1_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_1_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_1_address1 = grp_pool_write_fu_405_ifm_buff1_1_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_1_address1 = grp_pool_write_fu_405_ifm_buff0_1_address1.read(); } else { ifm_buff1_1_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_1_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_1_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_1_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_1_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_1_ce0 = grp_pool_write_fu_405_ifm_buff1_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_1_ce0 = grp_pool_write_fu_405_ifm_buff0_1_ce0.read(); } else { ifm_buff1_1_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_1_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_1_ce1 = grp_pool_write_fu_405_ifm_buff1_1_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_1_ce1 = grp_pool_write_fu_405_ifm_buff0_1_ce1.read(); } else { ifm_buff1_1_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_1_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_1_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_1_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_1_d0 = grp_write_row_ifm_fu_482_ifm_buff0_1_d0.read(); } else { ifm_buff1_1_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_1_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_1_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_1_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_1_we0 = grp_write_row_ifm_fu_482_ifm_buff0_1_we0.read(); } else { ifm_buff1_1_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_2_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_2_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_2_address0 = grp_write_row_ifm_fu_482_ifm_buff0_2_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_2_address0 = grp_pool_write_fu_405_ifm_buff1_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_2_address0 = grp_pool_write_fu_405_ifm_buff0_2_address0.read(); } else { ifm_buff1_2_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_2_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_2_address1 = grp_pool_write_fu_405_ifm_buff1_2_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_2_address1 = grp_pool_write_fu_405_ifm_buff0_2_address1.read(); } else { ifm_buff1_2_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_2_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_2_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_2_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_2_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_2_ce0 = grp_pool_write_fu_405_ifm_buff1_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_2_ce0 = grp_pool_write_fu_405_ifm_buff0_2_ce0.read(); } else { ifm_buff1_2_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_2_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_2_ce1 = grp_pool_write_fu_405_ifm_buff1_2_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_2_ce1 = grp_pool_write_fu_405_ifm_buff0_2_ce1.read(); } else { ifm_buff1_2_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_2_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_2_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_2_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_2_d0 = grp_write_row_ifm_fu_482_ifm_buff0_2_d0.read(); } else { ifm_buff1_2_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_2_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_2_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_2_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_2_we0 = grp_write_row_ifm_fu_482_ifm_buff0_2_we0.read(); } else { ifm_buff1_2_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_3_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_3_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_3_address0 = grp_write_row_ifm_fu_482_ifm_buff0_3_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_3_address0 = grp_pool_write_fu_405_ifm_buff1_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_3_address0 = grp_pool_write_fu_405_ifm_buff0_3_address0.read(); } else { ifm_buff1_3_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_3_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_3_address1 = grp_pool_write_fu_405_ifm_buff1_3_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_3_address1 = grp_pool_write_fu_405_ifm_buff0_3_address1.read(); } else { ifm_buff1_3_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_3_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_3_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_3_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_3_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_3_ce0 = grp_pool_write_fu_405_ifm_buff1_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_3_ce0 = grp_pool_write_fu_405_ifm_buff0_3_ce0.read(); } else { ifm_buff1_3_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_3_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_3_ce1 = grp_pool_write_fu_405_ifm_buff1_3_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_3_ce1 = grp_pool_write_fu_405_ifm_buff0_3_ce1.read(); } else { ifm_buff1_3_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_3_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_3_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_3_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_3_d0 = grp_write_row_ifm_fu_482_ifm_buff0_3_d0.read(); } else { ifm_buff1_3_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_3_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_3_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_3_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_3_we0 = grp_write_row_ifm_fu_482_ifm_buff0_3_we0.read(); } else { ifm_buff1_3_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_4_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_4_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_4_address0 = grp_write_row_ifm_fu_482_ifm_buff0_4_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_4_address0 = grp_pool_write_fu_405_ifm_buff1_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_4_address0 = grp_pool_write_fu_405_ifm_buff0_4_address0.read(); } else { ifm_buff1_4_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_4_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_4_address1 = grp_pool_write_fu_405_ifm_buff1_4_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_4_address1 = grp_pool_write_fu_405_ifm_buff0_4_address1.read(); } else { ifm_buff1_4_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_4_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_4_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_4_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_4_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_4_ce0 = grp_pool_write_fu_405_ifm_buff1_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_4_ce0 = grp_pool_write_fu_405_ifm_buff0_4_ce0.read(); } else { ifm_buff1_4_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_4_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_4_ce1 = grp_pool_write_fu_405_ifm_buff1_4_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_4_ce1 = grp_pool_write_fu_405_ifm_buff0_4_ce1.read(); } else { ifm_buff1_4_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_4_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_4_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_4_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_4_d0 = grp_write_row_ifm_fu_482_ifm_buff0_4_d0.read(); } else { ifm_buff1_4_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_4_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_4_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_4_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_4_we0 = grp_write_row_ifm_fu_482_ifm_buff0_4_we0.read(); } else { ifm_buff1_4_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_5_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_5_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_5_address0 = grp_write_row_ifm_fu_482_ifm_buff0_5_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_5_address0 = grp_pool_write_fu_405_ifm_buff1_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_5_address0 = grp_pool_write_fu_405_ifm_buff0_5_address0.read(); } else { ifm_buff1_5_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_5_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_5_address1 = grp_pool_write_fu_405_ifm_buff1_5_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_5_address1 = grp_pool_write_fu_405_ifm_buff0_5_address1.read(); } else { ifm_buff1_5_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_5_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_5_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_5_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_5_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_5_ce0 = grp_pool_write_fu_405_ifm_buff1_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_5_ce0 = grp_pool_write_fu_405_ifm_buff0_5_ce0.read(); } else { ifm_buff1_5_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_5_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_5_ce1 = grp_pool_write_fu_405_ifm_buff1_5_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_5_ce1 = grp_pool_write_fu_405_ifm_buff0_5_ce1.read(); } else { ifm_buff1_5_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_5_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_5_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_5_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_5_d0 = grp_write_row_ifm_fu_482_ifm_buff0_5_d0.read(); } else { ifm_buff1_5_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_5_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_5_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_5_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_5_we0 = grp_write_row_ifm_fu_482_ifm_buff0_5_we0.read(); } else { ifm_buff1_5_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_6_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_6_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_6_address0 = grp_write_row_ifm_fu_482_ifm_buff0_6_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_6_address0 = grp_pool_write_fu_405_ifm_buff1_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_6_address0 = grp_pool_write_fu_405_ifm_buff0_6_address0.read(); } else { ifm_buff1_6_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_6_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_6_address1 = grp_pool_write_fu_405_ifm_buff1_6_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_6_address1 = grp_pool_write_fu_405_ifm_buff0_6_address1.read(); } else { ifm_buff1_6_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_6_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_6_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_6_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_6_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_6_ce0 = grp_pool_write_fu_405_ifm_buff1_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_6_ce0 = grp_pool_write_fu_405_ifm_buff0_6_ce0.read(); } else { ifm_buff1_6_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_6_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_6_ce1 = grp_pool_write_fu_405_ifm_buff1_6_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_6_ce1 = grp_pool_write_fu_405_ifm_buff0_6_ce1.read(); } else { ifm_buff1_6_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_6_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_6_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_6_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_6_d0 = grp_write_row_ifm_fu_482_ifm_buff0_6_d0.read(); } else { ifm_buff1_6_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_6_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_6_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_6_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_6_we0 = grp_write_row_ifm_fu_482_ifm_buff0_6_we0.read(); } else { ifm_buff1_6_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_7_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_7_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_7_address0 = grp_write_row_ifm_fu_482_ifm_buff0_7_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_7_address0 = grp_pool_write_fu_405_ifm_buff1_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_7_address0 = grp_pool_write_fu_405_ifm_buff0_7_address0.read(); } else { ifm_buff1_7_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_7_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_7_address1 = grp_pool_write_fu_405_ifm_buff1_7_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_7_address1 = grp_pool_write_fu_405_ifm_buff0_7_address1.read(); } else { ifm_buff1_7_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_7_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_7_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_7_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_7_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_7_ce0 = grp_pool_write_fu_405_ifm_buff1_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_7_ce0 = grp_pool_write_fu_405_ifm_buff0_7_ce0.read(); } else { ifm_buff1_7_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_7_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_7_ce1 = grp_pool_write_fu_405_ifm_buff1_7_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_7_ce1 = grp_pool_write_fu_405_ifm_buff0_7_ce1.read(); } else { ifm_buff1_7_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_7_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_7_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_7_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_7_d0 = grp_write_row_ifm_fu_482_ifm_buff0_7_d0.read(); } else { ifm_buff1_7_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_7_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_7_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_7_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_7_we0 = grp_write_row_ifm_fu_482_ifm_buff0_7_we0.read(); } else { ifm_buff1_7_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_8_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_8_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_8_address0 = grp_write_row_ifm_fu_482_ifm_buff0_8_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_8_address0 = grp_pool_write_fu_405_ifm_buff1_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_8_address0 = grp_pool_write_fu_405_ifm_buff0_8_address0.read(); } else { ifm_buff1_8_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_8_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_8_address1 = grp_pool_write_fu_405_ifm_buff1_8_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_8_address1 = grp_pool_write_fu_405_ifm_buff0_8_address1.read(); } else { ifm_buff1_8_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_8_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_8_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_8_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_8_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_8_ce0 = grp_pool_write_fu_405_ifm_buff1_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_8_ce0 = grp_pool_write_fu_405_ifm_buff0_8_ce0.read(); } else { ifm_buff1_8_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_8_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_8_ce1 = grp_pool_write_fu_405_ifm_buff1_8_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_8_ce1 = grp_pool_write_fu_405_ifm_buff0_8_ce1.read(); } else { ifm_buff1_8_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_8_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_8_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_8_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_8_d0 = grp_write_row_ifm_fu_482_ifm_buff0_8_d0.read(); } else { ifm_buff1_8_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_8_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_8_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_8_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_8_we0 = grp_write_row_ifm_fu_482_ifm_buff0_8_we0.read(); } else { ifm_buff1_8_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_9_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_9_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_9_address0 = grp_write_row_ifm_fu_482_ifm_buff0_9_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_9_address0 = grp_pool_write_fu_405_ifm_buff1_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_9_address0 = grp_pool_write_fu_405_ifm_buff0_9_address0.read(); } else { ifm_buff1_9_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_9_address1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_9_address1 = grp_pool_write_fu_405_ifm_buff1_9_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_9_address1 = grp_pool_write_fu_405_ifm_buff0_9_address1.read(); } else { ifm_buff1_9_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff1_9_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_9_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_9_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_9_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_9_ce0 = grp_pool_write_fu_405_ifm_buff1_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_9_ce0 = grp_pool_write_fu_405_ifm_buff0_9_ce0.read(); } else { ifm_buff1_9_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_9_ce1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read()))) { ifm_buff1_9_ce1 = grp_pool_write_fu_405_ifm_buff1_9_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff1_9_ce1 = grp_pool_write_fu_405_ifm_buff0_9_ce1.read(); } else { ifm_buff1_9_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff1_9_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_9_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_9_d0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_9_d0 = grp_write_row_ifm_fu_482_ifm_buff0_9_d0.read(); } else { ifm_buff1_9_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff1_9_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff1_9_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff0_9_we0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op140_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op158_call_state4.read())))) { ifm_buff1_9_we0 = grp_write_row_ifm_fu_482_ifm_buff0_9_we0.read(); } else { ifm_buff1_9_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_0_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_0_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_0_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_0_address0 = grp_write_row_ifm_fu_482_ifm_buff0_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_0_address0 = grp_pool_write_fu_405_ifm_buff1_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_0_address0 = grp_pool_write_fu_405_ifm_buff0_0_address0.read(); } else { ifm_buff2_0_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_0_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_0_address1 = grp_pool_write_fu_405_ifm_buff1_0_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_0_address1 = grp_pool_write_fu_405_ifm_buff0_0_address1.read(); } else { ifm_buff2_0_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_0_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_0_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_0_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_0_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_0_ce0 = grp_pool_write_fu_405_ifm_buff1_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_0_ce0 = grp_pool_write_fu_405_ifm_buff0_0_ce0.read(); } else { ifm_buff2_0_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_0_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_0_ce1 = grp_pool_write_fu_405_ifm_buff1_0_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_0_ce1 = grp_pool_write_fu_405_ifm_buff0_0_ce1.read(); } else { ifm_buff2_0_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_0_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_0_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_0_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_0_d0 = grp_write_row_ifm_fu_482_ifm_buff0_0_d0.read(); } else { ifm_buff2_0_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_0_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_0_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_0_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_0_we0 = grp_write_row_ifm_fu_482_ifm_buff0_0_we0.read(); } else { ifm_buff2_0_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_10_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_10_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_10_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_10_address0 = grp_write_row_ifm_fu_482_ifm_buff0_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_10_address0 = grp_pool_write_fu_405_ifm_buff1_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_10_address0 = grp_pool_write_fu_405_ifm_buff0_10_address0.read(); } else { ifm_buff2_10_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_10_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_10_address1 = grp_pool_write_fu_405_ifm_buff1_10_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_10_address1 = grp_pool_write_fu_405_ifm_buff0_10_address1.read(); } else { ifm_buff2_10_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_10_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_10_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_10_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_10_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_10_ce0 = grp_pool_write_fu_405_ifm_buff1_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_10_ce0 = grp_pool_write_fu_405_ifm_buff0_10_ce0.read(); } else { ifm_buff2_10_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_10_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_10_ce1 = grp_pool_write_fu_405_ifm_buff1_10_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_10_ce1 = grp_pool_write_fu_405_ifm_buff0_10_ce1.read(); } else { ifm_buff2_10_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_10_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_10_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_10_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_10_d0 = grp_write_row_ifm_fu_482_ifm_buff0_10_d0.read(); } else { ifm_buff2_10_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_10_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_10_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_10_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_10_we0 = grp_write_row_ifm_fu_482_ifm_buff0_10_we0.read(); } else { ifm_buff2_10_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_11_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_11_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_11_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_11_address0 = grp_write_row_ifm_fu_482_ifm_buff0_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_11_address0 = grp_pool_write_fu_405_ifm_buff1_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_11_address0 = grp_pool_write_fu_405_ifm_buff0_11_address0.read(); } else { ifm_buff2_11_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_11_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_11_address1 = grp_pool_write_fu_405_ifm_buff1_11_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_11_address1 = grp_pool_write_fu_405_ifm_buff0_11_address1.read(); } else { ifm_buff2_11_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_11_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_11_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_11_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_11_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_11_ce0 = grp_pool_write_fu_405_ifm_buff1_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_11_ce0 = grp_pool_write_fu_405_ifm_buff0_11_ce0.read(); } else { ifm_buff2_11_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_11_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_11_ce1 = grp_pool_write_fu_405_ifm_buff1_11_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_11_ce1 = grp_pool_write_fu_405_ifm_buff0_11_ce1.read(); } else { ifm_buff2_11_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_11_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_11_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_11_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_11_d0 = grp_write_row_ifm_fu_482_ifm_buff0_11_d0.read(); } else { ifm_buff2_11_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_11_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_11_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_11_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_11_we0 = grp_write_row_ifm_fu_482_ifm_buff0_11_we0.read(); } else { ifm_buff2_11_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_12_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_12_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_12_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_12_address0 = grp_write_row_ifm_fu_482_ifm_buff0_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_12_address0 = grp_pool_write_fu_405_ifm_buff1_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_12_address0 = grp_pool_write_fu_405_ifm_buff0_12_address0.read(); } else { ifm_buff2_12_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_12_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_12_address1 = grp_pool_write_fu_405_ifm_buff1_12_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_12_address1 = grp_pool_write_fu_405_ifm_buff0_12_address1.read(); } else { ifm_buff2_12_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_12_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_12_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_12_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_12_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_12_ce0 = grp_pool_write_fu_405_ifm_buff1_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_12_ce0 = grp_pool_write_fu_405_ifm_buff0_12_ce0.read(); } else { ifm_buff2_12_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_12_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_12_ce1 = grp_pool_write_fu_405_ifm_buff1_12_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_12_ce1 = grp_pool_write_fu_405_ifm_buff0_12_ce1.read(); } else { ifm_buff2_12_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_12_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_12_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_12_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_12_d0 = grp_write_row_ifm_fu_482_ifm_buff0_12_d0.read(); } else { ifm_buff2_12_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_12_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_12_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_12_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_12_we0 = grp_write_row_ifm_fu_482_ifm_buff0_12_we0.read(); } else { ifm_buff2_12_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_13_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_13_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_13_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_13_address0 = grp_write_row_ifm_fu_482_ifm_buff0_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_13_address0 = grp_pool_write_fu_405_ifm_buff1_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_13_address0 = grp_pool_write_fu_405_ifm_buff0_13_address0.read(); } else { ifm_buff2_13_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_13_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_13_address1 = grp_pool_write_fu_405_ifm_buff1_13_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_13_address1 = grp_pool_write_fu_405_ifm_buff0_13_address1.read(); } else { ifm_buff2_13_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_13_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_13_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_13_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_13_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_13_ce0 = grp_pool_write_fu_405_ifm_buff1_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_13_ce0 = grp_pool_write_fu_405_ifm_buff0_13_ce0.read(); } else { ifm_buff2_13_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_13_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_13_ce1 = grp_pool_write_fu_405_ifm_buff1_13_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_13_ce1 = grp_pool_write_fu_405_ifm_buff0_13_ce1.read(); } else { ifm_buff2_13_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_13_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_13_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_13_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_13_d0 = grp_write_row_ifm_fu_482_ifm_buff0_13_d0.read(); } else { ifm_buff2_13_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_13_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_13_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_13_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_13_we0 = grp_write_row_ifm_fu_482_ifm_buff0_13_we0.read(); } else { ifm_buff2_13_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_14_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_14_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_14_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_14_address0 = grp_write_row_ifm_fu_482_ifm_buff0_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_14_address0 = grp_pool_write_fu_405_ifm_buff1_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_14_address0 = grp_pool_write_fu_405_ifm_buff0_14_address0.read(); } else { ifm_buff2_14_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_14_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_14_address1 = grp_pool_write_fu_405_ifm_buff1_14_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_14_address1 = grp_pool_write_fu_405_ifm_buff0_14_address1.read(); } else { ifm_buff2_14_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_14_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_14_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_14_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_14_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_14_ce0 = grp_pool_write_fu_405_ifm_buff1_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_14_ce0 = grp_pool_write_fu_405_ifm_buff0_14_ce0.read(); } else { ifm_buff2_14_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_14_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_14_ce1 = grp_pool_write_fu_405_ifm_buff1_14_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_14_ce1 = grp_pool_write_fu_405_ifm_buff0_14_ce1.read(); } else { ifm_buff2_14_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_14_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_14_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_14_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_14_d0 = grp_write_row_ifm_fu_482_ifm_buff0_14_d0.read(); } else { ifm_buff2_14_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_14_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_14_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_14_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_14_we0 = grp_write_row_ifm_fu_482_ifm_buff0_14_we0.read(); } else { ifm_buff2_14_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_15_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_15_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_15_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_15_address0 = grp_write_row_ifm_fu_482_ifm_buff0_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_15_address0 = grp_pool_write_fu_405_ifm_buff1_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_15_address0 = grp_pool_write_fu_405_ifm_buff0_15_address0.read(); } else { ifm_buff2_15_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_15_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_15_address1 = grp_pool_write_fu_405_ifm_buff1_15_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_15_address1 = grp_pool_write_fu_405_ifm_buff0_15_address1.read(); } else { ifm_buff2_15_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_15_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_15_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_15_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_15_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_15_ce0 = grp_pool_write_fu_405_ifm_buff1_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_15_ce0 = grp_pool_write_fu_405_ifm_buff0_15_ce0.read(); } else { ifm_buff2_15_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_15_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_15_ce1 = grp_pool_write_fu_405_ifm_buff1_15_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_15_ce1 = grp_pool_write_fu_405_ifm_buff0_15_ce1.read(); } else { ifm_buff2_15_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_15_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_15_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_15_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_15_d0 = grp_write_row_ifm_fu_482_ifm_buff0_15_d0.read(); } else { ifm_buff2_15_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_15_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_15_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_15_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_15_we0 = grp_write_row_ifm_fu_482_ifm_buff0_15_we0.read(); } else { ifm_buff2_15_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_1_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_1_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_1_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_1_address0 = grp_write_row_ifm_fu_482_ifm_buff0_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_1_address0 = grp_pool_write_fu_405_ifm_buff1_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_1_address0 = grp_pool_write_fu_405_ifm_buff0_1_address0.read(); } else { ifm_buff2_1_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_1_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_1_address1 = grp_pool_write_fu_405_ifm_buff1_1_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_1_address1 = grp_pool_write_fu_405_ifm_buff0_1_address1.read(); } else { ifm_buff2_1_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_1_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_1_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_1_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_1_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_1_ce0 = grp_pool_write_fu_405_ifm_buff1_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_1_ce0 = grp_pool_write_fu_405_ifm_buff0_1_ce0.read(); } else { ifm_buff2_1_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_1_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_1_ce1 = grp_pool_write_fu_405_ifm_buff1_1_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_1_ce1 = grp_pool_write_fu_405_ifm_buff0_1_ce1.read(); } else { ifm_buff2_1_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_1_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_1_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_1_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_1_d0 = grp_write_row_ifm_fu_482_ifm_buff0_1_d0.read(); } else { ifm_buff2_1_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_1_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_1_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_1_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_1_we0 = grp_write_row_ifm_fu_482_ifm_buff0_1_we0.read(); } else { ifm_buff2_1_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_2_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_2_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_2_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_2_address0 = grp_write_row_ifm_fu_482_ifm_buff0_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_2_address0 = grp_pool_write_fu_405_ifm_buff1_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_2_address0 = grp_pool_write_fu_405_ifm_buff0_2_address0.read(); } else { ifm_buff2_2_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_2_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_2_address1 = grp_pool_write_fu_405_ifm_buff1_2_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_2_address1 = grp_pool_write_fu_405_ifm_buff0_2_address1.read(); } else { ifm_buff2_2_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_2_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_2_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_2_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_2_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_2_ce0 = grp_pool_write_fu_405_ifm_buff1_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_2_ce0 = grp_pool_write_fu_405_ifm_buff0_2_ce0.read(); } else { ifm_buff2_2_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_2_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_2_ce1 = grp_pool_write_fu_405_ifm_buff1_2_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_2_ce1 = grp_pool_write_fu_405_ifm_buff0_2_ce1.read(); } else { ifm_buff2_2_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_2_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_2_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_2_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_2_d0 = grp_write_row_ifm_fu_482_ifm_buff0_2_d0.read(); } else { ifm_buff2_2_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_2_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_2_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_2_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_2_we0 = grp_write_row_ifm_fu_482_ifm_buff0_2_we0.read(); } else { ifm_buff2_2_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_3_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_3_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_3_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_3_address0 = grp_write_row_ifm_fu_482_ifm_buff0_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_3_address0 = grp_pool_write_fu_405_ifm_buff1_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_3_address0 = grp_pool_write_fu_405_ifm_buff0_3_address0.read(); } else { ifm_buff2_3_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_3_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_3_address1 = grp_pool_write_fu_405_ifm_buff1_3_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_3_address1 = grp_pool_write_fu_405_ifm_buff0_3_address1.read(); } else { ifm_buff2_3_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_3_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_3_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_3_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_3_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_3_ce0 = grp_pool_write_fu_405_ifm_buff1_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_3_ce0 = grp_pool_write_fu_405_ifm_buff0_3_ce0.read(); } else { ifm_buff2_3_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_3_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_3_ce1 = grp_pool_write_fu_405_ifm_buff1_3_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_3_ce1 = grp_pool_write_fu_405_ifm_buff0_3_ce1.read(); } else { ifm_buff2_3_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_3_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_3_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_3_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_3_d0 = grp_write_row_ifm_fu_482_ifm_buff0_3_d0.read(); } else { ifm_buff2_3_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_3_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_3_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_3_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_3_we0 = grp_write_row_ifm_fu_482_ifm_buff0_3_we0.read(); } else { ifm_buff2_3_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_4_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_4_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_4_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_4_address0 = grp_write_row_ifm_fu_482_ifm_buff0_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_4_address0 = grp_pool_write_fu_405_ifm_buff1_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_4_address0 = grp_pool_write_fu_405_ifm_buff0_4_address0.read(); } else { ifm_buff2_4_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_4_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_4_address1 = grp_pool_write_fu_405_ifm_buff1_4_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_4_address1 = grp_pool_write_fu_405_ifm_buff0_4_address1.read(); } else { ifm_buff2_4_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_4_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_4_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_4_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_4_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_4_ce0 = grp_pool_write_fu_405_ifm_buff1_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_4_ce0 = grp_pool_write_fu_405_ifm_buff0_4_ce0.read(); } else { ifm_buff2_4_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_4_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_4_ce1 = grp_pool_write_fu_405_ifm_buff1_4_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_4_ce1 = grp_pool_write_fu_405_ifm_buff0_4_ce1.read(); } else { ifm_buff2_4_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_4_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_4_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_4_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_4_d0 = grp_write_row_ifm_fu_482_ifm_buff0_4_d0.read(); } else { ifm_buff2_4_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_4_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_4_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_4_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_4_we0 = grp_write_row_ifm_fu_482_ifm_buff0_4_we0.read(); } else { ifm_buff2_4_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_5_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_5_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_5_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_5_address0 = grp_write_row_ifm_fu_482_ifm_buff0_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_5_address0 = grp_pool_write_fu_405_ifm_buff1_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_5_address0 = grp_pool_write_fu_405_ifm_buff0_5_address0.read(); } else { ifm_buff2_5_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_5_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_5_address1 = grp_pool_write_fu_405_ifm_buff1_5_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_5_address1 = grp_pool_write_fu_405_ifm_buff0_5_address1.read(); } else { ifm_buff2_5_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_5_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_5_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_5_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_5_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_5_ce0 = grp_pool_write_fu_405_ifm_buff1_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_5_ce0 = grp_pool_write_fu_405_ifm_buff0_5_ce0.read(); } else { ifm_buff2_5_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_5_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_5_ce1 = grp_pool_write_fu_405_ifm_buff1_5_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_5_ce1 = grp_pool_write_fu_405_ifm_buff0_5_ce1.read(); } else { ifm_buff2_5_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_5_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_5_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_5_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_5_d0 = grp_write_row_ifm_fu_482_ifm_buff0_5_d0.read(); } else { ifm_buff2_5_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_5_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_5_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_5_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_5_we0 = grp_write_row_ifm_fu_482_ifm_buff0_5_we0.read(); } else { ifm_buff2_5_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_6_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_6_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_6_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_6_address0 = grp_write_row_ifm_fu_482_ifm_buff0_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_6_address0 = grp_pool_write_fu_405_ifm_buff1_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_6_address0 = grp_pool_write_fu_405_ifm_buff0_6_address0.read(); } else { ifm_buff2_6_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_6_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_6_address1 = grp_pool_write_fu_405_ifm_buff1_6_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_6_address1 = grp_pool_write_fu_405_ifm_buff0_6_address1.read(); } else { ifm_buff2_6_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_6_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_6_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_6_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_6_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_6_ce0 = grp_pool_write_fu_405_ifm_buff1_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_6_ce0 = grp_pool_write_fu_405_ifm_buff0_6_ce0.read(); } else { ifm_buff2_6_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_6_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_6_ce1 = grp_pool_write_fu_405_ifm_buff1_6_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_6_ce1 = grp_pool_write_fu_405_ifm_buff0_6_ce1.read(); } else { ifm_buff2_6_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_6_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_6_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_6_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_6_d0 = grp_write_row_ifm_fu_482_ifm_buff0_6_d0.read(); } else { ifm_buff2_6_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_6_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_6_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_6_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_6_we0 = grp_write_row_ifm_fu_482_ifm_buff0_6_we0.read(); } else { ifm_buff2_6_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_7_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_7_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_7_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_7_address0 = grp_write_row_ifm_fu_482_ifm_buff0_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_7_address0 = grp_pool_write_fu_405_ifm_buff1_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_7_address0 = grp_pool_write_fu_405_ifm_buff0_7_address0.read(); } else { ifm_buff2_7_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_7_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_7_address1 = grp_pool_write_fu_405_ifm_buff1_7_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_7_address1 = grp_pool_write_fu_405_ifm_buff0_7_address1.read(); } else { ifm_buff2_7_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_7_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_7_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_7_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_7_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_7_ce0 = grp_pool_write_fu_405_ifm_buff1_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_7_ce0 = grp_pool_write_fu_405_ifm_buff0_7_ce0.read(); } else { ifm_buff2_7_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_7_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_7_ce1 = grp_pool_write_fu_405_ifm_buff1_7_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_7_ce1 = grp_pool_write_fu_405_ifm_buff0_7_ce1.read(); } else { ifm_buff2_7_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_7_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_7_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_7_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_7_d0 = grp_write_row_ifm_fu_482_ifm_buff0_7_d0.read(); } else { ifm_buff2_7_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_7_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_7_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_7_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_7_we0 = grp_write_row_ifm_fu_482_ifm_buff0_7_we0.read(); } else { ifm_buff2_7_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_8_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_8_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_8_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_8_address0 = grp_write_row_ifm_fu_482_ifm_buff0_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_8_address0 = grp_pool_write_fu_405_ifm_buff1_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_8_address0 = grp_pool_write_fu_405_ifm_buff0_8_address0.read(); } else { ifm_buff2_8_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_8_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_8_address1 = grp_pool_write_fu_405_ifm_buff1_8_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_8_address1 = grp_pool_write_fu_405_ifm_buff0_8_address1.read(); } else { ifm_buff2_8_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_8_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_8_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_8_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_8_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_8_ce0 = grp_pool_write_fu_405_ifm_buff1_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_8_ce0 = grp_pool_write_fu_405_ifm_buff0_8_ce0.read(); } else { ifm_buff2_8_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_8_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_8_ce1 = grp_pool_write_fu_405_ifm_buff1_8_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_8_ce1 = grp_pool_write_fu_405_ifm_buff0_8_ce1.read(); } else { ifm_buff2_8_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_8_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_8_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_8_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_8_d0 = grp_write_row_ifm_fu_482_ifm_buff0_8_d0.read(); } else { ifm_buff2_8_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_8_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_8_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_8_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_8_we0 = grp_write_row_ifm_fu_482_ifm_buff0_8_we0.read(); } else { ifm_buff2_8_we0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_9_address0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_9_address0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_9_address0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_9_address0 = grp_write_row_ifm_fu_482_ifm_buff0_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_9_address0 = grp_pool_write_fu_405_ifm_buff1_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_9_address0 = grp_pool_write_fu_405_ifm_buff0_9_address0.read(); } else { ifm_buff2_9_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_9_address1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_9_address1 = grp_pool_write_fu_405_ifm_buff1_9_address1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_9_address1 = grp_pool_write_fu_405_ifm_buff0_9_address1.read(); } else { ifm_buff2_9_address1 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ifm_buff2_9_ce0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_9_ce0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_9_ce0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_9_ce0 = grp_write_row_ifm_fu_482_ifm_buff0_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_9_ce0 = grp_pool_write_fu_405_ifm_buff1_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_9_ce0 = grp_pool_write_fu_405_ifm_buff0_9_ce0.read(); } else { ifm_buff2_9_ce0 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_9_ce1() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ifm_buff2_9_ce1 = grp_pool_write_fu_405_ifm_buff1_9_ce1.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ifm_buff2_9_ce1 = grp_pool_write_fu_405_ifm_buff0_9_ce1.read(); } else { ifm_buff2_9_ce1 = ap_const_logic_0; } } void pool_hw::thread_ifm_buff2_9_d0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_9_d0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_9_d0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_9_d0 = grp_write_row_ifm_fu_482_ifm_buff0_9_d0.read(); } else { ifm_buff2_9_d0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void pool_hw::thread_ifm_buff2_9_we0() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read())) { ifm_buff2_9_we0 = grp_load_cifm_data_pool_fu_506_ifm_buff1_9_we0.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op152_call_state4.read()))) { ifm_buff2_9_we0 = grp_write_row_ifm_fu_482_ifm_buff0_9_we0.read(); } else { ifm_buff2_9_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_0_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_0_address0 = grp_conv_read_fu_457_ofm_buff0_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_0_address0 = grp_pool_write_fu_405_ofm_buff0_0_address0.read(); } else { ofm_buff0_0_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_0_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_0_ce0 = grp_conv_read_fu_457_ofm_buff0_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_0_ce0 = grp_pool_write_fu_405_ofm_buff0_0_ce0.read(); } else { ofm_buff0_0_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_0_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_0_we0 = grp_pool_write_fu_405_ofm_buff0_0_we0.read(); } else { ofm_buff0_0_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_10_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_10_address0 = grp_conv_read_fu_457_ofm_buff0_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_10_address0 = grp_pool_write_fu_405_ofm_buff0_10_address0.read(); } else { ofm_buff0_10_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_10_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_10_ce0 = grp_conv_read_fu_457_ofm_buff0_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_10_ce0 = grp_pool_write_fu_405_ofm_buff0_10_ce0.read(); } else { ofm_buff0_10_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_10_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_10_we0 = grp_pool_write_fu_405_ofm_buff0_10_we0.read(); } else { ofm_buff0_10_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_11_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_11_address0 = grp_conv_read_fu_457_ofm_buff0_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_11_address0 = grp_pool_write_fu_405_ofm_buff0_11_address0.read(); } else { ofm_buff0_11_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_11_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_11_ce0 = grp_conv_read_fu_457_ofm_buff0_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_11_ce0 = grp_pool_write_fu_405_ofm_buff0_11_ce0.read(); } else { ofm_buff0_11_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_11_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_11_we0 = grp_pool_write_fu_405_ofm_buff0_11_we0.read(); } else { ofm_buff0_11_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_12_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_12_address0 = grp_conv_read_fu_457_ofm_buff0_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_12_address0 = grp_pool_write_fu_405_ofm_buff0_12_address0.read(); } else { ofm_buff0_12_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_12_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_12_ce0 = grp_conv_read_fu_457_ofm_buff0_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_12_ce0 = grp_pool_write_fu_405_ofm_buff0_12_ce0.read(); } else { ofm_buff0_12_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_12_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_12_we0 = grp_pool_write_fu_405_ofm_buff0_12_we0.read(); } else { ofm_buff0_12_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_13_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_13_address0 = grp_conv_read_fu_457_ofm_buff0_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_13_address0 = grp_pool_write_fu_405_ofm_buff0_13_address0.read(); } else { ofm_buff0_13_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_13_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_13_ce0 = grp_conv_read_fu_457_ofm_buff0_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_13_ce0 = grp_pool_write_fu_405_ofm_buff0_13_ce0.read(); } else { ofm_buff0_13_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_13_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_13_we0 = grp_pool_write_fu_405_ofm_buff0_13_we0.read(); } else { ofm_buff0_13_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_14_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_14_address0 = grp_conv_read_fu_457_ofm_buff0_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_14_address0 = grp_pool_write_fu_405_ofm_buff0_14_address0.read(); } else { ofm_buff0_14_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_14_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_14_ce0 = grp_conv_read_fu_457_ofm_buff0_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_14_ce0 = grp_pool_write_fu_405_ofm_buff0_14_ce0.read(); } else { ofm_buff0_14_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_14_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_14_we0 = grp_pool_write_fu_405_ofm_buff0_14_we0.read(); } else { ofm_buff0_14_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_15_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_15_address0 = grp_conv_read_fu_457_ofm_buff0_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_15_address0 = grp_pool_write_fu_405_ofm_buff0_15_address0.read(); } else { ofm_buff0_15_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_15_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_15_ce0 = grp_conv_read_fu_457_ofm_buff0_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_15_ce0 = grp_pool_write_fu_405_ofm_buff0_15_ce0.read(); } else { ofm_buff0_15_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_15_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_15_we0 = grp_pool_write_fu_405_ofm_buff0_15_we0.read(); } else { ofm_buff0_15_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_1_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_1_address0 = grp_conv_read_fu_457_ofm_buff0_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_1_address0 = grp_pool_write_fu_405_ofm_buff0_1_address0.read(); } else { ofm_buff0_1_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_1_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_1_ce0 = grp_conv_read_fu_457_ofm_buff0_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_1_ce0 = grp_pool_write_fu_405_ofm_buff0_1_ce0.read(); } else { ofm_buff0_1_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_1_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_1_we0 = grp_pool_write_fu_405_ofm_buff0_1_we0.read(); } else { ofm_buff0_1_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_2_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_2_address0 = grp_conv_read_fu_457_ofm_buff0_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_2_address0 = grp_pool_write_fu_405_ofm_buff0_2_address0.read(); } else { ofm_buff0_2_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_2_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_2_ce0 = grp_conv_read_fu_457_ofm_buff0_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_2_ce0 = grp_pool_write_fu_405_ofm_buff0_2_ce0.read(); } else { ofm_buff0_2_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_2_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_2_we0 = grp_pool_write_fu_405_ofm_buff0_2_we0.read(); } else { ofm_buff0_2_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_3_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_3_address0 = grp_conv_read_fu_457_ofm_buff0_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_3_address0 = grp_pool_write_fu_405_ofm_buff0_3_address0.read(); } else { ofm_buff0_3_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_3_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_3_ce0 = grp_conv_read_fu_457_ofm_buff0_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_3_ce0 = grp_pool_write_fu_405_ofm_buff0_3_ce0.read(); } else { ofm_buff0_3_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_3_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_3_we0 = grp_pool_write_fu_405_ofm_buff0_3_we0.read(); } else { ofm_buff0_3_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_4_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_4_address0 = grp_conv_read_fu_457_ofm_buff0_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_4_address0 = grp_pool_write_fu_405_ofm_buff0_4_address0.read(); } else { ofm_buff0_4_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_4_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_4_ce0 = grp_conv_read_fu_457_ofm_buff0_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_4_ce0 = grp_pool_write_fu_405_ofm_buff0_4_ce0.read(); } else { ofm_buff0_4_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_4_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_4_we0 = grp_pool_write_fu_405_ofm_buff0_4_we0.read(); } else { ofm_buff0_4_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_5_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_5_address0 = grp_conv_read_fu_457_ofm_buff0_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_5_address0 = grp_pool_write_fu_405_ofm_buff0_5_address0.read(); } else { ofm_buff0_5_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_5_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_5_ce0 = grp_conv_read_fu_457_ofm_buff0_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_5_ce0 = grp_pool_write_fu_405_ofm_buff0_5_ce0.read(); } else { ofm_buff0_5_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_5_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_5_we0 = grp_pool_write_fu_405_ofm_buff0_5_we0.read(); } else { ofm_buff0_5_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_6_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_6_address0 = grp_conv_read_fu_457_ofm_buff0_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_6_address0 = grp_pool_write_fu_405_ofm_buff0_6_address0.read(); } else { ofm_buff0_6_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_6_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_6_ce0 = grp_conv_read_fu_457_ofm_buff0_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_6_ce0 = grp_pool_write_fu_405_ofm_buff0_6_ce0.read(); } else { ofm_buff0_6_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_6_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_6_we0 = grp_pool_write_fu_405_ofm_buff0_6_we0.read(); } else { ofm_buff0_6_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_7_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_7_address0 = grp_conv_read_fu_457_ofm_buff0_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_7_address0 = grp_pool_write_fu_405_ofm_buff0_7_address0.read(); } else { ofm_buff0_7_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_7_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_7_ce0 = grp_conv_read_fu_457_ofm_buff0_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_7_ce0 = grp_pool_write_fu_405_ofm_buff0_7_ce0.read(); } else { ofm_buff0_7_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_7_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_7_we0 = grp_pool_write_fu_405_ofm_buff0_7_we0.read(); } else { ofm_buff0_7_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_8_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_8_address0 = grp_conv_read_fu_457_ofm_buff0_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_8_address0 = grp_pool_write_fu_405_ofm_buff0_8_address0.read(); } else { ofm_buff0_8_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_8_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_8_ce0 = grp_conv_read_fu_457_ofm_buff0_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_8_ce0 = grp_pool_write_fu_405_ofm_buff0_8_ce0.read(); } else { ofm_buff0_8_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_8_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_8_we0 = grp_pool_write_fu_405_ofm_buff0_8_we0.read(); } else { ofm_buff0_8_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_9_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_9_address0 = grp_conv_read_fu_457_ofm_buff0_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_9_address0 = grp_pool_write_fu_405_ofm_buff0_9_address0.read(); } else { ofm_buff0_9_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff0_9_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op148_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op160_call_state4.read())))) { ofm_buff0_9_ce0 = grp_conv_read_fu_457_ofm_buff0_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_9_ce0 = grp_pool_write_fu_405_ofm_buff0_9_ce0.read(); } else { ofm_buff0_9_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff0_9_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op141_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op153_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())))) { ofm_buff0_9_we0 = grp_pool_write_fu_405_ofm_buff0_9_we0.read(); } else { ofm_buff0_9_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_0_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_0_address0 = grp_conv_read_fu_457_ofm_buff0_0_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_0_address0 = grp_pool_write_fu_405_ofm_buff0_0_address0.read(); } else { ofm_buff1_0_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_0_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_0_ce0 = grp_conv_read_fu_457_ofm_buff0_0_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_0_ce0 = grp_pool_write_fu_405_ofm_buff0_0_ce0.read(); } else { ofm_buff1_0_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_0_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_0_we0 = grp_pool_write_fu_405_ofm_buff0_0_we0.read(); } else { ofm_buff1_0_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_10_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_10_address0 = grp_conv_read_fu_457_ofm_buff0_10_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_10_address0 = grp_pool_write_fu_405_ofm_buff0_10_address0.read(); } else { ofm_buff1_10_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_10_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_10_ce0 = grp_conv_read_fu_457_ofm_buff0_10_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_10_ce0 = grp_pool_write_fu_405_ofm_buff0_10_ce0.read(); } else { ofm_buff1_10_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_10_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_10_we0 = grp_pool_write_fu_405_ofm_buff0_10_we0.read(); } else { ofm_buff1_10_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_11_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_11_address0 = grp_conv_read_fu_457_ofm_buff0_11_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_11_address0 = grp_pool_write_fu_405_ofm_buff0_11_address0.read(); } else { ofm_buff1_11_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_11_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_11_ce0 = grp_conv_read_fu_457_ofm_buff0_11_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_11_ce0 = grp_pool_write_fu_405_ofm_buff0_11_ce0.read(); } else { ofm_buff1_11_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_11_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_11_we0 = grp_pool_write_fu_405_ofm_buff0_11_we0.read(); } else { ofm_buff1_11_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_12_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_12_address0 = grp_conv_read_fu_457_ofm_buff0_12_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_12_address0 = grp_pool_write_fu_405_ofm_buff0_12_address0.read(); } else { ofm_buff1_12_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_12_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_12_ce0 = grp_conv_read_fu_457_ofm_buff0_12_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_12_ce0 = grp_pool_write_fu_405_ofm_buff0_12_ce0.read(); } else { ofm_buff1_12_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_12_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_12_we0 = grp_pool_write_fu_405_ofm_buff0_12_we0.read(); } else { ofm_buff1_12_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_13_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_13_address0 = grp_conv_read_fu_457_ofm_buff0_13_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_13_address0 = grp_pool_write_fu_405_ofm_buff0_13_address0.read(); } else { ofm_buff1_13_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_13_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_13_ce0 = grp_conv_read_fu_457_ofm_buff0_13_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_13_ce0 = grp_pool_write_fu_405_ofm_buff0_13_ce0.read(); } else { ofm_buff1_13_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_13_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_13_we0 = grp_pool_write_fu_405_ofm_buff0_13_we0.read(); } else { ofm_buff1_13_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_14_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_14_address0 = grp_conv_read_fu_457_ofm_buff0_14_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_14_address0 = grp_pool_write_fu_405_ofm_buff0_14_address0.read(); } else { ofm_buff1_14_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_14_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_14_ce0 = grp_conv_read_fu_457_ofm_buff0_14_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_14_ce0 = grp_pool_write_fu_405_ofm_buff0_14_ce0.read(); } else { ofm_buff1_14_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_14_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_14_we0 = grp_pool_write_fu_405_ofm_buff0_14_we0.read(); } else { ofm_buff1_14_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_15_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_15_address0 = grp_conv_read_fu_457_ofm_buff0_15_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_15_address0 = grp_pool_write_fu_405_ofm_buff0_15_address0.read(); } else { ofm_buff1_15_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_15_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_15_ce0 = grp_conv_read_fu_457_ofm_buff0_15_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_15_ce0 = grp_pool_write_fu_405_ofm_buff0_15_ce0.read(); } else { ofm_buff1_15_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_15_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_15_we0 = grp_pool_write_fu_405_ofm_buff0_15_we0.read(); } else { ofm_buff1_15_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_1_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_1_address0 = grp_conv_read_fu_457_ofm_buff0_1_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_1_address0 = grp_pool_write_fu_405_ofm_buff0_1_address0.read(); } else { ofm_buff1_1_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_1_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_1_ce0 = grp_conv_read_fu_457_ofm_buff0_1_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_1_ce0 = grp_pool_write_fu_405_ofm_buff0_1_ce0.read(); } else { ofm_buff1_1_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_1_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_1_we0 = grp_pool_write_fu_405_ofm_buff0_1_we0.read(); } else { ofm_buff1_1_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_2_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_2_address0 = grp_conv_read_fu_457_ofm_buff0_2_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_2_address0 = grp_pool_write_fu_405_ofm_buff0_2_address0.read(); } else { ofm_buff1_2_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_2_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_2_ce0 = grp_conv_read_fu_457_ofm_buff0_2_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_2_ce0 = grp_pool_write_fu_405_ofm_buff0_2_ce0.read(); } else { ofm_buff1_2_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_2_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_2_we0 = grp_pool_write_fu_405_ofm_buff0_2_we0.read(); } else { ofm_buff1_2_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_3_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_3_address0 = grp_conv_read_fu_457_ofm_buff0_3_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_3_address0 = grp_pool_write_fu_405_ofm_buff0_3_address0.read(); } else { ofm_buff1_3_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_3_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_3_ce0 = grp_conv_read_fu_457_ofm_buff0_3_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_3_ce0 = grp_pool_write_fu_405_ofm_buff0_3_ce0.read(); } else { ofm_buff1_3_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_3_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_3_we0 = grp_pool_write_fu_405_ofm_buff0_3_we0.read(); } else { ofm_buff1_3_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_4_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_4_address0 = grp_conv_read_fu_457_ofm_buff0_4_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_4_address0 = grp_pool_write_fu_405_ofm_buff0_4_address0.read(); } else { ofm_buff1_4_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_4_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_4_ce0 = grp_conv_read_fu_457_ofm_buff0_4_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_4_ce0 = grp_pool_write_fu_405_ofm_buff0_4_ce0.read(); } else { ofm_buff1_4_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_4_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_4_we0 = grp_pool_write_fu_405_ofm_buff0_4_we0.read(); } else { ofm_buff1_4_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_5_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_5_address0 = grp_conv_read_fu_457_ofm_buff0_5_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_5_address0 = grp_pool_write_fu_405_ofm_buff0_5_address0.read(); } else { ofm_buff1_5_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_5_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_5_ce0 = grp_conv_read_fu_457_ofm_buff0_5_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_5_ce0 = grp_pool_write_fu_405_ofm_buff0_5_ce0.read(); } else { ofm_buff1_5_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_5_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_5_we0 = grp_pool_write_fu_405_ofm_buff0_5_we0.read(); } else { ofm_buff1_5_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_6_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_6_address0 = grp_conv_read_fu_457_ofm_buff0_6_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_6_address0 = grp_pool_write_fu_405_ofm_buff0_6_address0.read(); } else { ofm_buff1_6_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_6_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_6_ce0 = grp_conv_read_fu_457_ofm_buff0_6_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_6_ce0 = grp_pool_write_fu_405_ofm_buff0_6_ce0.read(); } else { ofm_buff1_6_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_6_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_6_we0 = grp_pool_write_fu_405_ofm_buff0_6_we0.read(); } else { ofm_buff1_6_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_7_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_7_address0 = grp_conv_read_fu_457_ofm_buff0_7_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_7_address0 = grp_pool_write_fu_405_ofm_buff0_7_address0.read(); } else { ofm_buff1_7_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_7_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_7_ce0 = grp_conv_read_fu_457_ofm_buff0_7_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_7_ce0 = grp_pool_write_fu_405_ofm_buff0_7_ce0.read(); } else { ofm_buff1_7_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_7_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_7_we0 = grp_pool_write_fu_405_ofm_buff0_7_we0.read(); } else { ofm_buff1_7_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_8_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_8_address0 = grp_conv_read_fu_457_ofm_buff0_8_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_8_address0 = grp_pool_write_fu_405_ofm_buff0_8_address0.read(); } else { ofm_buff1_8_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_8_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_8_ce0 = grp_conv_read_fu_457_ofm_buff0_8_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_8_ce0 = grp_pool_write_fu_405_ofm_buff0_8_ce0.read(); } else { ofm_buff1_8_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_8_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_8_we0 = grp_pool_write_fu_405_ofm_buff0_8_we0.read(); } else { ofm_buff1_8_we0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_9_address0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_9_address0 = grp_conv_read_fu_457_ofm_buff0_9_address0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_9_address0 = grp_pool_write_fu_405_ofm_buff0_9_address0.read(); } else { ofm_buff1_9_address0 = (sc_lv<6>) ("XXXXXX"); } } void pool_hw::thread_ofm_buff1_9_ce0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_lv1_1, icmp_ln278_reg_717.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op142_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op154_call_state4.read())) || esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()))) { ofm_buff1_9_ce0 = grp_conv_read_fu_457_ofm_buff0_9_ce0.read(); } else if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_9_ce0 = grp_pool_write_fu_405_ofm_buff0_9_ce0.read(); } else { ofm_buff1_9_ce0 = ap_const_logic_0; } } void pool_hw::thread_ofm_buff1_9_we0() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op147_call_state4.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_const_boolean_1, ap_predicate_op159_call_state4.read())))) { ofm_buff1_9_we0 = grp_pool_write_fu_405_ofm_buff0_9_we0.read(); } else { ofm_buff1_9_we0 = ap_const_logic_0; } } void pool_hw::thread_rotate_counter_fu_670_p2() { rotate_counter_fu_670_p2 = (!rotate_counter_0_reg_382.read().is_01() || !ap_const_lv16_1.is_01())? sc_lv<16>(): (sc_biguint<16>(rotate_counter_0_reg_382.read()) + sc_biguint<16>(ap_const_lv16_1)); } void pool_hw::thread_row_fu_627_p2() { row_fu_627_p2 = (!row_0_reg_394.read().is_01() || !ap_const_lv6_1.is_01())? sc_lv<6>(): (sc_biguint<6>(row_0_reg_394.read()) + sc_biguint<6>(ap_const_lv6_1)); } void pool_hw::thread_select_ln328_fu_682_p3() { select_ln328_fu_682_p3 = (!icmp_ln328_fu_676_p2.read()[0].is_01())? sc_lv<16>(): ((icmp_ln328_fu_676_p2.read()[0].to_bool())? ap_const_lv16_0: rotate_counter_fu_670_p2.read()); } void pool_hw::thread_ap_NS_fsm() { switch (ap_CS_fsm.read().to_uint64()) { case 1 : 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_1))) { ap_NS_fsm = ap_ST_fsm_state2; } else { ap_NS_fsm = ap_ST_fsm_state1; } break; case 2 : if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state2.read()) && esl_seteq<1,1,1>(grp_load_cifm_data_pool_fu_506_ap_done.read(), ap_const_logic_1))) { ap_NS_fsm = ap_ST_fsm_state3; } else { ap_NS_fsm = ap_ST_fsm_state2; } break; case 4 : if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state3.read()) && esl_seteq<1,1,1>(icmp_ln275_fu_614_p2.read(), ap_const_lv1_0))) { ap_NS_fsm = ap_ST_fsm_state4; } else { ap_NS_fsm = ap_ST_fsm_state5; } break; case 8 : if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state4.read()) && esl_seteq<1,1,1>(ap_block_state4_on_subcall_done.read(), ap_const_boolean_0))) { ap_NS_fsm = ap_ST_fsm_state3; } else { ap_NS_fsm = ap_ST_fsm_state4; } break; case 16 : if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state5.read()) && esl_seteq<1,1,1>(grp_conv_read_fu_457_ap_done.read(), ap_const_logic_1))) { ap_NS_fsm = ap_ST_fsm_state1; } else { ap_NS_fsm = ap_ST_fsm_state5; } break; default : ap_NS_fsm = (sc_lv<5>) ("XXXXX"); break; } } }
[ "es921088@gmail.com" ]
es921088@gmail.com
1dbddb2a756284954577e77c9eaca608008995e5
d0fb46aecc3b69983e7f6244331a81dff42d9595
/dataworks-public/src/model/ListMetaCollectionsResult.cc
1c06cec898570d27261ae256fa0de7167b58c5b8
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-cpp-sdk
3d8d051d44ad00753a429817dd03957614c0c66a
e862bd03c844bcb7ccaa90571bceaa2802c7f135
refs/heads/master
2023-08-29T11:54:00.525102
2023-08-29T03:32:48
2023-08-29T03:32:48
115,379,460
104
82
NOASSERTION
2023-09-14T06:13:33
2017-12-26T02:53:27
C++
UTF-8
C++
false
false
4,078
cc
/* * Copyright 2009-2017 Alibaba Cloud 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. */ #include <alibabacloud/dataworks-public/model/ListMetaCollectionsResult.h> #include <json/json.h> using namespace AlibabaCloud::Dataworks_public; using namespace AlibabaCloud::Dataworks_public::Model; ListMetaCollectionsResult::ListMetaCollectionsResult() : ServiceResult() {} ListMetaCollectionsResult::ListMetaCollectionsResult(const std::string &payload) : ServiceResult() { parse(payload); } ListMetaCollectionsResult::~ListMetaCollectionsResult() {} void ListMetaCollectionsResult::parse(const std::string &payload) { Json::Reader reader; Json::Value value; reader.parse(payload, value); setRequestId(value["RequestId"].asString()); auto dataNode = value["Data"]; if(!dataNode["NextToken"].isNull()) data_.nextToken = dataNode["NextToken"].asString(); auto allCollectionListNode = dataNode["CollectionList"]["CollectionListItem"]; for (auto dataNodeCollectionListCollectionListItem : allCollectionListNode) { Data::CollectionListItem collectionListItemObject; if(!dataNodeCollectionListCollectionListItem["QualifiedName"].isNull()) collectionListItemObject.qualifiedName = dataNodeCollectionListCollectionListItem["QualifiedName"].asString(); if(!dataNodeCollectionListCollectionListItem["CollectionType"].isNull()) collectionListItemObject.collectionType = dataNodeCollectionListCollectionListItem["CollectionType"].asString(); if(!dataNodeCollectionListCollectionListItem["Name"].isNull()) collectionListItemObject.name = dataNodeCollectionListCollectionListItem["Name"].asString(); if(!dataNodeCollectionListCollectionListItem["Comment"].isNull()) collectionListItemObject.comment = dataNodeCollectionListCollectionListItem["Comment"].asString(); if(!dataNodeCollectionListCollectionListItem["OwnerId"].isNull()) collectionListItemObject.ownerId = dataNodeCollectionListCollectionListItem["OwnerId"].asString(); if(!dataNodeCollectionListCollectionListItem["OwnerName"].isNull()) collectionListItemObject.ownerName = dataNodeCollectionListCollectionListItem["OwnerName"].asString(); if(!dataNodeCollectionListCollectionListItem["CreateTime"].isNull()) collectionListItemObject.createTime = std::stol(dataNodeCollectionListCollectionListItem["CreateTime"].asString()); if(!dataNodeCollectionListCollectionListItem["UpdateTime"].isNull()) collectionListItemObject.updateTime = std::stol(dataNodeCollectionListCollectionListItem["UpdateTime"].asString()); if(!dataNodeCollectionListCollectionListItem["Level"].isNull()) collectionListItemObject.level = std::stoi(dataNodeCollectionListCollectionListItem["Level"].asString()); data_.collectionList.push_back(collectionListItemObject); } if(!value["Success"].isNull()) success_ = value["Success"].asString() == "true"; if(!value["ErrorCode"].isNull()) errorCode_ = value["ErrorCode"].asString(); if(!value["ErrorMessage"].isNull()) errorMessage_ = value["ErrorMessage"].asString(); if(!value["HttpStatusCode"].isNull()) httpStatusCode_ = std::stoi(value["HttpStatusCode"].asString()); } int ListMetaCollectionsResult::getHttpStatusCode()const { return httpStatusCode_; } ListMetaCollectionsResult::Data ListMetaCollectionsResult::getData()const { return data_; } std::string ListMetaCollectionsResult::getErrorCode()const { return errorCode_; } std::string ListMetaCollectionsResult::getErrorMessage()const { return errorMessage_; } bool ListMetaCollectionsResult::getSuccess()const { return success_; }
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
9f991c436ba17235cf88effc2c9480d79754f32c
34090b851ee2d1f12dbe13f30d199bb328fb11f6
/src/qt/test/uritests.cpp
12b642784db6410ed2d72eb7f673d08e49e682c4
[ "MIT" ]
permissive
Creddit-lol/Creddit-Core
7e4962d1e1dfb63c56236485938f7d4bf148e54f
2514c8867fd2bdc34ae4c5466b9a31816dcc0b6c
refs/heads/master
2023-05-12T18:45:39.377629
2021-06-07T23:54:09
2021-06-07T23:54:09
370,868,857
1
2
null
null
null
null
UTF-8
C++
false
false
2,942
cpp
// Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2017-2019 The CREDD developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "uritests.h" #include "guiutil.h" #include "walletmodel.h" #include <QUrl> void URITests::uriTests() { SendCoinsRecipient rv; QUrl uri; uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?req-dontexist=")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?dontexist=")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 0); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?label=Some Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.label == QString("Some Example Address")); QVERIFY(rv.amount == 0); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?amount=0.001")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 100000); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?amount=1.001")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 100100000); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?amount=100&label=Some Example")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.amount == 10000000000LL); QVERIFY(rv.label == QString("Some Example")); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?message=Some Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.label == QString()); QVERIFY(GUIUtil::parseBitcoinURI("creddit://D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?message=Some Example Address", &rv)); QVERIFY(rv.address == QString("D72dLgywmL73JyTwQBfuU29CADz9yCJ99v")); QVERIFY(rv.label == QString()); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?req-message=Some Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?amount=1,000&label=Some Example")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); uri.setUrl(QString("creddit:D72dLgywmL73JyTwQBfuU29CADz9yCJ99v?amount=1,000.0&label=Some Example")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); }
[ "bobski.robertson122@gmail.com" ]
bobski.robertson122@gmail.com
067a4f851fa6733e4baed4390b3c172f2317f8b5
4b5cba6ec72a1fa7eb67d1696e0da309f7026eef
/Headers/Dialogs/FindDialog.hpp
55a44fcf996219a6b0e8dcb5182ab217fbe41a4a
[]
no_license
Danton666/File-Manager
8cbebc589b85eb9518e5807bfd0b0ed3613da5aa
e14d5d94729ac65bc65b8725bc6c4650a3483e45
refs/heads/main
2023-06-22T04:22:29.832822
2021-07-24T10:20:48
2021-07-24T10:20:48
371,660,378
0
0
null
null
null
null
UTF-8
C++
false
false
323
hpp
#ifndef __FIND_DIALOG_HPP__ #define __FIND_DIALOG_HPP__ #include <QDialog> QT_BEGIN_NAMESPACE namespace Ui { class FindDialog; } QT_END_NAMESPACE class FindDialog : public QDialog { Q_OBJECT private: Ui::FindDialog* ui; public: FindDialog(QWidget* parent = nullptr); ~FindDialog(); }; #endif //__FIND_DIALOG_HPP__
[ "khanov.ilya123@list.ru" ]
khanov.ilya123@list.ru
e0f41b60e85371923b0a62965969b272f933c72a
b19216167f3f37b7d493ff7889af9db75667044a
/lte/gateway/c/session_manager/LocalEnforcer.cpp
31e43d8aa77db5efdb5deac6377f9b9590e2fb22
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
remo5000/magma
66b56254fc6e6b6bc8ec210f30cd046747d4462e
1d1dd9a23800a8e07b1ce016776d93e12430ec15
refs/heads/master
2020-12-23T05:36:12.699423
2020-01-29T16:50:10
2020-01-29T16:52:50
237,053,550
0
0
NOASSERTION
2020-01-29T18:28:57
2020-01-29T18:28:56
null
UTF-8
C++
false
false
44,890
cpp
/** * Copyright (c) 2016-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ #include <string> #include <vector> #include <time.h> #include <utility> #include <google/protobuf/repeated_field.h> #include <google/protobuf/timestamp.pb.h> #include <google/protobuf/util/time_util.h> #include <grpcpp/channel.h> #include "LocalEnforcer.h" #include "ServiceRegistrySingleton.h" #include "magma_logging.h" namespace { std::chrono::milliseconds time_difference_from_now( const google::protobuf::Timestamp& timestamp) { auto rule_time_sec = google::protobuf::util::TimeUtil::TimestampToSeconds(timestamp); auto now = time(NULL); auto delta = std::max(rule_time_sec - now, 0L); std::chrono::seconds sec(delta); return std::chrono::duration_cast<std::chrono::milliseconds>(sec); } } // namespace namespace magma { uint32_t LocalEnforcer::REDIRECT_FLOW_PRIORITY = 2000; using google::protobuf::RepeatedPtrField; using google::protobuf::util::TimeUtil; // We will treat rule install/uninstall failures as all-or-nothing - that is, // if we get a bad response from the pipelined client, we'll mark all the rules // as failed in the response static void mark_rule_failures( const bool activate_success, const bool deactivate_success, const PolicyReAuthRequest& request, PolicyReAuthAnswer& answer_out); static bool isValidMacAddress(const char* mac); static int get_apn_split_locaion(const std::string& apn); static bool parse_apn( const std::string& apn, std::string& mac_addr, std::string& name); LocalEnforcer::LocalEnforcer( std::shared_ptr<SessionReporter> reporter, std::shared_ptr<StaticRuleStore> rule_store, std::shared_ptr<PipelinedClient> pipelined_client, std::shared_ptr<AsyncDirectorydClient> directoryd_client, std::shared_ptr<SpgwServiceClient> spgw_client, std::shared_ptr<aaa::AAAClient> aaa_client, long session_force_termination_timeout_ms): reporter_(reporter), rule_store_(rule_store), pipelined_client_(pipelined_client), directoryd_client_(directoryd_client), spgw_client_(spgw_client), aaa_client_(aaa_client), session_force_termination_timeout_ms_(session_force_termination_timeout_ms) { } void LocalEnforcer::new_report() { for (const auto &session_pair : session_map_) { for (const auto &session: session_pair.second) { session->new_report(); } } } void LocalEnforcer::finish_report() { // Iterate through sessions and notify that report has finished. Terminate any // sessions that can be terminated. std::vector<std::pair<std::string,std::string>> imsi_to_terminate; for (const auto &session_pair : session_map_) { for (const auto &session : session_pair.second) { session->finish_report(); if (session->can_complete_termination()) { imsi_to_terminate.push_back(std::make_pair(session_pair.first,session->get_session_id())); } } } for (const auto &imsi_sid_pair : imsi_to_terminate) { complete_termination(imsi_sid_pair.first, imsi_sid_pair.second); } } void LocalEnforcer::start() { evb_->loopForever(); } void LocalEnforcer::attachEventBase(folly::EventBase *evb) { evb_ = evb; } void LocalEnforcer::stop() { evb_->terminateLoopSoon(); } folly::EventBase &LocalEnforcer::get_event_base() { return *evb_; } bool LocalEnforcer::setup( const std::uint64_t& epoch, std::function<void(Status status, SetupFlowsResult)> callback) { std::vector<SessionState::SessionInfo> session_infos; for(auto it = session_map_.begin(); it != session_map_.end(); it++) { for (const auto &session : it->second) { SessionState::SessionInfo session_info; session->get_session_info(session_info); session_infos.push_back(session_info); } } return pipelined_client_->setup(session_infos, epoch, callback); } void LocalEnforcer::aggregate_records(const RuleRecordTable& records) { new_report(); // unmark all credits for (const RuleRecord &record : records.records()) { auto it = session_map_.find(record.sid()); if (it == session_map_.end()) { MLOG(MERROR) << "Could not find session for IMSI " << record.sid() << " during record aggregation"; continue; } if (record.bytes_tx() > 0 || record.bytes_rx() > 0) { MLOG(MDEBUG) << "Subscriber " << record.sid() << " used " << record.bytes_tx() << " tx bytes and " << record.bytes_rx() << " rx bytes for rule " << record.rule_id(); } // Update sessions for (const auto &session : it->second) { session->add_used_credit( record.rule_id(), record.bytes_tx(), record.bytes_rx()); } } finish_report(); } void LocalEnforcer::execute_actions( const std::vector<std::unique_ptr<ServiceAction>>& actions) { for (const auto &action_p : actions) { if (action_p->get_type() == TERMINATE_SERVICE) { terminate_service( action_p->get_imsi(), action_p->get_rule_ids(), action_p->get_rule_definitions()); } else if (action_p->get_type() == ACTIVATE_SERVICE) { pipelined_client_->activate_flows_for_rules( action_p->get_imsi(), action_p->get_ip_addr(), action_p->get_rule_ids(), action_p->get_rule_definitions()); } else if (action_p->get_type() == REDIRECT) { install_redirect_flow(action_p); } else if (action_p->get_type() == RESTRICT_ACCESS) { MLOG(MDEBUG) << "RESTRICT_ACCESS mode is unsupported" << ", will just terminate the service."; terminate_service( action_p->get_imsi(), action_p->get_rule_ids(), action_p->get_rule_definitions()); } } } void LocalEnforcer::terminate_service( const std::string& imsi, const std::vector<std::string>& rule_ids, const std::vector<PolicyRule>& dynamic_rules) { pipelined_client_->deactivate_flows_for_rules(imsi, rule_ids, dynamic_rules); auto it = session_map_.find(imsi); if (it == session_map_.end()) { MLOG(MWARNING) << "Could not find session with IMSI " << imsi << " to terminate"; return; } for (const auto &session : it->second) { session->start_termination([this](SessionTerminateRequest term_req) { // report to cloud auto logging_cb = SessionReporter::get_terminate_logging_cb(term_req); reporter_->report_terminate_session(term_req, logging_cb); }); // tell AAA service to terminate radius session if necessary if (session->is_radius_cwf_session()) { MLOG(MDEBUG) << "Asking AAA service to terminate session with " << "Radius ID: " << session->get_radius_session_id() << ", IMSI: " << imsi; aaa_client_->terminate_session(session->get_radius_session_id(), imsi); } std::string session_id = session->get_session_id(); // The termination should be completed when aggregated usage record no longer // includes the imsi. If this has not occurred after the timeout, force // terminate the session. evb_->runAfterDelay( [this, imsi, session_id] { MLOG(MDEBUG) << "Forced service termination for IMSI " << imsi; complete_termination(imsi, session_id); }, session_force_termination_timeout_ms_); } } // TODO: make session_manager.proto and policydb.proto to use common field static RedirectInformation_AddressType address_type_converter( RedirectServer_RedirectAddressType address_type) { switch(address_type) { case RedirectServer_RedirectAddressType_IPV4: return RedirectInformation_AddressType_IPv4; case RedirectServer_RedirectAddressType_IPV6: return RedirectInformation_AddressType_IPv6; case RedirectServer_RedirectAddressType_URL: return RedirectInformation_AddressType_URL; case RedirectServer_RedirectAddressType_SIP_URI: return RedirectInformation_AddressType_SIP_URI; } } static PolicyRule create_redirect_rule( const std::unique_ptr<ServiceAction>& action) { PolicyRule redirect_rule; redirect_rule.set_id("redirect"); redirect_rule.set_priority(LocalEnforcer::REDIRECT_FLOW_PRIORITY); action->get_credit_key().set_rule(&redirect_rule); RedirectInformation* redirect_info = redirect_rule.mutable_redirect(); redirect_info->set_support(RedirectInformation_Support_ENABLED); auto redirect_server = action->get_redirect_server(); redirect_info->set_address_type( address_type_converter(redirect_server.redirect_address_type())); redirect_info->set_server_address( redirect_server.redirect_server_address()); return redirect_rule; } void LocalEnforcer::install_redirect_flow( const std::unique_ptr<ServiceAction>& action) { std::vector<std::string> static_rules; std::vector<PolicyRule> dynamic_rules {create_redirect_rule(action)}; const std::string &imsi = action->get_imsi(); auto request = directoryd_client_->get_directoryd_ip_field(imsi, [this, imsi, static_rules, dynamic_rules](Status status, DirectoryField resp) { if (!status.ok()) { MLOG(MERROR) << "Could not fetch subscriber " << imsi << "ip, " << "redirection fails, error: " << status.error_message(); } else { pipelined_client_->activate_flows_for_rules( imsi, resp.value(), static_rules, dynamic_rules); } } ); } UpdateSessionRequest LocalEnforcer::collect_updates() { UpdateSessionRequest request; std::vector<std::unique_ptr<ServiceAction>> actions; for (const auto &session_pair : session_map_) { for (const auto &session : session_pair.second) { session->get_updates(request, &actions); } } execute_actions(actions); return request; } void LocalEnforcer::reset_updates(const UpdateSessionRequest& failed_request) { for (const auto &update : failed_request.updates()) { auto it = session_map_.find(update.sid()); if (it == session_map_.end()) { MLOG(MERROR) << "Could not reset credit for IMSI " << update.sid() << " because it couldn't be found"; return; } for (const auto &session : it->second) { session->get_charging_pool().reset_reporting_credit( CreditKey(update.usage())); } } for (const auto &update : failed_request.usage_monitors()) { auto it = session_map_.find(update.sid()); if (it == session_map_.end()) { MLOG(MERROR) << "Could not reset credit for IMSI " << update.sid() << " because it couldn't be found"; return; } for (const auto &session : it->second) { session->get_monitor_pool().reset_reporting_credit( update.update().monitoring_key()); } } } /* * If a rule needs to be tracked by the OCS, then it needs credit in order to * be activated. If it does not receive credit, it should not be installed. * If a rule has a monitoring key, it is not required that a usage monitor is * installed with quota */ static bool should_activate( const PolicyRule &rule, const std::unordered_set<uint32_t>& successful_credits) { if (rule.tracking_type() == PolicyRule::ONLY_OCS || rule.tracking_type() == PolicyRule::OCS_AND_PCRF) { const bool exists = successful_credits.count(rule.rating_group()) > 0; if (!exists) { MLOG(MDEBUG) << "Should not activate " << rule.id() << " because credit w/ rating group " << rule.rating_group() << " does not exist"; } return exists; } MLOG(MDEBUG) << "Should activate because NO OCS TRACKING for rule " << rule.id(); // no tracking or PCRF-only tracking, activate return true; } void LocalEnforcer::schedule_static_rule_activation( const std::string& imsi, const std::string& ip_addr, const StaticRuleInstall& static_rule) { std::vector<std::string> static_rules {static_rule.rule_id()}; std::vector<PolicyRule> dynamic_rules; auto it = session_map_.find(imsi); auto delta = time_difference_from_now(static_rule.activation_time()); MLOG(MDEBUG) << "Scheduling subscriber " << imsi << " static rule " << static_rule.rule_id() << " activation in " << (delta.count() / 1000) << " secs"; evb_->runInEventBaseThread([=] { evb_->timer().scheduleTimeoutFn( std::move([=] { pipelined_client_->activate_flows_for_rules( imsi, ip_addr, static_rules, dynamic_rules); if (it == session_map_.end()) { MLOG(MWARNING) << "Could not find session for IMSI " << imsi << "during installation of static rule " << static_rule.rule_id(); } else { for (const auto &session : it->second) { if (session->get_subscriber_ip_addr() == ip_addr) { session->activate_static_rule(static_rule.rule_id()); } } } }), delta); }); } void LocalEnforcer::schedule_dynamic_rule_activation( const std::string& imsi, const std::string& ip_addr, const DynamicRuleInstall& dynamic_rule) { std::vector<std::string> static_rules; std::vector<PolicyRule> dynamic_rules {dynamic_rule.policy_rule()}; auto it = session_map_.find(imsi); auto delta = time_difference_from_now(dynamic_rule.activation_time()); MLOG(MDEBUG) << "Scheduling subscriber " << imsi << " dynamic rule " << dynamic_rule.policy_rule().id() << " activation in " << (delta.count() / 1000) << " secs"; evb_->runInEventBaseThread([=] { evb_->timer().scheduleTimeoutFn( std::move([=] { pipelined_client_->activate_flows_for_rules( imsi, ip_addr, static_rules, dynamic_rules); if (it == session_map_.end()) { MLOG(MWARNING) << "Could not find session for IMSI " << imsi << "during installation of dynamic rule " << dynamic_rule.policy_rule().id(); } else { for (const auto &session : it->second) { if (session->get_subscriber_ip_addr() == ip_addr) { session->insert_dynamic_rule(dynamic_rule.policy_rule()); } } } }), delta); }); } void LocalEnforcer::schedule_static_rule_deactivation( const std::string& imsi, const StaticRuleInstall& static_rule) { std::vector<std::string> static_rules {static_rule.rule_id()}; std::vector<PolicyRule> dynamic_rules; auto it = session_map_.find(imsi); auto delta = time_difference_from_now(static_rule.deactivation_time()); MLOG(MDEBUG) << "Scheduling subscriber " << imsi << " static rule " << static_rule.rule_id() << " deactivation in " << (delta.count() / 1000) << " secs"; evb_->runInEventBaseThread([=] { evb_->timer().scheduleTimeoutFn( std::move([=] { pipelined_client_->deactivate_flows_for_rules( imsi, static_rules, dynamic_rules); if (it == session_map_.end()) { MLOG(MWARNING) << "Could not find session for IMSI " << imsi << "during removal of static rule " << static_rule.rule_id(); } else { for (const auto &session : it->second) { if (!session->deactivate_static_rule(static_rule.rule_id())) MLOG(MWARNING) << "Could not find rule " << static_rule.rule_id() << "for IMSI " << imsi << " during static rule removal"; } } }), delta); }); } void LocalEnforcer::schedule_dynamic_rule_deactivation( const std::string& imsi, const DynamicRuleInstall& dynamic_rule) { std::vector<std::string> static_rules; std::vector<PolicyRule> dynamic_rules {dynamic_rule.policy_rule()}; auto it = session_map_.find(imsi); auto delta = time_difference_from_now(dynamic_rule.deactivation_time()); MLOG(MDEBUG) << "Scheduling subscriber " << imsi << " dynamic rule " << dynamic_rule.policy_rule().id() << " deactivation in " << (delta.count() / 1000) << " secs"; evb_->runInEventBaseThread([=] { evb_->timer().scheduleTimeoutFn( std::move([=] { pipelined_client_->deactivate_flows_for_rules( imsi, static_rules, dynamic_rules); if (it == session_map_.end()) { MLOG(MWARNING) << "Could not find session for IMSI " << imsi << "during removal of dynamic rule " << dynamic_rule.policy_rule().id(); } else { PolicyRule rule_dont_care; for (const auto &session : it->second) { session->remove_dynamic_rule( dynamic_rule.policy_rule().id(), &rule_dont_care); } } }), delta); }); } void LocalEnforcer::process_create_session_response( const CreateSessionResponse& response, const std::unordered_set<uint32_t>& successful_credits, const std::string& imsi, const std::string& ip_addr, RulesToProcess* rules_to_activate, RulesToProcess* rules_to_deactivate) { std::time_t current_time = time(NULL); for (const auto &static_rule : response.static_rules()) { auto id = static_rule.rule_id(); PolicyRule rule; if (!rule_store_->get_rule(id, &rule)) { LOG(ERROR) << "Not activating rule " << id << " because it could not be found"; continue; } if (should_activate(rule, successful_credits)) { auto activation_time = TimeUtil::TimestampToSeconds(static_rule.activation_time()); if (activation_time > current_time) { schedule_static_rule_activation(imsi, ip_addr, static_rule); } else { // activation time is an optional field in the proto message // it will be set as 0 by default // when it is 0 or some past time, the rule should be activated instanly rules_to_activate->static_rules.push_back(id); MLOG(MDEBUG) << "Activate Static rule id " << id; } auto deactivation_time = TimeUtil::TimestampToSeconds(static_rule.deactivation_time()); if (deactivation_time > current_time) { schedule_static_rule_deactivation(imsi, static_rule); } else if (deactivation_time > 0) { // deactivation time is an optional field in the proto message // it will be set as 0 by default // when it is some past time, the rule should be deactivated instantly rules_to_deactivate->static_rules.push_back(id); } } } for (const auto &dynamic_rule : response.dynamic_rules()) { if (should_activate(dynamic_rule.policy_rule(), successful_credits)) { auto activation_time = TimeUtil::TimestampToSeconds(dynamic_rule.activation_time()); if (activation_time > current_time) { schedule_dynamic_rule_activation(imsi, ip_addr, dynamic_rule); } else { rules_to_activate->dynamic_rules.push_back(dynamic_rule.policy_rule()); } auto deactivation_time = TimeUtil::TimestampToSeconds(dynamic_rule.deactivation_time()); if (deactivation_time > current_time) { schedule_dynamic_rule_deactivation(imsi, dynamic_rule); } else if (deactivation_time > 0) { rules_to_deactivate->dynamic_rules.push_back( dynamic_rule.policy_rule()); } } } } // return true if any credit unit is valid and has non-zero volume static bool contains_credit(const GrantedUnits& gsu) { return (gsu.total().is_valid() && gsu.total().volume() > 0) || (gsu.tx().is_valid() && gsu.tx().volume() > 0) || (gsu.rx().is_valid() && gsu.rx().volume() > 0); } bool LocalEnforcer::init_session_credit( const std::string& imsi, const std::string& session_id, const SessionState::Config& cfg, const CreateSessionResponse& response) { std::unordered_set<uint32_t> successful_credits; auto session_state = new SessionState( imsi, session_id, response.session_id(), cfg, *rule_store_); for (const auto &credit : response.credits()) { session_state->get_charging_pool().receive_credit(credit); if (credit.success() && contains_credit(credit.credit().granted_units())) { successful_credits.insert(credit.charging_key()); } } for (const auto &monitor : response.usage_monitors()) { if (revalidation_required(monitor.event_triggers())) { schedule_revalidation(monitor.revalidation_time()); } session_state->get_monitor_pool().receive_credit(monitor); } auto it = session_map_.find(imsi); if (it == session_map_.end()) { // First time a session is created for IMSI MLOG(MDEBUG) << "First session for IMSI " << imsi << " with session ID " << session_id; session_map_[imsi] = std::vector<std::unique_ptr<SessionState>>(); } session_map_[imsi].push_back(std::move(std::unique_ptr<SessionState>(session_state))); if (session_state->is_radius_cwf_session()) { MLOG(MDEBUG) << "Adding UE MAC flow for subscriber " << imsi; SubscriberID sid; sid.set_id(imsi); std::string apn_mac_addr; std::string apn_name; if (!parse_apn(cfg.apn, apn_mac_addr, apn_name)) { MLOG(MWARNING) << "Failed mac/name parsiong for apn " << cfg.apn; apn_mac_addr = ""; apn_name = cfg.apn; } bool add_ue_mac_flow_success = pipelined_client_->add_ue_mac_flow( sid, session_state->get_mac_addr(), cfg.msisdn, apn_mac_addr, apn_name); if (!add_ue_mac_flow_success) { MLOG(MERROR) << "Failed to add UE MAC flow for subscriber " << imsi; } } auto ip_addr = session_state->get_subscriber_ip_addr(); RulesToProcess rules_to_activate; RulesToProcess rules_to_deactivate; process_create_session_response( response, successful_credits, imsi, ip_addr, &rules_to_activate, &rules_to_deactivate); // activate_flows_for_rules() should be called even if there is no rule to // activate, because pipelined activates a "drop all packet" rule // when no rule is provided as the parameter for (const auto &static_rule : rules_to_activate.static_rules) { session_state->activate_static_rule(static_rule); } for (const auto &policy_rule : rules_to_activate.dynamic_rules) { session_state->insert_dynamic_rule(policy_rule); } bool activate_success = pipelined_client_->activate_flows_for_rules( imsi, ip_addr, rules_to_activate.static_rules, rules_to_activate.dynamic_rules); // deactivate_flows_for_rules() should not be called when there is no rule // to deactivate, because pipelined deactivates all rules // when no rule is provided as the parameter bool deactivate_success = true; if (rules_to_process_is_not_empty(rules_to_deactivate)) { for (const auto &static_rule : rules_to_deactivate.static_rules) { if (!session_state->deactivate_static_rule(static_rule)) MLOG(MWARNING) << "Could not find rule " << static_rule << "for IMSI " << imsi << " during static rule removal"; } for (const auto &policy_rule : rules_to_deactivate.dynamic_rules) { PolicyRule rule_dont_care; session_state->remove_dynamic_rule(policy_rule.id(), &rule_dont_care); } deactivate_success = pipelined_client_->deactivate_flows_for_rules( imsi, rules_to_deactivate.static_rules, rules_to_deactivate.dynamic_rules); } return activate_success && deactivate_success; } void LocalEnforcer::complete_termination( const std::string& imsi, const std::string& session_id) { // If the session cannot be found in session_map_, or a new session has // already begun, do nothing. auto it = session_map_.find(imsi); if (it == session_map_.end()) { // Session is already deleted, or new session already began, ignore. MLOG(MDEBUG) << "Could not find session for IMSI " << imsi << " and session ID " << session_id << ". Skipping termination."; return; } for (auto session_it = it->second.begin(); session_it != it->second.end(); ++session_it) { if ((*session_it)->get_session_id() == session_id) { // Complete session termination and remove session from session_map_. (*session_it)->complete_termination(); // We break the loop below, but for extra code safety in case // someone removes the break in the future, adjust the iterator // after erasing the element it->second.erase(session_it--); MLOG(MDEBUG) << "Successfully terminated session for IMSI " << imsi << "session ID " << session_id; // No session left for this IMSI if (it->second.size() == 0) { session_map_.erase(imsi); MLOG(MDEBUG) << "All sessions terminated for IMSI " << imsi; } break; } } } bool LocalEnforcer::rules_to_process_is_not_empty( const RulesToProcess& rules_to_process) { return rules_to_process.static_rules.size() > 0 || rules_to_process.dynamic_rules.size() > 0; } void LocalEnforcer::update_session_credit(const UpdateSessionResponse& response) { for (const auto &credit_update_resp : response.responses()) { auto it = session_map_.find(credit_update_resp.sid()); if (it == session_map_.end()) { MLOG(MERROR) << "Could not find session for IMSI " << credit_update_resp.sid() << " during update"; return; } if (credit_update_resp.success()) { for (const auto &session : it->second) { session->get_charging_pool().receive_credit(credit_update_resp); } } } for (const auto &usage_monitor_resp : response.usage_monitor_responses()) { if (revalidation_required(usage_monitor_resp.event_triggers())) { schedule_revalidation(usage_monitor_resp.revalidation_time()); } const std::string imsi = usage_monitor_resp.sid(); auto it = session_map_.find(imsi); if (it == session_map_.end()) { MLOG(MERROR) << "Could not find session for IMSI " << imsi << " during update"; return; } for (const auto &session : it->second) { session->get_monitor_pool().receive_credit(usage_monitor_resp); RulesToProcess rules_to_activate; RulesToProcess rules_to_deactivate; process_rules_to_remove( imsi, session, usage_monitor_resp.rules_to_remove(), rules_to_deactivate); process_rules_to_install( imsi, session, usage_monitor_resp.static_rules_to_install(), usage_monitor_resp.dynamic_rules_to_install(), rules_to_activate, rules_to_deactivate); auto ip_addr = session->get_subscriber_ip_addr(); bool deactivate_success = true; bool activate_success = true; if (rules_to_process_is_not_empty(rules_to_deactivate)) { deactivate_success = pipelined_client_->deactivate_flows_for_rules( imsi, rules_to_deactivate.static_rules, rules_to_deactivate.dynamic_rules); } if (rules_to_process_is_not_empty(rules_to_activate)) { activate_success = pipelined_client_->activate_flows_for_rules( imsi, ip_addr, rules_to_activate.static_rules, rules_to_activate.dynamic_rules); } // TODO If either deactivating/activating rules fail, sessiond should // manage the failed states. In the meantime, we will just log error for // now. if (!deactivate_success) { MLOG(MERROR) << "Could not deactivate flows for IMSI " << imsi << "during update"; } if (!activate_success) { MLOG(MERROR) << "Could not activate flows for IMSI " << imsi << "during update"; } } } } // terminate_subscriber, // if apn is specified, it teminates the corresponding PDN session // else all sessions for IMSI are terminated void LocalEnforcer::terminate_subscriber( const std::string& imsi, const std::string& apn, std::function<void(SessionTerminateRequest)> on_termination_callback) { auto it = session_map_.find(imsi); if (it == session_map_.end()) { MLOG(MERROR) << "Could not find session for IMSI " << imsi << " during termination"; throw SessionNotFound(); } for (const auto &session : it->second) { if (session->get_apn() == apn) { RulesToProcess rules_to_deactivate; // The assumption here is that // mutually exclusive rule names are used for different apns populate_rules_from_session_to_remove(imsi, session, rules_to_deactivate); bool deactivate_success = true; deactivate_success = pipelined_client_->deactivate_flows_for_rules( imsi, rules_to_deactivate.static_rules, rules_to_deactivate.dynamic_rules); if (!deactivate_success) { MLOG(MERROR) << "Could not deactivate flows for IMSI " << imsi << " and session " << session->get_session_id() << " during termination"; } session->start_termination(on_termination_callback); std::string session_id = session->get_session_id(); // The termination should be completed when aggregated usage record no // longer includes the imsi. If this has not occurred after the timeout, // force terminate the session. evb_->runAfterDelay( [this, imsi, session_id] { MLOG(MDEBUG) << "Completing forced termination for IMSI " << imsi; complete_termination(imsi, session_id); }, session_force_termination_timeout_ms_); } } } uint64_t LocalEnforcer::get_charging_credit( const std::string& imsi, const CreditKey& charging_key, Bucket bucket) const { auto it = session_map_.find(imsi); if (it == session_map_.end()) { return 0; } for (const auto &session : it->second) { uint64_t credit = session->get_charging_pool().get_credit(charging_key, bucket); if (credit >0) { return credit; } } return 0; } uint64_t LocalEnforcer::get_monitor_credit( const std::string& imsi, const std::string& mkey, Bucket bucket) const { auto it = session_map_.find(imsi); if (it == session_map_.end()) { return 0; } for (const auto &session : it->second) { uint64_t credit = session->get_monitor_pool().get_credit(mkey, bucket); if (credit >0) { return credit; } } return 0; } ChargingReAuthAnswer::Result LocalEnforcer::init_charging_reauth( ChargingReAuthRequest request) { auto it = session_map_.find(request.sid()); if (it == session_map_.end()) { MLOG(MERROR) << "Could not find session for subscriber " << request.sid() << " during reauth"; return ChargingReAuthAnswer::SESSION_NOT_FOUND; } if (request.type() == ChargingReAuthRequest::SINGLE_SERVICE) { MLOG(MDEBUG) << "Initiating reauth of key " << request.charging_key() << " for subscriber " << request.sid() << " for session " << request.session_id(); for (const auto &session : it->second) { if (session->get_session_id() == request.session_id()) { return session->get_charging_pool().reauth_key(CreditKey(request)); } } MLOG(MERROR) << "Could not find session for subscriber " << request.sid() << " during reauth"; return ChargingReAuthAnswer::SESSION_NOT_FOUND; } MLOG(MDEBUG) << "Initiating reauth of all keys for subscriber " << request.sid() << " for session" << request.session_id(); for (const auto &session : it->second) { if (session->get_session_id() == request.session_id()) { return session->get_charging_pool().reauth_all(); } } MLOG(MERROR) << "Could not find session for subscriber " << request.sid() << " during reauth"; return ChargingReAuthAnswer::SESSION_NOT_FOUND; } void LocalEnforcer::init_policy_reauth( PolicyReAuthRequest request, PolicyReAuthAnswer& answer_out) { auto it = session_map_.find(request.imsi()); if (it == session_map_.end()) { MLOG(MERROR) << "Could not find session for subscriber " << request.imsi() << " during policy reauth"; answer_out.set_result(ReAuthResult::SESSION_NOT_FOUND); return; } bool deactivate_success = true; bool activate_success = true; // For empty session_id, apply changes to all sessions of subscriber // Changes are applied on a best-effort basis, so failures for one session // won't stop changes from being applied for subsequent sessions. if (request.session_id() == "") { bool all_activated = true; bool all_deactivated = true; for (const auto& session : it->second) { init_policy_reauth_for_session( request, session, activate_success, deactivate_success); all_activated &= activate_success; all_deactivated &= deactivate_success; } // Treat activate/deactivate as all-or-nothing when reporting rule failures mark_rule_failures( all_activated, all_deactivated, request, answer_out); } else { for (const auto& session : it->second) { if (session->get_session_id() == request.session_id()) { init_policy_reauth_for_session( request, session, activate_success, deactivate_success); } } mark_rule_failures(activate_success, deactivate_success, request, answer_out); } answer_out.set_result(ReAuthResult::UPDATE_INITIATED); } void LocalEnforcer::init_policy_reauth_for_session( const PolicyReAuthRequest& request, const std::unique_ptr<SessionState>& session, bool& activate_success, bool& deactivate_success) { activate_success = true; deactivate_success = true; receive_monitoring_credit_from_rar(request, session); RulesToProcess rules_to_activate; RulesToProcess rules_to_deactivate; get_rules_from_policy_reauth_request( request, session, rules_to_activate, rules_to_deactivate); auto ip_addr = session->get_subscriber_ip_addr(); if (rules_to_process_is_not_empty(rules_to_deactivate)) { if (!pipelined_client_->deactivate_flows_for_rules( request.imsi(), rules_to_deactivate.static_rules, rules_to_deactivate.dynamic_rules)) { deactivate_success = false; } } if (rules_to_process_is_not_empty(rules_to_activate)) { if (!pipelined_client_->activate_flows_for_rules( request.imsi(), ip_addr, rules_to_activate.static_rules, rules_to_activate.dynamic_rules)) { activate_success = false; } } create_bearer( activate_success, session, request, rules_to_activate.dynamic_rules); } void LocalEnforcer::receive_monitoring_credit_from_rar( const PolicyReAuthRequest& request, const std::unique_ptr<SessionState>& session) { UsageMonitoringUpdateResponse monitoring_credit; monitoring_credit.set_session_id(request.session_id()); monitoring_credit.set_sid("IMSI" + request.session_id()); monitoring_credit.set_success(true); UsageMonitoringCredit* credit = monitoring_credit.mutable_credit(); for (const auto &usage_monitoring_credit : request.usage_monitoring_credits()) { credit->CopyFrom(usage_monitoring_credit); session->get_monitor_pool().receive_credit(monitoring_credit); } } void LocalEnforcer::process_rules_to_remove( const std::string& imsi, const std::unique_ptr<SessionState>& session, const google::protobuf::RepeatedPtrField<std::basic_string<char>> rules_to_remove, RulesToProcess& rules_to_deactivate) { for (const auto &rule_id : rules_to_remove) { // Try to remove as dynamic rule first PolicyRule dy_rule; bool is_dynamic = session->remove_dynamic_rule(rule_id, &dy_rule); if (is_dynamic) { rules_to_deactivate.dynamic_rules.push_back(dy_rule); } else { if (!session->deactivate_static_rule(rule_id)) MLOG(MWARNING) << "Could not find rule " << rule_id << "for IMSI " << imsi << " during static rule removal"; rules_to_deactivate.static_rules.push_back(rule_id); } } } void LocalEnforcer::populate_rules_from_session_to_remove( const std::string& imsi, const std::unique_ptr<SessionState>& session, RulesToProcess& rules_to_deactivate) { SessionState::SessionInfo info; session->get_session_info(info); for (const auto &policyrule : info.dynamic_rules) { rules_to_deactivate.dynamic_rules.push_back(policyrule); } for (const auto &staticrule : info.static_rules) { rules_to_deactivate.static_rules.push_back(staticrule); } } void LocalEnforcer::process_rules_to_install( const std::string& imsi, const std::unique_ptr<SessionState>& session, const google::protobuf::RepeatedPtrField<magma::lte::StaticRuleInstall> static_rules_to_install, const google::protobuf::RepeatedPtrField<magma::lte::DynamicRuleInstall> dynamic_rules_to_install, RulesToProcess& rules_to_activate, RulesToProcess& rules_to_deactivate) { std::time_t current_time = time(NULL); auto ip_addr = session->get_subscriber_ip_addr(); for (const auto &static_rule : static_rules_to_install) { auto activation_time = TimeUtil::TimestampToSeconds(static_rule.activation_time()); if (activation_time > current_time) { schedule_static_rule_activation(imsi, ip_addr, static_rule); } else { session->activate_static_rule(static_rule.rule_id()); rules_to_activate.static_rules.push_back(static_rule.rule_id()); } auto deactivation_time = TimeUtil::TimestampToSeconds(static_rule.deactivation_time()); if (deactivation_time > current_time) { schedule_static_rule_deactivation(imsi, static_rule); } else if (deactivation_time > 0) { if (!session->deactivate_static_rule(static_rule.rule_id())) MLOG(MWARNING) << "Could not find rule " << static_rule.rule_id() << "for IMSI " << imsi << " during static rule removal"; rules_to_deactivate.static_rules.push_back(static_rule.rule_id()); } } for (const auto &dynamic_rule : dynamic_rules_to_install) { auto activation_time = TimeUtil::TimestampToSeconds(dynamic_rule.activation_time()); if (activation_time > current_time) { schedule_dynamic_rule_activation(imsi, ip_addr, dynamic_rule); } else { session->insert_dynamic_rule(dynamic_rule.policy_rule()); rules_to_activate.dynamic_rules.push_back(dynamic_rule.policy_rule()); } auto deactivation_time = TimeUtil::TimestampToSeconds(dynamic_rule.deactivation_time()); if (deactivation_time > current_time) { schedule_dynamic_rule_deactivation(imsi, dynamic_rule); } else if (deactivation_time > 0) { PolicyRule rule_dont_care; session->remove_dynamic_rule( dynamic_rule.policy_rule().id(), &rule_dont_care); rules_to_deactivate.dynamic_rules.push_back(dynamic_rule.policy_rule()); } } } void LocalEnforcer::get_rules_from_policy_reauth_request( const PolicyReAuthRequest& request, const std::unique_ptr<SessionState>& session, RulesToProcess& rules_to_activate, RulesToProcess& rules_to_deactivate) { MLOG(MDEBUG) << "Processing policy reauth for subscriber " << request.imsi(); if (revalidation_required(request.event_triggers())) { schedule_revalidation(request.revalidation_time()); } std::string imsi = request.imsi(); process_rules_to_remove( imsi, session, request.rules_to_remove(), rules_to_deactivate); process_rules_to_install( imsi, session, request.rules_to_install(), request.dynamic_rules_to_install(), rules_to_activate, rules_to_deactivate); } bool LocalEnforcer::revalidation_required( const google::protobuf::RepeatedField<int>& event_triggers) { auto it = std::find( event_triggers.begin(), event_triggers.end(), REVALIDATION_TIMEOUT); return it != event_triggers.end(); } void LocalEnforcer::schedule_revalidation( const google::protobuf::Timestamp& revalidation_time) { auto delta = time_difference_from_now(revalidation_time); evb_->runInEventBaseThread([=] { evb_->timer().scheduleTimeoutFn( std::move([=] { MLOG(MDEBUG) << "Revalidation timeout!"; check_usage_for_reporting(); }), delta); }); } void LocalEnforcer::create_bearer( const bool activate_success, const std::unique_ptr<SessionState>& session, const PolicyReAuthRequest& request, const std::vector<PolicyRule>& dynamic_rules) { if (!activate_success || session->is_radius_cwf_session() || !session->qos_enabled() || !request.has_qos_info()) { MLOG(MDEBUG) << "Not creating bearer"; return; } auto default_qci = QCI(session->get_qci()); if (request.qos_info().qci() != default_qci) { MLOG(MDEBUG) << "QCI sent in RAR is different from default QCI"; spgw_client_->create_dedicated_bearer( request.imsi(), session->get_subscriber_ip_addr(), session->get_bearer_id(), dynamic_rules); } return; } void LocalEnforcer::check_usage_for_reporting() { auto request = collect_updates(); if (request.updates_size() == 0 && request.usage_monitors_size() == 0) { return; // nothing to report } MLOG(MDEBUG) << "Sending " << request.updates_size() << " charging updates and " << request.usage_monitors_size() << " monitor updates to OCS and PCRF"; // report to cloud (*reporter_).report_updates( request, [this, request](Status status, UpdateSessionResponse response) { if (!status.ok()) { reset_updates(request); MLOG(MERROR) << "Update of size " << request.updates_size() << " to OCS failed entirely: " << status.error_message(); } else { MLOG(MDEBUG) << "Received updated responses from OCS and PCRF"; update_session_credit(response); // Check if we need to report more updates check_usage_for_reporting(); } }); } bool LocalEnforcer::is_imsi_duplicate(const std::string& imsi) { auto it = session_map_.find(imsi); if (it == session_map_.end()) { return false; } return true; } bool LocalEnforcer::is_apn_duplicate(const std::string& imsi, const std::string& apn) { auto it = session_map_.find(imsi); if (it == session_map_.end()) { return false; } for (const auto &session : it->second) { if (session->get_apn() == apn) { return true; } } return false; } std::string *LocalEnforcer::duplicate_session_id( const std::string& imsi, const magma::SessionState::Config& config) { auto it = session_map_.find(imsi); if (it != session_map_.end()) { for (const auto &session : it->second) { if (session->is_same_config(config)) { return new std::string(session->get_core_session_id()); } } } return nullptr; } static void mark_rule_failures( const bool activate_success, const bool deactivate_success, const PolicyReAuthRequest& request, PolicyReAuthAnswer& answer_out) { auto failed_rules = *answer_out.mutable_failed_rules(); if (!deactivate_success) { for (const std::string &rule_id : request.rules_to_remove()) { failed_rules[rule_id] = PolicyReAuthAnswer::GW_PCEF_MALFUNCTION; } } if (!activate_success) { for (const StaticRuleInstall rule : request.rules_to_install()) { failed_rules[rule.rule_id()] = PolicyReAuthAnswer::GW_PCEF_MALFUNCTION; } for (const DynamicRuleInstall &d_rule : request.dynamic_rules_to_install()) { failed_rules[d_rule.policy_rule().id()] = PolicyReAuthAnswer::GW_PCEF_MALFUNCTION; } } } static bool isValidMacAddress(const char* mac) { int i = 0; int s = 0; while (*mac) { if (isxdigit(*mac)) { i++; } else if (*mac == '-') { if (i == 0 || i / 2 - 1 != s) { break; } ++s; } else { s = -1; } ++mac; } return (i == 12 && s == 5); } static bool parse_apn( const std::string& apn, std::string& mac_addr, std::string& name) { // Format is mac:name, if format check fails return failure // Format example - 1C-B9-C4-36-04-F0:Wifi-Offload-hotspot20 if (apn.empty()) { return false; } auto split_location = apn.find(":"); if (split_location <= 0) { return false; } auto mac = apn.substr(0, split_location); if (!isValidMacAddress(mac.c_str())){ return false; } mac_addr = mac; // Allow empty name, spec is unclear on this name = apn.substr(split_location + 1, apn.size()); return true; } } // namespace magma
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
ec7aa106a27a9dce81ad5ba897e9faaddd0bbc6c
19626187b1089a60e6c88b8e5d5e80f84427376c
/functional-tests/functional/input/src/cpp/SwiftExternalTypes.cpp
f29de9a2e2ac99163206ef83dd89073b47c8fd05
[ "Apache-2.0" ]
permissive
HiteshMah-Jan/gluecodium
535fe2c8259df4ffa387f2672b4f15c821b510f6
262d0d5bd901c2292509bb83d6b877f4adc6c123
refs/heads/master
2023-04-15T01:06:33.855923
2021-04-29T07:52:51
2021-04-29T07:52:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,518
cpp
// ------------------------------------------------------------------------------------------------- // Copyright (C) 2016-2020 HERE Europe B.V. // // 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. // // SPDX-License-Identifier: Apache-2.0 // License-Filename: LICENSE // // ------------------------------------------------------------------------------------------------- #include "test/SwiftExternalTypesStruct.h" #include "test/UseSwiftExternalTypes.h" namespace test { DateInterval UseSwiftExternalTypes::date_interval_round_trip(const DateInterval& input) { return input; } Persistence UseSwiftExternalTypes::persistence_round_trip(const Persistence input) { return input; } SystemColor UseSwiftExternalTypes::color_round_trip(const SystemColor& input) { return input; } Season UseSwiftExternalTypes::season_round_trip(const Season input) { return input; } SwiftExternalTypesStruct UseSwiftExternalTypes::struct_round_trip(const SwiftExternalTypesStruct& input) { return input; } }
[ "noreply@github.com" ]
noreply@github.com
5b56639edb70a2feeeec27c5c44d4c1846e15aa4
1cdca8d67714b890a1bba4f454efc3a92e2665b9
/Geometry/TriangleDef.hpp
aef20fd619007819882123de84afc04572ed81fa
[]
no_license
bortolo/TUTORIAL_CODE
b9ba8f870d6124ad84677c7c66e0507006b3d89e
e4900168acdfbdd31ca1ced3bb141831daf0d4b8
refs/heads/master
2016-09-06T07:42:03.081275
2014-03-21T19:35:01
2014-03-21T19:35:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
596
hpp
//Definition of triangle methods template<int dim> Triangle<dim>::Triangle(std::vector<Punto<dim> > & PT){ M_coord.resize(3); for(size_t i(0);i<3;i++) M_coord[i]=PT[i]; } template<int dim> Triangle<dim>::Triangle(Punto<dim> & PT1,Punto<dim> & PT2,Punto<dim> & PT3){ M_coord.resize(3); M_coord[0]=PT1; M_coord[1]=PT2; M_coord[2]=PT3; } template<int dim> Triangle<dim>::Triangle(const Triangle<dim> & PT){M_coord=PT.M_coord;} template<int dim> Triangle<dim>::~Triangle(){} template<int dim> void Triangle<dim>::ShowMe(){ for(size_t i(0);i<3;i++) M_coord[i].ShowMe(); }
[ "andrea.bortolossi89@gmail.com" ]
andrea.bortolossi89@gmail.com
a71594f5688f2dc3e626b6995647d10e95603f5d
7bf18d167d441d1701b39cb37e7f43b2719c92c1
/Source/SimpleProject/Battle/AI/BTS_SelectTargetActor.cpp
bcc91388be84d03ad02ccff148a2d20944848cd9
[]
no_license
juno870502/SimpleProject
570e54c437e9e8100f4af4479d98fad259663f51
af51a41119205e21958a1002057ba29300d8bac1
refs/heads/master
2020-08-15T01:17:16.726109
2019-11-17T18:00:07
2019-11-17T18:00:07
215,258,252
0
0
null
null
null
null
UTF-8
C++
false
false
1,303
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "BTS_SelectTargetActor.h" #include "Kismet/KismetMathLibrary.h" #include "BehaviorTree/BlackboardComponent.h" #include "Battle/BasicMonster.h" #include "AIController.h" void UBTS_SelectTargetActor::TickNode(UBehaviorTreeComponent & OwnerComp, uint8 * NodeMemory, float DeltaSeconds) { Super::TickNode(OwnerComp, NodeMemory, DeltaSeconds); AActor* TargetActor = Cast<AActor>(OwnerComp.GetBlackboardComponent()->GetValueAsObject(GetSelectedBlackboardKey())); ABasicMonster* Mon = Cast<ABasicMonster>(OwnerComp.GetAIOwner()->GetPawn()); if (TargetActor && Mon) { // In Attack Range -> State::Attack / Out Attack Range -> State::Chase if (Mon->AttackRange >= UKismetMathLibrary::Vector_Distance(Mon->GetActorLocation(), TargetActor->GetActorLocation())) { Mon->S2A_SetCurrentState(EMonsterState::ATTACK); } else { Mon->S2A_SetCurrentState(EMonsterState::CHASE); } // Out Limit Radius -> State::Loco if (Mon->ChaseRange < UKismetMathLibrary::Vector_Distance(Mon->GetActorLocation(), OwnerComp.GetBlackboardComponent()->GetValueAsVector(TEXT("HomeLocation")))) { Mon->S2A_SetCurrentState(EMonsterState::LOCO); } } else { Mon->S2A_SetCurrentState(EMonsterState::LOCO); } }
[ "juno870502@naver.com" ]
juno870502@naver.com
78bbbf96875082298425e13e1b89784cedca6fbe
980a2534b42e0b4ec16ee762cdea8cd94d9d1020
/PDF/Streamable/TFSPdfLine.cpp
a8ff387ff5fbdb081ca57156e71e6379a2519d3d
[ "MIT" ]
permissive
barrettd/tfs_pdf
e15796e569e7c5304e45d6ee678268baecb53535
62d71f7b5d32e045a9e813ac2203b9172e7cabff
refs/heads/main
2023-03-29T23:15:29.230534
2021-03-29T04:10:04
2021-03-29T04:10:04
351,863,768
0
1
null
null
null
null
UTF-8
C++
false
false
1,699
cpp
// --------------------------------------------------------------------------------- // TFSPdfLine.cpp // // Created by Barrett Davis on 3/22/21. // Copyright (c) 2021 Tree Frog Software, All Rights Reserved. // --------------------------------------------------------------------------------- #include "TFSPdfLine.hpp" #include "TFSPdfStream.hpp" namespace tfs { TFSPdfLine::TFSPdfLine( const TFSPdfLine &other ): TFSPdfStreamable( other ), m_verticies( other.m_verticies ) { } TFSPdfLine::TFSPdfLine( TFSPdfStreamableType objType, TFSPainting painting, double lineWidth, double shading, const std::vector<std::pair<double,double>> &verticies ): TFSPdfStreamable( objType, painting, lineWidth, shading ), m_verticies( verticies ) { } TFSPdfLine::TFSPdfLine( double lineWidth, const std::vector<std::pair<double,double>> &verticies ): TFSPdfStreamable( TFSPdfStreamableType::LINE, TFSPainting::STROKED, lineWidth, DEFAULT_SHADING ), m_verticies( verticies ) { } TFSPdfLine::~TFSPdfLine( void ) { } bool TFSPdfLine::empty( void ) const { return m_verticies.empty(); } bool TFSPdfLine::ok( void ) const { return TFSPdfStreamable::ok() && !m_verticies.empty(); } void TFSPdfLine::stream( TFSPdfStream &stream ) const { if( !ok()) { return; } stream.setLineWidth( m_lineWidth ); bool first = true; for( const std::pair<double,double> &pair : m_verticies ) { stream << pair.first << pair.second; if( first ) { stream << "m "; // Move to x,y first = false; } else { stream << "l "; // Line to x,y } } stream << "s\n"; // Stroke return; } } // namespace tfs
[ "barrettd@thefrog.com" ]
barrettd@thefrog.com
06576a34efc4a79e7d0fbc836176f6b1d5a2aa67
b223127395fe17303a6a2c01b903859f772b1107
/Chain.cpp
6b6e3a3171b5f8868144e71d7e709229e2d223c3
[]
no_license
dex0ne/tp-homework
bab714a8e7ee4f06bb064e92ac8d54c7d05a50dc
5a86752922c7641c9c4ae5d3070e53d425b94adb
refs/heads/master
2021-04-09T14:30:58.760263
2018-05-19T17:57:14
2018-05-19T17:57:14
125,771,703
0
0
null
null
null
null
UTF-8
C++
false
false
976
cpp
// // Created by Denis on 19.05.2018. // #include "Chain.h" void CreateCommandHandler::executeCommand(int level) override { if (level == 2) { std::cout << "SOLDIER or PEACEFUL or WIZARD"; std::string unitName = ""; std::cin >> unitName; Command* curCommand = new CreateUnitCommand(unitName); curCommand->setGame(currentGame); curCommand->execute(); delete curCommand; } else if (next != nullptr) { next->executeCommand(level); } } void SabotageCommandHandler::executeCommand(int level) override { if (level == 1) { std::cout << "What will we do? :\nAT - just attack\nSA - super attack(wizards)"; std::string cmd = ""; std::cin >> cmd; Command* curCommand = new SabotageCommand(cmd); curCommand->setGame(currentGame); curCommand->execute(); delete curCommand; } else if (next != nullptr) { next->executeCommand(level); } }
[ "dex0ne@ya.ru" ]
dex0ne@ya.ru
d1140ea2615e89501de1b71c3848e5cee0784de0
c49ec7e71e436943a8312de406cb2dbd7216b775
/include/namaris/utilities/pointcloud.hpp
82eea50c172a163d0bfed3188fac95cf3f05de50
[ "MIT" ]
permissive
3d-scan/namaris
f0f9efb545cd385f2fbd29b302543e9006f2934a
018d2ed4b96fdab61495796c4a68d9540ac45628
refs/heads/master
2021-05-09T15:44:33.930806
2017-02-23T18:30:42
2017-02-23T18:30:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
39,246
hpp
#ifndef POINTCLOUD_UTILITIES_HPP #define POINTCLOUD_UTILITIES_HPP // PCL includes #include <pcl/point_types.h> #include <pcl/point_cloud.h> #include <pcl/filters/voxel_grid.h> #include <pcl/search/brute_force.h> #include <pcl/search/kdtree.h> #include <pcl/common/centroid.h> #include <pcl/common/pca.h> #include <pcl/common/angles.h> #include <pcl/surface/convex_hull.h> // CPP tools #include <namaris/utilities/map.hpp> #include <namaris/utilities/graph.hpp> #include <namaris/utilities/geometry.hpp> namespace utl { namespace cloud { /** \brief @b Downsample Downsamples a pointcloud using the @b VoxelGrid * filter. Unlike the original @b VoxelGrid filter can return * - a map from downsampled indices to original cloud indices * - indices of points of the original cloud that are closest to the * corresponding downsampled points */ template <typename PointT> class Downsample: public pcl::VoxelGrid<PointT> { protected: using pcl::PCLBase<PointT>::setIndices; using pcl::VoxelGrid<PointT>::setDownsampleAllData; using pcl::VoxelGrid<PointT>::setSaveLeafLayout; using pcl::VoxelGrid<PointT>::setMinimumPointsNumberPerVoxel; using pcl::VoxelGrid<PointT>::setFilterFieldName; using pcl::VoxelGrid<PointT>::setFilterLimits; using pcl::VoxelGrid<PointT>::setFilterLimitsNegative; public: /** \brief Methods for downsampling pointclouds. */ enum CloudDownsampleMethod { AVERAGE, /**< for each voxel downsampled point/normal is an average of points/normals belonging to the voxel. Normals are renormalized to unit length */ NEAREST_NEIGHBOR /**< for eaxh voxel downsampled point/normal is chosen to be the point/normal of the input cloud nearest to the voxel centroid */ }; /** \brief Empty constructor. */ Downsample () : downsample_method_ (AVERAGE), output_ (new pcl::PointCloud<PointT>), downsample_map_ (), nearest_indices_ () { resetComputation(); this->setSaveLeafLayout(true); } /** \brief Destructor. */ ~Downsample () { } /** \brief Provide a pointer to the input dataset * \param cloud the const boost shared pointer to a PointCloud message */ virtual void setInputCloud(const typename pcl::PCLBase< PointT >::PointCloudConstPtr& cloud) { pcl::VoxelGrid<PointT>::setInputCloud(cloud); resetComputation(); } /** \brief Set downsampling method used. * \param downsample_method downsample method */ inline void setDownsampleMethod (const CloudDownsampleMethod downsample_method) { downsample_method_ = downsample_method; } /** \brief Get downsampling method used. * \param downsample_method downsample method */ inline CloudDownsampleMethod getDownsampleMethod () const { return downsample_method_; } /** \brief Set the voxel grid leaf size. * \param[in] leaf_size the voxel grid leaf size */ inline void setLeafSize(const float leaf_size) { pcl::VoxelGrid<PointT>::setLeafSize(leaf_size, leaf_size, leaf_size); resetComputation(); } /** \brief Get the voxel grid leaf size. */ inline float getLeafSize () const { return this->leaf_size_[0]; } /** \brief Get downsample map i.e. map from downsampled cloud points to * original cloud points. * \param[out] downsample_map downsample map */ inline void getDownsampleMap (utl::map::Map &downsample_map) { computeDownsampleMap(); downsample_map = downsample_map_; } /** \brief Get indices of points in the original cloud that are closest to * downsampled cloud points. * \param[out] nearest_indices nearest point indices */ inline void getNearestPointIndices (std::vector<int> &nearest_indices) { computeNearestPointIndices(); nearest_indices = nearest_indices_; } private: /** \brief Downsampling method used. */ CloudDownsampleMethod downsample_method_; /** \brief Downsampled pointcloud. */ typename pcl::PointCloud<PointT>::Ptr output_; /** \brief Downsample map */ utl::map::Map downsample_map_; /** \brief indices of points closest to downsampled points */ std::vector<int> nearest_indices_; /** \brief Get downsample map i.e. map from downsampled cloud points to * original cloud points. */ inline void computeDownsampleMap () { if (downsample_map_.empty()) { // Check if the cloud was downsampled if (output_->empty()) { std::cout << "[utl::cloud::Downsample::computeDownsampleMap] you must donwsample the cloud first." << std::endl; return; } // Generate map downsample_map_.resize(output_->size()); for (size_t pointIdHR = 0; pointIdHR < this->input_->size(); pointIdHR++) downsample_map_[this->getCentroidIndex(this->input_->points[pointIdHR])].push_back(pointIdHR); } } /** \brief Get indices of points in the original cloud that are closest to * downsampled cloud points. */ inline void computeNearestPointIndices () { if (nearest_indices_.empty()) { computeDownsampleMap(); // Get nearest indices pcl::search::BruteForce<PointT> search; std::vector<int> neighbors(1); std::vector<float> distances(1); for (size_t pointId = 0; pointId < output_->size(); pointId++) { search.setInputCloud(this->input_, boost::make_shared<std::vector<int> >(downsample_map_[pointId])); search.nearestKSearch(output_->points[pointId], 1, neighbors, distances); nearest_indices_.push_back(neighbors[0]); } } } /** \brief Downsample the input pointcloud * \param[out] output filtered pointcloud */ virtual void applyFilter(pcl::PointCloud<PointT> &output) { // Downsample if we haven't already if (output_->empty()) pcl::VoxelGrid<PointT>::applyFilter(*output_); if (downsample_method_ == AVERAGE) { output = *output_; } else if (downsample_method_ == NEAREST_NEIGHBOR) { computeNearestPointIndices(); pcl::copyPointCloud<PointT>(*this->input_, nearest_indices_, output); } return; } /** \brief Reset computation flags. */ inline void resetComputation () { output_.reset(new pcl::PointCloud<PointT>); downsample_map_.clear(); nearest_indices_.clear(); } }; /** \brief Fit a plane to a pointcloud. * \param[in] cloud input cloud * \param[in] indices indices of the points used to calculate the plane * \param[out] plane_coefficients coefficients of a plane (ax + by + cz + d = 0) */ template <typename PointT> inline void fitPlane ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, const std::vector<int> &indices, Eigen::Vector4f &plane_coefficients) { //---------------------------------------------------------------------------- // Check that we have a sufficient number of points if (cloud->size() < 3) { std::cout << "[utl::cloud::fitPlane3D] input cloud contains fewer that 3 points. Can not fit a plane." << std::endl; abort(); } //---------------------------------------------------------------------------- // Fit plane using PCA pcl::PCA<PointT> pcaSolver; pcaSolver.setInputCloud (cloud); pcaSolver.setIndices (boost::make_shared<std::vector<int> > (indices)); // Extract plane point and normal Eigen::Vector3f point = pcaSolver.getMean().head(3); Eigen::Vector3f normal = pcaSolver.getEigenVectors().col(2); // Convert to plane coefficients utl::geom::pointNormalToPlaneCoefficients<float>(point, normal, plane_coefficients); } /** \brief Fit a plane to a pointcloud. * \param[in] cloud input cloud * \param[out] plane_coefficients coefficients of a plane (ax + by + cz + d = 0) */ template <typename PointT> inline void fitPlane ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, Eigen::Vector4f &plane_coefficients) { // Create fake indices std::vector<int> indices (cloud->size()); for (size_t pointId = 0; pointId < cloud->size(); pointId++) indices[pointId] = pointId; // Fit plane fitPlane<PointT>(cloud, indices, plane_coefficients); } /** \brief @b ConvexHull2D Projects pointcloud to a plane and computes the * 2D convex hull of the projected points. The projection plane can be set * by the user. If it is not set it is computed automatically by * fitting a plane to the input pointcloud using PCA. */ template<typename PointT> class ConvexHull2D : public pcl::PCLBase<PointT> { protected: using pcl::PCLBase<PointT>::input_; using pcl::PCLBase<PointT>::indices_; using pcl::PCLBase<PointT>::fake_indices_; using pcl::PCLBase<PointT>::initCompute; using pcl::PCLBase<PointT>::deinitCompute; public: typedef pcl::PointCloud<PointT> PointCloud; typedef typename PointCloud::Ptr PointCloudPtr; typedef typename PointCloud::ConstPtr PointCloudConstPtr; public: /** \brief Empty constructor. */ ConvexHull2D () : plane_coefficients_ (Eigen::Vector4f::Zero()), compute_plane_ (true), chull_ () { chull_.setDimension(2); chull_.setComputeAreaVolume(true); } /** \brief Destructor. */ virtual ~ConvexHull2D () { input_projected_.reset(); } /** \brief Provide a pointer to the input cloud. */ void setInputCloud (const PointCloudConstPtr &cloud) { pcl::PCLBase<PointT>::setInputCloud (cloud); resetComputation (); if (fake_indices_) indices_->clear(); } /** \brief Set coefficients of the plane to which the points will be projected. */ inline void setPlaneCoefficients (const Eigen::Vector4f &plane_coefficients) { plane_coefficients_ = plane_coefficients; compute_plane_ = false; } /** \brief Get plane coefficients of the plane to which the points will be projected (either set by user or computed automatically). */ inline Eigen::Vector4f getPlaneCoefficients () const { return plane_coefficients_; } /** \brief Get input cloud projected on the 2D plane. Need to run reconstruct first*/ inline PointCloudConstPtr getInputCloudProjected () const { return (input_projected_); } /** \brief Compute a convex hull for all points given. * \param[out] points the resultant points lying on the convex hull. */ void reconstruct (PointCloud &points) { // Initialize computation and check that points and indices are not empty if (!initCompute () || input_->points.empty () || indices_->empty ()) { points.points.clear (); return; } // Fit a plane to the input cloud if required if (compute_plane_) { utl::cloud::fitPlane<PointT>(input_, *indices_, plane_coefficients_); } else if (plane_coefficients_ == Eigen::Vector4f::Zero ()) { std::cout << "[utl::cloud::ConvexHull2D::reconstruct] plane coefficients not provided but plane is not set to be computed automatically. This is not supposed to happen." << std::endl; return; } // Project points onto the plane input_projected_.reset(new PointCloud); input_projected_->resize(input_->size()); for (size_t pointIdIt = 0; pointIdIt < indices_->size(); pointIdIt++) { int pointId = (*indices_)[pointIdIt]; Eigen::Vector3f point = input_->points[pointId].getVector3fMap(); input_projected_->points[pointId].getVector3fMap() = utl::geom::projectPointToPlane<float>(point, plane_coefficients_); } // Compute convex hull chull_.setInputCloud (input_projected_); chull_.setIndices (indices_); chull_.reconstruct (points); // Deinit deinitCompute (); } /** \brief Returns the total area of the convex hull. */ double getTotalArea () const { return (chull_.getTotalArea()); } private: /** \brief Coefficients of the plane to which the points are projected. */ Eigen::Vector4f plane_coefficients_; /** \brief Flag indicating whether projection plane should be computed automatically. */ bool compute_plane_; /** \brief Input cloud projected onto a 2D plane. */ PointCloudPtr input_projected_; /** \brief Convex hull object. */ typename pcl::ConvexHull<PointT> chull_; /** \brief Reset intermideate computation results. */ inline void resetComputation () { input_projected_.reset(); if (compute_plane_) plane_coefficients_ = Eigen::Vector4f::Zero(); } }; // DEPRECATED /** \brief Downsample a cloud using VoxelGrid filter * \param[in] cloud input cloud * \param[in] voxel_size size of the voxel * \param[out] cloud_downsampled downsampled cloud * \param[out] downsample_map map from downsampled points to original points * \return voxelgrid structure used to downsample the cloud */ template <typename PointT> pcl::VoxelGrid<PointT> downsampleCloud ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, const float voxel_size, typename pcl::PointCloud<PointT>::Ptr &cloud_downsampled, utl::map::Map &downsample_map ) { // Downsample the cloud pcl::VoxelGrid<PointT> vg; vg.setSaveLeafLayout(true); vg.setInputCloud(cloud); vg.setLeafSize(voxel_size, voxel_size, voxel_size); vg.filter(*cloud_downsampled); // Generate a map from downsampled centroids to original points downsample_map.resize(cloud_downsampled->size()); for (size_t pointIdHR = 0; pointIdHR < cloud->size(); pointIdHR++) downsample_map[vg.getCentroidIndex(cloud->at(pointIdHR))].push_back(pointIdHR); return vg; } // DEPRECATED /** \brief Downsample a cloud using VoxelGrid filter * \param[in] cloud input cloud * \param[in] voxel_size size of the voxel * \param[out] cloud_downsampled downsampled cloud * \return voxelgrid structure used to downsample the cloud */ template <typename PointT> pcl::VoxelGrid<PointT> downsampleCloud ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, float voxel_size, typename pcl::PointCloud<PointT>::Ptr &cloud_downsampled ) { std::vector<std::vector<int> > dummy; return downsampleCloud<PointT>(cloud, voxel_size, cloud_downsampled, dummy); } // DEPRECATED /** \brief Methods for downsampling a normal */ enum NormalDownsampleMethod { AVERAGE, /**< downsampled normal is an average of normals of the points belonging to the voxel renormalized to unit length */ NEAREST_NEIGHBOR /**< downsampled normal is chosen to be equal to the normal of the nearest neighbour to the voxel centroid */ }; // DEPRECATED /** \brief Downsample a cloud with normals using VoxelGrid filter. * \param[in] cloud input cloud * \param[in] voxel_size size of the voxel * \param[out] cloud_downsampled downsampled cloud * \param[out] downsample_map map from downsampled points to original points * \param[in] normal_downsample_method method used for donwsampling normals (default: AVERAGE) * \return voxelgrid structure used to downsample the cloud */ template <typename PointT> pcl::VoxelGrid<PointT> downsampleCloudWithNormals ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, const float voxel_size, typename pcl::PointCloud<PointT>::Ptr &cloud_downsampled, utl::map::Map &downsample_map, const NormalDownsampleMethod normal_downsample_method = AVERAGE ) { // Downsample cloud pcl::VoxelGrid<PointT> vg = downsampleCloud<PointT>(cloud, voxel_size, cloud_downsampled, downsample_map); // Downsample normals if (normal_downsample_method == AVERAGE) { for (size_t pointId = 0; pointId < cloud_downsampled->size(); pointId++) cloud_downsampled->points[pointId].getNormalVector3fMap() /= cloud_downsampled->points[pointId].getNormalVector3fMap().norm(); } else if (normal_downsample_method == NEAREST_NEIGHBOR) { // NOTE: brute search is faster since we are only need to search over a few points pcl::search::BruteForce<PointT> search; std::vector<int> neighbors(1); std::vector<float> distances(1); for (size_t pointId = 0; pointId < cloud_downsampled->size(); pointId++) { search.setInputCloud(cloud, boost::make_shared<std::vector<int> >(downsample_map[pointId])); search.nearestKSearch(cloud_downsampled->points[pointId], 1, neighbors, distances); cloud_downsampled->points[pointId].getNormalVector3fMap() = cloud->points[neighbors[0]].getNormalVector3fMap(); cloud_downsampled->points[pointId].curvature = cloud->points[neighbors[0]].curvature; } } else { std::cout << "[utl::cloud::downsampleCloudWithNormals] unknown normal downsapling method" << std::endl; abort(); } return vg; } // DEPRECATED /** \brief Downsample a cloud with normals using VoxelGrid filter. * \param[in] cloud input cloud * \param[in] voxel_size size of the voxel * \param[out] cloud_downsampled downsampled cloud * \param[in] normal_downsample_method method used for donwsampling normals (default: AVERAGE) * \return voxelgrid structure used to downsample the cloud */ template <typename PointT> pcl::VoxelGrid<PointT> downsampleCloudWithNormals ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, const float voxel_size, typename pcl::PointCloud<PointT>::Ptr &cloud_downsampled, const NormalDownsampleMethod normal_downsample_method = AVERAGE ) { std::vector<std::vector<int> > dummy; return downsampleCloudWithNormals<PointT>(cloud, voxel_size, cloud_downsampled, dummy, normal_downsample_method); } // DEPRECATED /** Generate graph structure representing local connectivity between points in * a pointcloud. Each point is connected to its k nearest neighbors. * \param[in] cloud input cloud * \param[in] indices indices of the points to be analyzed * \param[in] num_neighbours maximum number of neighbours * \param[out] g graph * \return false if no edges were found, true otherwise */ template <typename PointT> inline bool getCloudConnectivityNearestK ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, const std::vector<int> &indices, graph::Graph &g, const int num_neighbours ) { // Prepare graph structure g.clear(); g.resize(cloud->size()); // Prepare search tree pcl::search::KdTree<PointT> searchTree; searchTree.setInputCloud(cloud, boost::make_shared<std::vector<int> > (indices)); // Loop over all points for (size_t pointIdIt = 0; pointIdIt < indices.size(); pointIdIt++) { int pointId = indices[pointIdIt]; // Find nearest neighbours std::vector<float> distances(num_neighbours); std::vector<int> neighbors(num_neighbours); searchTree.nearestKSearch(pointIdIt, num_neighbours, neighbors, distances); // Add corresponding edges to the graph for (size_t nbrId = 1; nbrId < neighbors.size(); nbrId++) graph::addEdge(pointId, neighbors[nbrId], g); } // If there are no edges - return false if (graph::getNumEdges(g) < 1) { std::cout << "[utl::cloud::getCloudConnectivityNearestK] no neighbouring points were found\n"; return false; } // Otherwise return true return true; } /** Generate graph structure representing local connectivity between points in * a pointcloud. Each point is connected to its k nearest neighbors. * \param[in] cloud input cloud * \param[in] num_neighbours maximum number of neighbours * \param[out] g graph * \return false if no edges were found, true otherwise * \note Note that a point may end up being connected to more than * num_neighbors points. Consider points A and B. B is within radius of A * but is not one of the num_neighbors closest points of A. On the other * hand A is within num_neighbors closest points of B. This means that * point A will be connected to num_neighbors of it's own neighbors and * also to B. */ template <typename PointT> inline bool getCloudConnectivityNearestK ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, graph::Graph &g, const int num_neighbours ) { // Create fake indices std::vector<int> fake_indices; fake_indices.resize(cloud->size()); for (size_t pointId = 0; pointId < cloud->size(); pointId++) fake_indices[pointId] = pointId; // Build connectivity graph return getCloudConnectivityNearestK<PointT>(cloud, fake_indices, g, num_neighbours); } /** Generate graph structure representing local connectivity between points in * a pointcloud. Each point is connected to it's k nearest neighbors within a * radius r. * \param[in] cloud input cloud * \param[in] indices indices of the points to be analyzed * \param[in] radius radius within which neighbours are searched * \param[out] g graph * \param[in] num_neighbours maximum number of neighbours (if set to 0 - all neighbours will be included) * \return false if no edges were found, true otherwise * \note Note that a point may end up being connected to more than * num_neighbors points. Consider points A and B. B is within radius of A * but is not one of the num_neighbors closest points of A. On the other * hand A is within num_neighbors closest points of B. This means that * point A will be connected to num_neighbors of it's own neighbors and * also to B. */ template <typename PointT> inline bool getCloudConnectivityRadius ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, const std::vector<int> &indices, graph::Graph &g, const double radius, const int num_neighbours = 0 ) { // Prepare graph structure g.clear(); g.resize(cloud->size()); // Prepare search tree pcl::search::KdTree<PointT> searchTree; searchTree.setInputCloud(cloud, boost::make_shared<std::vector<int> > (indices)); // Loop over all points for (size_t pointIdIt = 0; pointIdIt < indices.size(); pointIdIt++) { int pointId = indices[pointIdIt]; // Find nearest neighbours std::vector<float> distances; std::vector<int> neighbors; searchTree.radiusSearch(pointIdIt, radius, neighbors, distances, num_neighbours); // Add corresponding edges to the graph for (size_t nbrId = 1; nbrId < neighbors.size(); nbrId++) graph::addEdge(pointId, neighbors[nbrId], g); } // If there are no edges - return false if (graph::getNumEdges(g) < 1) { std::cout << "[utl::cloud::getCloudConnectivityRadius] no neighbouring points were found." << std::endl; return false; } // Otherwise return true return true; } /** Generate graph structure representing local connectivity between points in * the pointcloud. Each point is connected to it's k nearest neighbors within a * radius r. * \param[in] cloud input cloud * \param[in] indices indices of the points to be analyzed * \param[in] radius radius within which neighbours are searched * \param[out] g graph * \param[in] num_neighbours maximum number of neighbours (if set to 0 - all neighbours will be included) * \return false if no edges were found, true otherwise */ template <typename PointT> inline bool getCloudConnectivityRadius ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud, graph::Graph &g, const double radius, const int num_neighbours = 0 ) { // Create fake indices std::vector<int> fake_indices; fake_indices.resize(cloud->size()); for (size_t pointId = 0; pointId < cloud->size(); pointId++) fake_indices[pointId] = pointId; // Build connectivity graph return getCloudConnectivityRadius<PointT>(cloud, fake_indices, g, radius, num_neighbours); } /** \brief Scale pointcloud clouds relative to it's mean point * \param[in] cloud_in input pointcloud * \param[in] scale_factor scale factor * \param[in] cloud_out scaled pointcloud */ template <typename T> inline void scalePointCloud( const typename pcl::PointCloud<T> &cloud_in, float scale_factor, typename pcl::PointCloud<T> &cloud_out) { // Copy pointcloud. This is required to preserve all other fields (e.g. normals) pcl::copyPointCloud(cloud_in, cloud_out); // Compute 3D centroud Eigen::Vector4f centroid; pcl::compute3DCentroid<T>(cloud_in, centroid); for (size_t i = 0; i < cloud_in.size(); i++) { cloud_out.points[i].x = (cloud_out.points[i].x - centroid[0]) * scale_factor + centroid[0]; cloud_out.points[i].y = (cloud_out.points[i].y - centroid[1]) * scale_factor + centroid[1]; cloud_out.points[i].z = (cloud_out.points[i].z - centroid[2]) * scale_factor + centroid[2]; } } /** \brief Given two pointclouds find the closest point between them * \param[in] cloud1 first cloud * \param[in] cloud2 second cloud * \param[in] search_tree1 KD tree for first cloud * \param[in] search_tree2 KD tree for second cloud * \param[out] closest_point_1 closest point in the first cloud * \param[out] closest_point_2 closest point in the second cloud * \return distance between two clouds */ template <typename PointT> inline float cloudToCloudDistance ( const pcl::PointCloud<PointT> &cloud1, const pcl::PointCloud<PointT> &cloud2, const pcl::search::KdTree<PointT> search_tree1, const pcl::search::KdTree<PointT> search_tree2, int &closest_point_1, int &closest_point_2 ) { // Prepare variables closest_point_1 = -1; closest_point_2 = -1; float minDistance = std::numeric_limits<float>::max(); // Prepare search std::vector<int> neighbours(1); std::vector<float> distances(1); if (cloud1.size() > cloud2.size()) { // Iterate over the points of the first cloud and find the closest distance to the second cloud for (size_t pointId = 0; pointId < cloud2.size(); pointId++) { search_tree1.nearestKSearch(cloud2.points[pointId], 1, neighbours, distances); if (distances[0] < minDistance) { closest_point_1 = neighbours[0]; closest_point_2 = pointId; minDistance = distances[0]; } } } else { // Iterate over the points of the first cloud and find the closest distance to the second cloud for (size_t pointId = 0; pointId < cloud1.size(); pointId++) { search_tree2.nearestKSearch(cloud1.points[pointId], 1, neighbours, distances); if (distances[0] < minDistance) { closest_point_1 = pointId; closest_point_2 = neighbours[0]; minDistance = distances[0]; } } } return std::sqrt(minDistance); } /** \brief Given two pointclouds find the closest point between them * \param[in] cloud1 first cloud * \param[in] cloud2 second cloud * \param[out] closest_point_1 closest point in the first cloud * \param[out] closest_point_2 closest point in the second cloud * \return distance between two clouds */ template <typename PointT> float cloudToCloudDistance ( const typename pcl::PointCloud<PointT>::ConstPtr &cloud1, const typename pcl::PointCloud<PointT>::ConstPtr &cloud2, int closest_point_1, int closest_point_2 ) { // Prepare variables closest_point_1 = -1; closest_point_2 = -1; float minDistance = std::numeric_limits<float>::max(); // Prepare search pcl::search::KdTree<PointT> search_tree; std::vector<int> neighbours(1); std::vector<float> distances(1); if (cloud1->size() > cloud2->size()) { // First create a search tree for the second cloud search_tree.setInputCloud(cloud1); // Iterate over the points of the first cloud and find the closest distance to the second cloud for (size_t pointId = 0; pointId < cloud2->size(); pointId++) { search_tree.nearestKSearch(cloud2->points[pointId], 1, neighbours, distances); if (distances[0] < minDistance) { closest_point_1 = neighbours[0]; closest_point_2 = pointId; minDistance = distances[0]; } } } else { // First create a search tree for the second cloud search_tree.setInputCloud(cloud2); // Iterate over the points of the first cloud and find the closest distance to the second cloud for (size_t pointId = 0; pointId < cloud1->size(); pointId++) { search_tree.nearestKSearch(cloud1->points[pointId], 1, neighbours, distances); if (distances[0] < minDistance) { closest_point_1 = pointId; closest_point_2 = neighbours[0]; minDistance = distances[0]; } } } return std::sqrt(minDistance); } /** \brief Given a point in the pointcloud and it's neighbors, check if that * point is a boundary point. * The idea is similar to occlusion boundary detection provess described in * "Multi-scale Feature Extraction on Point-Sampled Surfaces" by Pauly et al.: * 1. Project all neighboring points onto the tangent plane of the input point. * 2. Find the largest angle between vectors connecting the input point to projected neighbors. * 3. If that angle is greater than some threshold, the input point is considered to be a boundary. * \param[in] cloud input pointcloud * \param[in] point_id index of the input point * \param[in] neighbors indices of neighbors of the input point * \param[in] max_angle maximum angle between two consecutive neighbor points * \return TRUE if input point is a boundary point * \note input pointcloud must have normals */ template <typename PointT> bool isBoundaryPoint ( const typename pcl::PointCloud<PointT> &cloud, const int point_id, const std::vector<int> &neighbours, const float max_angle = pcl::deg2rad(135.0) ) { // If there are no neighbours it must be an occlusion if (neighbours.empty()) return true; // Project neighbour points onto the tangent plane of input point Eigen::Vector3f planePoint = cloud.points[point_id].getVector3fMap(); Eigen::Vector3f planeNormal = cloud.points[point_id].getNormalVector3fMap(); std::vector<Eigen::Vector3f> projectedNeighbours(neighbours.size()); for (size_t neighbourId = 0; neighbourId < neighbours.size(); neighbourId++) { Eigen::Vector3f neighbourPoint = cloud.points[neighbours[neighbourId]].getVector3fMap(); Eigen::Vector3f neighbourPointProjected = utl::geom::projectPointToPlane(neighbourPoint, planePoint, planeNormal); projectedNeighbours[neighbourId] = neighbourPointProjected; } // Calculate signed angles between first vector and all other vectors Eigen::Vector3f referenceVector = projectedNeighbours[0] - planePoint; std::vector<float> angles (neighbours.size()); for (size_t neighbourId = 0; neighbourId < projectedNeighbours.size(); neighbourId++) { Eigen::Vector3f currentVector = projectedNeighbours[neighbourId] - planePoint; float curAngle = utl::geom::vectorAngleCW(referenceVector, currentVector, planeNormal); angles[neighbourId] = curAngle; } // Calculate difference between consecutinve angles std::sort(angles.begin(), angles.end()); std::vector<float> angleDifference(angles.size()); for (size_t i = 1; i < angles.size(); i++) angleDifference[i] = utl::geom::angleDifferenceCCW(angles[i-1], angles[i]); angleDifference[0] = utl::geom::angleDifferenceCCW(angles[angles.size()-1], angles[0]); // If maximum difference is bigger than threshold mark point as boundary point if (*std::max_element(angleDifference.begin(), angleDifference.end()) > max_angle) return true; else return false; } /** \brief Find the boundary points of a pointcloud. See @utl::cloud::isBoundaryPoint * for algorithm details. * \param[in] cloud input pointcloud * \param[in] search_radius radius used to search for point neighbors * \param[out] boundary_point_ids indices of boundary points * \param[in] max_angle maximum angle between two consecutive neighbor points * \return TRUE if input point is a boundary point * \note input pointcloud must have normals */ template <typename PointT> void getCloudBoundary ( const typename pcl::PointCloud<PointT>::Ptr &cloud, const float search_radius, std::vector<int> &boundary_point_ids, const float max_angle = pcl::deg2rad(135.0) ) { boundary_point_ids.resize(0); // Prepare search tree typename pcl::search::KdTree<PointNC> tree; tree.setInputCloud(cloud); // Loop over cloud points for (size_t pointId = 0; pointId < cloud->size(); pointId++) { // Find point neighbors std::vector<float> distancesSquared; std::vector<int> neighbors; tree.radiusSearch(pointId, search_radius, neighbors, distancesSquared); if (neighbors.size() < 1) // If there are no neighbors - do nothing. This shouldn't really happen unless search continue; // radius is 0. In that case function will find no boundary points. std::vector<int> neighborsFirstExcluded (neighbors.begin()+1, neighbors.end()); // Check if point is a boundary point if (utl::cloud::isBoundaryPoint<PointNC>(*cloud, pointId, neighborsFirstExcluded)) boundary_point_ids.push_back(pointId); } } } } #endif // POINTCLOUD_UTILITIES_HPP
[ "aleksandrs.ecins@gmail.com" ]
aleksandrs.ecins@gmail.com
3d0592d1ddbdc83235eb07ab8e18039b852f4d78
687d7a901a6a38eb4c6184a2e0fc9d21e5c8b407
/501A.cpp
b7c1eba34ec969682f40a340ccb2b568cb27ba85
[]
no_license
MdAlSiam/My-Codeforces-Solutions
c7d343d0d31f7997d2e6b49ac5304780a45ee085
d89ff347e4d50300550f86e6c78d488b46eed7c6
refs/heads/master
2021-09-21T01:34:53.283577
2021-09-01T18:25:36
2021-09-01T18:25:36
231,908,385
2
0
null
null
null
null
UTF-8
C++
false
false
1,485
cpp
/// In the name of Allah SWT using namespace std; #include <bits/stdc++.h> #define ll long long int #define dd double #define scl(x) scanf("%lld", &x) #define scll(x, y) scanf("%lld %lld", &x, &y) #define scd(x) scanf("%lf", &x) #define scdd(x, y) scanf("%lf %lf", &x, &y) #define prl(x) printf("%lld\n", x) #define prll(x, y) printf("%lld %lld\n", x, y) #define prYes printf("YES\n") #define prNo printf("NO\n") #define aNewLine printf("\n") #define ON(n, i) (n|(1LL<<i)) #define OFF(n, i) (n&(~(1LL<<i))) #define CHK(n, i) (n&(1LL<<i)) #define For(i, x, y) for(ll i = x; i < y; i++) #define Mem(ara, x) memset(ara, x, sizeof(ara)) #define pb push_back #define pll pair<ll, ll > #define ff first #define ss second #define maxn 200005 ///2x10^5 + 5 //#define maxn 1000006 ///10^6 + 6 //#define maxn 1000000009 ///10^9 + 9 #define pi acos(-1.00) #define eps 0.0000000001 ///10^-10 #define inf LONG_LONG_MAX #define mod 1000000007 ///10^9+7 ll t, test, temp; ll n, m, k, kount; ll a, b, c, d, ans, u, v; ll x, y, z = -1, maxi, mini; void solve() { scll(a, b); scll(c, d); ll p = a; ll t = c; x = max( (3*p)/10 , p-((p/250)*t) ); p = b; t = d; y = max( (3*p)/10 , p-((p/250)*t) ); if (x > y) printf("Misha\n"); else if (y > x) printf("Vasya\n"); else printf("Tie"); } int main() { test = 1; //while (scl(test) == 1) while (test--) solve(); }
[ "noreply@github.com" ]
noreply@github.com
0c9fcdbdc76c52f3958bd09ff6e66896892ad874
093df6cf938afc1f0af9f7120e2b48112cde7e36
/libstd_cpp/type_traits/impl/enable_if.h
de67cf69a945aedfcd2eecf8c76a1681df8d9b7c
[]
no_license
hexu1985/cpp_code
6487e19563ed2a751f889cb81ad724c40b442097
1cdbe297dec47cdd11f9e5d28e6caa2971b469bb
refs/heads/master
2020-06-25T22:19:55.409303
2019-02-19T03:29:49
2019-02-19T03:29:49
96,992,341
3
0
null
2017-07-12T09:54:11
2017-07-12T09:54:11
null
UTF-8
C++
false
false
520
h
// -*- C++ -*- // HeXu's // 2013 Jul #ifndef HX_ENABLE_IF_H #define HX_ENABLE_IF_H namespace Hx { // Primary template. /// Define a member typedef @c type only if a boolean constant is true. template <bool, typename T = void> struct enable_if {}; // Partial specialization for true. template <typename T> struct enable_if<true, T> { typedef T type; }; } // namespace Hx #if __cplusplus < 201103L namespace std { using Hx::enable_if; } // namespace std #endif // __cplusplus < 201103L #endif // HX_ENABLE_IF_H
[ "hexu@a.com" ]
hexu@a.com
effd0396f30679652f4d5e6dcce2233470f5a3ca
433ce53f5e6a30143599a116546d392d5bbb71a9
/src/LibAmqp/Transport/LowLevel/EventThreadTestFixture.h
7d912f50ddfb07ad8b0558ca113b22f43452f2b7
[ "Apache-2.0" ]
permissive
libamqp/libamqp
856a4b9ccad80aaad610a76d015ac0aae0b454e6
af404f8412a940059fa54af0b25160bc94c8dd4b
HEAD
2016-09-03T06:44:13.553357
2015-04-21T22:15:33
2015-04-21T22:15:33
1,619,242
29
8
null
null
null
null
UTF-8
C++
false
false
1,190
h
/* Copyright 2011-2012 StormMQ Limited 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 LIBAMQP_TRANSPORT_LOW_LEVEL_EVENT_THREAD_TEST_SUPPORT_H #define LIBAMQP_TRANSPORT_LOW_LEVEL_EVENT_THREAD_TEST_SUPPORT_H #include "Transport/LowLevel/EventThread.h" #include "Context/TestSupport/ContextHolder.h" namespace SuiteTransportLowLevel { class EventThreadTestFixture : public virtual TestSupport::ContextHolder { public: EventThreadTestFixture(); ~EventThreadTestFixture(); public: amqp_event_thread_t *m_event_thread; static void basic_event_thread_handler(amqp_event_thread_t *event_thread); }; } #endif
[ "eamon.walshe@stormmq.com" ]
eamon.walshe@stormmq.com
ebd2f6ad7a75291903aa54f922d3171a9a65d0f6
9ba6c8207201e153ec4b4d9030a1ae9c6a6b8992
/Sparky-core/Core.h
0042d82a3d7db544486e213a50fb83e76bbf2601
[]
no_license
ankurparihar/Sparky
0f70dec6abb521bd8214b5ac21d79675ce51fb61
1110ab3dfd3e3f379173347aab2e14f00b1adee0
refs/heads/master
2020-05-03T09:26:03.923362
2019-05-03T06:03:50
2019-05-03T06:03:50
178,553,635
1
0
null
null
null
null
UTF-8
C++
false
false
463
h
#pragma once #ifdef SPARKY_ENABLE_ASSERTS #define SPARKY_ASSERT(x, ...) { if(!(x)) { SPARKY_ERROR("Assertion Failed: {0}", __VA_ARGS__); __debugbreak(); } } #define SPARKY_CORE_ASSERT(x, ...) { if(!(x)) { SPARKY_CORE_ERROR("Assertion Failed: {0}", __VA_ARGS__); __debugbreak(); } } #else #define SPARKY_ASSERT(x, ...) #define SPARKY_CORE_ASSERT(x, ...) #endif #define BIT(x) (1 << x) #define SPARKY_BIND_EVENT_FN(fn) std::bind(&fn, this, std::placeholders::_1)
[ "pariharankur101@gmail.com" ]
pariharankur101@gmail.com
d361ae3e787a9c65037485f5f60c56819034e5d6
f2bd29cc215ab26a73ebb132b492171102f80933
/SynthLib/SampleAndHold.h
2cb09e30b44daf7f609c2bad65003ba889763fa6
[]
no_license
djeemie2000/SynthPlayground
f319c1491744ad42bbc3501a2ffecdc44f887391
daffa8887d568b306fdea071ad2f5b69fbebf074
refs/heads/master
2021-01-17T11:01:54.643937
2016-03-30T11:14:49
2016-03-30T11:14:49
18,151,046
0
0
null
null
null
null
UTF-8
C++
false
false
334
h
#ifndef SAMPLEANDHOLD_H #define SAMPLEANDHOLD_H template<class T> class CSampleAndHold { public: CSampleAndHold() : m_Out(0) {} T operator()(T In, bool Trigger) { if(Trigger) { m_Out = In; } return m_Out; } private: T m_Out; }; #endif // SAMPLEANDHOLD_H
[ "peter.jamee@telenet.be" ]
peter.jamee@telenet.be
e8762f3f8d2151bc234cd0efd98cd7e010e4e90f
9da062bfb03fe01803d1495add1098818b01c7b6
/charpter02/0229.cpp
3960ba54805955ea8cccfda99e0f2edf692b4410
[]
no_license
chengwenwu/file
aaa0ba13cecee3478c86f89185b6e52163daafb8
2548cc3e4b9a8e3f213967871bc23f265e9a19f9
refs/heads/master
2020-06-29T22:31:55.408373
2020-02-10T07:02:14
2020-02-10T07:02:14
200,644,169
3
0
null
null
null
null
GB18030
C++
false
false
1,429
cpp
#include <iostream> #include <string> using namespace std; /*声明基类Box*/ class Box{ public: Box(int,int,int); //声明构造函数 virtual void display();//声明输出函数 protected: //受保护成员,派生类可以访问 int length,height,width; }; /*Box类成员函数的实现*/ Box:: Box (int l,int h,int w){//定义构造函数 length =l; height =h; width =w; } void Box::display(){//定义输出函数 cout<<"length:" << length <<endl; cout<<"height:" << height <<endl; cout<<"width:" << width <<endl; } /*声明公用派生类FilledBox*/ class FilledBox : public Box{ public: FilledBox (int, int, int, int, string);//声明构造函数 virtual void display();//虚函数 private: int weight;//重量 string fruit;//装着的水果 }; /* FilledBox类成员函数的实现*/ void FilledBox :: display(){//定义输出函数 cout<<"length:"<< length <<endl; cout<<"height:"<< height <<endl; cout<<"width:"<< width <<endl; cout<<"weight:"<< weight <<endl; cout<<"fruit:"<< fruit <<endl; } FilledBox:: FilledBox (int l, int h, int w, int we, string f ) : Box(l,h,w), weight(we), fruit(f){} int main(){//主函数 Box box(1,2,3);//定义Student类对象stud1 FilledBox fbox(2,3,4,5,"apple");//定义FilledBox类对象fbox Box *pt = &box;//定义指向基类对象的指针变量pt pt->display( ); pt = &fbox; pt->display( ); return 0; }
[ "2681595858@qq.com" ]
2681595858@qq.com
874239e141602ce8e33552ccceee65237d327440
59b447fe3260d7a5530442a6ce0a28a04d269811
/lab13/lab13.cpp
91d73d1514b02d08138f6f3dc484b5dbdfe942a3
[]
no_license
SeanProfeta/SeanProfeta-CSCI20-FALL2017
c306247d58b77ce503e33b8e84d359c84e05cca1
f4e1e9f6ad963d54e689a51a56b700bd520fb7eb
refs/heads/master
2021-01-19T16:02:01.574457
2017-12-11T07:30:01
2017-12-11T07:30:01
100,982,709
0
0
null
null
null
null
UTF-8
C++
false
false
1,499
cpp
// Created by Sean Profeta // Date: 8/30/17 #include <iostream> using namespace std; int main () { // The are the orignal number we are basing this off of. They started at mintues and will transfer to years. //change the years to get a differnent answer //The Equation to turn births per min into per year int years = 55; int birthPerMin=7.5; int birthPerHour = birthPerMin *60; int birthPerDay = birthPerHour * 24; int birthPerYear = birthPerDay * 365; //The Equation to turn death from min to years int deathPermin=5; int deathPerHour= deathPermin * 60; int deathPerDay= deathPerHour * 24; int deathPerYear = deathPerDay * 365; // The equation to turn migrant per min into years int migrantPerMin = 1.8; int migrantPerHour = migrantPerMin * 60; int migrantPerDay = migrantPerHour * 24; int migrantPerYear = migrantPerDay * 365; // These variables are the computer adding the numbers together in order to get to the new US population. int popIncrease =birthPerYear + migrantPerYear; int netGrow = popIncrease - deathPerYear; int growPerYear= netGrow * years ; int usPop=325770151; int newPop = growPerYear + usPop; cout << "The births per year is " << birthPerYear << " the deaths per year is " << deathPerYear << " the mingrants per year is "<< migrantPerYear <<" the net growth per year is " << netGrow << " and after " << years << " years the new population is " << newPop; return 0; }
[ "sprofeta001@student.butte.edu" ]
sprofeta001@student.butte.edu
46a3eaf21599d5d472ded7f7685f6b5a810bd629
28dba754ddf8211d754dd4a6b0704bbedb2bd373
/Ural/P1577.cpp
5210a50443d15cd14d685161438da1ddf1427a6c
[]
no_license
zjsxzy/algo
599354679bd72ef20c724bb50b42fce65ceab76f
a84494969952f981bfdc38003f7269e5c80a142e
refs/heads/master
2023-08-31T17:00:53.393421
2023-08-19T14:20:31
2023-08-19T14:20:31
10,140,040
0
1
null
null
null
null
UTF-8
C++
false
false
1,278
cpp
/* * 类似LCS,f(i,j)表示子串A前i个字母,子串B前j个字母的最小公共母串的长度,如果A[i]=B[j],那么f(i,j)=f(i-1,j-1)+1,否则f(i,j)=min{f(i-1,j),f(i,j-1)}+1,同时记录方案数即可 */ #include <map> #include <set> #include <list> #include <cmath> #include <queue> #include <stack> #include <bitset> #include <vector> #include <cstdio> #include <string> #include <sstream> #include <cstdlib> #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int mod = 1000000007; char s1[2222], s2[2222]; int f[2222][2222], g[2222][2222]; int n, m; int main() { scanf("%s", s1 + 1); scanf("%s", s2 + 1); n = strlen(s1 + 1), m = strlen(s2 + 1); for (int i = 0; i <= n; i++) for (int j = 0; j <= m; j++) { if (i == 0 || j == 0) { f[i][j] = i + j; g[i][j] = 1; } else { if (s1[i] == s2[j]) { f[i][j] = f[i - 1][j - 1] + 1; g[i][j] = g[i - 1][j - 1]; } else { g[i][j] = 0; f[i][j] = min(f[i][j - 1], f[i - 1][j]) + 1; if (f[i][j - 1] + 1 == f[i][j]) { g[i][j] += g[i][j - 1]; g[i][j] %= mod; } if (f[i - 1][j] + 1 == f[i][j]) { g[i][j] += g[i - 1][j]; g[i][j] %= mod; } } } } cout << g[n][m] << endl; return 0; }
[ "zjsxzy@gmail.com" ]
zjsxzy@gmail.com
d17f30fc86c5e14b52f27b70f5f68239c39d75fa
30b7ffd17845db982883a91ce8d04551281658c4
/Codeforces/Educational/Educational 84/C-01.cpp
02504820bad43191c80da1e26db5663920f5384d
[]
no_license
shas9/codehub
95418765b602b52edb0d48a473ad7e7a798f76e5
bda856bf6ca0f3a1d59980895cfab82f690c75a2
refs/heads/master
2023-06-21T01:09:34.275708
2021-07-26T14:54:03
2021-07-26T14:54:03
389,404,954
0
0
null
null
null
null
UTF-8
C++
false
false
3,198
cpp
#include <bits/stdc++.h>` #define slld(longvalue) scanf("%lld", &longvalue) #define plld(longvalue) printf("%lld\n", longvalue) #define slf(longvalue) scanf("%lf", &longvalue) #define plf(longvalue) printf("%lf\n", longvalue) #define sc(letter) scanf("%c", &letter) #define pc(letter) printf("%c", letter) #define ss(name) scanf("%s", name) #define ps(name) printf("%s", name) #define pnew printf("\n") #define ll long long #define ull unsigned long long #define pll pair < long long, long long > #define pii pair < int, int > #define printcase(indexing,ans) printf("Case %lld: %lld\n", indexing, ans) #define pb(x) push_back(x) #define bug printf("BUG\n") #define mxlld LLONG_MAX #define mnlld -LLONG_MAX #define mxd 2e8 #define mnd -2e8 #define pi 3.14159265359 #define mod 1000000009 using namespace std; bool check(ll n, ll pos) { return n & (1LL << pos); } ll Set(ll n, ll pos) { return n = n | (1LL << pos); } bool vis[2000]; vector < pll > vec1, vec2; string str; int main() { ll i, j, k, l, m, n, o, r, q; ll testcase; ll input, flag, tag, ans; // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); cin >> n >> m >> k; ll x, y; for(i = 0; i < k; i++) { cin >> x >> y; vec1.push_back({x,y}); } for(i = 0; i < k; i++) { cin >> x >> y; vec2.push_back({x,y}); } str = ""; for(i = 0; i < k; i++) { if(i) { for(j = 0; j < k; j++) { vec1[j].first += r, vec1[j].second += l; vec1[j].first = max(1LL,vec1[j].first); vec1[j].second = max(1LL,vec1[j].second); vec1[j].first = min(n,vec1[j].first); vec1[j].second = min(m,vec1[j].second); } } ll mn = mxlld; ll id; for(j = 0; j < k; j++) { if(vis[j]) continue; ll dist = abs(vec1[j].first - vec2[j].first) + abs(vec1[j].second - vec2[j].second); if(dist < mn) dist = mn, id = j; } // cout << vec1[id].first << " " << vec1[id].second << endl; r = vec1[id].first - vec2[id].first; l = vec1[id].second - vec2[id].second; // cout << l << " " << r << " " << id << endl; if(r < 0) { for(j = 1; j <= abs(r); j++) { str += 'R'; } } else { for(j = 1; j <= r; j++) { str += 'L'; } } if(l < 0) { // r *= -1; for(j = 1; j <= abs(l); j++) { str += 'D'; } } else { for(j = 1; j <= l; j++) { str += 'U'; } } vis[id] = 1; // l *= -1; // r *= -1; } if(str.size() > (2 * n * m)) cout << -1 << endl; else cout << str.size() << endl << str << endl; }
[ "shahwathasnaine@gmail.com" ]
shahwathasnaine@gmail.com
b44df0f5d3a6a7b07aa82912b4026dad8668083a
9f520bcbde8a70e14d5870fd9a88c0989a8fcd61
/pitzDaily/365/alphak
eebf25512d59c344b7b80ff78d6146e2bb2fb94b
[]
no_license
asAmrita/adjoinShapOptimization
6d47c89fb14d090941da706bd7c39004f515cfea
079cbec87529be37f81cca3ea8b28c50b9ceb8c5
refs/heads/master
2020-08-06T21:32:45.429939
2019-10-06T09:58:20
2019-10-06T09:58:20
213,144,901
1
0
null
null
null
null
UTF-8
C++
false
false
68,856
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1806 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "365"; object alphak; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField nonuniform List<scalar> 6400 ( 0.851418461397 1.30813989953 2.03094009625 2.40996728549 2.78100789534 3.17853637401 3.776660262 4.46623010062 4.69634199361 5.13585735832 6.28152036955 6.90614998796 7.39368367833 7.9992652317 8.83965985849 9.70996578603 10.4078963088 11.0698856347 11.6402231439 11.9065359341 11.8937238968 11.9420439502 12.2891500844 12.9665531639 13.7421532019 14.4081717275 14.8882507776 15.3167115005 15.8172120761 16.4026213354 17.0188141431 17.4253268521 17.5515903366 17.5546183291 17.4543292554 17.1816436719 17.0951680616 17.3624982699 17.2050054173 16.750736121 16.7354053419 17.3227819235 17.9451054922 18.2475116129 18.3087835967 18.2047579227 18.0091171889 17.7813395666 17.5314253827 17.2755711585 16.8801711093 16.0146174295 14.9889296922 13.7926478486 12.9768214532 12.7217516406 12.0017301117 10.3002135533 8.41062572432 7.36345259685 6.13766659894 4.85039892459 3.50134229269 5.040257803 9.14140930915 14.1196169394 17.1421494043 16.879130736 14.9086698184 13.2745288378 12.3712355679 12.5075173298 12.9791563942 12.8189791389 14.7781356217 14.1929587005 16.0120240853 9.91739839989 12.8780602051 4.81746226093 3.10459688115 2.43266184072 2.99360221603 4.20580931167 3.95379397839 3.6601742708 3.74232591911 4.07351681053 4.57411728144 5.22839130459 6.0477958839 6.86430195434 7.56606631085 8.23555945561 8.90847231996 9.69208607197 10.5121516086 11.3213927844 12.3359020151 12.3993832428 12.1367084956 12.1105587926 12.3684495913 13.0022306592 13.9898510974 14.5552669842 14.9852657507 15.4746115019 16.0035383706 16.5528161506 17.1199811114 17.6821251601 17.8091609023 17.8214149202 17.7868151919 17.3418360387 17.3554013951 17.639658194 17.3715406673 16.6647416355 16.5944805475 18.3436475274 19.5645796746 19.7220560575 19.6864619865 19.4004709034 18.9616818237 18.5595538136 17.9699598586 17.4113182616 17.1553290635 17.2991735535 16.7061338373 14.0173810989 13.4272985113 12.7202471419 10.8896642533 9.26548215031 7.82143502037 6.41648390952 5.2174350158 5.26954937339 3.84529283081 5.32135366664 9.22359399784 15.0856280267 18.8480178833 17.6593226673 15.5186439938 13.6001380759 12.8565965286 13.2068016679 14.2242755396 13.6222419118 13.4292098071 12.8691515496 11.6374695332 9.77504024131 8.20009965478 4.28771117142 3.11017505641 2.67188157181 3.16797714611 3.32209571961 3.68209845889 4.02795493488 3.96619366627 4.00367586121 4.49279224271 5.21055996133 6.02728692622 6.86320840187 7.61711563002 8.29778270022 8.82900588925 9.52953778516 12.4654410209 14.5428292199 14.815347509 13.920312997 11.9657663652 11.6533175092 12.5431418012 13.2375830049 13.8404017418 14.5211370956 15.1107779681 15.604569265 16.1112721794 16.6730782256 17.1846080148 17.8911836789 18.0481808498 17.6855929827 18.2281108634 17.7990111427 17.2168579432 17.8850676373 17.6097236505 16.9099861431 16.8386997151 17.451101456 18.0936060227 18.413486042 18.4989848037 18.4392462031 18.2721642455 18.0189513452 17.68134976 17.2855154169 16.8366606326 16.2314825125 15.3578474328 14.5867537264 13.9401328502 12.4417740868 10.8037769648 9.3212931361 7.94647962043 6.69650921256 5.70550248343 4.78445409103 4.194499597 6.32312156157 11.357638897 15.997495371 18.2940198136 18.4378381665 16.8651737621 15.1884197526 14.4666707803 14.3326963099 13.6539735683 13.0359991384 12.9625629143 12.568866378 11.5450306952 9.90190073645 7.47039917517 7.63415425418 2.97285723639 5.37803697708 3.35092085587 3.37121724181 4.01489702745 11.7519432478 10.0866227552 4.7171296406 4.494726752 5.22768030937 6.05216050652 6.89917737119 7.62932389589 8.37354100724 10.2370434526 12.4685480758 14.113959474 14.3197141287 12.7781415901 11.442711941 11.5564753658 11.9216695135 12.4334425813 13.1551216933 13.9346442992 14.6706547634 15.3040066033 15.7596948035 16.3188181467 16.7568939513 17.5175664247 17.8502648525 18.5055217724 18.2320169097 17.5167189142 17.9690774535 17.5001820851 17.0205685852 17.0138366895 17.036788126 17.1914904232 17.6244824158 18.1123459946 18.4264617896 18.5508267105 18.5268231833 18.3869115614 18.1530450581 17.8352922469 17.4444032775 16.9726184005 16.3778677949 15.6368762856 14.8128697772 13.8108925646 12.4699992747 10.9524886089 9.50545308089 8.21700819706 7.13267613567 6.29871762395 5.71213344795 5.69006535872 7.21493230965 10.6644668722 16.3445894618 19.9185503969 20.1340648275 18.4867168452 16.1497200672 14.5402601349 13.7283285991 13.8538056336 15.1782356489 15.0653726977 13.7047659829 13.5161261419 16.7534016982 13.1791831976 11.2161995283 5.40652094248 7.39040809088 3.92328476005 4.24151275877 6.29110176345 11.634722744 7.86299184906 4.98563697821 4.99694812511 5.45187411017 6.20375594365 7.07438712438 8.51122546102 11.0228807858 12.0047915016 12.2359746049 11.9529156859 11.3249950797 11.0648023921 11.5029549373 11.6995748353 11.9233925748 12.5106189762 13.2638980378 14.0768730321 14.8641837885 15.43748758 16.1065338776 16.4373229296 17.2367441092 17.52358135 18.8407212651 18.3837336796 17.6662801839 17.8110190329 17.1439071414 16.9696827659 17.0087795212 17.1192348334 17.2473657016 17.4476122468 17.7926538014 18.1852692157 18.4806934411 18.627829857 18.6330985311 18.5188997163 18.3071010287 18.0118466095 17.6385841805 17.1771753873 16.6053460094 15.9089352854 15.0732770465 14.0074833387 12.6633526404 11.2059142228 9.85227084794 8.71585668744 7.84322898751 7.25774370724 7.01415335976 7.37060808636 8.13540272881 10.6998240302 15.8231654793 19.9922256314 21.4118821847 20.2494001747 17.5027060914 15.0436911705 14.6914251838 16.8521137712 17.6659910856 16.5869001497 15.6303388905 18.2184885845 21.192316094 16.5433193002 15.6640249829 9.7348831595 8.86461775878 4.87010412713 5.5763284316 11.9002552758 11.3318260005 5.90579731734 5.49285121807 5.57194350985 5.78897702375 6.4943245142 9.33072925582 12.7352825638 13.0699259622 12.551312862 11.2744072376 10.4723655303 10.4954281224 11.3673102387 11.5028803556 11.5219866371 11.9760014157 12.6615612826 13.4723561244 14.1923869942 15.0006932067 15.9805017859 16.1894615417 17.2329861788 17.2284130678 18.9139979906 18.4843685458 19.439566642 18.1016388907 16.9163982735 16.7096293042 16.8781215558 17.0906235934 17.2803348888 17.457347838 17.6786813273 17.9816189117 18.3152539292 18.5887953162 18.7451708337 18.7720677416 18.6811348836 18.4938548664 18.227418044 17.88532638 17.4558634429 16.9181520297 16.2449314987 15.3907476436 14.2964640273 12.9898057102 11.6427710994 10.4400291404 9.47499865558 8.79925570382 8.43166224527 8.5448233866 9.53372929886 8.84732980292 12.2532970334 17.5816347287 21.2336597658 22.650150893 21.734371566 18.4051098234 16.2473865954 17.9753949737 20.1085403793 19.5457648153 18.5052882621 18.5397782652 23.0164065886 24.5658085655 19.6048664271 19.4037948634 11.8130680615 8.52937425697 5.92635960852 5.58429711972 11.7856758695 7.90547842593 5.92788832248 6.01601651103 6.09931267225 6.77527947558 7.14953745611 12.6289197934 13.1715353135 13.1045730915 11.4470903891 9.97279359459 9.92878145598 11.2817848627 11.3878682254 11.1212222354 11.5328189801 12.0908173331 12.7758369166 13.5839194347 14.5844803504 15.5796291092 15.9728143193 17.4139844678 17.2139718402 19.0845433298 18.4665966661 19.6202831858 18.6168823394 17.7884741383 16.5919241016 16.5718786084 16.9135738446 17.224420542 17.4550983727 17.6621606026 17.9015376149 18.1871988532 18.4875986928 18.7432086657 18.9028294216 18.9452191664 18.8765906135 18.7188938064 18.4905559875 18.1925658379 17.8085760059 17.3102405624 16.6570958551 15.8013071348 14.7240601875 13.5023607813 12.3036575894 11.2709696739 10.4538777508 9.86158728887 9.6072387358 9.77952856312 9.89708049085 10.2460885455 13.5250520548 20.0485065872 22.5714653984 22.9902294534 21.9524584193 19.7232342795 19.4771481729 21.9641416881 22.3579535146 21.4721464264 20.8392765368 22.731280729 25.4027159688 26.8157634477 22.2668114636 21.1340619817 11.4329072587 7.95740168195 6.99592579876 11.8329606137 11.79163697 6.56887876519 6.50637908799 6.60773634689 6.75716281641 7.2835442822 12.4362173748 13.3215176021 13.2708409528 12.625278607 10.0076431309 9.39519396574 11.0455828386 11.484634042 10.9126600548 10.971757795 11.5849129054 12.3088362542 13.0042425068 13.8861682902 14.6649995587 16.0395816742 16.0971456297 17.3792912441 18.9633127074 19.1641010842 18.0245613721 18.8937176764 18.8142317863 16.8566293438 16.5138473066 16.6913510422 17.0305787074 17.3664615528 17.6337424038 17.8694969585 18.1259838043 18.4105943479 18.6955549851 18.9385722752 19.0985630899 19.1534911865 19.1088067359 18.987438514 18.8072196221 18.5650168403 18.2377997803 17.7875403458 17.1663244613 16.3390437874 15.3267282691 14.2336700882 13.1978920393 12.2867688463 11.4796850507 10.8331754917 10.5855084138 10.774191071 11.2055578895 11.9650274763 12.653725487 20.0708445854 24.2637380288 24.3951029261 23.8542038673 22.9685796261 23.8211863708 25.1377474814 24.4111491395 23.6668963594 23.8061031487 26.0272926015 26.6314424981 27.1601912886 24.2913929185 22.1654099478 10.5691738646 7.67255194127 7.63818543986 12.7549206888 10.5378276828 6.98957158274 7.13047371764 7.34975751274 8.80058680739 7.29034497022 13.2097488088 13.7782177291 13.2687562005 11.1592504834 9.42501979563 9.52441519953 11.159077326 11.1024455645 10.7497409723 11.0013933275 11.5791249596 12.422036559 13.2496294966 14.6355863283 15.8354151401 15.9274195501 18.08083786 17.1174316664 19.254616772 18.19141211 19.6991803095 17.9084337711 17.1519046929 16.6975413118 16.6543210843 16.8665810944 17.1793223341 17.5158815639 17.8159826581 18.0863334358 18.3625836186 18.6526602866 18.9338423786 19.1709294416 19.3305759317 19.397573552 19.3811024915 19.3039920018 19.1813746934 19.0058973184 18.7475634252 18.359577428 17.7927856373 17.0319590593 16.1303166767 15.19301004 14.2900849794 13.3711689407 12.3709362613 11.5612986989 11.4553219099 12.1126066875 13.0174369096 13.7836802978 14.291353113 16.796868046 24.4152604471 26.1563968798 26.2792367922 27.003983455 28.0850652991 27.7167687776 26.6448218615 26.346795975 27.20954389 28.277227722 28.0412075842 27.3770010538 26.3378913553 24.9611069855 9.83152842534 7.93718390102 8.81385500525 12.766327871 8.17210263106 7.9947769321 7.75741981536 8.00647613123 11.4997999366 10.0752404272 14.0390160609 13.9946557095 13.2690563592 10.2493307523 9.36289160481 11.142964037 11.4196068071 10.7867889217 10.7017809739 11.1778416224 11.7091320467 12.4941401186 13.1757788257 14.816492707 17.1133730153 15.8051172659 17.9985388092 19.1530996547 19.5066231793 19.8847357076 18.5234768306 18.3696471724 16.7116655541 16.5594891886 16.7994234081 17.055971225 17.3479154833 17.6748529712 17.9993123761 18.3094376491 18.6151789005 18.9176516664 19.2007853458 19.437021492 19.5992772805 19.6794757073 19.6950331832 19.6703540134 19.6152145682 19.5170037232 19.3408986706 19.0343637488 18.5518335116 17.8999813389 17.1503166587 16.3706226175 15.4951565685 14.311160896 12.9290537054 12.1472697833 12.6311378941 13.9903407786 15.2543213378 16.1283403967 16.6221182607 16.2267357719 16.9935060721 27.9661729863 30.841501326 31.9735897167 31.8845075342 30.4511810548 29.4362018655 29.5463113512 30.4921185822 30.6609236392 30.3024119454 29.9391697677 30.2337569288 30.3939169793 9.57920172326 8.63890945806 12.4129347486 12.7727249673 8.02161086384 8.69783257393 8.36399423529 8.99266112904 10.7895940481 13.7506645359 14.776078137 14.177097413 13.4047054451 10.0730905916 9.46888676532 11.7158882956 11.4588694309 10.7070303547 10.7208296483 11.3277764001 12.1362597997 12.8434096237 13.3705919678 14.3982287417 17.2704237255 18.4072911536 17.3914476278 19.310036528 17.8748045427 19.9274542887 20.0019807107 18.2398473689 16.6132238712 16.6540399193 16.977679767 17.2554735497 17.5382225393 17.853999135 18.1871981488 18.5347214127 18.8817416482 19.2062539051 19.4966639519 19.7358192456 19.9038636662 20.0014139829 20.0539999692 20.0873690005 20.1068177878 20.0955109849 20.0156709029 19.8130598829 19.4513375395 18.9572773834 18.3938241826 17.7152059366 16.5907883644 14.8258307011 13.320618798 13.1201598364 14.6230046541 16.7219764322 18.2489425766 19.1605275204 19.4060049878 18.8360925091 17.76207383 19.2355322345 32.5237181641 37.7574012094 36.5252490376 34.1359052032 33.1555056518 33.3449448384 33.8048965353 33.8811012946 34.0306841975 34.4597900495 35.010997215 35.6519000946 9.72377342177 9.40762078594 13.9947331579 13.3007252922 11.1701961487 9.85080091989 9.17169793013 10.4953909941 10.0363967232 14.6879329639 15.3226444399 14.4188986035 13.3354024613 10.5328084039 10.2325677874 12.2098215612 11.407386497 10.7394064224 10.8335625079 11.3709599402 12.3148657588 13.2962235511 15.1101317144 14.5473332479 16.6983082063 18.8005609758 17.1427471602 19.617133664 20.207556459 18.7511656051 18.750268478 17.1293015054 16.924534324 16.9804403193 17.2094473141 17.48124021 17.7596991618 18.0664329012 18.3888048635 18.7525802366 19.1509735073 19.5211605811 19.8258852176 20.0675176584 20.244736386 20.3656331095 20.4603488805 20.5546706934 20.6513491641 20.7319012807 20.7582194906 20.6836391161 20.4907911707 20.2098228422 19.8307274478 19.0257859899 17.2168590602 15.0728250878 14.0619281549 14.9543259574 17.760018912 20.4562298696 22.1701637811 23.2669218166 23.4566569367 22.6169329333 21.1067551094 19.2163501335 28.65608487 38.8923072664 41.7682819056 39.0998850404 38.1206773498 38.0861285957 38.1732272336 38.125141444 38.8764912884 39.6060392464 39.5236008894 39.7130414263 10.1850502768 9.98201959573 13.6318251731 13.6570737497 13.618166923 10.8411229011 10.113635776 13.5100215728 10.2187098577 15.5309587862 15.735564436 14.6743633785 13.28054469 11.0197078523 13.2123174646 13.2957173081 11.5005907435 10.9083456997 11.0773959056 11.5247425727 12.2803240485 13.2577567508 16.5626636947 17.520710079 16.0361794198 18.8953131616 19.698691713 19.0892339345 20.1787736104 20.2630952229 19.2227308742 17.1065006248 17.1152043385 17.3041490491 17.4926358956 17.7311724658 17.9879841106 18.3079554604 18.6471775946 18.9962205758 19.4115922166 19.8382084075 20.1853608604 20.438116628 20.6249044384 20.7741118699 20.9160028768 21.0710213633 21.2397237022 21.4055250214 21.5384118668 21.6173009867 21.6516923895 21.6285856138 21.3309569522 19.9568872578 17.3332582741 15.5351492166 15.6946656694 18.2903432112 22.329252293 25.612469569 27.3912827879 28.7616186062 28.3047957328 26.6057128407 24.4319946356 21.6594457768 24.8160491358 36.1018609618 43.3499972821 44.8061841771 43.1122488293 42.9717862418 42.6858854472 43.0361625053 44.2247791885 44.915276759 44.9090326213 45.0926063803 10.7054088149 10.5860283823 10.2728774152 13.9014316567 14.0433846232 11.4544287305 10.9733772653 14.3868118209 10.7183201693 16.3782777336 16.093459229 14.9398621159 13.3489129952 11.2340376702 14.3973199176 13.7174187825 11.8036983696 11.2396552273 11.4015090405 11.8513633608 12.3718421382 13.1651231332 17.1441343124 18.5579918049 16.3297372681 18.9898451807 20.2340133167 18.2869436268 19.7999463446 19.6494984592 17.5592124313 17.4611808347 17.5561489588 17.6684590772 17.7999480348 18.0382829457 18.2793808865 18.5402046345 18.902793485 19.2943832347 19.7101558484 20.1593309221 20.5542271444 20.8406395183 21.0487972177 21.2317944684 21.4226341612 21.6299980662 21.8564622637 22.0882436917 22.3043016972 22.5576089595 22.8834301296 23.144098508 22.6250369112 20.0363023383 17.4470577421 17.8913345003 20.1744166232 24.1232257515 27.3020745401 27.5841070117 24.8322976708 21.2784455053 16.8142935113 14.7572909035 15.6320835669 16.7140095484 16.2911282199 16.899066706 42.3253472622 46.0037143427 46.4099079915 44.5498722495 43.8199289304 46.4037131426 49.3976269526 50.5020336694 51.5428272334 52.0924436267 11.3988904794 11.4702788384 14.495458933 14.4387317765 14.3674076629 11.9595565494 11.9431650211 15.0918457232 11.6225822401 17.087741889 16.4187903733 15.2169559456 13.4853171362 11.5479632628 14.6053802656 13.7500725163 12.1100875679 11.6173020538 11.739233278 12.1354095984 12.617767155 13.2322171322 16.3910453744 19.3563549104 19.4423173893 18.1761187576 20.4362309783 21.0697404192 18.1125978762 17.5189199335 17.4437410405 17.6624236823 17.858988639 18.0065343891 18.1709511242 18.354501483 18.5875065848 18.8631681915 19.1695786089 19.5875293078 20.0490026018 20.5158670122 20.9370653946 21.2616128036 21.5128697706 21.7398558758 21.9779567646 22.2389410773 22.5002601785 22.7299817346 22.9779046071 23.4080933012 24.0608448956 24.5091327783 23.0658740115 19.5252072496 18.5023142742 18.5252647887 19.5037385547 16.3707775811 0.899958036684 0.00260380189077 7.39943659581e-06 1.28082846954e-10 1.001867829e-10 2.43230470525e-10 1.63956567698e-09 7.6796340929e-09 2.83686066734e-08 1.802780621e-07 1.41153698271e-07 1.22458507634e-05 0.00696993523993 0.700627217623 32.1077634569 47.8952996076 50.9704885646 56.1135375116 59.4231289455 59.4210701652 12.0318329383 12.2163367014 16.0484579502 14.9557715232 14.2681211512 12.4858236077 12.9015740087 15.6366835381 15.6222099015 17.9441605026 16.7822265253 15.5690834791 13.6789414199 12.0116614682 14.8222363529 13.7348999665 12.422485414 12.0066854354 12.0673692728 12.3914129897 12.8572879666 13.5142068022 15.7311778836 19.6041223122 20.8452480994 17.6283976209 19.9854566257 21.0251838774 20.4093682809 18.1039338554 17.5634478119 17.8738263305 18.192555438 18.4194692554 18.4945563237 18.6910784092 18.8982929158 19.1855827695 19.5004640146 19.9023249125 20.4013797507 20.9105478064 21.3428713088 21.681476286 21.9901460534 22.3303705549 22.6664271872 22.9504116568 23.1182346059 23.266994356 23.5328327722 24.0357583345 24.9871580103 25.2713093746 21.5211050282 16.1216984942 1.42391020173 0.00576614915986 0.000166747699567 2.42754084374e-06 1.97232563672e-09 3.29101433589e-12 2.31985110892e-13 0 0 0 0 0 0 0 0 3.22651727647e-17 1.08823748078e-14 1.62777131494e-12 9.44380788997e-10 1.31906819524e-06 0.0714309140548 51.4216133256 52.9360966116 63.4955723225 12.5373673996 12.7457890391 18.27329574 15.3178992117 13.8666308487 12.958753869 13.568335979 15.503775848 17.1919477282 18.9357805158 17.2908264259 16.0401497068 14.1063623209 12.788694767 15.2486582702 13.8845264427 12.8270625585 12.4537890136 12.4350096641 12.6814385019 13.0828789374 13.6990137773 15.4449266968 19.4639284611 21.824614365 20.871535273 19.3536655438 20.3528824247 19.95555471 17.7655253444 18.0235851504 18.3822660583 18.7683610177 18.8871694233 18.9739430262 19.0456596005 19.2760996246 19.5209367112 19.8551857904 20.2612955492 20.7561159715 21.3089146299 21.8295181383 22.1901564718 22.5444533102 23.00176838 23.4572163803 23.7377819668 23.8026815577 23.8645760899 24.046854947 24.3530625364 24.759649232 24.0829165892 15.1528982939 0.00206149556105 6.76080784779e-07 2.73379146929e-08 3.7274423722e-10 1.02216599959e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 4.15736714219e-16 4.13124838541e-15 9.05659157358e-14 4.39141601922e-12 2.43865408225e-08 20.2984690901 0.000391285756111 12.9229568131 13.1181684265 20.3932762026 15.5686321257 13.7723501503 13.4074921841 14.3551467842 14.5639255869 18.1401212264 19.6348436098 17.7907261573 16.5275659589 14.7480133168 14.8154514827 15.8449491904 14.2854016134 13.4377262061 13.1134139437 12.9111950576 13.0606575118 13.3625064765 13.9092911219 15.376328736 19.3276415361 22.2149617166 22.5428683778 18.6754647173 18.8931912769 18.1503748571 17.8686045318 18.2730823381 18.8966807766 19.2586499755 19.3754121025 19.4626907733 19.6718389549 19.703071804 19.9239978655 20.2333475484 20.6159205963 21.1869205364 21.7932859952 22.3373403878 22.6469938659 23.0374442269 24.5174996419 26.6192057655 27.2369473446 25.7867937053 25.4719283664 25.469406777 25.2881551384 24.6080007559 18.4289138604 0.0164413911973 7.37586659623e-14 7.45340456939e-11 1.2161902228e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.42300189504e-15 4.34955079484e-14 8.02093228281e-12 86.6864171926 13.2798217296 13.4434485629 20.1257427495 14.7208661386 13.8188588514 13.7874325796 15.2513457707 14.3555757716 18.9240987984 20.3004344049 18.2788860669 16.9889706296 15.2276186564 17.2008625908 16.7075137631 14.8951776515 14.1500012357 14.2052881275 13.6144084814 13.6121349502 13.7443590407 14.1448311042 15.4619033976 19.1744680564 22.0644560176 23.6613659891 21.9142705347 20.6007470418 19.5727425598 18.1756477678 18.590102615 19.6406423145 19.6200271123 19.8372203841 20.331497914 20.2012283406 20.2346212849 20.4408851433 20.7473254376 21.1102749599 21.5606423465 22.2126133986 22.9257795339 23.8912476652 25.2584613431 27.2766291317 28.8251114431 28.6836745406 28.6572010491 29.5588990277 30.7822839473 31.9482446153 26.892575943 0.0452841826407 5.95180187998e-06 8.08368774613e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.97634732871e-14 0.00143849156155 13.7287299228 13.8757081206 19.6412819897 14.1590484307 14.0205147925 14.0860832936 16.0018568132 14.7022556389 19.568727897 20.9524249017 18.7730437865 17.4694410217 15.6379124936 17.8570587561 17.4987856101 15.5810273003 14.8454426815 15.0420459991 14.4705441591 14.3923142362 14.344977493 14.4018962577 15.7153018519 19.1433769758 21.7679143541 24.0094537283 23.1512658622 20.9310307573 18.4337579317 18.7101812366 19.193970075 20.1958094332 20.6863473929 20.9890311934 21.1505878848 20.8133690639 20.8327898036 21.0587191594 21.3567997732 21.734367053 22.1630924243 22.8847809426 24.0497799938 25.9572645036 27.216859894 27.4534200427 28.2451526689 28.9767985571 31.9271356194 35.481775333 40.5333491838 38.9970987951 0.0600229681082 1.03506531137e-05 2.12297225679e-08 5.14012421003e-10 1.72536522138e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.32131815615e-15 4.39440728288e-15 14.4370378202 14.5870099864 19.1300292357 14.2968654291 14.5295359052 14.4939210935 15.8106796278 15.391322505 19.9836613687 21.5635542611 19.3077528079 18.0090894915 16.190121477 18.4689308485 18.2266640682 16.3894177782 15.6211654782 15.8673256959 15.2942850153 15.324188685 15.2562015055 14.8326129201 16.1753507846 19.2846986886 21.6246313424 24.1068489227 23.640363429 21.4270237465 18.7690411589 18.8823933519 19.9319104511 20.1347335316 20.4346960236 21.0198571772 22.0985933578 21.8206742408 21.7427468313 21.7525354058 21.9928577567 22.4593373533 23.0056223633 23.82994858 26.1181670767 28.281783216 28.2966398861 28.3567642693 29.7144191894 34.0260478995 39.94100942 45.0387160616 41.8957562403 0.00214542008093 8.87824999358e-08 2.91088679996e-11 1.82642536023e-13 3.70201619119e-13 5.68491545562e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.45488372379e-16 1.11469056503e-15 15.5388347266 15.6334969798 19.2297960683 15.1636036407 15.6925314394 15.2862049358 15.9278917915 16.7801733807 19.8428260316 21.9774863687 19.9152651472 18.630832694 16.8634127134 19.1680190374 18.9866974981 17.3819097805 16.6110665185 16.8661575951 16.1214151952 16.3656328998 16.5244384245 15.5305015245 16.6746639556 19.592351335 21.6617319609 23.9157676001 23.8435441065 21.9049933276 21.1443477584 19.7782321462 20.3830947639 21.2099966794 22.2617562473 21.53915896 22.0620352738 22.8985904534 22.7105885198 22.8664734429 22.9412215907 23.244282207 23.9223909332 26.0477813638 29.3810163868 30.2075602768 29.6682929063 30.9714506808 36.4951169958 44.1775792753 50.1271496122 36.06665304 3.25042723206e-05 3.0347170249e-10 2.07645342843e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17.1195818379 16.9270360152 19.8589149422 17.1085956827 17.7286818521 16.5044288985 16.7651260812 18.839932551 19.8930520814 22.5072502716 20.6572714298 19.3479740673 17.6373775569 19.903172385 19.7411278076 18.4898488633 18.1519373703 18.2071165975 17.0364921823 17.5258515225 18.131404559 16.5981126528 17.0143768207 19.9692031173 21.8808609084 23.7134975886 24.0089393911 21.9301544594 22.3315997293 21.4435708798 21.5541369664 20.6054470333 21.5571185967 22.9772792139 22.9877546697 23.4329016415 23.6856486103 23.8194894491 24.1229246752 24.4139413816 25.8692495369 29.8533213911 32.3861447117 32.4506198998 33.0356170869 37.5242267053 45.9860471844 51.4607795167 6.58964471291 2.90073757436e-07 5.07110152816e-10 2.32199273154e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18.8188136628 18.1368544649 20.5786264007 19.7753680167 19.4393426346 17.9560573871 17.7075446557 19.9488075559 18.7630673758 22.8912661268 21.5183344783 20.1533700235 18.5046576964 20.6552824873 20.4405435947 19.4020669276 20.420010346 19.8448007388 18.0850005041 18.8517577892 19.5030100564 18.0085352541 16.9958504055 19.8971886645 22.0202288113 23.5431324266 24.0405939576 21.9554360514 22.6274183847 22.7477943908 22.8186366617 21.3233478875 21.8935207557 22.633164267 23.916960518 24.6540908194 24.9167589618 24.9730797009 25.2010402715 26.183506294 29.8635001061 33.9467314443 35.6042707464 36.2704591504 38.9498748498 45.2522339011 47.0012953289 0.305515501705 7.81048719335e-07 1.13073280762e-09 3.96004442965e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19.6090352965 18.9898615613 21.0191653508 20.7761018911 20.4601249167 19.356150328 18.8674399095 21.3255024325 19.7497535495 23.409812889 22.3873860442 21.0103341572 19.4589328765 21.4443349299 21.1647664482 20.1715614853 21.3486806708 20.9003156885 19.1260743574 20.1905647114 20.1775789086 18.7244574655 18.0966864253 18.2756747671 21.5009432731 23.0152849565 23.7996345682 21.9075368213 22.649020046 23.2291465075 23.8136507173 23.3423458052 21.9392609096 22.5710906866 24.0781763844 25.4895571911 26.2647492513 26.628500347 26.8600550478 29.8475771353 34.626532798 37.9119273684 39.1592593621 40.599690506 44.1930746717 42.1802752852 1.0844843286 4.12616679904e-06 3.71685226168e-09 1.05857876662e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19.6326951664 19.5552840303 21.3056347832 20.9438633069 21.1248610823 20.4598987628 19.8932976053 22.6775354807 21.4736351957 24.1005307623 23.3171521079 21.904138403 20.4935969333 22.2847865303 21.9670458044 21.0936315507 22.1085922536 21.8265622748 20.2499570316 21.1861799718 19.6331460498 19.4202226938 19.1172615596 19.4317634939 20.3165625535 21.2004962076 22.9308450126 21.7567781564 22.0683350854 23.208348615 24.2245971395 24.7032012089 23.5367344869 23.3107550648 24.0892465506 25.4353601201 27.0243069869 28.3500588918 29.7953452722 34.4471527126 38.9550324761 41.4062045101 42.0046152634 42.6022319427 38.5355540203 23.8565594717 2.79854862878e-05 1.2910693408e-08 2.89211609745e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19.8710424578 19.9738840569 21.5863267781 19.8509728299 21.4023717368 21.0663717692 20.5941557369 23.2477086155 22.292451022 24.8360814472 24.3041604318 22.8114357381 21.6198619323 23.1644258276 22.8192734001 22.158242204 22.9348804987 22.8651963149 21.4944333808 22.567662132 20.9705942825 21.1460819315 20.3583817582 20.6900428703 22.2653285709 22.8561684508 22.556272109 21.5525065195 21.496289773 23.1516786598 24.224632143 24.9102846285 25.0651149612 24.3877795554 25.6655930001 26.1697299461 27.6575676475 30.0085709069 33.5559826803 38.9117074216 42.6757788 43.9766657375 42.2176426584 37.0964642235 29.9289006932 0.00105902902992 1.08337012597e-07 2.46634510407e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20.5992606872 20.67269744 21.869577613 20.2699016148 21.6418525563 21.3936054452 21.1016426533 23.4070239847 22.8863226942 25.3823705182 25.2939291972 23.6788162972 22.8307958375 24.0427550757 23.6469708537 23.1990280477 23.726044713 23.9975913225 22.7885820109 23.9425780825 22.7583570161 23.3036545928 22.9702479212 21.5391567998 22.8743483002 23.9120337097 23.9730383388 21.4300869867 20.8355829704 23.0610141255 24.376918046 24.3845577822 24.6739987445 24.6861558995 25.8271533045 26.6889706564 28.4433379886 31.7632605242 37.4290652649 43.2117468798 45.9179597286 44.8904988107 37.5054954617 33.9323120328 2.54566623962 1.23179969151e-06 1.71864622741e-09 6.96914866229e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21.5214935385 22.7021272647 22.2975821688 21.293861473 22.1832482778 21.7841042878 21.5973866601 23.5476997931 23.442717043 25.5698000658 26.2752633463 24.4732996024 23.9129636128 24.7502884 24.4490176932 23.9777159399 23.9079427611 25.0399997119 24.1777577182 25.139197468 24.7955736365 24.5862946638 24.3426085767 23.8857385727 23.005031751 23.8441003558 24.9451943472 20.7604204726 20.346485701 22.2900088772 24.4158570484 25.0557928679 25.6409813539 24.7105036901 25.6371194336 26.9327963236 28.8762499239 33.395325411 41.1630259142 47.1994369406 48.5671424212 41.9807303303 37.9132369378 31.28256091 9.29127019378e-05 1.16491400309e-08 2.97314072866e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.2243225827 23.4369424774 23.0162518343 22.2214184734 22.905743314 22.3738350513 22.1688311304 23.7821899874 23.995522489 25.4861532593 27.1639074713 25.2654520316 24.5600243157 25.3421110661 25.352793425 24.6943074192 24.0611147802 25.7794648832 25.646283785 26.1824541967 26.1197101104 26.1935156806 24.6917807759 24.6426631638 24.1079305752 25.5687628669 26.3132328125 23.0090500342 19.9580362789 21.2479311024 23.7781003715 25.3372712213 25.7872399209 25.3514574881 25.2737483102 26.8778280665 28.8340937965 34.6726168881 44.6193714622 51.1350696296 48.476046751 38.1087649306 36.2085533083 2.91581189219 3.99401623706e-07 3.43479690421e-10 1.15428682495e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.7605771969 23.840811897 23.6581800478 22.8788849385 23.6253173697 23.1176794896 22.8260496541 24.1929886 24.6089028854 25.0275604742 27.7803131875 26.136903495 25.0343174454 25.2892790588 26.2937943871 25.5722140685 24.635126354 26.3993939839 26.4313699978 27.0356461433 27.0919273368 27.4213875845 27.4449841447 27.341608613 26.8686535725 26.3698688115 27.6136791321 25.0128865715 20.0851603322 20.4276613469 21.8413802936 24.1597942611 25.7072502373 26.8875408408 25.9882446225 26.204510917 28.0763585855 34.8852384708 47.7619655233 53.947046076 46.8682729499 41.3643203398 34.8188218203 8.91519298487e-05 4.92134565085e-09 1.34559150176e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23.2839600276 24.2183202249 24.1990613396 23.3598324078 24.2645215873 23.9687540762 23.4963654961 24.7286667768 25.4354752372 24.4476395756 28.1488875935 27.1102635922 25.7247757138 24.8275587753 27.1055640864 26.5229639413 25.5678289499 27.198759202 27.0132701022 27.4210723807 28.1404219488 27.2102208539 28.7803362135 29.1792903116 29.0357074571 28.9978179705 29.3186475682 28.1301326376 22.5112375163 20.1536572574 20.9377631874 22.1145059312 24.1517813538 25.3867642766 27.3032304538 26.6509575402 27.2757349643 32.128429606 51.9378403829 55.574594114 42.2679230447 40.0421088288 32.1528867562 4.74841813192e-07 1.66972386738e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23.7888288567 24.5722864151 24.2715658789 23.7286243101 24.799693057 24.7619537885 24.0741597724 24.7811270764 26.504962911 25.4829821653 28.3968674347 28.1460610925 26.6866704791 25.5932452302 27.8828917108 27.465161014 26.8187250886 28.2436237023 27.9275039123 27.2836660807 29.2641348336 28.6581663898 29.8237978058 30.2042979103 30.5012219982 30.9835589669 31.4988836781 31.4172875105 28.5601151263 21.4798739327 20.915311384 21.6907462326 23.9334024817 24.4272296019 25.8846589606 27.359304064 27.9450189524 28.3052088914 49.5702884985 54.0995389513 45.0701644863 35.9992190918 0.00120424312683 8.35340372937e-09 1.37462684664e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.2396694519 24.873792171 24.2408199899 24.2629745854 25.3367750987 25.2764490097 24.6237177463 24.7027909578 27.0399399322 26.5774278704 28.2850820347 29.1887498504 27.7013318267 26.9434117169 28.6731159582 28.3610665705 28.2164736944 29.2117531026 29.1956941111 28.5117747345 30.265731295 30.237423487 30.9725596245 30.9273635569 32.0682866942 32.4568013576 33.5019961971 34.4327719953 34.7868494375 29.7479838415 22.6504060085 23.192193652 22.7362731257 24.9934510074 26.1592897055 27.0382265545 27.8953389969 28.2178681424 27.9124496486 47.3124837202 47.8549582403 38.3891688537 1.78538972552e-06 3.41865349564e-10 4.18734453927e-13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.7085077613 24.8494935644 25.039251759 25.5685864596 25.9842919566 25.8166032368 25.2908834199 25.1860273599 27.0399234234 27.3185929585 28.054595462 30.078690937 28.6412341574 28.0649158904 29.2275846782 29.2616739709 28.876154511 29.7657765283 30.4228599189 30.129427726 31.2347855311 31.3768899018 31.9006606598 32.7038344203 33.3888741127 32.9886761735 34.7112000989 35.9855928022 37.3775732392 38.4401472855 32.7155861167 25.0456671685 24.3739659491 24.1335402079 24.6577578202 25.3509947422 25.8270594972 25.9549807306 24.5953668253 28.0232835441 38.019327338 29.7918937473 3.19170587564e-08 2.55489320466e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25.199302177 25.2773775301 26.7986463916 26.7033431681 26.5419836908 26.3357004072 26.0512205264 25.8930016975 27.2912465856 28.1401804042 27.484926644 30.45007875 29.6147743005 28.5740334867 29.0115088508 30.219578717 29.4578246975 29.1673811552 31.2712504557 30.9977341921 31.8838982004 32.6638429212 31.8501237481 34.0933418473 34.6315486203 35.4310802797 36.2346859641 37.220989994 38.7758653588 40.4638881069 41.5027812947 36.7321702765 30.7475755818 26.4205684711 25.1303503831 24.9409318579 25.9699014798 26.7012987989 27.1734214251 31.3693293909 31.9944062842 5.59103457612e-05 1.24295902023e-09 3.22996396373e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.79822856864e-17 25.5869649467 25.7832081697 26.0073922541 26.8616955627 26.8168606893 26.75072998 26.7764865981 26.4813524665 27.6344167201 28.8585049138 28.0826976104 30.2319498791 30.7886978535 29.3203083301 28.5624517409 30.95485717 30.4157752261 29.8838335574 31.8587920071 31.8093340985 31.5239312972 33.9891831231 33.5390137504 34.8662990796 35.3498314809 36.9931761574 37.5668331769 38.509726655 39.9863626205 41.5772861615 42.9081412314 44.9442089262 42.9009086437 39.391831104 37.2300706098 36.6740278157 36.7661998423 37.0402615966 39.0476203867 47.4588283201 34.9980647579 3.27498899054e-07 1.04065147829e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.45488372379e-16 25.9071832879 26.1444509225 26.0052918173 26.931207037 27.2601524287 27.193303918 27.2749969995 26.8774687283 27.438656793 29.1777608139 28.8306341711 29.6382629958 31.8820316827 30.4519102949 29.7374803353 31.3767064668 31.5337530948 31.0381928477 32.2705934476 33.0351478952 32.7792569141 34.6638589763 34.859939719 35.6015679511 36.8684135514 37.7669033707 38.8527512219 40.0768750311 41.1604131026 42.9307391679 43.8268583196 46.4206136424 47.8888530372 49.6999772891 48.6106152692 48.3734414527 48.0983680287 49.8815141087 53.5568273063 54.9721254645 55.8127627848 8.95973240241e-09 1.40623548964e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.45488372379e-16 2.45488372379e-16 26.2757773431 26.5438049671 27.0113983615 27.920572853 28.0236696958 27.6984292972 27.6145731556 27.2149189307 27.3693425369 29.0447738277 29.6226330915 28.715531225 31.7285511002 31.7474765757 30.5391344985 30.9287643256 32.5902229941 31.8649356919 31.7457831252 33.8572879538 33.7833065993 35.1088685533 36.179616353 35.5621194656 37.7937415125 37.875821079 40.3026067182 40.8959026479 41.8328522953 43.8911200138 45.357399096 46.8387441149 48.2674958621 50.0860154192 51.0604582903 51.1770855518 51.8243939683 53.488908571 54.7816903794 51.1206600763 49.9387168191 2.95804542111e-10 1.95724845439e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.19813633947e-16 2.45488372379e-16 2.45488372379e-16 26.6440011053 26.8741167199 27.98206532 29.0515674713 28.4505338331 28.0748412525 27.9117174097 27.5945431835 27.5681155217 28.9500169778 30.1327341437 29.6812724493 30.7717910215 33.1107552936 31.5713868254 30.931771328 33.1804392844 32.9932947754 32.5478983944 34.3763781543 34.822175663 34.8740747004 37.1628934655 37.0604032691 38.4551435598 39.5472461223 40.6784417809 41.4292043014 42.822762592 44.014662991 45.4999425025 46.7830866277 48.0821320648 49.7332623414 51.0702098781 51.9152213455 52.2493894274 52.1686240655 50.4484937411 41.6000520821 0.000101066387336 5.04904413889e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.49160748604e-16 2.45488372379e-16 3.93584187921e-15 4.15304351884e-15 26.9893794491 27.1301805786 27.8185610512 28.5422728266 28.5383082909 28.282742125 28.1356235802 27.9984868354 27.7463709512 28.4744851296 30.01361397 30.5257648022 29.701350282 32.6620951879 32.977197124 31.7171846339 32.4546672553 34.058725601 33.4441405768 33.8445793871 35.8636784451 35.6919735212 37.4747328039 38.4737341538 37.8593158772 40.1405347494 41.1194769872 42.5254830781 43.1923213058 44.1016265696 46.1277707295 47.1809900386 48.4921613569 49.9250142377 50.6767515187 52.1273612024 52.5969859926 52.7763971107 52.3234851084 39.5297152209 2.62808204318e-08 1.55152802302e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.05508416906e-15 1.03122829309e-14 1.53696656303e-14 27.3587369106 27.4305253463 27.946855145 27.0107781092 28.2371683309 28.3755680689 28.2700472785 28.2576606551 27.7939053106 28.1047777634 29.6405094394 30.9914469018 30.8341514229 31.4950749383 33.9837687254 33.039031098 32.4247568823 34.6749151399 34.8912627234 34.2304927972 36.4700000013 36.9944486691 36.9331189655 38.7713424485 39.2145719895 40.3327233735 41.9457657997 42.7993558468 43.9950186686 45.1942103194 46.4693939946 47.5444522117 49.0616219054 50.5278070424 51.7615307117 52.6059581531 54.1199523824 55.5361626339 56.5521104174 36.5525912972 3.50220347157e-10 4.60173802949e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.39092159942e-15 4.98292385962e-15 7.00551142231e-14 4.75045335875e-10 27.5801242727 27.6612533293 28.6228208129 27.7130747126 28.1304990363 28.3819859881 28.338468122 28.3104936737 27.9236518336 27.9531637793 28.8942796663 30.5983069562 31.7880664469 31.5564366501 33.0802132608 34.7289350818 33.4561016043 33.1271305792 35.8002564401 35.0885714803 35.1008418466 37.5478613705 37.5657319485 38.9471831615 39.9749981009 40.3710137169 42.0429871197 43.1158757124 44.5583073517 45.2274572898 46.6338503807 48.6142133426 50.3433575012 51.6600691477 53.1088024329 54.9148835306 56.1990825344 56.6298515937 59.7027502705 30.2617145181 5.19823840628e-12 1.22681642238e-13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.77666396685e-16 2.91746633789e-15 2.7990882513e-13 8.11373291502e-11 0.391790854343 27.5055555752 27.5868056383 28.4858567819 28.6648074219 27.6437649175 28.3092475129 28.4067553702 28.4262699862 28.3281116667 27.9942747837 28.334340189 29.8982315614 31.5197656052 32.3286628323 31.9680239773 34.6792731371 35.2593229464 33.9050312259 35.7062465629 36.3865945075 35.7736641795 37.6537507753 38.5404257614 39.2519555545 40.403898239 41.5529946425 42.2802583249 44.1434933107 44.6470860882 45.2481721151 47.8132447768 49.5363361294 51.2018921297 52.4638434497 54.8075113805 56.5499374964 58.4835728953 59.5928611186 64.994210644 27.06553897 9.58773165124e-12 8.42931662266e-15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.82060921307e-15 3.49286070189e-13 8.03233432281e-11 3.01640324353e-06 59.5034910256 27.4817446425 27.5443175344 27.6100827017 29.016553001 27.8030059906 28.3331398362 28.588797624 28.64885474 28.7489905215 28.2755094717 28.3915539411 28.8227791981 30.8055395931 32.5051082775 32.573068584 32.7429266604 35.3320924543 35.2519100605 34.8694570529 36.7452340716 37.1174171665 37.391569993 38.9666250105 39.8857662379 40.8301739563 41.8181194373 43.0734763064 44.1329491145 45.0466940276 46.609412593 48.2004383986 49.8274072545 51.7038318839 53.9589358813 56.8490571434 60.1655123766 62.2112821979 66.7391521142 74.1276179334 27.7056648516 4.92008423714e-12 2.05043275065e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.77666396685e-16 2.08209924087e-13 4.68918719869e-11 6.94142474859e-07 72.8038499454 78.0819759078 27.8882351316 27.9601559557 27.9758053253 29.7251460666 30.0321644923 29.1970624119 29.0662163944 29.0143621251 29.0604294213 28.8545686448 28.6117024138 28.9950460837 29.966657319 31.8453604016 33.3147214689 32.9795322233 34.274546072 35.9167608478 35.7840570389 35.6736600466 37.6404448384 38.3568866094 38.7299701225 40.2393719944 41.2378361033 42.0156195235 43.22619177 44.3160396108 46.3184012784 47.7437509198 49.9137683519 52.4326843217 54.123771032 56.4322916406 59.4651721058 62.0941528444 66.8515193491 75.8695804878 91.2282560088 82.3509466675 2.21125223528e-12 2.05043275065e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.3741185147e-14 1.43278450365e-11 6.85135007695e-08 1.6524577224 76.6650697467 78.5998240749 28.4854617643 28.5419160338 28.9617870363 29.9507190676 30.8505631757 30.4439529249 30.1591897268 29.7132622891 29.5171396202 29.5381524574 29.0056968029 29.2531848314 29.3743854157 30.8499742458 32.5775097698 33.8530613069 33.8683566004 35.6263968008 36.5527163347 36.5500576742 36.4751700183 38.570267859 39.4700836597 40.2194572662 41.3282983361 42.7763675355 43.7467056037 45.9411146414 47.3528208382 49.8539349367 51.358596142 53.2621173607 55.1102843058 57.5271189544 59.6212715064 62.9544933105 70.5728517288 80.1053373647 99.1664069619 80.6347604229 1.06644402997e-13 5.50477610516e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.19874758359e-15 2.03889491656e-12 5.33512179945e-09 0.00142211053802 71.6758679216 70.7280778665 70.6446038189 28.8078298245 28.7415206532 29.314938128 29.4255925431 30.5796444995 31.7382879832 32.0361686084 30.8471631062 30.1463298662 29.9282618165 29.7133567748 29.2248268556 29.7169302555 29.7150680379 31.1175663143 33.2039902241 34.4395189705 34.6341463069 36.3033536718 37.2220563193 37.4363754364 37.4946762967 39.5616576266 40.498812384 41.499887552 43.1484226685 44.9079825115 46.4116606538 48.3093573365 49.6544679674 50.9269144125 53.1776208351 56.10999048 58.0150831043 59.3776775243 64.0834313136 67.8843285625 74.082371041 79.840223157 1.48762549737e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.24544027677e-14 2.24106507115e-10 1.032405298e-05 56.23890905 61.2966133448 60.8522335548 60.1946816917 28.9088059762 28.5246170623 28.6450047442 28.8735998415 29.4468220017 31.2277960563 32.7806928477 31.6279898083 30.7345779565 30.2664598455 30.142932466 29.6332615543 29.9552913366 30.0837973459 30.5916120244 31.6066420768 34.0979618781 35.2539988103 35.479875871 37.0029709863 37.9182387787 38.3977360937 38.603821217 40.5247624298 42.0399435827 43.356900605 44.7866891957 46.2224147518 48.0854860736 49.4873979329 52.7063867949 54.7730793488 56.4255136142 57.5314041294 59.8313384349 61.7745321738 62.7905387627 63.1769876143 51.2151975948 0.00108944466374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.12247758785e-12 8.76309010611e-08 1.04880865688 52.7775140531 52.7309493588 50.2913836624 49.4487123233 29.1359618559 28.2143371933 28.1332729534 28.337187136 28.7515436418 29.9028092135 31.6000479577 32.0226646291 31.1190425267 30.5703902998 30.3082114721 30.2629919345 29.6790128682 30.2983865967 30.3387479279 31.7475422146 32.8994044831 34.9421110204 36.1022972852 36.4902993185 37.6585738653 38.7771904379 39.6369230032 40.30391712 42.2591917163 43.9435712631 44.7529604788 47.0099873506 48.6583755086 51.8899148683 53.1738753689 54.4492111151 55.7848629764 57.5418390697 59.8883103952 62.3461597099 64.1084805051 63.4373346738 53.6247034684 48.8241125261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.34972281397e-15 3.4245817643e-10 0.000340565642308 47.7758189025 48.2802032074 44.2847463782 39.8170877254 39.8334837262 29.452814109 28.0173461901 27.8052711846 27.8453813961 28.1589247674 28.8654056367 30.363204944 32.0468675964 31.5291879586 30.859135838 30.4804639469 30.3514391806 30.2827702806 29.9084821464 30.8664819421 30.8426337498 32.4474223091 33.4609496642 35.4766700771 36.7529561722 37.7689571692 37.9414507258 39.9784759392 41.1348889211 42.5083182588 44.1905604413 45.9594229289 47.7991172606 50.8372508716 51.9228875161 52.5605067542 55.2199676498 57.3439114722 59.5323121737 61.7472191832 62.9269052638 62.4781456697 62.3806944115 48.2060452401 24.6411755222 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.8424082565e-14 7.62375700344e-08 43.7387084577 49.2367434383 40.6177472035 36.326412969 32.3167703868 31.2323893097 29.0611178442 27.9295161335 27.5772126617 27.5759316011 27.702770886 28.1731381756 28.7548132267 30.9393396312 31.9216532275 31.243171585 30.7056497709 30.4400320364 30.4284573282 30.3480807664 30.9242996801 31.2165340026 31.2315473581 33.1534070054 34.2560223986 35.350991587 37.7754138364 38.7118947795 39.6462241288 41.3789385596 42.958119422 44.495097012 46.6262596817 49.1236414534 50.4015235759 50.9711833633 54.2072265383 56.3242142788 58.4154861843 60.4422487161 61.8482976794 62.1233503465 59.0689242498 53.8716028469 12.8004616186 2.72296366598 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.35430867209e-11 0.0197787509338 52.6192441352 46.5789847431 36.8432202112 29.7647883335 26.8041372164 26.8753960797 28.3512576268 27.9123949319 27.4804516444 27.4522994865 27.4995002873 27.6783056081 28.4493060045 29.2664732365 31.2554600667 31.6007759674 31.0101060746 30.6034177118 30.4491544228 30.5635042233 30.3808165294 31.2014627761 31.5069466816 32.6587345019 33.8317627727 35.238102913 36.7002193547 38.8361358011 40.0214631083 41.5135015287 42.9120639238 45.3229872972 47.0983811067 48.947954405 49.8267940432 52.9817550771 55.1629216882 57.726024826 60.051398045 62.0534738988 63.3587794644 61.427927315 59.7872118775 53.346245648 33.9270054256 54.0689354662 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.37047137718e-16 2.50051534522e-08 50.9175757177 53.5263043095 43.7832668814 34.8787193348 27.6766298633 23.6540706359 23.8738433954 27.98426875 27.7434973474 27.4580769543 27.3048801821 27.3097440725 27.3451928005 27.648144288 28.7180264875 29.4956932136 31.3577639398 31.5042670878 30.9425251712 30.6063995943 30.5197348982 30.5781975325 30.5438131738 31.7214471199 32.0905210646 33.4234312635 34.2459677333 36.6107576606 38.6676401198 40.1301150096 41.3918164356 43.0952703816 45.2267748522 47.9371484068 49.0643550431 51.959986074 54.0781481011 56.9360229709 58.9411654381 60.96049651 62.6087333927 63.0332033563 62.1225456256 61.8498501344 63.6654063715 41.8883982582 76.6225582429 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.98684510008e-14 26.3149649219 57.1118863796 49.6153274702 41.1274010426 33.5285902595 27.3852099122 23.8751769311 24.8446402279 28.0860627649 27.4816621677 27.3474965075 27.0444972301 26.9259062371 26.8653337737 26.895518851 27.4829114086 28.6491136398 29.6491362965 31.6416361413 31.5515046849 31.0389099346 30.761573064 30.725042347 30.9045448619 30.9941130611 32.2079919074 32.7622930367 34.5572449125 36.0420773497 38.4212423633 40.0591929442 41.4394127988 43.3646763362 45.9809154825 48.0514957388 50.940180043 52.9947804356 55.6849887502 57.7954042439 60.3815473395 62.4946494288 64.1734716265 64.8152657775 65.8508463032 66.8829761844 69.7112353549 43.7327430235 95.1842133697 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.43690800924e-10 50.6336371246 54.2545016805 45.9858848541 39.0266303596 32.8706286006 28.0615888493 25.1723457917 23.3143288254 28.2690145364 27.2099955121 26.8955253941 26.5052559021 26.2189565866 26.1049679029 26.1083776824 26.3136504979 27.5521954976 28.3327168394 29.8555130325 31.5516873919 31.7248366 31.3443388067 31.0747237376 31.1211478544 31.4473229025 31.7050195045 33.1433308567 34.1221683845 36.1929094219 38.0737003694 39.9727625792 42.0111128177 43.8981250708 46.2879774507 49.3970379386 51.7056943562 54.4360740576 56.6383782872 59.6874861589 61.6268980108 63.4554316824 65.485388653 67.7532760728 70.05618332 69.8620175404 71.5592595436 53.3293213249 99.9991398079 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.40350652333e-15 40.7639146043 55.5052186226 50.8623625149 43.6483526251 38.0316663468 33.3270792905 29.5723948675 27.3460977956 26.440583749 27.3167686305 26.1586585154 25.5747491938 25.3326645301 25.1083841424 25.0352914951 25.120154967 25.3310578655 26.0467837486 27.4443956077 28.2360312095 29.95236825 31.3166402554 31.7950359639 31.6711784364 31.5389666627 31.7746465324 32.2694594533 32.8092667363 34.5029755252 35.9860289479 38.3100413307 40.4743182912 42.4910836095 44.601613108 47.3404906256 49.6785194423 52.9485308444 55.1828553777 58.1367213729 60.3124751984 63.0377614585 65.1238530006 68.358826883 71.209657336 71.7309657559 74.343488821 78.8927881754 64.5498157664 99.9999920478 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32.5738814687 55.9240680349 54.1237431795 48.6451695306 42.8808846944 38.3857533246 36.3170566459 34.4261358409 31.909998986 31.5594832495 25.3954667569 23.6558109492 23.6495990399 23.730953804 23.7543523785 23.8438079132 24.0443451969 24.3629815468 24.7961123696 26.4006420954 27.591664723 28.3667777048 28.3683060254 31.144857593 31.8058947058 32.2245204039 32.3046385845 32.6204831854 33.3647237072 34.2907779526 36.2614817903 38.1400378647 40.7026512527 43.0149026162 45.0282968863 47.7098309903 50.9073503135 53.44761669 56.4433809957 58.828500669 62.1649883306 64.4131441388 67.4553779194 72.2392386092 74.1506173888 77.0939258514 80.5022729262 83.8182935368 61.788520557 99.9999989094 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.5929930221e-15 52.5280272505 54.2242579894 51.954334453 47.655553645 43.6341236177 40.9602422071 40.5569436269 42.7342351722 38.5111400682 41.491356207 24.0036183006 22.4938053472 22.3788243064 22.4518616712 22.6341471644 22.8448265662 23.1369763077 23.5104416378 23.9652940878 24.6070456596 26.3958755746 28.0938225969 28.4552146282 28.9933564087 30.4062777883 32.1052827582 32.9902491276 33.1222026368 33.9656152562 34.8912663064 36.1577504789 38.6094629617 41.2520703488 43.4847215457 45.7416768409 48.5978113166 51.1049684496 54.4977701839 56.8560060479 59.9187573338 62.708799359 66.6009972279 71.1020710668 74.3743337343 77.3605158075 80.9284884181 81.6620539118 83.6865085367 54.1227751813 99.9999999147 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49.5947736081 51.6304593809 52.6596333329 50.9837607661 47.8790081121 45.254425694 43.6317699488 42.9462236057 46.3800917344 44.1529010107 42.9762006822 23.3552763067 22.2690533088 21.8178072847 21.8517743264 22.0783181571 22.2967422582 22.5575782945 22.9025670319 23.3211899247 23.7975936327 24.6700083475 26.6625092623 29.0386542588 29.4730464229 30.0016030099 31.1366372395 32.7119159142 33.87041579 35.1111283396 35.5279065024 36.9487148551 38.9697166388 41.6091589399 43.9413986553 46.0081488041 48.7585898788 52.0202332714 54.4835868972 57.5557519009 60.3560582008 65.4136466447 69.3124093839 73.6870831078 77.1359278059 80.5958173284 81.757514048 84.083458845 84.3684430224 48.4674038086 99.9999999955 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.05649478888e-09 58.7621813395 54.7157907129 52.9657350367 51.2544861026 48.8913192401 47.0014883465 45.703787861 44.8219008959 46.5395322999 45.8347124255 43.5287695742 21.8083124347 21.8322941589 21.4641485289 21.8153387623 22.0986771546 22.217429421 22.3348350387 22.5390473089 22.8706063611 23.3036948407 23.8739057932 24.9388815817 27.1212876082 30.1186096202 31.0640438249 31.3106529619 32.268578413 33.5734266186 34.9915835864 36.4985992744 38.2318823499 39.4274257334 41.8906939426 44.2639154692 46.527625434 49.331847053 51.9702615593 55.3576839835 57.8519299829 63.2009384107 68.7137690655 72.1911683327 75.8071186521 80.3786528048 82.5751029205 84.9516711236 87.0245057137 85.1250964858 41.3664753218 99.9999999998 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52.9345899828 52.6760620936 54.6209323474 53.2067508647 52.0592693856 50.3132285349 48.8675054804 47.7635303615 46.9544166238 48.306371226 47.2668852681 45.2349429819 19.861628088 20.7376766184 21.226503559 22.1188994784 22.322496506 22.3453629944 22.3082861084 22.3636660379 22.5401663314 22.8913487273 23.3722169929 24.024248812 25.3394157952 27.5474166653 30.4568065753 31.633523286 32.813667941 33.4650989503 34.7563781842 36.2572931049 38.2939737258 40.1653575907 42.0964470485 44.5016522793 46.8434484642 49.5721155988 52.9106736347 55.4075912811 60.8177857355 66.7823690278 69.8255489437 74.180588415 78.3646895791 81.630946416 84.4522912643 88.243573392 87.1640549196 85.8539351632 38.9436821084 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36.2036156684 66.6784397705 59.9913440768 56.8315621832 54.6733310997 53.3548315293 51.9102326229 50.72531681 49.798352912 49.1628266629 49.9102059103 48.6342059173 47.9988154413 19.1483701179 19.7933042096 21.0688753569 21.6967778269 21.8588231379 22.012332831 22.1996373297 22.2391046907 22.3207747602 22.5369358376 22.9368523736 23.4843989725 24.2333634451 25.9543698161 27.7908689999 31.0562248734 32.7899742843 33.7665567413 35.1820570382 36.5121702336 38.3946361022 40.2321353445 42.4259348669 44.749974367 47.2625758747 50.6622641373 53.4123263501 58.1326970366 63.4267517144 67.0769210769 71.0613334056 75.0915001393 79.9634675415 83.8727890063 88.0842719483 89.6074230515 89.3992769974 90.0852190937 38.7211563988 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70.8776683117 65.3575733822 61.4720074609 57.8712241287 55.7829515763 54.2363031184 52.9564187548 51.9204262192 51.1852573819 50.7831892572 50.5581694874 49.442749211 49.5961248158 18.8113774869 19.1040136063 20.1293683494 20.8991581102 21.142109564 21.3775458706 21.6403002485 21.9224159412 22.1380364441 22.2931827787 22.5887708187 23.0703228108 23.7723441489 24.7596842081 27.2881178103 30.2932509082 31.6352614155 33.7877633539 35.6109041174 36.7454196964 38.3179152597 40.3250907989 42.871848637 45.042119756 48.3398191447 51.3986424975 55.0352578325 59.4189943945 63.8279887107 67.8179941708 71.3863613574 77.3825967377 82.1692086417 88.0718980581 90.4824606763 90.3806668823 93.3430606419 93.2824136088 52.2752168163 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.507577676847 57.3569678696 62.3030805391 60.0485388931 57.8791182313 56.1293638836 54.1021929509 52.7492011152 51.5977393514 50.7664084079 50.9230017933 50.2169738848 48.7880350379 49.7360680355 18.2438489518 18.3126143093 18.8108364964 20.0979210475 20.4353188968 20.715045233 21.0116129069 21.3445655333 21.7068310514 22.0987624272 22.3424907325 22.7609911626 23.4145765563 24.3648656298 25.7159444384 28.0716852422 31.5719124636 33.5620740012 34.643515697 37.0763746677 39.2059651839 40.7773665139 42.700414663 46.040229042 49.4874276642 51.8983068602 55.8673830823 60.675146085 64.6802116552 67.8966285208 73.8311287776 80.0719507816 85.3606463497 89.8457173128 90.2802327179 93.6450511999 97.1891670052 97.2908388563 53.765543811 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75.7441011356 65.2350268005 62.3923252278 59.190357958 57.7319171226 55.4074954729 53.127643671 51.4645271686 50.0115168116 48.7789137579 47.7855754855 47.4409871108 46.9606578188 48.9747693506 17.4502512284 17.4400263304 17.6738150627 19.3985477068 19.7907275654 20.0923397847 20.4027787281 20.7407492513 21.1212983049 21.5477529082 22.044834443 22.5236375049 23.1031810657 23.9344188808 25.0341865139 26.6311211297 29.7197766479 32.8162517913 34.8422750147 37.3949905949 38.3445827287 40.9952473882 44.4822241025 47.4926402369 49.2290559878 53.3383024028 57.8233120182 60.9856426744 65.1049665377 70.5412823559 76.6996889364 81.1675414811 86.799869448 89.7382036586 93.6931734755 97.8101960989 99.8880119187 96.8546222632 23.7107866046 94.4465705585 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.20675969495e-13 61.3773776164 64.068419949 61.6741954076 59.1990097986 57.1445726335 55.1850597436 51.9817262008 50.0253277397 48.4678054322 47.2696495843 46.4381799282 46.3994517087 45.4719442207 47.0076355939 16.6517893126 16.6337484993 16.7897987594 18.7240679722 19.1552367073 19.4902588852 19.8110572088 20.145251138 20.5109241252 20.9343105313 21.4501001704 22.0788461822 22.8639294142 23.6600014875 24.6723530142 26.1183968766 27.9802578266 31.1338293318 34.6731107258 36.7316989608 39.0430286845 42.3074347819 45.5082882855 46.7528133039 50.6100841928 54.9125041965 57.9335976186 61.9435356229 67.084904555 71.4280373528 77.1624182153 82.9884144199 88.0779637962 92.2582661422 96.7314936946 99.9497051421 99.9878620095 92.6177314356 0.0114207879108 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79.0169207781 60.576682708 64.6303279941 62.1763516909 59.719565456 57.2621318219 54.5200699278 51.143100305 48.9499469433 47.3264896784 46.1394390988 45.5809377348 45.7781006931 44.580047103 43.6825801721 15.7657962765 16.0332759143 15.9759733823 17.6535161408 18.4915285402 18.8925583873 19.2316751742 19.5498623288 19.8843813377 20.2836351247 20.7893672831 21.4411375512 22.2463502251 23.2507426334 24.566834014 26.1148339 27.7137230677 29.711984806 32.8677735839 36.3462541979 39.224108035 42.2617961839 44.3759787625 47.2741168084 52.1296355255 55.6200214654 57.9918310213 62.2196840234 67.2579812628 73.5208931434 79.1013051257 83.6127990735 89.2669045939 94.5775045109 99.3455722721 99.9998726419 99.9983264442 91.6947203576 0.0303018988203 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88.1133929303 75.5274533533 68.9801144113 64.6569303733 61.5718107326 57.6405580759 53.9589577106 50.8480893681 48.5358058064 46.8450236411 45.5822547176 45.1634185526 45.0103801159 43.8424704673 43.1924986044 14.6212847818 15.4465697655 14.8991077761 16.3918949693 17.8020971006 18.117388801 18.3260369851 18.4967994246 18.7221029914 19.0725152673 19.5906484539 20.311133172 21.2633522495 22.5108075505 24.1241311389 26.0203703286 28.0025893799 30.0528736956 32.0369507501 34.2419697366 37.7072760746 41.0898597783 43.8368918911 47.7675603392 52.2389755135 55.4263271442 58.6475906815 63.6078089075 69.2281824375 73.1984068692 78.9893168751 86.0027779813 92.0396649682 95.9422984333 99.9995980172 99.9999999766 99.9998874244 94.5253212022 27.6722746933 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.5668444985 64.4144373314 74.9900948278 71.1283974568 67.3419933574 62.3833779999 59.0986006398 54.2876877926 51.2816310116 48.8457360027 47.0990708632 46.0369600012 46.2441596788 44.713210923 43.4885896161 43.01850064 12.9716954102 14.3067434594 13.4222769738 15.4092033592 16.2624855261 15.9650148754 15.5644511859 15.3600619786 15.4688369015 15.9292391228 16.7421287522 17.9077152803 19.42214756 21.350368541 23.7909949655 26.2748928628 28.143252833 29.9484301544 31.9163863942 34.287461151 36.7550327114 39.3271067906 42.8292877125 47.8536610442 52.4476731293 56.2823051886 58.5034034838 62.8280426177 67.9687016453 74.5643082191 82.2245518524 88.6545261323 92.1001818832 98.4552286169 100 100 100 99.9909855149 38.0880826571 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99.9999039572 91.4260933987 81.2152019826 75.1275464238 70.1188410477 64.6645091524 59.4660759457 55.4502187899 52.0818069823 49.3702226606 47.4822702056 46.4479547359 46.0547494947 44.3207080553 43.4408447631 44.3813299628 11.3196401648 12.1836228552 11.7647310418 13.8873173666 13.5304285889 13.2788913456 12.8003246233 12.8433083607 13.4272815541 14.4403649623 15.812212196 17.4963933399 19.4369712982 21.5928254245 23.8325897439 25.8411978149 27.6292006113 29.5447018835 31.9612189624 34.9205365053 37.3834179178 39.9829931064 43.1457060098 47.1097062794 50.9509273567 53.7852927771 57.0763260695 62.9901931384 69.4048493791 77.4355305254 84.5409638397 88.0747705595 94.2153935753 99.9999989913 100 100 100 99.9999992004 44.6840712288 99.9999999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.47093900773e-14 75.3392574039 88.6346462922 84.1417548633 77.8824082281 70.8606441408 66.3796230705 60.4400593335 56.2051580265 52.5928712687 49.5156790266 47.2897558859 46.1718559446 44.8295409696 43.4711196567 42.3779551009 44.3578941154 10.7112715786 10.2302153511 10.5321144413 14.0039255719 13.0936308111 11.6684068374 11.0797570929 11.6185251442 12.7784725719 14.316816173 16.125605794 18.1645170329 20.3163029372 22.553657091 24.8043549906 26.5723917063 28.3396533662 30.3950378395 32.7511967162 35.1052472837 37.5118180685 40.3480770182 43.5608637684 47.1055139432 50.0015889854 52.7846866805 56.9863180698 63.1268010685 70.8354708456 78.4996365214 84.4545807653 89.1604389966 96.9722162857 100 100 100 100 100 50.0834632949 99.9999999998 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99.9548628287 80.3827994732 88.460497848 86.6478153777 81.3020801591 73.4351925416 66.2900501367 60.9627007466 56.3482496859 52.5482617298 49.419906548 46.8988365289 45.072517969 42.9545039165 41.4821381557 40.3051088503 42.7449918767 11.7364153469 9.67394597021 9.8357596726 14.0834169618 12.7759190181 9.6386342046 9.992197228 11.3945195053 13.2799941491 15.4437822182 17.818824101 20.0923853553 21.7745525256 23.4860305694 25.2178067267 26.9770243029 28.9042643187 31.0472593637 33.3276325319 35.6190628693 37.9895818046 40.6062660855 43.6726628775 47.0135896326 50.4691964855 53.3933800357 58.1750319388 64.0184625746 70.5440769607 77.9927037179 84.8733485258 91.4545471835 98.571397999 100 100 100 100 100 64.8163838821 99.9999999994 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99.9999999983 99.9999934748 99.6035165755 91.3963774234 84.6659252952 76.8275986819 68.3981997063 61.5158925785 56.1387655821 52.2249254912 49.0543326219 45.0080602538 42.2645603639 40.1773553928 38.9645562802 38.0379067292 40.2020159948 12.0982760409 9.41161594807 8.84902664479 9.23540342042 8.40466784203 8.93669174365 10.7346008504 13.1491358179 15.9552183372 17.6021083936 19.0722674245 20.5633367364 22.1274502606 23.8383151844 25.6682745634 27.6357440845 29.7602189001 31.9953033522 34.2380318129 36.4362987907 38.7546475087 41.4120181048 44.4641526296 47.4322578451 50.3514739363 53.8220071749 58.6064014134 64.5934632678 71.6050620267 78.6881509389 84.1621781165 90.8885008738 98.5403161773 99.4616748039 100 100 100 100 65.7555381665 99.9999999986 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.22652855583e-13 93.2125562204 99.9999868583 99.9985620027 96.340109169 87.4008588028 79.3857698504 70.9594934737 62.8050405003 56.0629616257 51.0650281069 47.4337731537 44.1816555812 41.3653195725 38.2190641784 35.8848462416 36.0304644276 36.8233354104 9.89218737511 8.64734917253 7.70038411152 7.65171363233 8.99715896889 11.6155649147 14.2003172711 15.4634725882 16.7146732214 18.0155446321 19.4517637295 21.0115523063 22.7149433044 24.5818176783 26.6294111083 28.8432370277 31.1278728507 33.3193924334 35.1806875423 37.1461551646 39.3221628003 41.7478232481 44.3857129597 47.2234316757 50.3310293564 54.0836817438 59.004782233 65.1618873285 71.8840318326 77.9135217413 84.163226771 92.5581357044 96.6571720133 97.5040328203 99.3244264005 100 100 100 75.0733619098 99.999999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 99.9999993484 99.9999999779 99.9999915533 99.9880235869 93.3272637708 82.8528830557 73.1882569757 64.1982832652 56.0191642671 49.6999688497 45.3006209218 41.4627787755 38.6200455109 36.2358734822 32.2012316955 33.3267350896 32.9890515238 7.68022119239 8.24933288582 6.99147960064 7.0770061341 11.2682352701 13.749686478 14.8150574536 15.9595665686 17.2424996294 18.6572420569 20.2031271865 21.8854484123 23.7206254835 25.7469620126 27.9944128802 30.0493047845 31.6453318704 33.3564621075 35.2248195077 37.2364669207 39.3993839628 41.7212016864 44.2299139091 47.0404290923 50.2539864918 54.081286311 58.9510200508 65.1061542847 71.3771525557 77.3191973016 83.8754610806 91.8805472981 94.0024543722 94.303118916 95.9108470712 99.6445258688 100 100 99.2010691356 99.9999999994 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 99.9999999954 99.9999847298 99.7799949521 87.7704979908 75.910003913 65.7401903756 56.7632241231 48.9311144191 43.721360363 39.0014081025 35.2456741604 32.8534475617 28.8334821516 29.0709023882 30.7105422277 6.52945853609 8.87106007272 6.49181848392 6.69932922124 13.145638233 14.5000616385 15.619194481 16.9084103175 18.2948232004 19.7822167014 21.3743876877 23.0723530187 24.8838410311 26.8588448616 28.6539998029 30.0374140829 31.5570296293 33.3807080406 35.3781490097 37.4399355801 39.5287624442 41.6943501059 44.0293699022 46.7868599379 50.0529330998 53.805252907 58.5685299773 64.6622346652 70.8332012814 76.6861524216 83.1242487902 91.0008307597 90.3621248501 89.3910321332 89.657328194 93.2694115355 99.9996365951 100 99.9993490486 99.9999999998 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.16420199252e-14 100 100 100 99.9999999999 99.9999998756 99.9992510906 93.3481210762 79.4996908848 67.6410758649 57.7690514002 48.4995256408 41.824536627 37.5376724966 32.8021489493 28.5340559315 24.5617411696 26.1583515824 32.0521325581 3.77631185 4.56642414149 5.76411872714 8.50901079822 14.6429501334 16.0056409662 17.3082042457 18.7181984006 20.2064701241 21.7110833029 23.2071759921 24.6823977854 26.2085109677 27.5095073664 28.7822349042 30.0290335119 31.5544471697 33.4920994994 35.6065250286 37.632105529 39.6507499158 41.6117879384 43.5936406951 46.1405956688 49.4509464117 53.0711954407 57.1860456472 63.2308132961 70.9233000598 76.0749780162 82.2088505586 88.7253868579 85.7026966659 82.0152099043 78.4630829854 77.3597029671 89.007889988 99.988814436 99.9999998388 99.9999999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 99.9999999967 99.9999898269 98.2396487662 81.9471544146 69.0394874207 57.8985521082 48.1624303257 40.618568731 35.380421346 31.5190449963 28.2502368092 25.7322363019 27.5005231948 26.4639902452 2.64050981245 3.59535199776 7.08585088136 6.95436793097 15.6809038172 17.8948832693 19.7055057334 21.1324750835 22.5582553988 23.4487951465 24.4922216257 25.6802053725 26.9376788909 28.2299097529 29.438010055 30.4094712716 31.9853794754 33.9597550734 35.6672994472 37.4972650943 39.3610807636 40.1907689021 40.5329578101 43.7809992534 48.5106090093 52.3541022439 55.935065751 61.0108379867 68.2077435836 75.6597764092 81.0686123865 85.5553332233 80.1022107222 71.7023892049 55.5565547304 62.4901548377 20.7684999491 82.9338071333 99.9770845674 99.9999999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.36092725263e-16 100 100 100 100 100 99.9999999998 99.9999989196 99.9389849595 84.5124630145 68.5971309937 57.683176165 49.1408528418 41.554399421 35.7289593823 31.8709946674 28.5553257729 25.2785313605 23.6369521674 17.1673950629 1.62994886347 7.20758273631 7.16484330787 6.4545044414 7.15081710001 9.8273240164 14.8487889462 16.7780414007 18.4632677559 20.4481528683 22.6923179258 24.9507980542 26.6852859435 27.5331426689 27.2412552533 26.3460734457 27.4823690567 30.5749150149 33.1931059312 35.2889995832 37.3491894286 38.8008460641 40.1492109432 43.10239664 48.0393442905 52.3863568085 55.8439074727 60.6245707126 67.8822145652 75.1250756866 79.2684201308 83.0292546124 75.4838867845 54.903342474 56.8017948511 0.181855841973 66.9854918998 3.95620960905e-07 2.5010291016e-06 99.9999999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.39092159942e-15 100 1.36832258258 100 100 100 100 99.9999997773 99.9961882735 85.7186890334 66.375090329 54.8001530324 47.3063999246 40.3479214513 34.0324460569 29.1585753693 25.4577568557 22.6551635945 21.2732945542 12.2647296237 ) ; boundaryField { frontAndBack { type empty; } upperWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } inlet { type calculated; value uniform 4.97113954068e-13; } outlet { type calculated; value nonuniform List<scalar> 20 ( 2.86275275248e-15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.45488372379e-16 5.56441685452e-15 ) ; } } // ************************************************************************* //
[ "as998@snu.edu.in" ]
as998@snu.edu.in
39057ec0654074aef8ed637e8c8de966923958c5
a67aff40080148e6ef791cae0a983d3dfc51a3e5
/LeetCode/tags/dp/2d-array-variants/max-sum-of-rectangle-no-larger-than-k.cpp
250e177a037185439ac6ac4af7a1ba8e42a7bf85
[]
no_license
llenroc/CP
622b97676dafc80dbcb7054977fcb73702f370fe
fa4c5160f37b6cc550b062bf77b17b0484efc671
refs/heads/master
2023-03-28T17:25:28.548230
2021-04-06T11:09:14
2021-04-06T11:09:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,672
cpp
#include<bits/stdc++.h> using namespace std; // #define endl '\n' // #define MOD 1000000007 bool az(int x) { return 97<=x && x<=122; } bool AZ(int x) { return 65<=x && x<=90; } bool number(int x) { return 48<=x && x<=57; } class Solution { private: int kadane_sum(vector<int> &v) { int curr=v[0], maxs=v[0]; for(int i=1;i<v.size(); i++) { curr = max(v[i], curr+v[i]); maxs = max(maxs, curr); } return maxs; } public: int maxSumSubmatrix(vector<vector<int>>& arr, int k) { int n = arr.size(), m = n>0 ? arr[0].size() : 0, result = INT_MIN; for(int l=0;l<m;l++) { vector<int> summ(n,0); for(int r=l;r<m;r++) { int curr=0, maxs=INT_MIN; for(int i=0;i<n;i++) { summ[i] += arr[i][r]; curr = max(summ[i], curr+summ[i]); maxs = max(maxs, curr); } int kadane = maxs; if(kadane <= k) { result = max(result, kadane); } else { // need to select another subarray not the one kadane gives // This should be as close as possible to kadane sum set<int> s={0}; curr = 0; for(int x: summ) { curr += x; auto it = s.lower_bound(curr-k); if(it != s.end()) result = max(result, curr-*it); s.insert(curr); } } } } return result; } };
[ "jitendra.iitp@gmail.com" ]
jitendra.iitp@gmail.com
2dc12279f5723a79318d587cfc869a912650e64a
6c24641ad56b820d8f48681369c0c74471667dd5
/include/three-dim-util/opengl2/primitives/sphere.hpp
e9e43f0e7e33c222ade75ba19f3e53eda58a9d40
[ "MIT" ]
permissive
chengwei920412/three-dim-util-opengl
09556b60432ca5e4ca0e48077ca0b45da7321f95
e3eca11f300d9af6cc5d3eb5636c62f95276de59
refs/heads/master
2022-02-21T11:22:24.153162
2019-09-09T02:03:12
2019-09-09T02:03:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,354
hpp
#ifndef sphere_hpp #define sphere_hpp #include <three-dim-util/opengl2/primitives/abstract-primitive.hpp> #include <Eigen/Core> namespace threedimutil { class Sphere : public AbstractPrimitive { public: static void Initialize(int latitude_resolution = 20, int longitude_resolution = 30) { Sphere::GetInstance().latitude_resolution() = latitude_resolution; Sphere::GetInstance().longitude_resolution() = longitude_resolution; Sphere::GetInstance().InitializeInternal(); } static void Draw() { Sphere::GetInstance().DrawInternal(); } static Sphere& GetInstance() { static Sphere sphere; return sphere; } int latitude_resolution() const { return latitude_resolution_; } int& latitude_resolution() { return latitude_resolution_; } int longitude_resolution() const { return longitude_resolution_; } int& longitude_resolution() { return longitude_resolution_; } private: void CreateVertexData() { constexpr double pi = M_PI; vertices_.resize(3, latitude_resolution_ * longitude_resolution_ * 6); for (int i = 0; i < longitude_resolution_; ++ i) { const double theta_xy_1 = 2.0 * static_cast<double>(i + 0) * pi / static_cast<double>(longitude_resolution_); const double theta_xy_2 = 2.0 * static_cast<double>(i + 1) * pi / static_cast<double>(longitude_resolution_); const double x_1 = std::cos(theta_xy_1); const double x_2 = std::cos(theta_xy_2); const double y_1 = std::sin(theta_xy_1); const double y_2 = std::sin(theta_xy_2); for (int j = 0; j < latitude_resolution_; ++ j) { const double theta_z_1 = static_cast<double>(j + 0) * pi / static_cast<double>(latitude_resolution_); const double theta_z_2 = static_cast<double>(j + 1) * pi / static_cast<double>(latitude_resolution_); const double cos_1 = std::cos(theta_z_1); const double cos_2 = std::cos(theta_z_2); const double sin_1 = std::sin(theta_z_1); const double sin_2 = std::sin(theta_z_2); const int offset = i * latitude_resolution_ * 6 + j * 6; vertices_.col(offset + 0) = Eigen::Vector3d(sin_2 * x_1, sin_2 * y_1, cos_2); vertices_.col(offset + 1) = Eigen::Vector3d(sin_2 * x_2, sin_2 * y_2, cos_2); vertices_.col(offset + 2) = Eigen::Vector3d(sin_1 * x_2, sin_1 * y_2, cos_1); vertices_.col(offset + 3) = Eigen::Vector3d(sin_2 * x_1, sin_2 * y_1, cos_2); vertices_.col(offset + 4) = Eigen::Vector3d(sin_1 * x_2, sin_1 * y_2, cos_1); vertices_.col(offset + 5) = Eigen::Vector3d(sin_1 * x_1, sin_1 * y_1, cos_1); } } normals_ = vertices_; } int latitude_resolution_ = 20; int longitude_resolution_ = 30; }; } #endif /* sphere_hpp */
[ "yuki@koyama.xyz" ]
yuki@koyama.xyz
de4a91523fdeae5dacdc64d6553b8cad31c18005
1231b1eca98856ed78ac5256f366a8cbf79864ae
/1014.cpp
896d9424c3dd25c443a9efa35258e0d6344b334f
[]
no_license
KawshikBanerjee/LightOJ-Solutions
cde58ec11e623631712e86a85a73ff8a74b0cfc9
8bfade995be3a46d6497fe075d7293fb3e5bd9b5
refs/heads/master
2020-08-12T19:34:20.384768
2017-09-27T00:57:05
2017-09-27T00:57:05
214,830,199
1
0
null
2019-10-13T14:00:29
2019-10-13T14:00:29
null
UTF-8
C++
false
false
783
cpp
#include <stdio.h> #include <math.h> #include <string.h> #include <iostream> #include <algorithm> #include <vector> using namespace std; #define ll long long int int main() { ll p, l, t, num, i, s_num, j; scanf("%lld", &t); for(i=1; i<=t; i++) { scanf("%lld %lld", &p, &l); num=p-l; printf("Case %lld:", i); if(num<=l || num==0) { printf(" impossible\n"); continue; } s_num=sqrt(num); vector <ll> ans; for(j=1; j<=s_num; j++) { if(num%j==0) { if(j==num/j) ans.push_back(j); else { ans.push_back(j); ans.push_back(num/j); } } } sort(ans.begin(), ans.end()); for(j=0; j<ans.size(); j++) { if(ans[j]>l) printf(" %lld", ans[j]); } printf("\n"); } }
[ "noreply@github.com" ]
noreply@github.com
61020ceef74a1b71744ef7175d3737518ff67f23
0e9394230899fd0df0c891a83131883f4451bcb9
/include/boost/simd/function/scalar/meanof.hpp
58febda6f01712dcaaa16ce6d6777480e50e6bcc
[ "BSL-1.0" ]
permissive
WillowOfTheBorder/boost.simd
f75764485424490302291fbe9856d10eb55cdbf6
561316cc54bdc6353ca78f3b6d7e9120acd11144
refs/heads/master
2022-05-02T07:07:29.560118
2016-04-21T12:53:10
2016-04-21T12:53:10
59,155,554
1
0
null
null
null
null
UTF-8
C++
false
false
662
hpp
//================================================================================================== /*! @file @copyright 2012-2015 NumScale SAS @copyright 2015 J.T.Lapreste Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ //================================================================================================== #ifndef BOOST_SIMD_FUNCTION_SCALAR_MEANOF_HPP_INCLUDED #define BOOST_SIMD_FUNCTION_SCALAR_MEANOF_HPP_INCLUDED #include <boost/simd/function/definition/meanof.hpp> #include <boost/simd/arch/common/generic/function/meanof.hpp> #endif
[ "charly.chevalier@numscale.com" ]
charly.chevalier@numscale.com
d5c6a694ad81cbfc3c10080429b7b0d70a089f00
8557eb2d74603e183c4dc920fc6322579b268910
/core/display/painters/Painter.h
42d2a714228ce0614fa73f990690191963357417
[]
no_license
austinEng/FLIP-PIC-Fluid-Solver
2b35ef8187058dabc80030bf0d14f54da98f3574
97a6dad5c7bec0ce4fdc710ad077912f14ad1a17
refs/heads/master
2021-01-18T08:11:51.114949
2016-04-21T23:33:21
2016-04-21T23:33:21
52,739,449
6
3
null
null
null
null
UTF-8
C++
false
false
439
h
// // Created by austin on 2/29/16. // #ifndef FLUIDSOLVER_PAINTER_H #define FLUIDSOLVER_PAINTER_H #include <GL/glew.h> #include <vector> class Painter { public: virtual void draw() const = 0; virtual void setViewProj(const float* viewProj); protected: GLuint prog; GLuint compileShader(const char* shader, GLenum type); GLuint makeProgram(const std::vector<GLuint> &programs); }; #endif //FLUIDSOLVER_PAINTER_H
[ "213reeses@gmail.com" ]
213reeses@gmail.com
8e84f1f8e75dbbd853e5c4227bb4ec6b189fc150
781bcdfef1a6caed615fa13b5149638b38e02984
/RPGame/Monsters.cpp
0d682feea07f0a48ef59d0b88af3bc74fbc21573
[]
no_license
Cameron-Sconza/RPGame
af6c2271fc303d52cec0bb27dc68d89e1523ac9e
80c84119709e3023f8193676a8c52442b2c728fc
refs/heads/master
2021-07-07T04:18:53.419968
2017-10-05T13:44:55
2017-10-05T13:44:55
105,675,860
0
0
null
null
null
null
UTF-8
C++
false
false
898
cpp
#include "stdafx.h" #include "Monsters.h" std::vector<Monsters> Monsters::getAllMonsters() { std::ifstream IO; std::string monsterStr; IO.open("C:\\Users\\Onshore\\Documents\\Visual Studio 2017\\Projects\\RPGame\\Monsters.txt"); if (IO.is_open()) { std::ostringstream ss; ss << IO.rdbuf(); monsterStr = ss.str(); IO.clear(); IO.close(); } std::stringstream ss(monsterStr); std::vector<Monsters> monsterList; for (int i = 0; i < 3; i++) { Monsters mon; std::string temp; getline(ss, mon.name, '\n'); (getline(ss, temp, '\n')); std::stringstream(temp) >> mon.maxHealthPoints; temp.clear(); (getline(ss, temp, '\n')); std::stringstream(temp) >> mon.attack; temp.clear(); (getline(ss, temp, '\n')); std::stringstream(temp) >> mon.defence; temp.clear(); mon.currentHealthPoints = mon.maxHealthPoints; monsterList.push_back(mon); } return monsterList; }
[ "cameron.sconza@onshoreoutsourcing.com" ]
cameron.sconza@onshoreoutsourcing.com
921688d428a6c95379550d0bf86e5719c7284ee3
18dc5c24f3659ee86bc133a3940963490af86028
/chapter6-15/main.cpp
d486fb56ed466322bbef351bb38d678232ca0a04
[]
no_license
hyoilll/hong_cplusplus
91fb4d126179894f025643ca6b86daaf01560281
1015cdc8ccb651a0d3aa0749a1b5797d61f266fe
refs/heads/master
2021-02-17T20:40:03.106536
2020-03-07T15:04:53
2020-03-07T15:04:53
245,126,483
0
0
null
null
null
null
UHC
C++
false
false
506
cpp
/* 참조와 const */ #include <iostream> using namespace std; void doSomething(const int& x) { cout << x << endl; } int main() { const int x = 5; const int& ref = x; const int& ref2 = ref; //--------------------------------------- /* int &ref_x = 3 + 5; error */ const int& ref_x = 3 + 5; //int* const ptr = 3 + 5; pointer는 안됨 cout << ref_x << endl; cout << &ref_x << endl; int a = 5; doSomething(a); //5 doSomething(4 + 2); //6 doSomething(a + 3); //7 return 0; }
[ "dlgydlf123@gmail.com" ]
dlgydlf123@gmail.com
9a8e73a8de9da302ec0053b66fb37827f4faa1a3
59fdc18dcf1bc4f939a8b3b72e467bb169b67429
/comparisons/makeComparisons.cc
5207a8eddf3bd8048ccb9babdc300c550662724a
[]
no_license
jan-kaspar/analysis_elastic.3500GeV.beta90.5sigma
62483cfe8fde5ba44cbe3cb57441dcef8f2db0c4
37108013db1c4b993d49905022f91c7ad83a35ef
refs/heads/master
2021-01-12T10:41:44.290577
2016-11-04T17:03:20
2016-11-04T17:03:20
72,627,137
0
0
null
null
null
null
UTF-8
C++
false
false
2,804
cc
#include "TFile.h" #include "TH1D.h" void MakeComparisons(const string &ds) { TFile *f1 = new TFile((string("../")+ds+"/normalize_45b_56t.root").c_str()); TFile *f2 = new TFile((string("../")+ds+"/normalize_45t_56b.root").c_str()); TH1D *h1 = (TH1D *) f1->Get("cross section/output"); TH1D *h2 = (TH1D *) f2->Get("cross section/output"); h2->Divide(h1); TFile *fOut = new TFile((string("diagonal_cmp_")+ds+".root").c_str(), "recreate"); h2->Write(); delete fOut; } //---------------------------------------------------------------------------------------------------- TH1D* MakeAverage(TH1D *h1, TH1D *h2, TH1D *h3) { TH1D *ha = new TH1D(*h1); for (int i = 1; i <= ha->GetNbinsX(); i++) { double v1 = h1->GetBinContent(i), e1 = h1->GetBinError(i), c1 = h1->GetBinCenter(i); double v2 = h2->GetBinContent(i), e2 = h2->GetBinError(i), c2 = h2->GetBinCenter(i); double v3 = h3->GetBinContent(i), e3 = h3->GetBinError(i), c3 = h3->GetBinCenter(i); double w1 = (e1 > 0.) ? 1./e1/e1 : 0.; double w2 = (e2 > 0.) ? 1./e2/e2 : 0.; double w3 = (e3 > 0.) ? 1./e3/e3 : 0.; if (c1 < 0.0073001) w1 = 0.; if (c2 < 0.0057001) w2 = 0.; if (c3 < 0.0046001) w3 = 0.; double sw = w1+w2+w3; double v = (sw > 0.) ? (w1*v1 + w2*v2 + w3*v3) / sw : 0.; double e = (sw > 0.) ? 1. / sqrt(sw) : 0.; ha->SetBinContent(i, v); ha->SetBinError(i, e); //printf("t=%E, v1=%E, v2=%E, v=%E\n", h_t_45b->GetBinCenter(i), v1, v2, v); } return ha; } //---------------------------------------------------------------------------------------------------- void makeComparisons() { // ratio between diagonals vector<string> datasets; datasets.push_back("NN_2011_10_20_1"); datasets.push_back("NN_2011_10_20_2"); datasets.push_back("NN_2011_10_20_3"); for (unsigned int i = 0; i < datasets.size(); i++) MakeComparisons(datasets[i]); // full average TFile *f1 = new TFile("/afs/cern.ch/exp/totem/scratch/jkaspar/software/offline/424/user/elastic_analysis/low_t/NN_2011_10_20_1/normalize_merged.root"); TFile *f2 = new TFile("/afs/cern.ch/exp/totem/scratch/jkaspar/software/offline/424/user/elastic_analysis/low_t/NN_2011_10_20_2/normalize_merged.root"); TFile *f3 = new TFile("/afs/cern.ch/exp/totem/scratch/jkaspar/software/offline/424/user/elastic_analysis/low_t/NN_2011_10_20_3/normalize_merged.root"); TH1D *h1 = (TH1D *) f1->Get("cross section/output"); TH1D *h2 = (TH1D *) f2->Get("cross section/output"); TH1D *h3 = (TH1D *) f3->Get("cross section/output"); TFile *f = new TFile("dataset_cmp.root", "recreate"); TH1D *h_avg = MakeAverage(h1, h2, h3); h_avg->SetName("h_avg"); h_avg->Write(); // ratio between datasets h2->Divide(h1); h3->Divide(h1); h2->SetName("ds2_over_ds1"); h2->Write(); h3->SetName("ds3_over_ds1"); h3->Write(); delete f; }
[ "jan.kaspar@cern.ch" ]
jan.kaspar@cern.ch
21972c2d006c57751ec1c9442fa2d22112a6b59e
b3f974f1b215aec4149f63d2d15fc3157686946d
/Jeenode/RF12/RF12sio.h
8fdac890028d12c60302d2a5c0721294954fb1f0
[]
no_license
simpleavr/MSPNode
6aa1d56756d56555d4b030840d17ee75ad79637e
30bcb31515d4b25725a2dbc807dd0e35932e57c2
refs/heads/master
2016-09-10T09:01:25.980734
2011-10-17T01:27:28
2011-10-17T01:27:28
2,373,554
2
2
null
null
null
null
UTF-8
C++
false
false
2,920
h
// Streaming I/O layer on top of RF12 driver // 2009-05-07 <jcw@equi4.com> http://opensource.org/licenses/mit-license.php // $Id: RF12sio.h 4727 2009-12-08 21:39:49Z jcw $ class RF12 { enum { F_EXT = -6, F_STR, F_8, F_4, F_2, F_1 }; MilliTimer sendTimer, ackTimer; uint8_t txbase, txfill, txfields, txPending; uint8_t txbuf[138]; // one full packet plus room for constructing next one uint8_t rxpos, rxfield, ackHead, ackData; void initBuf(uint8_t base); void addToBuf(uint8_t type, const void *ptr, uint8_t len); public: RF12 () : txPending (0), ackHead (0) { initBuf(0); } RF12& put(const void*, char); RF12& get(void*, char); uint8_t read() { char v; get(&v, F_1); return v; } RF12& operator<< (char v) { return put(&v, F_1); } RF12& operator<< (unsigned char v) { return put(&v, F_1); } RF12& operator<< (int v) { return put(&v, F_2); } RF12& operator<< (unsigned v) { return put(&v, F_2); } RF12& operator<< (long v) { return put(&v, F_4); } RF12& operator<< (unsigned long v) { return put(&v, F_4); } RF12& operator<< (long long v) { return put(&v, F_8); } RF12& operator<< (unsigned long long v) { return put(&v, F_8); } RF12& operator<< (float v) { return put(&v, F_4); } RF12& operator<< (double v) { return put(&v, F_8); } RF12& operator<< (const char* v) { return put(v, F_STR); } RF12& operator<< (const unsigned char* v) { return put(v, F_STR); } // max payload is one string arg of 63 chars: needs 64b, plus 8 for fields uint8_t ready() const { return txfill <= sizeof txbuf - 72; } void send(uint8_t v); RF12& operator>> (char& v) { return get(&v, F_1); } RF12& operator>> (unsigned char& v) { return get(&v, F_1); } RF12& operator>> (int& v) { return get(&v, F_2); } RF12& operator>> (unsigned& v) { return get(&v, F_2); } RF12& operator>> (long& v) { return get(&v, F_4); } RF12& operator>> (unsigned long& v) { return get(&v, F_4); } RF12& operator>> (long long& v) { return get(&v, F_8); } RF12& operator>> (unsigned long long& v) { return get(&v, F_8); } RF12& operator>> (float& v) { return get(&v, F_4); } RF12& operator>> (double& v) { return get(&v, F_8); } RF12& operator>> (char* v) { return get(v, F_STR); } RF12& operator>> (unsigned char* v) { return get(v, F_STR); } uint8_t poll(); uint8_t nextSize(); void to(uint8_t node) {} uint8_t from() { return 0; } };
[ "robomotic@gmail.com" ]
robomotic@gmail.com
54cd3393e10c6f3dc99d9d12b30d842739299385
09900a085dabc3bcfc42bd3cbd78085ce538a0d2
/optimizer/src/sample.cpp
acea3e1e2a6293391e11050060f953cac2edae72
[ "MIT" ]
permissive
rolandbernard/task-planner
8121cac52555a6a6522b670bd6aec6618a89976e
58401dd949ad422be2f87956d3f566563965decd
refs/heads/master
2023-07-06T01:35:18.083560
2023-06-27T12:41:15
2023-06-27T12:41:15
240,232,040
0
0
MIT
2023-06-27T12:41:16
2020-02-13T10:19:35
C++
UTF-8
C++
false
false
712
cpp
#include "sample.h" #include <iostream> namespace sample { double linearBias(double r, double min, double max) { return (r - min) + (max - min)/2 + (max - min)*1e-5; } double nonLinearBias(double r, double min, double max) { double d = (r - min) + (max - min)/2 + (max - min)*1e-5; d *= d; d *= d; return d; } double nonLinear(double r, double min, double max) { double d = (r - min) + (max - min)*1e-5; d *= d; d *= d; d *= d; return d; } double nonLinearAbsolute(double r, double min, double max) { double d = r; d *= d; d *= d; d *= d; return d; } }
[ "rolli.bernard@gmail.com" ]
rolli.bernard@gmail.com
05fb788ec6a26d539d3b386b58fe055fb1fda3fa
82437e831c8e89c092d4125cca71ace24d364f5e
/screamers/include/GameConnection.h
264ae4a9fdd2783e42ab3aa9715694381fb500b0
[]
no_license
qixiaobo/navi-misc
93ac98f3d07eed0a1e6e620fd5f53880c5aac2a4
1f9099d40cc638d681eebbc85c0b8455dab21607
refs/heads/master
2021-06-06T11:53:00.644309
2016-10-27T06:01:26
2016-10-27T06:01:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,029
h
/* * GameConnection.h - manages a connection between client and server * * Copyright (C) 2005 Screamers Group (see AUTHORS) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include <tnl.h> #include <tnlGhostConnection.h> #include <tnlNetConnection.h> #include <tnlNetInterface.h> #include "MainLoop.h" #ifndef _GAME_CONNECTION_H_ #define _GAME_CONNECTION_H_ static char *connection_states[] = { // these map to the constants in TNL::NetConnectionState "Not connected.", "Sending challenge request...", "Punching through firewalls...", "Computing puzzle solution...", "Connection request sent.", "Connection timed out.", "Connected.", "Disconnected.", "Connection timed out.", "", }; class GameConnection : public TNL::GhostConnection, public TimeoutListener { public: TNL_DECLARE_NETCONNECTION(GameConnection); GameConnection (); virtual ~GameConnection (); void connectToServer (const char *server, int port); bool isDataToTransmit (); void onConnectTerminated (TNL::NetConnection::TerminationReason reason, const char *rejectionString); void onConnectionTerminated (TNL::NetConnection::TerminationReason reason, const char *string); void onConnectionEstablished (); bool timeout (void); private: TNL::Address *remote_address; TNL::NetInterface *_interface; }; #endif // _GAME_CONNECTION_H_
[ "micah@scanlime.org" ]
micah@scanlime.org
21f53a2418ccf201bdcd6e754748b3365b5bd93c
46ee1192a4cd561bb7ed858a680722e83891ee26
/SQLviewer/browser.h
52b3172fdb5a776a75c703e59fc66e18691039b6
[]
no_license
azieh/SQLviewer
1ca1cbf1906f3fe93e10d27efb929ea54e2a00e3
36488036a174d3c92f8b2917e93044a734685fdb
refs/heads/master
2021-01-10T13:21:51.618808
2015-11-17T14:52:25
2015-11-17T14:52:25
43,075,279
1
0
null
null
null
null
UTF-8
C++
false
false
613
h
#ifndef BROWSER_H #define BROWSER_H #include <QSqlTableModel> #include <QMainWindow> #include <QMessageBox> #include <QtWidgets> #include <QtSql> #include <QMessageBox> class Browser { public: Browser (); ~Browser(); QSqlDatabase database; QStringListModel* tableslistmodel; QSqlTableModel* tableviewmodel; QString actualstatus; QString currenttable; void execDatabase (const QString & command); void openDatabase (QString & path); void strategySetting (int strategysetting); private: void _execQuery (); }; #endif // BROWSER_H
[ "aziehx@o2.pl" ]
aziehx@o2.pl
fe52aad31bbd3b8ec9383a2e25aa8608760d21a5
3845af9f8a65391ca6c98cbb20da5d2eb77ccba8
/code/number_theory/prime_factors.cpp
d5abc08f1f9ae9c5e85c7ec76eecd933c217fedc
[]
no_license
namdlog/ICPC
73d5491b5c2cef1cab22048e642fb65cdc7f3590
26e7358a529993ed8bde83a70a334158137662ac
refs/heads/master
2020-12-28T09:11:03.810022
2020-02-04T00:56:28
2020-02-04T00:56:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
491
cpp
// Find all prime factors | O(n^1/3) ? // here we find the smallest finite base of a fraction a/b #define ll long long int main() { scanf("%lld %lld", &a, &b); ll g = __gcd(a, b); b /= g; cur = b; for(ll i = 2; i <= cbrt(cur); i++) { if(cur % i == 0) { ans *= i; while(cur % i == 0) cur /= i; } } ll sq = round(sqrt(cur)); if(sq * sq == cur) cur = sq; printf("%lld\n", max(2LL, ans * cur)); return 0; }
[ "pachecosobral@gmail.com" ]
pachecosobral@gmail.com
2f2f701c4cc2a8141c6bfb072d6e0842feceae14
88de295bd35bc504104815e1afd897266802875b
/experimental/combine/utilities/image/image_utility.hpp
bd76d3f353f45dd49c1d440ef4a7544b4bda12f3
[]
no_license
mfonken/combine
4a26545c8e742dfcbc21d16236f6c5a346bfcb16
aac79987ebfd4af0c8e1d441826bc1bfd78e39da
refs/heads/master
2022-11-30T21:40:19.574096
2022-11-18T04:08:04
2022-11-18T04:08:04
94,054,420
0
1
null
null
null
null
UTF-8
C++
false
false
2,786
hpp
// // image_utilities.hpp // tau+ // // Created by Matthew Fonken on 10/22/17. // Copyright © 2017 Marbl. All rights reserved. // #ifndef image_utilities_hpp #define image_utilities_hpp //#include "test_setup.h" #include <stdio.h> #include <stdint.h> #include <string> #include <iostream> #include <unistd.h> #include "environment_master.h" #include "opencv_master.h" #include "image_config.h" #include "image_cpp_types.h" #include "unfisheye.hpp" #ifdef __TAU__ //#include "tau_structures.hpp" #endif //#define DEBUG_IU #ifndef LOG #define LOG(...) printf(__VA_ARGS__) #endif #ifdef DEBUG_IU #define LOG_IU(...) LOG("<ImageUtility> " __VA_ARGS__) #else #define LOG_IU(...) #endif #ifdef CV_TRACK_BLOBS typedef struct { double x, y, s; } keypoint_t; #endif #ifdef CV_TRACK_BLOBS #include "open.hpp" #endif //#include "kinetic.h" typedef enum { CIRCLE_CENTERED = 0, CIRCLE_DUAL, HORIZONTAL } path_t; typedef enum { NONE = 0, STATIC_SMALL, STATIC_LARGE, DYNAMIC_SMALL, DYNAMIC_LARGE } noise_t; using namespace cv; bool thresh(uint8_t t, Vec3d p); void drawPosition(double x, double y, double z); class ImageUtility : public TestInterface { public: void Init( void ); void Trigger( void ); string Serialize( void ); static ImageUtility& Instance(); ImageUtility( std::string, std::string f, int num, int width, int height); virtual ~ImageUtility(); void InitFile(); void InitCamera(); void InitGenerator(); VideoCapture cam; Mat outframe, preoutframe, frame, image, preimage; cimage_t outimage; pthread_mutex_t frame_mtuex, outframe_mutex, preoutframe_mutex, outimage_mutex, tau_cross_mutex, keypoints_mutex, self_mutex; void RequestBackground(); Mat GetNextImage(); Mat GetImage(); int Loop(char c); Mat GetNextFrame(); bool IsLive(); void DrawOutframe(); void GenerateImage(Mat&); int Cx, Cy, pCx, pCy; point2d_t bea[2]; int thresh; bool generator_active, background_request, background_ready; #ifdef CV_TRACK_BLOBS open_t detector; #endif private: std::string file, subdir; int iteration; int counter; int args; bool single_frame; bool live; bool has_file, has_camera, has_generator, track_blobs; int num_frames; path_t path; int p_x, p_y, s_x, s_y, path_center_x, path_center_y, path_tick, path_num_ticks; noise_t noise; int noise_rate; cv::Size size; }; #endif /* image_utilities_hpp */
[ "mgfonken@gmail.com" ]
mgfonken@gmail.com
3b8d21dbaf717b1612d104a2a76a6e10948feb2e
2f6f4953d35e53d3d86ad4e959d9f032d4bb3c4c
/startalk_ui/singleprogresobject.cpp
eee21497bdd09833d01b19e9ac72def0ffcbc02a
[ "MIT" ]
permissive
xuepingiw/open_source_startalk
c9b6866b736d51798394486de2b6181a49f38466
44d962b04039f5660ec47a10313876a0754d3e72
refs/heads/master
2020-04-29T03:00:00.190179
2019-03-27T07:01:40
2019-03-27T07:01:40
175,791,902
0
0
MIT
2019-03-15T09:43:22
2019-03-15T09:43:18
null
UTF-8
C++
false
false
881
cpp
#include "singleprogresobject.h" #ifdef _LINUX #include "singleprogress_adaptor.h" #include "singleprogress_interface.h" #endif // _LINUX #include <QMessageBox> #include "UIFrame.h" #include "MainDialogController.h" #include "SystemIcon.h" SingleProgresObject::SingleProgresObject(QObject *parent) : QObject(parent) { } SingleProgresObject::~SingleProgresObject() { } #ifdef _LINUX void SingleProgresObject::setupQBus(QDBusConnection connection) { new SingleprogressAdaptor(this); connection.registerObject("/", this); org::qim::singleprogress *Iface = new org::qim::singleprogress(QString(), QString(), connection,this); connection.connect(QString(), QString(), "org.qim.singleprogress","showwindows",this,SLOT(onShowWindows())); } #endif // _LINUX void SingleProgresObject::onShowWindows() { emit SystemIcon::instance().sgDoubleClick(); }
[ "20832776@qunar.com" ]
20832776@qunar.com
ba4e91f4f3aa874c6b36f514d15798285ef35b67
ded07ff8ec8b536e9da769cdd41ded670ebd9197
/Formats/dmf/dmfformat.h
c056c811d3bb8bb2d2db6dec7670b0c8232f9b2c
[ "MIT" ]
permissive
jgunthorpe/muse
f8a05aeff53f236b713d1a53e9319fd5851fd2f6
7701cab4377938a8ce3d8c8d2eb68f5f7a7152bf
refs/heads/master
2021-01-19T17:53:33.041577
2017-08-22T18:02:24
2017-08-22T18:02:24
101,092,978
0
0
null
null
null
null
UTF-8
C++
false
false
1,761
h
typedef struct museSongSample { octet *Sample; unsigned long Flags; unsigned long LoopBegin; unsigned long LoopEnd; unsigned long SampleEnd; string Name; string SampleName; int InstNo; unsigned long Center; octet Volume; } museSongSample; typedef Sequence<museSongSample> SequenceSongSample; struct DMFHeader; struct DMFInfo; struct DMFMessage; struct DMFSequence; struct DMFPatternHeader; struct DMFPattern; struct DMFInstrumentRange; struct DMFInstrument; struct DMFInstrumentHeader; struct DMFSampleInfo; struct DMFSampleInfo2; struct DMFSampleInfoHeader; struct DMFSample; struct DMFSampleHeader; struct DMFEndHeader; class museOutputBase; class museDMFFormat { public : virtual unsigned short GetNumPatterns(); virtual unsigned short GetNumOrders(); virtual unsigned short GetRowsAPattern(); virtual string GetTitle(); virtual unsigned short GetNumChannels(); virtual void GetSongSamples(SequenceSongSample* Samples); virtual long LoadMemModule(octet* Region, unsigned long Size); virtual long Play(museOutputBase *); virtual long Glissando (long Frequency,long FineTune); museDMFFormat(); ~museDMFFormat(); private : void Free(); DMFHeader *Header; DMFInfo *Info; DMFMessage *Message; DMFSequence *Sequence; DMFPatternHeader *PatternHeader; DMFPattern **Patterns; DMFInstrumentHeader *InstrumentHeader; DMFInstrument **Instruments; DMFInstrumentRange ***Ranges; DMFSampleInfoHeader *SampleInfoHeader; DMFSampleInfo2 **SampleInfos2; DMFSampleInfo **SampleInfos; DMFSampleHeader *SampleHeader; DMFSample **Samples; unsigned char *TempPatternData; };
[ "jgunthorpe@obsidianresearch.com" ]
jgunthorpe@obsidianresearch.com
3573c6a0e9c08e166d0c055811008724abff345a
6eb1b24e91d922bc68554b7205230be59c2a94af
/DeviceCiperSDK/Rc4Ciper.cpp
2c1ee4f06e5d995e9769820a66d9ad4c5b480da2
[]
no_license
ly000451/DeviceSecuritySdk
97e4430f9f0ce6878175fe18bd8ba9fa65d53cdb
35e77eb9cdbeb1792201cad270539da1147bd0bb
refs/heads/master
2020-03-29T01:23:46.338005
2018-09-19T03:35:11
2018-09-19T03:35:11
149,386,444
0
0
null
null
null
null
UTF-8
C++
false
false
431
cpp
#include "stdafx.h" #include "Rc4Ciper.h" Rc4Ciper::Rc4Ciper() { memset(sbox, 0, 256); memset(key, 0, 256); } Rc4Ciper::~Rc4Ciper() { memset(sbox, 0, 256); /* remove Key traces in memory */ memset(key, 0, 256); } char* Rc4Ciper::Encrypt(char *pszText, int itxtLength) { return Encrypt(pszText, itxtLength,pszKey); } char* Rc4Ciper::Decrypt(char *pszText, int itxtLength) { return Decrypt(pszText, itxtLength,pszKey); }
[ "ly000451@gmail.com" ]
ly000451@gmail.com
17d69ec5bfa142dc885d1ee66b925ce9390cf375
9b4dd8a4187d85f1826b1b5a10d2d317b410e69d
/数据结构/图/深度优先搜索.cpp
c66d09c3378e72e0616b42bf5681d4a0a9fdbda7
[]
no_license
wbl1996/C-projects
db5448b89f3f1c2592aa94e905f14418b9986189
e5b5581d5e17c27a59cab67663630a6e76e59cf6
refs/heads/master
2021-09-23T17:59:31.578486
2018-09-26T06:42:09
2018-09-26T06:42:09
113,429,821
0
0
null
null
null
null
GB18030
C++
false
false
1,178
cpp
#include<stdio.h> #include<string.h> #include<stdlib.h> #define MAXVEX 100 #define MAXSIZE 100 typedef int Edgetype; typedef int Elemtype; typedef char Vertextype; typedef struct graph{ Vertextype vex[MAXVEX]; Edgetype arc[MAXVEX][MAXVEX]; int numNodes,numEdges; }MGraph; void CreateMGraph(MGraph *Gp){ int i,j,k; printf("请输入顶点数:"); scanf("%d",&Gp->numNodes); printf("请输入边数:"); scanf("%d",&Gp->numEdges); printf("请输入顶点信息:\n"); for(i=0;i<Gp->numNodes;i++){ scanf("%s",&Gp->vex[i]); } for(i=0;i<Gp->numNodes;i++){ for(j=0;j<Gp->numNodes;j++){ Gp->arc[i][j]=0; } } for(k=0;k<Gp->numEdges;k++){ printf("请输入边(vi,vj)的标号i,j:"); scanf("%d%d",&i,&j); Gp->arc[i][j]=1; Gp->arc[j][i]=1; } for(i=0;i<Gp->numNodes;i++){ for(j=0;j<Gp->numNodes;j++){ printf("%d\t",Gp->arc[i][j]); } printf("\n"); } } int visited[MAXVEX] = {0}; void DFS(MGraph *Gp,int i){ int j; visited[i]=1; printf("%c",Gp->vex[i]); for(j=0;j<Gp->numNodes;j++){ if(Gp->arc[i][j]==1&&visited[j]==0){ DFS(Gp,j); } } } int main(){ MGraph G; int i; CreateMGraph(&G); printf("深度优先搜索:"); DFS(&G,0); }
[ "wbl_96@163.com" ]
wbl_96@163.com
c304839e90f139fdbd43dfb8d1670a53a77aa40a
b69e355d8c58f1682372d8adf4a27028ce854c1e
/baltic/Baltic 15-net.cpp
c79a41162d3b48d958abb752ae6f1eae2d25978a
[]
no_license
sjhuang26/competitive-programming
97845b11f6245822e36c581b28157fa9a09c6e34
f1c82e20248d4c72c1d521b977c9992abe20fdc5
refs/heads/master
2021-07-09T18:30:15.210042
2018-12-30T20:31:00
2018-12-30T20:31:00
137,676,577
4
1
null
null
null
null
UTF-8
C++
false
false
909
cpp
/* Baltic 15-net (accepted, looked at solution) Key ideas: - Simply link the ith leaf node to the i+(# of leaves)/2 node. - Account for the case where (# of leaves) is odd. */ #include<iostream> #include<vector> using namespace std; vector<int>s; vector<vector<int>>t;//1 IDX bool f[500005]={}; int N; void dfs(int u){ if(f[u])return; f[u]=1; if(t[u].size()==1)s.push_back(u); for(int&i:t[u])dfs(i); } int main(){ cin>>N; for(int i=0;i<=N+5;++i)t.push_back(vector<int>()); for(int i=0;i<N-1;++i){ int a,b;cin>>a>>b; t[a].push_back(b); t[b].push_back(a); } dfs(1); int k=s.size(); if(k%2){ cout<<k/2+1<<'\n'; for(int i=0;i<k/2;++i){ cout<<s[i]<<' '<<s[i+k/2+1]<<'\n'; } cout<<s[k/2]<<' '<<1<<'\n'; }else{ cout<<k/2<<'\n'; for(int i=0;i<k/2;++i){ cout<<s[i]<<' '<<s[i+k/2]<<'\n'; } } // free memory vector<vector<int>>().swap(t); vector<int>().swap(s); return 0; }
[ "sjhuang26@gmail.com" ]
sjhuang26@gmail.com
542da65cffe6b8739e7fad31b90d8e7c75a0a406
f9b32ac7c5b830a15b2d8516b26c484fd7f2837a
/Algorithm/ContainOfZero.cpp
118658bf7e9729cee824565412552f2b007f9322
[]
no_license
Zukky55/Algorithm
79cdce69430490a5461d75ce8f8d860d354e71c1
ca36ac79b7292540555555f077bf15b2d4e21367
refs/heads/master
2020-05-20T21:16:10.973934
2019-05-23T09:22:44
2019-05-23T09:22:44
185,757,951
0
0
null
null
null
null
UTF-8
C++
false
false
977
cpp
#if 0 #include <iostream> #include<random> using namespace std; #define ARRAY_LENGTH(array) (sizeof(array) / sizeof(array[0])) const int ARRAY_SIZE = 10; const int RANGE = 1000; bool isContainValue(int targetInt, int searchArray[]); int main() { int a[ARRAY_SIZE]; random_device rnd; mt19937_64 mt; mt.seed(rnd()); uniform_int_distribution<> rand(-1, 1); for (int i = 1; i < ARRAY_SIZE; i++) { a[i - 1] = rand(mt); cout << a[i - 1] << " : "; if (!(i % 10)) { cout << endl; } } cout << endl; if (isContainValue(0, a)) { cout << "Yes" << endl; } else { cout << "No" << endl; } } bool isContainValue(int targetInt, int searchArray[]) { cout << sizeof(searchArray) << endl; cout << sizeof(searchArray[0]) << endl; for (int index = 0; index < ARRAY_LENGTH(searchArray); index++) { if (searchArray[index] == targetInt) { cout << "Detect 0 in array[" << index << "]" << endl; return true; } continue; } return false; } #endif
[ "www.kase@gmail.com" ]
www.kase@gmail.com