From 728f1bd8ca51ae42ed07f786bf9c1061ea1c0838 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Thu, 26 Feb 2026 14:43:31 -0800 Subject: [PATCH 01/25] Fix fmt compatibility with newer toolchains Convert streamable custom types before logging or formatting in a few cleanup paths, and teach utl::Logger to fall back to streamed formatting for non-formattable arguments. Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/dpl/src/infrastructure/Coordinates.h | 8 ++++ src/drt/src/dr/FlexGridGraph_maze.cpp | 17 +++++++- src/drt/src/frBaseTypes.h | 8 +++- src/drt/src/global.h | 2 - src/dst/src/BalancerConnection.cc | 2 +- src/dst/src/LoadBalancer.cc | 2 +- src/odb/include/odb/geom.h | 9 ++++- src/odb/src/db/dbGuide.cpp | 17 +++++++- src/odb/src/db/dbJournal.cpp | 16 +++++++- src/utl/include/utl/Logger.h | 51 ++++++++++++++++++++++-- src/utl/src/timer.cpp | 14 ++++++- 11 files changed, 129 insertions(+), 17 deletions(-) diff --git a/src/dpl/src/infrastructure/Coordinates.h b/src/dpl/src/infrastructure/Coordinates.h index f30d18c3865..83771766db6 100644 --- a/src/dpl/src/infrastructure/Coordinates.h +++ b/src/dpl/src/infrastructure/Coordinates.h @@ -227,6 +227,14 @@ inline int sumXY(DbuX x, DbuY y) return x.v + y.v; } +#if !SWIG && FMT_VERSION >= 100000 +template +auto format_as(const T& value) -> decltype(utl::format_as(value)) +{ + return utl::format_as(value); +} +#endif + } // namespace dpl // Enable use with unordered_map/set diff --git a/src/drt/src/dr/FlexGridGraph_maze.cpp b/src/drt/src/dr/FlexGridGraph_maze.cpp index 577b344bc64..f3e7ddbf1d0 100644 --- a/src/drt/src/dr/FlexGridGraph_maze.cpp +++ b/src/drt/src/dr/FlexGridGraph_maze.cpp @@ -8,6 +8,7 @@ #include #include #include +#include #include #include @@ -24,6 +25,18 @@ using odb::dbTechLayerDir; namespace drt { +namespace { + +template +std::string toString(const T& value) +{ + std::ostringstream stream; + stream << value; + return stream.str(); +} + +} // namespace + const int debugMazeIter = std::numeric_limits::max(); void FlexGridGraph::printExpansion(const FlexWavefrontGrid& currGrid, @@ -48,10 +61,10 @@ void FlexGridGraph::printExpansion(const FlexWavefrontGrid& currGrid, "{} ", keyword, currGrid.z(), - pt, + toString(pt), currGrid.getCost(), currGrid.getPathCost(), - currGrid.getLastDir(), + toString(currGrid.getLastDir()), currGrid.getCost() - currGrid.getPathCost(), gridX, gridY); diff --git a/src/drt/src/frBaseTypes.h b/src/drt/src/frBaseTypes.h index 2243393d1ac..24659e30e0c 100644 --- a/src/drt/src/frBaseTypes.h +++ b/src/drt/src/frBaseTypes.h @@ -331,6 +331,12 @@ inline bool is_loading(const Archive& ar) return std::is_same_v; } -using utl::format_as; +#if !SWIG && FMT_VERSION >= 100000 +template +auto format_as(const T& value) -> decltype(utl::format_as(value)) +{ + return utl::format_as(value); +} +#endif } // namespace drt diff --git a/src/drt/src/global.h b/src/drt/src/global.h index fbc5f64b4b5..adeda31331d 100644 --- a/src/drt/src/global.h +++ b/src/drt/src/global.h @@ -158,6 +158,4 @@ std::ostream& operator<<(std::ostream& os, const frNet& n); std::ostream& operator<<(std::ostream& os, const drNet& n); std::ostream& operator<<(std::ostream& os, const frMarker& m); -using utl::format_as; - } // namespace drt diff --git a/src/dst/src/BalancerConnection.cc b/src/dst/src/BalancerConnection.cc index 86abebf1180..196cf005b24 100644 --- a/src/dst/src/BalancerConnection.cc +++ b/src/dst/src/BalancerConnection.cc @@ -120,7 +120,7 @@ void BalancerConnection::handle_read(boost::system::error_code const& err, "Exception thrown: {}. worker with ip \"{}\" and " "port \"{}\" will be pushed back the queue.", ex.what(), - worker_address, + worker_address.to_string(), port); owner_->punishWorker(worker_address, port); failed_workers_trials++; diff --git a/src/dst/src/LoadBalancer.cc b/src/dst/src/LoadBalancer.cc index 570491371ab..c2918a28c85 100644 --- a/src/dst/src/LoadBalancer.cc +++ b/src/dst/src/LoadBalancer.cc @@ -31,7 +31,7 @@ void LoadBalancer::start_accept() while (!copy.empty()) { auto worker = copy.top(); logger_->report("Worker {}/{} handled {} jobs", - worker.ip, + worker.ip.to_string(), worker.port, worker.priority); copy.pop(); diff --git a/src/odb/include/odb/geom.h b/src/odb/include/odb/geom.h index 6f0aa896973..8fb31155811 100644 --- a/src/odb/include/odb/geom.h +++ b/src/odb/include/odb/geom.h @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -1418,8 +1419,12 @@ inline void Cuboid::print(const char* prefix) dz()); } -#ifndef SWIG -using utl::format_as; +#if !SWIG && FMT_VERSION >= 100000 +template +auto format_as(const T& value) -> decltype(utl::format_as(value)) +{ + return utl::format_as(value); +} #endif } // namespace odb diff --git a/src/odb/src/db/dbGuide.cpp b/src/odb/src/db/dbGuide.cpp index 31c372af280..e5603eabce7 100644 --- a/src/odb/src/db/dbGuide.cpp +++ b/src/odb/src/db/dbGuide.cpp @@ -12,6 +12,7 @@ #include "odb/db.h" // User Code Begin Includes #include +#include #include "dbBlock.h" #include "dbJournal.h" @@ -21,6 +22,18 @@ #include "utl/Logger.h" // User Code End Includes namespace odb { + +namespace { + +std::string rectToString(const Rect& rect) +{ + std::ostringstream stream; + stream << rect; + return stream.str(); +} + +} // namespace + template class dbTable<_dbGuide>; bool _dbGuide::operator==(const _dbGuide& rhs) const @@ -163,7 +176,7 @@ dbGuide* dbGuide::create(dbNet* net, "EDIT: create dbGuide at id {}, in layer {} box {}", guide->getOID(), layer->getName(), - box); + rectToString(box)); if (block->journal_) { block->journal_->beginAction(dbJournal::kCreateObject); @@ -202,7 +215,7 @@ void dbGuide::destroy(dbGuide* guide) "EDIT: delete dbGuide at id {}, in layer {} box {}", guide->getId(), guide->getLayer()->getName(), - guide->getBox()); + rectToString(guide->getBox())); if (block->journal_) { block->journal_->beginAction(dbJournal::kDeleteObject); diff --git a/src/odb/src/db/dbJournal.cpp b/src/odb/src/db/dbJournal.cpp index aaf1406dfc0..7acfef79637 100644 --- a/src/odb/src/db/dbJournal.cpp +++ b/src/odb/src/db/dbJournal.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include "dbBTerm.h" #include "dbBlock.h" @@ -24,6 +25,17 @@ namespace odb { +namespace { + +std::string rectToString(const Rect& rect) +{ + std::ostringstream stream; + stream << rect; + return stream.str(); +} + +} // namespace + dbJournal::dbJournal(dbBlock* block) : block_(block), logger_(block->getImpl()->getLogger()), log_(logger_) { @@ -1782,7 +1794,7 @@ void dbJournal::undo_createObject() "UNDO ECO: create dbGuide at id {}, in layer {} box {}", guide_id, guide->getLayer()->getName(), - guide->getBox()); + rectToString(guide->getBox())); dbGuide::destroy(guide); break; } @@ -1966,7 +1978,7 @@ void dbJournal::undo_deleteObject() "UNDO ECO: delete dbGuide at new id {}, in layer {} box {}", guide->getId(), layer->getName(), - guide->getBox()); + rectToString(guide->getBox())); break; } diff --git a/src/utl/include/utl/Logger.h b/src/utl/include/utl/Logger.h index f18dd474ca2..ad4849aaf45 100644 --- a/src/utl/include/utl/Logger.h +++ b/src/utl/include/utl/Logger.h @@ -37,6 +37,51 @@ namespace utl { +namespace detail { + +#if SWIG + +template +const T& logArg(const T& arg) +{ + return arg; +} + +#else + +template +struct is_ostreamable : std::false_type +{ +}; + +template +struct is_ostreamable< + T, + std::void_t() + << std::declval())>> : std::true_type +{ +}; + +template +decltype(auto) logArg(const T& arg) +{ +#if FMT_VERSION >= 80000 + using Arg = std::decay_t; + if constexpr (fmt::is_formattable::value) { + return arg; + } else +#endif + if constexpr (is_ostreamable::value) { + return fmt::streamed(arg); + } else { + return arg; + } +} + +#endif + +} // namespace detail + class PrometheusMetricsServer; class PrometheusRegistry; @@ -111,7 +156,7 @@ class Logger { logger_->log(spdlog::level::level_enum::off, FMT_RUNTIME(message + spdlog::details::os::default_eol), - args...); + detail::logArg(args)...); } // Reports a string literal with no interpolation or newline. @@ -136,7 +181,7 @@ class Logger level_names[spdlog::level::level_enum::debug], tool_names_[tool], group, - args...); + detail::logArg(args)...); logger_->flush(); } @@ -291,7 +336,7 @@ class Logger level_names[level], tool_names_[tool], id, - args...); + detail::logArg(args)...); return; } diff --git a/src/utl/src/timer.cpp b/src/utl/src/timer.cpp index e4812d5aaef..2fac84e7bcd 100644 --- a/src/utl/src/timer.cpp +++ b/src/utl/src/timer.cpp @@ -5,12 +5,24 @@ #include #include +#include #include #include "utl/Logger.h" namespace utl { +namespace { + +std::string timerToString(const Timer& timer) +{ + std::ostringstream stream; + stream << timer; + return stream.str(); +} + +} // namespace + void Timer::reset() { start_ = Clock::now(); @@ -76,7 +88,7 @@ DebugScopedTimer::DebugScopedTimer(double& aggregate) DebugScopedTimer::~DebugScopedTimer() { if (logger_) { - debugPrint(logger_, tool_, group_, level_, msg_, *this); + debugPrint(logger_, tool_, group_, level_, msg_, timerToString(*this)); } if (aggregate_) { *aggregate_ += elapsed(); From d555998665ec6d5dba1a436d671af57dad668f00 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Thu, 26 Feb 2026 16:20:42 -0800 Subject: [PATCH 02/25] Optimize exact global routing hot paths Reuse 2D maze scratch storage across iterations, retain capacity in hot route containers, replace the linear-search 2D decrease-key path with an indexed heap, and plumb OpenRoad thread count into safe read-only GRT/FastRoute reductions. Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/OpenRoad.cc | 3 + src/grt/include/grt/GlobalRouter.h | 2 + src/grt/src/GlobalRouter.cpp | 18 ++- src/grt/src/fastroute/include/FastRoute.h | 12 ++ src/grt/src/fastroute/src/FastRoute.cpp | 57 +++++++--- src/grt/src/fastroute/src/maze.cpp | 127 +++++++++++++--------- 6 files changed, 151 insertions(+), 68 deletions(-) diff --git a/src/OpenRoad.cc b/src/OpenRoad.cc index d4d92bb59a1..0f9fab1c993 100644 --- a/src/OpenRoad.cc +++ b/src/OpenRoad.cc @@ -662,6 +662,9 @@ void OpenRoad::setThreadCount(int threads, bool print_info) // place limits on tools with threads sta_->setThreadCount(threads_); + if (global_router_ != nullptr) { + global_router_->setNumThreads(threads_); + } } void OpenRoad::setThreadCount(const char* threads, bool print_info) diff --git a/src/grt/include/grt/GlobalRouter.h b/src/grt/include/grt/GlobalRouter.h index 0c63a522498..2bf6aaa743b 100644 --- a/src/grt/include/grt/GlobalRouter.h +++ b/src/grt/include/grt/GlobalRouter.h @@ -159,6 +159,7 @@ class GlobalRouter { skip_large_fanout_ = skip_large_fanout; }; + void setNumThreads(int num_threads); void setInfiniteCapacity(bool infinite_capacity); @@ -523,6 +524,7 @@ class GlobalRouter int congestion_report_iter_step_; bool allow_congestion_; bool resistance_aware_{false}; + int num_threads_; std::vector vertical_capacities_; std::vector horizontal_capacities_; int macro_extension_; diff --git a/src/grt/src/GlobalRouter.cpp b/src/grt/src/GlobalRouter.cpp index 4fd1d27ef1b..3bb4d2cf05c 100644 --- a/src/grt/src/GlobalRouter.cpp +++ b/src/grt/src/GlobalRouter.cpp @@ -86,6 +86,7 @@ GlobalRouter::GlobalRouter(utl::Logger* logger, adjustment_(0.0), congestion_report_iter_step_(0), allow_congestion_(false), + num_threads_(1), macro_extension_(0), initialized_(false), total_diodes_count_(0), @@ -109,6 +110,12 @@ GlobalRouter::GlobalRouter(utl::Logger* logger, cugr_ = new CUGR(db_, logger_, callback_handler_, stt_builder_, sta_); } +void GlobalRouter::setNumThreads(int num_threads) +{ + num_threads_ = num_threads; + fastroute_->setNumThreads(num_threads_); +} + void GlobalRouter::initGui(std::unique_ptr routing_congestion_data_source, std::unique_ptr @@ -3728,9 +3735,16 @@ int GlobalRouter::computeNetWirelength(odb::dbNet* db_net) void GlobalRouter::computeWirelength() { + std::vector routed_nets; + routed_nets.reserve(routes_.size()); + for (const auto& [db_net, route] : routes_) { + routed_nets.push_back(db_net); + } + int64_t total_wirelength = 0; - for (auto& net_route : routes_) { - total_wirelength += computeNetWirelength(net_route.first); +#pragma omp parallel for num_threads(num_threads_) reduction(+ : total_wirelength) + for (int i = 0; i < static_cast(routed_nets.size()); i++) { + total_wirelength += computeNetWirelength(routed_nets[i]); } logger_->metric("global_route__wirelength", total_wirelength / block_->getDefUnits()); diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index f90b7dad480..742d57360db 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -228,6 +228,7 @@ class FastRouteCore void setCongestionReportFile(const char* congestion_file_name); void setGridMax(int x_max, int y_max); void setDetourPenalty(int penalty); + void setNumThreads(int num_threads) { num_threads_ = num_threads; } void getCongestionNets(std::set& congestion_nets); void computeCongestionInformation(); std::vector getOriginalResources(); @@ -623,6 +624,7 @@ class FastRouteCore std::string congestion_file_name_; std::vector layer_directions_; std::vector db_layers_; + int num_threads_; int x_range_; int y_range_; @@ -722,6 +724,16 @@ class FastRouteCore std::vector net_ids_; + // Maze 2D variables + std::vector pop_heap2_2D_; + std::vector src_heap_2D_; + std::vector src_heap_pos_2D_; + std::vector dest_heap_2D_; + multi_array d1_2D_; + multi_array d2_2D_; + std::vector visited_2D_; + std::vector queue_2D_; + // Maze 3D variables multi_array directions_3D_; multi_array corr_edge_3D_; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 038ed8527da..062f8643022 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -34,6 +34,7 @@ FastRouteCore::FastRouteCore(odb::dbDatabase* db, db_(db), overflow_iterations_(0), congestion_report_iter_step_(0), + num_threads_(1), x_range_(0), y_range_(0), num_adjust_(0), @@ -191,12 +192,26 @@ void FastRouteCore::setGridsAndLayers(int x, int y, int nLayers) cost_v_test_.resize(x_range_); // Vertical segment cost cost_tb_test_.resize(x_range_); // Top and bottom boundary cost + // maze2D variables + int64 total_size = static_cast(y_grid_) * x_range_; + pop_heap2_2D_.resize(total_size, false); + + total_size = static_cast(y_grid_) * x_grid_; + src_heap_2D_.resize(total_size); + total_size = static_cast(y_range_) * x_range_; + src_heap_pos_2D_.assign(total_size, -1); + total_size = static_cast(y_grid_) * x_grid_; + dest_heap_2D_.resize(total_size); + + d1_2D_.resize(boost::extents[y_range_][x_range_]); + d2_2D_.resize(boost::extents[y_range_][x_range_]); + // maze3D variables directions_3D_.resize(boost::extents[num_layers_][y_grid_][x_grid_]); corr_edge_3D_.resize(boost::extents[num_layers_][y_grid_][x_grid_]); pr_3D_.resize(boost::extents[num_layers_][y_grid_][x_grid_]); - int64 total_size = static_cast(num_layers_) * y_range_ * x_range_; + total_size = static_cast(num_layers_) * y_range_ * x_range_; pop_heap2_3D_.resize(total_size, false); // allocate memory for priority queue @@ -2020,22 +2035,25 @@ void FastRouteCore::setDetourPenalty(int penalty) std::vector FastRouteCore::getOriginalResources() { std::vector original_resources(num_layers_); +#pragma omp parallel for num_threads(num_threads_) for (int l = 0; l < num_layers_; l++) { + int original_resource = 0; bool is_horizontal = layer_directions_[l] == odb::dbTechLayerDir::HORIZONTAL; if (is_horizontal) { for (int i = 0; i < y_grid_; i++) { for (int j = 0; j < x_grid_ - 1; j++) { - original_resources[l] += h_edges_3D_[l][i][j].real_cap; + original_resource += h_edges_3D_[l][i][j].real_cap; } } } else { for (int i = 0; i < y_grid_ - 1; i++) { for (int j = 0; j < x_grid_; j++) { - original_resources[l] += v_edges_3D_[l][i][j].real_cap; + original_resource += v_edges_3D_[l][i][j].real_cap; } } } + original_resources[l] = original_resource; } return original_resources; @@ -2049,39 +2067,46 @@ void FastRouteCore::computeCongestionInformation() max_h_overflow_.resize(num_layers_); max_v_overflow_.resize(num_layers_); +#pragma omp parallel for num_threads(num_threads_) for (int l = 0; l < num_layers_; l++) { - cap_per_layer_[l] = 0; - usage_per_layer_[l] = 0; - overflow_per_layer_[l] = 0; - max_h_overflow_[l] = 0; - max_v_overflow_[l] = 0; + int cap_per_layer = 0; + int usage_per_layer = 0; + int overflow_per_layer = 0; + int max_h_overflow = 0; + int max_v_overflow = 0; for (int i = 0; i < y_grid_; i++) { for (int j = 0; j < x_grid_ - 1; j++) { - cap_per_layer_[l] += h_edges_3D_[l][i][j].cap; - usage_per_layer_[l] += h_edges_3D_[l][i][j].usage; + cap_per_layer += h_edges_3D_[l][i][j].cap; + usage_per_layer += h_edges_3D_[l][i][j].usage; const int overflow = h_edges_3D_[l][i][j].usage - h_edges_3D_[l][i][j].cap; if (overflow > 0) { - overflow_per_layer_[l] += overflow; - max_h_overflow_[l] = std::max(max_h_overflow_[l], overflow); + overflow_per_layer += overflow; + max_h_overflow = std::max(max_h_overflow, overflow); } } } for (int i = 0; i < y_grid_ - 1; i++) { for (int j = 0; j < x_grid_; j++) { - cap_per_layer_[l] += v_edges_3D_[l][i][j].cap; - usage_per_layer_[l] += v_edges_3D_[l][i][j].usage; + cap_per_layer += v_edges_3D_[l][i][j].cap; + usage_per_layer += v_edges_3D_[l][i][j].usage; const int overflow = v_edges_3D_[l][i][j].usage - v_edges_3D_[l][i][j].cap; if (overflow > 0) { - overflow_per_layer_[l] += overflow; - max_v_overflow_[l] = std::max(max_v_overflow_[l], overflow); + overflow_per_layer += overflow; + max_v_overflow = std::max(max_v_overflow, overflow); } } } + + cap_per_layer_[l] = cap_per_layer; + usage_per_layer_[l] = usage_per_layer; + overflow_per_layer_[l] = overflow_per_layer; + max_h_overflow_[l] = max_h_overflow; + max_v_overflow_[l] = max_v_overflow; } } diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 1b0983f5fa8..8a0b924ea08 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -410,7 +410,25 @@ void FastRouteCore::convertToMazeroute() } // non recursive version of heapify -static void heapify(std::vector& array) +constexpr int kNotInHeap = -1; + +static int heapIndex(double* base, double* entry) +{ + return static_cast(entry - base); +} + +static void clearHeapPositions(std::vector& array, + std::vector& heap_pos, + double* base) +{ + for (double* entry : array) { + heap_pos[heapIndex(base, entry)] = kNotInHeap; + } +} + +static void heapify(std::vector& array, + std::vector& heap_pos, + double* base) { bool stop = false; const int heapSize = array.size(); @@ -435,31 +453,48 @@ static void heapify(std::vector& array) } if (smallest != i) { array[i] = array[smallest]; + heap_pos[heapIndex(base, array[i])] = i; i = smallest; } else { array[i] = tmp; + heap_pos[heapIndex(base, tmp)] = i; stop = true; } } while (!stop); } -static void updateHeap(std::vector& array, int i) +static void updateHeap(std::vector& array, + std::vector& heap_pos, + double* base, + int i) { double* tmpi = array[i]; while (i > 0 && *(array[parent_index(i)]) > *tmpi) { const int parent = parent_index(i); array[i] = array[parent]; + heap_pos[heapIndex(base, array[i])] = i; i = parent; } array[i] = tmpi; + heap_pos[heapIndex(base, tmpi)] = i; } // remove the entry with minimum distance from Priority queue -static void removeMin(std::vector& array) +static void removeMin(std::vector& array, + std::vector& heap_pos, + double* base) { + double* removed = array[0]; + if (array.size() == 1) { + heap_pos[heapIndex(base, removed)] = kNotInHeap; + array.pop_back(); + return; + } + array[0] = array.back(); - heapify(array); + heapify(array, heap_pos, base); array.pop_back(); + heap_pos[heapIndex(base, removed)] = kNotInHeap; } // ripup a tree edge according to its ripup type and Z-route it @@ -510,8 +545,10 @@ void FastRouteCore::setupHeap(const int netID, } else { // net with more than 2 pins const int numNodes = sttrees_[netID].num_nodes(); - std::vector visited(numNodes, false); - std::vector queue(numNodes); + visited_2D_.assign(numNodes, false); + queue_2D_.resize(numNodes); + auto& visited = visited_2D_; + auto& queue = queue_2D_; // find all the grids on tree edges in subtree t1 (connecting to n1) and put // them into src_heap @@ -774,12 +811,7 @@ bool FastRouteCore::updateRouteType1(const int net_id, } // reallocate memory for route.gridsX and route.gridsY - if (treeedges[edge_n1A1].route.type - == RouteType::MazeRoute) // if originally allocated, free them first - { - treeedges[edge_n1A1].route.grids.clear(); - } - treeedges[edge_n1A1].route.grids.resize(E1_pos + 1); + treeedges[edge_n1A1].route.grids.assign(E1_pos + 1, GPoint3D{}); if (A1x <= E1x) { int cnt = 0; @@ -806,12 +838,8 @@ bool FastRouteCore::updateRouteType1(const int net_id, treeedges[edge_n1A1].len = abs(A1x - E1x) + abs(A1y - E1y); // reallocate memory for route.gridsX and route.gridsY - if (treeedges[edge_n1A2].route.type - == RouteType::MazeRoute) // if originally allocated, free them first - { - treeedges[edge_n1A2].route.grids.clear(); - } - treeedges[edge_n1A2].route.grids.resize(cnt_n1A1 + cnt_n1A2 - E1_pos - 1); + treeedges[edge_n1A2].route.grids.assign( + cnt_n1A1 + cnt_n1A2 - E1_pos - 1, GPoint3D{}); int cnt = 0; if (E1x <= A2x) { @@ -899,12 +927,9 @@ bool FastRouteCore::updateRouteType2(const int net_id, // combine grids on original (A1, n1) and (n1, A2) to new (A1, A2) // allocate memory for grids[].x and grids[].y of edge_A1A2 - if (treeedges[edge_A1A2].route.type == RouteType::MazeRoute) { - treeedges[edge_A1A2].route.grids.clear(); - } const int len_A1A2 = cnt_n1A1 + cnt_n1A2 - 1; - treeedges[edge_A1A2].route.grids.resize(len_A1A2); + treeedges[edge_A1A2].route.grids.assign(len_A1A2, GPoint3D{}); treeedges[edge_A1A2].route.routelen = len_A1A2 - 1; treeedges[edge_A1A2].len = abs(A1x - A2x) + abs(A1y - A2y); @@ -946,19 +971,13 @@ bool FastRouteCore::updateRouteType2(const int net_id, } // allocate memory for grids[].x and grids[].y of edge_n1C1 and edge_n1C2 - if (treeedges[edge_n1C1].route.type == RouteType::MazeRoute) { - treeedges[edge_n1C1].route.grids.clear(); - } const int len_n1C1 = E1_pos + 1; - treeedges[edge_n1C1].route.grids.resize(len_n1C1); + treeedges[edge_n1C1].route.grids.assign(len_n1C1, GPoint3D{}); treeedges[edge_n1C1].route.routelen = len_n1C1 - 1; treeedges[edge_n1C1].len = abs(C1x - E1x) + abs(C1y - E1y); - if (treeedges[edge_n1C2].route.type == RouteType::MazeRoute) { - treeedges[edge_n1C2].route.grids.clear(); - } const int len_n1C2 = cnt_C1C2 - E1_pos; - treeedges[edge_n1C2].route.grids.resize(len_n1C2); + treeedges[edge_n1C2].route.grids.assign(len_n1C2, GPoint3D{}); treeedges[edge_n1C2].route.routelen = len_n1C2 - 1; treeedges[edge_n1C2].len = abs(C2x - E1x) + abs(C2y - E1y); @@ -1052,10 +1071,14 @@ void FastRouteCore::mazeRouteMSMD(const int iter, const int max_usage_multiplier = 40; - for (int i = 0; i < max_usage_multiplier * h_capacity_; i++) { + const int max_h_usage = max_usage_multiplier * h_capacity_; + h_cost_table_.reserve(max_h_usage); + for (int i = 0; i < max_h_usage; i++) { h_cost_table_.push_back(getCost(i, true, cost_params)); } - for (int i = 0; i < max_usage_multiplier * v_capacity_; i++) { + const int max_v_usage = max_usage_multiplier * v_capacity_; + v_cost_table_.reserve(max_v_usage); + for (int i = 0; i < max_v_usage; i++) { v_cost_table_.push_back(getCost(i, false, cost_params)); } @@ -1072,15 +1095,18 @@ void FastRouteCore::mazeRouteMSMD(const int iter, StNetOrder(); } - std::vector src_heap; - std::vector dest_heap; - src_heap.reserve(y_grid_ * x_grid_); - dest_heap.reserve(y_grid_ * x_grid_); + auto& src_heap = src_heap_2D_; + auto& src_heap_pos = src_heap_pos_2D_; + auto& dest_heap = dest_heap_2D_; + auto& d1 = d1_2D_; + auto& d2 = d2_2D_; + auto& pop_heap2 = pop_heap2_2D_; + double* d1_base = &d1[0][0]; - multi_array d1(boost::extents[y_range_][x_range_]); - multi_array d2(boost::extents[y_range_][x_range_]); - - std::vector pop_heap2(y_grid_ * x_range_, false); + std::fill(src_heap_pos.begin(), src_heap_pos.end(), kNotInHeap); + src_heap.clear(); + dest_heap.clear(); + std::fill(pop_heap2.begin(), pop_heap2.end(), false); /** * @brief Updates the cost of an adjacent grid if the new cost is lower, @@ -1112,14 +1138,13 @@ void FastRouteCore::mazeRouteMSMD(const int iter, if (adj_cost >= BIG_INT) { // neighbor has not been put into src_heap src_heap.push_back(&d1[adj_y][adj_x]); - updateHeap(src_heap, src_heap.size() - 1); + updateHeap(src_heap, src_heap_pos, d1_base, src_heap.size() - 1); } else if (adj_cost > cost) { // neighbor has been put into src_heap // but needs update double* dtmp = &d1[adj_y][adj_x]; - const auto it = std::ranges::find(src_heap, dtmp); - if (it != src_heap.end()) { - const int pos = it - src_heap.begin(); - updateHeap(src_heap, pos); + const int pos = src_heap_pos[heapIndex(d1_base, dtmp)]; + if (pos != kNotInHeap && src_heap[pos] == dtmp) { + updateHeap(src_heap, src_heap_pos, d1_base, pos); } else { logger_->error( GRT, @@ -1257,6 +1282,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, // setup src_heap, dest_heap and initialize d1[][] and d2[][] for all the // grids on the two subtrees + clearHeapPositions(src_heap, src_heap_pos, d1_base); setupHeap(netID, edgeID, src_heap, @@ -1267,6 +1293,10 @@ void FastRouteCore::mazeRouteMSMD(const int iter, regionX2, regionY1, regionY2); + const int src_heap_size = static_cast(src_heap.size()); + for (int slot = 0; slot < src_heap_size; slot++) { + src_heap_pos[heapIndex(d1_base, src_heap[slot])] = slot; + } // while loop to find shortest path int ind1 = (src_heap[0] - &d1[0][0]); @@ -1291,7 +1321,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, : parent_y3_[curY][curX]; } - removeMin(src_heap); + removeMin(src_heap, src_heap_pos, d1_base); if (curX > regionX1) { // left relaxAdjacent( @@ -1686,10 +1716,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, } // n2 is not a pin and E2!=n2 // update route for edge (n1, n2) and edge usage - if (treeedges[edge_n1n2].route.type == RouteType::MazeRoute) { - treeedges[edge_n1n2].route.grids.clear(); - } - treeedges[edge_n1n2].route.grids.resize(cnt_n1n2); + treeedges[edge_n1n2].route.grids.assign(cnt_n1n2, GPoint3D{}); treeedges[edge_n1n2].route.type = RouteType::MazeRoute; treeedges[edge_n1n2].route.routelen = cnt_n1n2 - 1; treeedges[edge_n1n2].len = abs(E1x - E2x) + abs(E1y - E2y); From a2dca401b54bdc2eaa1918c1ceee400bbc344a5f Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Thu, 26 Feb 2026 18:37:23 -0800 Subject: [PATCH 03/25] Finalize exact-track instrumentation and validation Complete the remaining exact-track work from optimize_global_route.md by adding phase timing instrumentation in FastRouteCore::run and a focused threaded grt regression. The FastRoute change wraps the major routing phases with DebugScopedTimer scopes and emits phase metrics for the exact-preserving path without changing existing routing behavior or the normal verbose report surface. The new timings cover the full run, initial RSMT, initial routeLAll, congestion-driven RSMT, via-guided routeLAll, spiral routing, initial routeZAll, monotonic routing, overflow iterations, and finalization. The test change adds src/grt/test/thread_count_reports.tcl, which runs global_route -verbose at thread counts 1 and 2 and compares only the reporting paths that were newly parallelized: the routing resources analysis block, the final congestion report block, and the total wirelength line. CMake wires it in as a pass/fail regression, and Bazel uses an explicit regression_test target with check_passfail=True instead of the default log-diff flow. The earlier indexed 2D decrease-key heap experiment was not a win on the stress profile, so this final exact-track state drops A1 and keeps the scratch reuse, capacity retention, timing, and reporting-threading work that held up under profiling. Validation: - git -c core.fsmonitor=false diff --check - dev-cpu-boron rebuild of build-linux-tests after reconfiguring against /root/openroad-deps completed successfully - ctest --output-on-failure -R '^grt\.thread_count_reports\.tcl$|^grt\.report_wire_length1\.tcl$' passed (2/2) - ctest -N confirmed grt.thread_count_reports.tcl registration - stress-case gprof on shuffle_stress showed the A1 rollback recovered the prior regression Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/grt/src/fastroute/include/FastRoute.h | 1 - src/grt/src/fastroute/src/FastRoute.cpp | 174 +++++++++++++++------- src/grt/src/fastroute/src/maze.cpp | 62 ++------ src/grt/test/BUILD | 7 + src/grt/test/CMakeLists.txt | 3 +- src/grt/test/thread_count_reports.tcl | 66 ++++++++ 6 files changed, 208 insertions(+), 105 deletions(-) create mode 100644 src/grt/test/thread_count_reports.tcl diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 742d57360db..75f4d27d5c5 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -727,7 +727,6 @@ class FastRouteCore // Maze 2D variables std::vector pop_heap2_2D_; std::vector src_heap_2D_; - std::vector src_heap_pos_2D_; std::vector dest_heap_2D_; multi_array d1_2D_; multi_array d2_2D_; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 062f8643022..9cbf881df57 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -20,10 +20,12 @@ #include "odb/geom.h" #include "stt/SteinerTreeBuilder.h" #include "utl/Logger.h" +#include "utl/timer.h" namespace grt { using utl::GRT; +using utl::DebugScopedTimer; FastRouteCore::FastRouteCore(odb::dbDatabase* db, utl::Logger* log, @@ -198,8 +200,6 @@ void FastRouteCore::setGridsAndLayers(int x, int y, int nLayers) total_size = static_cast(y_grid_) * x_grid_; src_heap_2D_.resize(total_size); - total_size = static_cast(y_range_) * x_range_; - src_heap_pos_2D_.assign(total_size, -1); total_size = static_cast(y_grid_) * x_grid_; dest_heap_2D_.resize(total_size); @@ -1347,6 +1347,19 @@ NetRouteMap FastRouteCore::run() return getRoutes(); } + double total_run_time = 0.0; + double initial_rsmt_time = 0.0; + double route_l_time = 0.0; + double congestion_rsmt_time = 0.0; + double new_route_l_time = 0.0; + double spiral_time = 0.0; + double route_z_time = 0.0; + double monotonic_time = 0.0; + double overflow_iterations_time = 0.0; + double finalization_time = 0.0; + const DebugScopedTimer total_timer( + total_run_time, logger_, GRT, "timer", 1, "FastRoute run: {}"); + graph2d_.clearUsed(); preProcessTechLayers(); @@ -1395,39 +1408,67 @@ NetRouteMap FastRouteCore::run() // call FLUTE to generate RSMT and break the nets into segments (2-pin nets) via_cost_ = 0; - gen_brk_RSMT(false, false, false, false, noADJ); + { + const DebugScopedTimer timer( + initial_rsmt_time, logger_, GRT, "timer", 1, "Initial RSMT: {}"); + gen_brk_RSMT(false, false, false, false, noADJ); + } if (logger_->debugCheck(GRT, "grtSteps", 1)) { logger_->report("After RSMT"); } // First time L routing - routeLAll(true); + { + const DebugScopedTimer timer( + route_l_time, logger_, GRT, "timer", 1, "Initial routeLAll: {}"); + routeLAll(true); + } if (logger_->debugCheck(GRT, "grtSteps", 1)) { logger_->report("After routeLAll"); } // Congestion-driven rip-up and reroute L - gen_brk_RSMT(true, true, true, false, noADJ); + { + const DebugScopedTimer timer(congestion_rsmt_time, + logger_, + GRT, + "timer", + 1, + "Congestion-driven RSMT: {}"); + gen_brk_RSMT(true, true, true, false, noADJ); + } getOverflow2D(&maxOverflow); if (logger_->debugCheck(GRT, "grtSteps", 1)) { logger_->report("After congestion-driven RSMT"); } // New rip-up and reroute L via-guided - newrouteLAll(false, true); + { + const DebugScopedTimer timer( + new_route_l_time, logger_, GRT, "timer", 1, "Via-guided routeLAll: {}"); + newrouteLAll(false, true); + } getOverflow2D(&maxOverflow); if (logger_->debugCheck(GRT, "grtSteps", 1)) { logger_->report("After newRouteLAll"); } // Rip-up and reroute using spiral route - spiralRouteAll(); + { + const DebugScopedTimer timer( + spiral_time, logger_, GRT, "timer", 1, "Spiral routing: {}"); + spiralRouteAll(); + } if (logger_->debugCheck(GRT, "grtSteps", 1)) { logger_->report("After spiralRouteAll"); } // Rip-up a tree edge according to its ripup type and Z-route it - newrouteZAll(10); + { + const DebugScopedTimer timer( + route_z_time, logger_, GRT, "timer", 1, "Initial routeZAll: {}"); + newrouteZAll(10); + } int past_cong = getOverflow2D(&maxOverflow); if (logger_->debugCheck(GRT, "grtSteps", 1)) { @@ -1451,6 +1492,8 @@ NetRouteMap FastRouteCore::run() } for (int i = 0; i < LVIter; i++) { + const DebugScopedTimer timer( + monotonic_time, logger_, GRT, "timer", 1, "Monotonic routing: {}"); logistic_coef = 2.0 / (1 + log(maxOverflow)); debugPrint(logger_, GRT, @@ -1506,12 +1549,19 @@ NetRouteMap FastRouteCore::run() int overflow_increases = -1; int last_total_overflow = 0; float overflow_reduction_percent = -1; - while (total_overflow_ > 0 && i <= overflow_iterations_ - && overflow_increases <= max_overflow_increases) { - if (verbose_) { - logger_->info( - GRT, 102, "Start extra iteration {}/{}", i, overflow_iterations_); - } + { + const DebugScopedTimer timer(overflow_iterations_time, + logger_, + GRT, + "timer", + 1, + "Overflow iterations: {}"); + while (total_overflow_ > 0 && i <= overflow_iterations_ + && overflow_increases <= max_overflow_increases) { + if (verbose_) { + logger_->info( + GRT, 102, "Start extra iteration {}/{}", i, overflow_iterations_); + } if (THRESH_M > 15) { THRESH_M -= thStep1; @@ -1771,11 +1821,13 @@ NetRouteMap FastRouteCore::run() } } - // generate DRC report each interval - if (congestion_report_iter_step_ && i % congestion_report_iter_step_ == 0) { - saveCongestion(i); - } - } // end overflow iterations + // generate DRC report each interval + if (congestion_report_iter_step_ + && i % congestion_report_iter_step_ == 0) { + saveCongestion(i); + } + } // end overflow iterations + } // Debug mode Tree 2D after overflow iterations if (debug_->isOn() && debug_->tree2D) { @@ -1810,50 +1862,70 @@ NetRouteMap FastRouteCore::run() } } - freeRR(); + int finallength = 0; + int numVia = 0; + { + const DebugScopedTimer timer( + finalization_time, logger_, GRT, "timer", 1, "Finalization: {}"); + freeRR(); - removeLoops(); + removeLoops(); - getOverflow2Dmaze(&maxOverflow, &tUsage); + getOverflow2Dmaze(&maxOverflow, &tUsage); - layerAssignment(); + layerAssignment(); - if (logger_->debugCheck(GRT, "grtSteps", 1)) { - getOverflow3D(); - logger_->report("After LayerAssignment - 2D/3D cong: {}/{}", - past_cong, - total_overflow_); - } + if (logger_->debugCheck(GRT, "grtSteps", 1)) { + getOverflow3D(); + logger_->report("After LayerAssignment - 2D/3D cong: {}/{}", + past_cong, + total_overflow_); + } - costheight_ = 3; - via_cost_ = 1; + costheight_ = 3; + via_cost_ = 1; - if (past_cong == 0) { - // Increase ripup threshold if res-aware is enabled - if (enable_resistance_aware_) { - long_edge_len = BIG_INT; - short_edge_len = BIG_INT; + if (past_cong == 0) { + // Increase ripup threshold if res-aware is enabled + if (enable_resistance_aware_) { + long_edge_len = BIG_INT; + short_edge_len = BIG_INT; + } + + mazeRouteMSMDOrder3D(enlarge_, 0, long_edge_len); + mazeRouteMSMDOrder3D(enlarge_, 0, short_edge_len); } - mazeRouteMSMDOrder3D(enlarge_, 0, long_edge_len); - mazeRouteMSMDOrder3D(enlarge_, 0, short_edge_len); - } + // Disable estimate parasitics for grt incremental steps with + // resistance-aware strategy to prevent issues during repair design and + // repair timing + en_estimate_parasitics_ = false; - // Disable estimate parasitics for grt incremental steps with resistance-aware - // strategy to prevent issues during repair design and repair timing - en_estimate_parasitics_ = false; + if (logger_->debugCheck(GRT, "grtSteps", 1)) { + getOverflow3D(); + logger_->report("After MazeRoute3D - 3Dcong: {}", total_overflow_); + } - if (logger_->debugCheck(GRT, "grtSteps", 1)) { - getOverflow3D(); - logger_->report("After MazeRoute3D - 3Dcong: {}", total_overflow_); + fillVIA(); + finallength = getOverflow3D(); + numVia = threeDVIA(); + checkRoute3D(); + ensurePinCoverage(); } - fillVIA(); - const int finallength = getOverflow3D(); - const int numVia = threeDVIA(); - checkRoute3D(); - ensurePinCoverage(); - + logger_->metric("global_route__fastroute__run_s", total_run_time); + logger_->metric("global_route__fastroute__initial_rsmt_s", initial_rsmt_time); + logger_->metric("global_route__fastroute__route_l_s", route_l_time); + logger_->metric("global_route__fastroute__congestion_rsmt_s", + congestion_rsmt_time); + logger_->metric("global_route__fastroute__new_route_l_s", new_route_l_time); + logger_->metric("global_route__fastroute__spiral_s", spiral_time); + logger_->metric("global_route__fastroute__route_z_s", route_z_time); + logger_->metric("global_route__fastroute__monotonic_s", monotonic_time); + logger_->metric("global_route__fastroute__overflow_iterations_s", + overflow_iterations_time); + logger_->metric("global_route__fastroute__finalization_s", + finalization_time); logger_->metric("global_route__vias", numVia); if (verbose_) { logger_->info(GRT, 111, "Final number of vias: {}", numVia); diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 8a0b924ea08..08b38d38b77 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -410,25 +410,7 @@ void FastRouteCore::convertToMazeroute() } // non recursive version of heapify -constexpr int kNotInHeap = -1; - -static int heapIndex(double* base, double* entry) -{ - return static_cast(entry - base); -} - -static void clearHeapPositions(std::vector& array, - std::vector& heap_pos, - double* base) -{ - for (double* entry : array) { - heap_pos[heapIndex(base, entry)] = kNotInHeap; - } -} - -static void heapify(std::vector& array, - std::vector& heap_pos, - double* base) +static void heapify(std::vector& array) { bool stop = false; const int heapSize = array.size(); @@ -453,48 +435,31 @@ static void heapify(std::vector& array, } if (smallest != i) { array[i] = array[smallest]; - heap_pos[heapIndex(base, array[i])] = i; i = smallest; } else { array[i] = tmp; - heap_pos[heapIndex(base, tmp)] = i; stop = true; } } while (!stop); } -static void updateHeap(std::vector& array, - std::vector& heap_pos, - double* base, - int i) +static void updateHeap(std::vector& array, int i) { double* tmpi = array[i]; while (i > 0 && *(array[parent_index(i)]) > *tmpi) { const int parent = parent_index(i); array[i] = array[parent]; - heap_pos[heapIndex(base, array[i])] = i; i = parent; } array[i] = tmpi; - heap_pos[heapIndex(base, tmpi)] = i; } // remove the entry with minimum distance from Priority queue -static void removeMin(std::vector& array, - std::vector& heap_pos, - double* base) +static void removeMin(std::vector& array) { - double* removed = array[0]; - if (array.size() == 1) { - heap_pos[heapIndex(base, removed)] = kNotInHeap; - array.pop_back(); - return; - } - array[0] = array.back(); - heapify(array, heap_pos, base); + heapify(array); array.pop_back(); - heap_pos[heapIndex(base, removed)] = kNotInHeap; } // ripup a tree edge according to its ripup type and Z-route it @@ -1096,14 +1061,11 @@ void FastRouteCore::mazeRouteMSMD(const int iter, } auto& src_heap = src_heap_2D_; - auto& src_heap_pos = src_heap_pos_2D_; auto& dest_heap = dest_heap_2D_; auto& d1 = d1_2D_; auto& d2 = d2_2D_; auto& pop_heap2 = pop_heap2_2D_; - double* d1_base = &d1[0][0]; - std::fill(src_heap_pos.begin(), src_heap_pos.end(), kNotInHeap); src_heap.clear(); dest_heap.clear(); std::fill(pop_heap2.begin(), pop_heap2.end(), false); @@ -1138,13 +1100,14 @@ void FastRouteCore::mazeRouteMSMD(const int iter, if (adj_cost >= BIG_INT) { // neighbor has not been put into src_heap src_heap.push_back(&d1[adj_y][adj_x]); - updateHeap(src_heap, src_heap_pos, d1_base, src_heap.size() - 1); + updateHeap(src_heap, src_heap.size() - 1); } else if (adj_cost > cost) { // neighbor has been put into src_heap // but needs update double* dtmp = &d1[adj_y][adj_x]; - const int pos = src_heap_pos[heapIndex(d1_base, dtmp)]; - if (pos != kNotInHeap && src_heap[pos] == dtmp) { - updateHeap(src_heap, src_heap_pos, d1_base, pos); + const auto it = std::ranges::find(src_heap, dtmp); + if (it != src_heap.end()) { + const int pos = it - src_heap.begin(); + updateHeap(src_heap, pos); } else { logger_->error( GRT, @@ -1282,7 +1245,6 @@ void FastRouteCore::mazeRouteMSMD(const int iter, // setup src_heap, dest_heap and initialize d1[][] and d2[][] for all the // grids on the two subtrees - clearHeapPositions(src_heap, src_heap_pos, d1_base); setupHeap(netID, edgeID, src_heap, @@ -1293,10 +1255,6 @@ void FastRouteCore::mazeRouteMSMD(const int iter, regionX2, regionY1, regionY2); - const int src_heap_size = static_cast(src_heap.size()); - for (int slot = 0; slot < src_heap_size; slot++) { - src_heap_pos[heapIndex(d1_base, src_heap[slot])] = slot; - } // while loop to find shortest path int ind1 = (src_heap[0] - &d1[0][0]); @@ -1321,7 +1279,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, : parent_y3_[curY][curX]; } - removeMin(src_heap, src_heap_pos, d1_base); + removeMin(src_heap); if (curX > regionX1) { // left relaxAdjacent( diff --git a/src/grt/test/BUILD b/src/grt/test/BUILD index 23d80fac412..6924ef29014 100644 --- a/src/grt/test/BUILD +++ b/src/grt/test/BUILD @@ -136,3 +136,10 @@ MANUAL_FOR_BAZEL_TESTS = [ data = [":test_resources"], tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS else [], ) for test_name in TESTS] + +regression_test( + name = "thread_count_reports", + check_log = False, + check_passfail = True, + data = [":test_resources"], +) diff --git a/src/grt/test/CMakeLists.txt b/src/grt/test/CMakeLists.txt index 3c9dfe5032f..98f88fc684a 100644 --- a/src/grt/test/CMakeLists.txt +++ b/src/grt/test/CMakeLists.txt @@ -98,5 +98,6 @@ or_integration_tests( upper_layer_net write_segments1 write_segments2 + PASSFAIL_TESTS + thread_count_reports ) - diff --git a/src/grt/test/thread_count_reports.tcl b/src/grt/test/thread_count_reports.tcl new file mode 100644 index 00000000000..b3e8414d073 --- /dev/null +++ b/src/grt/test/thread_count_reports.tcl @@ -0,0 +1,66 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +proc write_thread_report { output file_name } { + set stream [open $file_name w] + set section "" + set found_wirelength 0 + set found_resources 0 + set found_congestion 0 + + foreach line [split $output "\n"] { + if { $section eq "" } { + if { [regexp {Routing resources analysis:} $line] } { + set section "resources" + set found_resources 1 + puts $stream $line + } elseif { [regexp {Final congestion report:} $line] } { + set section "congestion" + set found_congestion 1 + puts $stream $line + } elseif { [regexp {Total wirelength:} $line] } { + set found_wirelength 1 + puts $stream $line + } + } else { + puts $stream $line + if { $line eq "" } { + set section "" + } + } + } + + close $stream + + if { !$found_resources || !$found_congestion || !$found_wirelength } { + utl::error GRT 705 \ + "Failed to capture threaded global-route report output." + } +} + +proc capture_thread_report { thread_count prefix } { + set_thread_count $thread_count + + set output "" + tee -variable output -quiet {global_route -verbose} + + set raw_file [make_result_file "${prefix}.raw.rpt"] + set stream [open $raw_file w] + puts -nonewline $stream $output + close $stream + + set report_file [make_result_file "${prefix}.rpt"] + write_thread_report $output $report_file + return $report_file +} + +set report_file1 [capture_thread_report 1 thread_count_reports1] +set report_file2 [capture_thread_report 2 thread_count_reports2] + +if { [diff_files $report_file1 $report_file2] != 0 } { + exit 1 +} + +puts "pass" +exit 0 From 5a067a933d22213f8cc0e0287fa3e390d42ba673 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Mon, 2 Mar 2026 09:03:40 -0800 Subject: [PATCH 04/25] grt: add Track B multicore routing Add the optional Track B multicore global routing path to FastRoute. The new path batches contiguous nets against frozen planar congestion snapshots, routes each batch on worker copies, commits results deterministically, and falls back to bounded serial cleanup later in overflow reduction. The default path remains the existing serial route flow unless `global_route -multicore` is enabled. Expose the Track B surface through the Tcl, SWIG, and GlobalRouter plumbing, and add the internal FastRoute helpers needed to build snapshot workers, copy planar routing state, and apply routed batches back into the main overflow loop. Add Graph2D routing-state copy support and Track B timing metrics so the new path can be measured without changing the default router behavior. Keep the measured multicore taper behavior baked into the implementation instead of exposing runtime tuning knobs. The final tree uses the validated 25/50/75 taper trajectory and always uses the built-in thread-count heuristic for snapshot batch sizing inside Track B. Local benchmark, regression, profiling, and initiative artifacts are intentionally kept out of the git tree. This commit carries only the product code and user-facing command documentation that back the optional Track B path. - add the `-multicore` opt-in routing control - implement snapshot-batch workers and deterministic batch commit order in `FastRouteCore` - copy planar routing state into per-wave workers with `Graph2D::copyRoutingStateFrom` - bound late Track B cleanup with best-route snapshots and patience tracking - export snapshot batch sync, route, and apply metrics for profiling - route the new control through Tcl, SWIG, and `GlobalRouter` - keep the taper schedule fixed at the validated default operating point - always use the built-in batch-sizing heuristic inside Track B - document the new grt command option in the README Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/grt/README.md | 2 + src/grt/include/grt/GlobalRouter.h | 2 + src/grt/src/GlobalRouter.cpp | 6 + src/grt/src/GlobalRouter.i | 6 + src/grt/src/GlobalRouter.tcl | 8 +- src/grt/src/fastroute/include/FastRoute.h | 32 +++ src/grt/src/fastroute/include/Graph2D.h | 1 + src/grt/src/fastroute/src/FastRoute.cpp | 330 +++++++++++++++++++--- src/grt/src/fastroute/src/graph2d.cpp | 29 ++ src/grt/src/fastroute/src/maze.cpp | 164 +++++++++++ 10 files changed, 545 insertions(+), 35 deletions(-) diff --git a/src/grt/README.md b/src/grt/README.md index 5a45735f0da..c3c88386424 100644 --- a/src/grt/README.md +++ b/src/grt/README.md @@ -26,6 +26,7 @@ global_route [-critical_nets_percentage percent] [-skip_large_fanout_nets fanout] [-allow_congestion] + [-multicore] [-verbose] [-start_incremental] [-end_incremental] @@ -46,6 +47,7 @@ global_route | `-critical_nets_percentage` | Set the percentage of nets with the worst slack value that are considered timing critical, having preference over other nets during congestion iterations (e.g. `-critical_nets_percentage 30`). The default value is `0`, and the allowed values are integers `[0, MAX_INT]`. | | `-skip_large_fanout_nets` | Skips routing for nets with a fanout higher than the specified limit. Nets above this pin count threshold are ignored by the global router and will not have routing guides, meaning they will also be skipped during detailed routing. This option is useful in debugging or estimation flows where high-fanout nets (such as pre-CTS clock nets) can be ignored. The default value is 0, indicating no fanout limit. The default value is `MAX_INT`. The allowed values are integers `[0, MAX_INT]`. | | `-allow_congestion` | Allow global routing results to be generated with remaining congestion. The default is false. | +| `-multicore` | Enable the optional multicore Track B routing path. | | `-verbose` | This flag enables the full reporting of the global routing. | | `-start_incremental` | This flag initializes the GRT listener to get the net modified. The default is false. | | `-end_incremental` | This flag run incremental GRT with the nets modified. The default is false. | diff --git a/src/grt/include/grt/GlobalRouter.h b/src/grt/include/grt/GlobalRouter.h index 2bf6aaa743b..c0545efe72b 100644 --- a/src/grt/include/grt/GlobalRouter.h +++ b/src/grt/include/grt/GlobalRouter.h @@ -153,6 +153,7 @@ class GlobalRouter void setGridOrigin(int x, int y); void setAllowCongestion(bool allow_congestion); void setResistanceAware(bool resistance_aware); + void setMulticoreRouting(bool multicore_routing); void setMacroExtension(int macro_extension); void setUseCUGR(bool use_cugr) { use_cugr_ = use_cugr; }; void setSkipLargeFanoutNets(int skip_large_fanout) @@ -524,6 +525,7 @@ class GlobalRouter int congestion_report_iter_step_; bool allow_congestion_; bool resistance_aware_{false}; + bool multicore_routing_{false}; int num_threads_; std::vector vertical_capacities_; std::vector horizontal_capacities_; diff --git a/src/grt/src/GlobalRouter.cpp b/src/grt/src/GlobalRouter.cpp index 3bb4d2cf05c..316e77ffc1b 100644 --- a/src/grt/src/GlobalRouter.cpp +++ b/src/grt/src/GlobalRouter.cpp @@ -116,6 +116,11 @@ void GlobalRouter::setNumThreads(int num_threads) fastroute_->setNumThreads(num_threads_); } +void GlobalRouter::setMulticoreRouting(bool multicore_routing) +{ + multicore_routing_ = multicore_routing; +} + void GlobalRouter::initGui(std::unique_ptr routing_congestion_data_source, std::unique_ptr @@ -2256,6 +2261,7 @@ void GlobalRouter::configFastRoute() fastroute_->setOverflowIterations(congestion_iterations_); fastroute_->setCongestionReportIterStep(congestion_report_iter_step_); fastroute_->setResistanceAware(resistance_aware_); + fastroute_->setMulticoreRouting(multicore_routing_); if (congestion_file_name_ != nullptr) { fastroute_->setCongestionReportFile(congestion_file_name_); diff --git a/src/grt/src/GlobalRouter.i b/src/grt/src/GlobalRouter.i index b2bf180bbb8..7eeced7d3fc 100644 --- a/src/grt/src/GlobalRouter.i +++ b/src/grt/src/GlobalRouter.i @@ -110,6 +110,12 @@ set_resistance_aware(bool resistance_aware) getGlobalRouter()->setResistanceAware(resistance_aware); } +void +set_multicore(bool multicore_routing) +{ + getGlobalRouter()->setMulticoreRouting(multicore_routing); +} + void set_critical_nets_percentage(float criticalNetsPercentage) { diff --git a/src/grt/src/GlobalRouter.tcl b/src/grt/src/GlobalRouter.tcl index 3ed44fb7ed5..0d6e1434fdd 100644 --- a/src/grt/src/GlobalRouter.tcl +++ b/src/grt/src/GlobalRouter.tcl @@ -148,6 +148,7 @@ sta::define_cmd_args "global_route" {[-guide_file out_file] \ [-critical_nets_percentage percent] \ [-skip_large_fanout_nets fanout] \ [-allow_congestion] \ + [-multicore] \ [-verbose] \ [-start_incremental] \ [-end_incremental] \ @@ -159,10 +160,10 @@ sta::define_cmd_args "global_route" {[-guide_file out_file] \ proc global_route { args } { sta::parse_key_args "global_route" args \ keys {-guide_file -congestion_iterations -congestion_report_file \ - -grid_origin -critical_nets_percentage -congestion_report_iter_step\ + -grid_origin -critical_nets_percentage -congestion_report_iter_step \ -skip_large_fanout_nets } \ - flags {-allow_congestion -resistance_aware -infinite_cap -verbose -start_incremental \ + flags {-allow_congestion -multicore -resistance_aware -infinite_cap -verbose -start_incremental \ -end_incremental -use_cugr} sta::check_argc_eq0 "global_route" $args @@ -229,6 +230,9 @@ proc global_route { args } { set resistance_aware [info exists flags(-resistance_aware)] grt::set_resistance_aware $resistance_aware + set multicore [info exists flags(-multicore)] + grt::set_multicore $multicore + set infinite_cap [info exists flags(-infinite_cap)] grt::set_infinite_cap $infinite_cap diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 75f4d27d5c5..b04c9ef094d 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -229,6 +229,10 @@ class FastRouteCore void setGridMax(int x_max, int y_max); void setDetourPenalty(int penalty); void setNumThreads(int num_threads) { num_threads_ = num_threads; } + void setMulticoreRouting(bool multicore_routing) + { + multicore_routing_ = multicore_routing; + } void getCongestionNets(std::set& congestion_nets); void computeCongestionInformation(); std::vector getOriginalResources(); @@ -303,6 +307,15 @@ class FastRouteCore int L, const CostParams& cost_params, float& slack_th); + void mazeRouteMSMDSequential(int iter, + int expand, + int ripup_threshold, + int maze_edge_threshold, + bool ordering, + int via, + int L, + const CostParams& cost_params, + float& slack_th); void convertToMazeroute(); int getOverflow2D(int* maxOverflow); int getOverflow2Dmaze(int* maxOverflow, int* tUsage); @@ -598,6 +611,17 @@ class FastRouteCore void copyBR(); void copyRS(); void freeRR(); + std::vector getMazeRouteNetOrder(bool ordering, float& slack_th); + bool hasNonSoftNdrNets() const; + bool useSnapshotBatchRouting(int net_count) const; + int resolveSnapshotBatchIterationLimit(int net_count) const; + bool useSnapshotBatchRoutingForIteration(int iter, int net_count) const; + int resolveSnapshotBatchSize(int iter, int net_count) const; + std::unique_ptr buildSnapshotBatchWorker() const; + void syncSnapshotBatchWorker(const FastRouteCore& snapshot, + const std::vector& batch_net_ids); + void applySnapshotBatchRoute(int net_id, StTree&& sttree); + void updatePlanarNetUsage(const StTree& sttree, FrNet* net, int edge_cost); int edgeShift(stt::Tree& t, int net); int edgeShiftNew(stt::Tree& t, int net); @@ -625,6 +649,8 @@ class FastRouteCore std::vector layer_directions_; std::vector db_layers_; int num_threads_; + bool owns_nets_; + bool multicore_routing_; int x_range_; int y_range_; @@ -743,6 +769,12 @@ class FastRouteCore multi_array d1_3D_; multi_array d2_3D_; multi_array path_len_3D_; + double snapshot_batch_sync_time_ = 0.0; + double snapshot_batch_route_time_ = 0.0; + double snapshot_batch_apply_time_ = 0.0; + int snapshot_batch_count_ = 0; + int snapshot_batch_net_count_ = 0; + int snapshot_batch_wave_count_ = 0; int detour_penalty_; }; diff --git a/src/grt/src/fastroute/include/Graph2D.h b/src/grt/src/fastroute/include/Graph2D.h index f6f5c5dd79f..9ece88cbc9a 100644 --- a/src/grt/src/fastroute/include/Graph2D.h +++ b/src/grt/src/fastroute/include/Graph2D.h @@ -55,6 +55,7 @@ class Graph2D void init(int x_grid, int y_grid, int num_layers, utl::Logger* logger); void InitEstUsage(); void InitLastUsage(int upType); + void copyRoutingStateFrom(const Graph2D& other, bool include_ndr_state); void clear(); void clearUsed(); bool hasEdges() const; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 9cbf881df57..921b99badff 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -37,6 +37,8 @@ FastRouteCore::FastRouteCore(odb::dbDatabase* db, overflow_iterations_(0), congestion_report_iter_step_(0), num_threads_(1), + owns_nets_(true), + multicore_routing_(false), x_range_(0), y_range_(0), num_adjust_(0), @@ -134,6 +136,12 @@ void FastRouteCore::clear() horizontal_blocked_intervals_.clear(); detour_penalty_ = 0; + snapshot_batch_sync_time_ = 0.0; + snapshot_batch_route_time_ = 0.0; + snapshot_batch_apply_time_ = 0.0; + snapshot_batch_count_ = 0; + snapshot_batch_net_count_ = 0; + snapshot_batch_wave_count_ = 0; } void FastRouteCore::clearNets() @@ -142,8 +150,10 @@ void FastRouteCore::clearNets() sttrees_.clear(); } - for (FrNet* net : nets_) { - delete net; + if (owns_nets_) { + for (FrNet* net : nets_) { + delete net; + } } nets_.clear(); net_ids_.clear(); @@ -863,6 +873,209 @@ void FastRouteCore::initAuxVar() parent_y3_.resize(boost::extents[y_grid_][x_grid_]); } +std::vector FastRouteCore::getMazeRouteNetOrder(const bool ordering, + float& slack_th) +{ + if (ordering) { + if (critical_nets_percentage_) { + slack_th = CalculatePartialSlack(); + } + StNetOrder(); + + std::vector ordered_net_ids; + ordered_net_ids.reserve(net_ids_.size()); + for (const auto& order_tree : tree_order_cong_) { + ordered_net_ids.push_back(order_tree.treeIndex); + } + return ordered_net_ids; + } + + return net_ids_; +} + +bool FastRouteCore::hasNonSoftNdrNets() const +{ + for (const int net_id : net_ids_) { + FrNet* net = nets_[net_id]; + if (net == nullptr) { + continue; + } + if (net->getDbNet()->getNonDefaultRule() != nullptr && !net->isSoftNDR()) { + return true; + } + } + return false; +} + +bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const +{ + return multicore_routing_ && !debug_->isOn() && num_threads_ > 1 + && net_count > 1 && !hasNonSoftNdrNets(); +} + +int FastRouteCore::resolveSnapshotBatchIterationLimit(const int net_count) const +{ + const int overflow_scaled_limit + = std::max(4, std::min(overflow_iterations_ / 24, 8)); + const int net_scaled_limit = std::max(4, std::min(net_count / 128, 16)); + return std::max(overflow_scaled_limit, net_scaled_limit); +} + +bool FastRouteCore::useSnapshotBatchRoutingForIteration(const int iter, + const int net_count) const +{ + if (!useSnapshotBatchRouting(net_count)) { + return false; + } + + // Track B is intentionally not exact-preserving, but late cleanup is still + // sensitive to route-choice drift. Keep the aggressive snapshot mode for the + // early/high-overflow phase and fall back to the serial kernel later. + return iter <= resolveSnapshotBatchIterationLimit(net_count); +} + +int FastRouteCore::resolveSnapshotBatchSize(const int iter, + const int net_count) const +{ + const int batch_multiplier = num_threads_ >= 64 ? 4 : 2; + const int batch_size + = std::min(net_count, std::max(32, batch_multiplier * num_threads_)); + + const int early_iteration_limit = resolveSnapshotBatchIterationLimit(net_count); + const int scaled_iter = iter * 100; + constexpr int kHalfPercentage = 25; + constexpr int kQuarterPercentage = 50; + constexpr int kSinglePercentage = 75; + + if (scaled_iter > kSinglePercentage * early_iteration_limit) { + return 1; + } + if (scaled_iter > kQuarterPercentage * early_iteration_limit) { + return std::max(1, batch_size / 4); + } + if (scaled_iter > kHalfPercentage * early_iteration_limit) { + return std::max(1, batch_size / 2); + } + return batch_size; +} + +std::unique_ptr FastRouteCore::buildSnapshotBatchWorker() const +{ + auto worker = std::make_unique( + db_, logger_, callback_handler_, stt_builder_, sta_); + + worker->owns_nets_ = false; + worker->multicore_routing_ = false; + worker->num_threads_ = 1; + + worker->max_degree_ = max_degree_; + worker->cap_per_layer_ = cap_per_layer_; + worker->usage_per_layer_ = usage_per_layer_; + worker->overflow_per_layer_ = overflow_per_layer_; + worker->max_h_overflow_ = max_h_overflow_; + worker->max_v_overflow_ = max_v_overflow_; + worker->overflow_iterations_ = overflow_iterations_; + worker->congestion_report_iter_step_ = congestion_report_iter_step_; + worker->congestion_file_name_ = congestion_file_name_; + worker->layer_directions_ = layer_directions_; + worker->db_layers_ = db_layers_; + worker->en_estimate_parasitics_ = en_estimate_parasitics_; + worker->resistance_aware_ = resistance_aware_; + worker->enable_resistance_aware_ = enable_resistance_aware_; + worker->is_3d_step_ = is_3d_step_; + worker->is_incremental_grt_ = is_incremental_grt_; + worker->worst_slack_ = worst_slack_; + worker->worst_net_resistance_ = worst_net_resistance_; + worker->worst_net_length_ = worst_net_length_; + worker->worst_fanout_ = worst_fanout_; + worker->num_adjust_ = num_adjust_; + worker->v_capacity_ = v_capacity_; + worker->h_capacity_ = h_capacity_; + worker->x_corner_ = x_corner_; + worker->y_corner_ = y_corner_; + worker->tile_size_ = tile_size_; + worker->enlarge_ = enlarge_; + worker->costheight_ = costheight_; + worker->ahth_ = ahth_; + worker->total_overflow_ = total_overflow_; + worker->has_2D_overflow_ = has_2D_overflow_; + worker->verbose_ = verbose_; + worker->critical_nets_percentage_ = critical_nets_percentage_; + worker->via_cost_ = via_cost_; + worker->mazeedge_threshold_ = mazeedge_threshold_; + worker->v_capacity_lb_ = v_capacity_lb_; + worker->h_capacity_lb_ = h_capacity_lb_; + worker->regular_x_ = regular_x_; + worker->regular_y_ = regular_y_; + worker->detour_penalty_ = detour_penalty_; + + worker->setGridsAndLayers(x_grid_, y_grid_, num_layers_); + worker->setGridMax(x_grid_max_, y_grid_max_); + worker->v_capacity_3D_ = v_capacity_3D_; + worker->h_capacity_3D_ = h_capacity_3D_; + worker->last_col_v_capacity_3D_ = last_col_v_capacity_3D_; + worker->last_row_h_capacity_3D_ = last_row_h_capacity_3D_; + worker->initAuxVar(); + + worker->nets_ = nets_; + worker->db_net_id_map_ = db_net_id_map_; + worker->xcor_.resize(xcor_.size()); + worker->ycor_.resize(ycor_.size()); + worker->dcor_.resize(dcor_.size()); + worker->sttrees_.resize(sttrees_.size()); + + return worker; +} + +void FastRouteCore::syncSnapshotBatchWorker( + const FastRouteCore& snapshot, + const std::vector& batch_net_ids) +{ + graph2d_.copyRoutingStateFrom(snapshot.graph2d_, false); + total_overflow_ = snapshot.total_overflow_; + has_2D_overflow_ = snapshot.has_2D_overflow_; + net_ids_ = batch_net_ids; + + for (const int net_id : batch_net_ids) { + sttrees_[net_id] = snapshot.sttrees_[net_id]; + } +} + +void FastRouteCore::updatePlanarNetUsage(const StTree& sttree, + FrNet* net, + const int edge_cost) +{ + for (const TreeEdge& treeedge : sttree.edges) { + if (treeedge.route.routelen <= 0 || treeedge.route.grids.empty()) { + continue; + } + + const auto& grids = treeedge.route.grids; + for (int i = 0; i < treeedge.route.routelen; i++) { + if (grids[i].x == grids[i + 1].x && grids[i].y == grids[i + 1].y) { + continue; + } + + if (grids[i].x == grids[i + 1].x) { + const int min_y = std::min(grids[i].y, grids[i + 1].y); + graph2d_.updateUsageV(grids[i].x, min_y, net, edge_cost); + } else if (grids[i].y == grids[i + 1].y) { + const int min_x = std::min(grids[i].x, grids[i + 1].x); + graph2d_.updateUsageH(min_x, grids[i].y, net, edge_cost); + } + } + } +} + +void FastRouteCore::applySnapshotBatchRoute(const int net_id, StTree&& sttree) +{ + FrNet* net = nets_[net_id]; + const int edge_cost = net->getEdgeCost(); + updatePlanarNetUsage(sttrees_[net_id], net, -edge_cost); + sttrees_[net_id] = std::move(sttree); + updatePlanarNetUsage(sttrees_[net_id], net, edge_cost); +} + NetRouteMap FastRouteCore::getRoutes() { NetRouteMap routes; @@ -1347,6 +1560,13 @@ NetRouteMap FastRouteCore::run() return getRoutes(); } + snapshot_batch_sync_time_ = 0.0; + snapshot_batch_route_time_ = 0.0; + snapshot_batch_apply_time_ = 0.0; + snapshot_batch_count_ = 0; + snapshot_batch_net_count_ = 0; + snapshot_batch_wave_count_ = 0; + double total_run_time = 0.0; double initial_rsmt_time = 0.0; double route_l_time = 0.0; @@ -1542,6 +1762,10 @@ NetRouteMap FastRouteCore::run() SaveLastRouteLen(); const int max_overflow_increases = 25; + const bool trackb_cleanup_enabled = useSnapshotBatchRouting(net_ids_.size()); + const int trackb_iteration_limit + = resolveSnapshotBatchIterationLimit(net_ids_.size()); + const int trackb_cleanup_patience = 12; float slack_th = std::numeric_limits::lowest(); @@ -1707,45 +1931,59 @@ NetRouteMap FastRouteCore::run() VIA = 0; } - if (past_cong < bmfl) { - bwcnt = 0; - if (i > 140 || (i > 80 && past_cong < 20)) { + if (trackb_cleanup_enabled && i > trackb_iteration_limit) { + if (past_cong < bmfl) { copyRS(); bmfl = past_cong; + bwcnt = 0; + } else { + bwcnt++; + } - L = 0; - auto cost_params = CostParams(logistic_coef, costheight_, slope); - mazeRouteMSMD(i, - enlarge_, - ripup_threshold, - mazeedge_threshold_, - !(i % 3), - VIA, - L, - cost_params, - slack_th); - last_cong = past_cong; - past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); - if (past_cong < last_cong) { + if (bwcnt > trackb_cleanup_patience) { + break; + } + } else { + if (past_cong < bmfl) { + bwcnt = 0; + if (i > 140 || (i > 80 && past_cong < 20)) { copyRS(); bmfl = past_cong; + + L = 0; + auto cost_params = CostParams(logistic_coef, costheight_, slope); + mazeRouteMSMD(i, + enlarge_, + ripup_threshold, + mazeedge_threshold_, + !(i % 3), + VIA, + L, + cost_params, + slack_th); + last_cong = past_cong; + past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); + if (past_cong < last_cong) { + copyRS(); + bmfl = past_cong; + } + L = 1; + if (minofl > past_cong) { + minofl = past_cong; + minoflrnd = i; + } } - L = 1; - if (minofl > past_cong) { - minofl = past_cong; - minoflrnd = i; - } + } else { + bwcnt++; } - } else { - bwcnt++; - } - if (bmfl > 10) { - if (bmfl > 30 && bmfl < 72 && bwcnt > 50) { - break; - } - if (bmfl < 30 && bwcnt > 50) { - break; + if (bmfl > 10) { + if (bmfl > 30 && bmfl < 72 && bwcnt > 50) { + break; + } + if (bmfl < 30 && bwcnt > 50) { + break; + } } } @@ -1926,6 +2164,32 @@ NetRouteMap FastRouteCore::run() overflow_iterations_time); logger_->metric("global_route__fastroute__finalization_s", finalization_time); + logger_->metric("global_route__fastroute__snapshot_batch_route_s", + snapshot_batch_route_time_); + logger_->metric("global_route__fastroute__snapshot_batch_apply_s", + snapshot_batch_apply_time_); + logger_->metric("global_route__fastroute__snapshot_batch_sync_s", + snapshot_batch_sync_time_); + logger_->metric("global_route__fastroute__snapshot_batch_count", + snapshot_batch_count_); + logger_->metric("global_route__fastroute__snapshot_batch_nets", + snapshot_batch_net_count_); + logger_->metric("global_route__fastroute__snapshot_batch_wave_count", + snapshot_batch_wave_count_); + if (snapshot_batch_count_ > 0) { + debugPrint(logger_, + GRT, + "timer", + 1, + "Snapshot batch totals: sync {} route {} apply {} waves {} " + "batches {} nets {}.", + snapshot_batch_sync_time_, + snapshot_batch_route_time_, + snapshot_batch_apply_time_, + snapshot_batch_wave_count_, + snapshot_batch_count_, + snapshot_batch_net_count_); + } logger_->metric("global_route__vias", numVia); if (verbose_) { logger_->info(GRT, 111, "Final number of vias: {}", numVia); diff --git a/src/grt/src/fastroute/src/graph2d.cpp b/src/grt/src/fastroute/src/graph2d.cpp index c977f8766a9..9c538c15258 100644 --- a/src/grt/src/fastroute/src/graph2d.cpp +++ b/src/grt/src/fastroute/src/graph2d.cpp @@ -74,6 +74,35 @@ void Graph2D::InitLastUsage(const int upType) } } +void Graph2D::copyRoutingStateFrom(const Graph2D& other, + const bool include_ndr_state) +{ + const bool needs_init = x_grid_ != other.x_grid_ || y_grid_ != other.y_grid_ + || num_layers_ != other.num_layers_ || !hasEdges(); + if (needs_init) { + init(other.x_grid_, other.y_grid_, other.num_layers_, other.logger_); + initCap3D(); + } + + h_edges_ = other.h_edges_; + v_edges_ = other.v_edges_; + h_cap_3D_ = other.h_cap_3D_; + v_cap_3D_ = other.v_cap_3D_; + h_used_ggrid_ = other.h_used_ggrid_; + v_used_ggrid_ = other.v_used_ggrid_; + + if (include_ndr_state) { + h_ndr_nets_ = other.h_ndr_nets_; + v_ndr_nets_ = other.v_ndr_nets_; + congested_ndrs_ = other.congested_ndrs_; + congestion_nets_ = other.congestion_nets_; + } else { + clearNDRnets(); + clearCongestedNDRnets(); + congestion_nets_.clear(); + } +} + // Clears all horizontal and vertical edges from the graph. void Graph2D::clear() { diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 08b38d38b77..d15b66344a1 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -4,6 +4,7 @@ #include #include #include +#include #include #include #include @@ -16,10 +17,13 @@ #include "odb/geom.h" #include "stt/SteinerTreeBuilder.h" #include "utl/Logger.h" +#include "utl/timer.h" namespace grt { using utl::GRT; +using utl::DebugScopedTimer; +using utl::Timer; static int parent_index(int i) { @@ -1030,6 +1034,166 @@ void FastRouteCore::mazeRouteMSMD(const int iter, const int L, const CostParams& cost_params, float& slack_th) +{ + if (!useSnapshotBatchRoutingForIteration(iter, net_ids_.size())) { + mazeRouteMSMDSequential(iter, + expand, + ripup_threshold, + maze_edge_threshold, + ordering, + via, + L, + cost_params, + slack_th); + return; + } + + std::vector ordered_net_ids = getMazeRouteNetOrder(ordering, slack_th); + if (!useSnapshotBatchRoutingForIteration(iter, ordered_net_ids.size())) { + mazeRouteMSMDSequential(iter, + expand, + ripup_threshold, + maze_edge_threshold, + ordering, + via, + L, + cost_params, + slack_th); + return; + } + + const int batch_size = resolveSnapshotBatchSize(iter, ordered_net_ids.size()); + if (batch_size <= 1 || ordered_net_ids.size() <= batch_size) { + mazeRouteMSMDSequential(iter, + expand, + ripup_threshold, + maze_edge_threshold, + ordering, + via, + L, + cost_params, + slack_th); + return; + } + + struct BatchResult + { + std::vector net_ids; + std::vector sttrees; + }; + std::vector> batch_net_ids; + batch_net_ids.reserve((ordered_net_ids.size() + batch_size - 1) / batch_size); + for (const int net_id : ordered_net_ids) { + if (batch_net_ids.empty() || batch_net_ids.back().size() == batch_size) { + batch_net_ids.emplace_back(); + } + batch_net_ids.back().push_back(net_id); + } + + if (batch_net_ids.size() < 2) { + mazeRouteMSMDSequential(iter, + expand, + ripup_threshold, + maze_edge_threshold, + ordering, + via, + L, + cost_params, + slack_th); + return; + } + + double snapshot_sync_time = 0.0; + double snapshot_route_time = 0.0; + double snapshot_apply_time = 0.0; + int wave_count = 0; + { + const int wave_size + = std::min((int) batch_net_ids.size(), std::max(1, num_threads_)); + std::vector> workers; + workers.reserve(wave_size); + for (int worker_idx = 0; worker_idx < wave_size; worker_idx++) { + workers.push_back(buildSnapshotBatchWorker()); + } + + // Track B intentionally allows route-choice drift inside a wave. Route + // fixed contiguous batches against one snapshot, then commit them in the + // original batch order before advancing to the next wave. + for (int wave_begin = 0; wave_begin < batch_net_ids.size(); + wave_begin += wave_size) { + const int active_batch_count + = std::min(wave_size, (int) batch_net_ids.size() - wave_begin); + const int active_threads = std::min(active_batch_count, num_threads_); + std::vector batch_results(active_batch_count); + wave_count++; + + { + Timer timer; +#pragma omp parallel for num_threads(active_threads) schedule(static) + for (int wave_batch = 0; wave_batch < active_batch_count; wave_batch++) { + workers[wave_batch]->syncSnapshotBatchWorker( + *this, batch_net_ids[wave_begin + wave_batch]); + } + snapshot_sync_time += timer.elapsed(); + } + + { + Timer timer; +#pragma omp parallel for num_threads(active_threads) schedule(static) + for (int wave_batch = 0; wave_batch < active_batch_count; wave_batch++) { + auto& worker = workers[wave_batch]; + float batch_slack_th = slack_th; + worker->mazeRouteMSMDSequential(iter, + expand, + ripup_threshold, + maze_edge_threshold, + false, + via, + L, + cost_params, + batch_slack_th); + + BatchResult result; + result.net_ids = worker->net_ids_; + result.sttrees.reserve(result.net_ids.size()); + for (const int net_id : result.net_ids) { + result.sttrees.push_back(std::move(worker->sttrees_[net_id])); + } + batch_results[wave_batch] = std::move(result); + } + snapshot_route_time += timer.elapsed(); + } + + { + Timer timer; + for (BatchResult& result : batch_results) { + for (int i = 0; i < result.net_ids.size(); i++) { + applySnapshotBatchRoute(result.net_ids[i], + std::move(result.sttrees[i])); + } + } + snapshot_apply_time += timer.elapsed(); + } + } + } + + snapshot_batch_sync_time_ += snapshot_sync_time; + snapshot_batch_route_time_ += snapshot_route_time; + snapshot_batch_apply_time_ += snapshot_apply_time; + snapshot_batch_count_ += batch_net_ids.size(); + snapshot_batch_net_count_ += ordered_net_ids.size(); + snapshot_batch_wave_count_ += wave_count; +} + +void FastRouteCore::mazeRouteMSMDSequential(const int iter, + const int expand, + const int ripup_threshold, + const int maze_edge_threshold, + const bool ordering, + const int via, + const int L, + const CostParams& cost_params, + float& slack_th) { // maze routing for multi-source, multi-destination int tmpX, tmpY; From d4450c0ab5befbee080a4d19607ae9b7aa18fe35 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Mon, 2 Mar 2026 13:23:58 -0800 Subject: [PATCH 05/25] grt: harden multicore routing state and tests Fix Track B state management for incremental reroute and snapshot workers, tighten batching behavior for tiny designs, and add multicore regression coverage including a fixed-thread congestion7 variant. Validated on dev-cpu-fluorine with the focused grt multicore slice. Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/grt/include/grt/GlobalRouter.h | 1 + src/grt/src/GlobalRouter.cpp | 6 + src/grt/src/GlobalRouter.i | 6 + src/grt/src/fastroute/include/FastRoute.h | 2 + src/grt/src/fastroute/src/FastRoute.cpp | 36 +- src/grt/src/fastroute/src/maze.cpp | 16 + src/grt/test/BUILD | 22 + src/grt/test/CMakeLists.txt | 4 + src/grt/test/congestion7_multicore-20.rptok | 2320 +++++++ src/grt/test/congestion7_multicore.guideok | 5977 ++++++++++++++++++ src/grt/test/congestion7_multicore.ok | 96 + src/grt/test/congestion7_multicore.rptok | 1956 ++++++ src/grt/test/congestion7_multicore.tcl | 26 + src/grt/test/multicore_bus_route.tcl | 11 + src/grt/test/multicore_incremental_state.tcl | 35 + src/grt/test/multicore_smoke.tcl | 35 + 16 files changed, 10538 insertions(+), 11 deletions(-) create mode 100644 src/grt/test/congestion7_multicore-20.rptok create mode 100644 src/grt/test/congestion7_multicore.guideok create mode 100644 src/grt/test/congestion7_multicore.ok create mode 100644 src/grt/test/congestion7_multicore.rptok create mode 100644 src/grt/test/congestion7_multicore.tcl create mode 100644 src/grt/test/multicore_bus_route.tcl create mode 100644 src/grt/test/multicore_incremental_state.tcl create mode 100644 src/grt/test/multicore_smoke.tcl diff --git a/src/grt/include/grt/GlobalRouter.h b/src/grt/include/grt/GlobalRouter.h index c0545efe72b..eac30184d52 100644 --- a/src/grt/include/grt/GlobalRouter.h +++ b/src/grt/include/grt/GlobalRouter.h @@ -154,6 +154,7 @@ class GlobalRouter void setAllowCongestion(bool allow_congestion); void setResistanceAware(bool resistance_aware); void setMulticoreRouting(bool multicore_routing); + bool isMulticoreRouting() const; void setMacroExtension(int macro_extension); void setUseCUGR(bool use_cugr) { use_cugr_ = use_cugr; }; void setSkipLargeFanoutNets(int skip_large_fanout) diff --git a/src/grt/src/GlobalRouter.cpp b/src/grt/src/GlobalRouter.cpp index 316e77ffc1b..41d230b3012 100644 --- a/src/grt/src/GlobalRouter.cpp +++ b/src/grt/src/GlobalRouter.cpp @@ -119,6 +119,12 @@ void GlobalRouter::setNumThreads(int num_threads) void GlobalRouter::setMulticoreRouting(bool multicore_routing) { multicore_routing_ = multicore_routing; + fastroute_->setMulticoreRouting(multicore_routing_); +} + +bool GlobalRouter::isMulticoreRouting() const +{ + return fastroute_->isMulticoreRouting(); } void GlobalRouter::initGui(std::unique_ptr diff --git a/src/grt/src/GlobalRouter.i b/src/grt/src/GlobalRouter.i index 7eeced7d3fc..37fb3c52d63 100644 --- a/src/grt/src/GlobalRouter.i +++ b/src/grt/src/GlobalRouter.i @@ -116,6 +116,12 @@ set_multicore(bool multicore_routing) getGlobalRouter()->setMulticoreRouting(multicore_routing); } +bool +is_multicore() +{ + return getGlobalRouter()->isMulticoreRouting(); +} + void set_critical_nets_percentage(float criticalNetsPercentage) { diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index b04c9ef094d..4c6789fbcf2 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -233,6 +233,7 @@ class FastRouteCore { multicore_routing_ = multicore_routing; } + bool isMulticoreRouting() const { return multicore_routing_; } void getCongestionNets(std::set& congestion_nets); void computeCongestionInformation(); std::vector getOriginalResources(); @@ -613,6 +614,7 @@ class FastRouteCore void freeRR(); std::vector getMazeRouteNetOrder(bool ordering, float& slack_th); bool hasNonSoftNdrNets() const; + int resolveSnapshotBaseBatchSize(int net_count) const; bool useSnapshotBatchRouting(int net_count) const; int resolveSnapshotBatchIterationLimit(int net_count) const; bool useSnapshotBatchRoutingForIteration(int iter, int net_count) const; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 921b99badff..40789de31f9 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -907,10 +907,17 @@ bool FastRouteCore::hasNonSoftNdrNets() const return false; } +int FastRouteCore::resolveSnapshotBaseBatchSize(const int net_count) const +{ + const int batch_multiplier = num_threads_ >= 64 ? 4 : 2; + return std::min(net_count, std::max(32, batch_multiplier * num_threads_)); +} + bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const { return multicore_routing_ && !debug_->isOn() && num_threads_ > 1 - && net_count > 1 && !hasNonSoftNdrNets(); + && net_count > resolveSnapshotBaseBatchSize(net_count) + && !hasNonSoftNdrNets(); } int FastRouteCore::resolveSnapshotBatchIterationLimit(const int net_count) const @@ -937,9 +944,7 @@ bool FastRouteCore::useSnapshotBatchRoutingForIteration(const int iter, int FastRouteCore::resolveSnapshotBatchSize(const int iter, const int net_count) const { - const int batch_multiplier = num_threads_ >= 64 ? 4 : 2; - const int batch_size - = std::min(net_count, std::max(32, batch_multiplier * num_threads_)); + const int batch_size = resolveSnapshotBaseBatchSize(net_count); const int early_iteration_limit = resolveSnapshotBatchIterationLimit(net_count); const int scaled_iter = iter * 100; @@ -1019,6 +1024,9 @@ std::unique_ptr FastRouteCore::buildSnapshotBatchWorker() const worker->nets_ = nets_; worker->db_net_id_map_ = db_net_id_map_; + worker->gxs_ = gxs_; + worker->gys_ = gys_; + worker->gs_ = gs_; worker->xcor_.resize(xcor_.size()); worker->ycor_.resize(ycor_.size()); worker->dcor_.resize(dcor_.size()); @@ -1762,10 +1770,10 @@ NetRouteMap FastRouteCore::run() SaveLastRouteLen(); const int max_overflow_increases = 25; - const bool trackb_cleanup_enabled = useSnapshotBatchRouting(net_ids_.size()); const int trackb_iteration_limit = resolveSnapshotBatchIterationLimit(net_ids_.size()); const int trackb_cleanup_patience = 12; + bool trackb_cleanup_active = false; float slack_th = std::numeric_limits::lowest(); @@ -1853,6 +1861,7 @@ NetRouteMap FastRouteCore::run() L = 0; } + const int snapshot_batch_count_before = snapshot_batch_count_; auto cost_params = CostParams(logistic_coef, costheight_, slope); mazeRouteMSMD(i, enlarge_, @@ -1866,12 +1875,21 @@ NetRouteMap FastRouteCore::run() int last_cong = past_cong; past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); + trackb_cleanup_active + = trackb_cleanup_active + || snapshot_batch_count_ > snapshot_batch_count_before; if (minofl > past_cong) { minofl = past_cong; minoflrnd = i; } + if (trackb_cleanup_active && past_cong < bmfl) { + copyRS(); + bmfl = past_cong; + bwcnt = 0; + } + if (i == 8) { L = 1; } @@ -1931,12 +1949,8 @@ NetRouteMap FastRouteCore::run() VIA = 0; } - if (trackb_cleanup_enabled && i > trackb_iteration_limit) { - if (past_cong < bmfl) { - copyRS(); - bmfl = past_cong; - bwcnt = 0; - } else { + if (trackb_cleanup_active && i > trackb_iteration_limit) { + if (past_cong >= bmfl) { bwcnt++; } diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index d15b66344a1..1fcd931cbe3 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -1048,6 +1048,22 @@ void FastRouteCore::mazeRouteMSMD(const int iter, return; } + // If this iteration cannot form multiple snapshot batches, stay entirely on + // the sequential path instead of doing Track B-only ordering work first. + const int initial_batch_size = resolveSnapshotBatchSize(iter, net_ids_.size()); + if (initial_batch_size <= 1 || net_ids_.size() <= initial_batch_size) { + mazeRouteMSMDSequential(iter, + expand, + ripup_threshold, + maze_edge_threshold, + ordering, + via, + L, + cost_params, + slack_th); + return; + } + std::vector ordered_net_ids = getMazeRouteNetOrder(ordering, slack_th); if (!useSnapshotBatchRoutingForIteration(iter, ordered_net_ids.size())) { mazeRouteMSMDSequential(iter, diff --git a/src/grt/test/BUILD b/src/grt/test/BUILD index 6924ef29014..f7550adbef0 100644 --- a/src/grt/test/BUILD +++ b/src/grt/test/BUILD @@ -17,6 +17,7 @@ TESTS = [ "congestion5", "congestion6", "congestion7", + "congestion7_multicore", "critical_nets_percentage", "critical_nets_percentage_cugr", "cugr_adjustment1", @@ -137,6 +138,27 @@ MANUAL_FOR_BAZEL_TESTS = [ tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS else [], ) for test_name in TESTS] +regression_test( + name = "multicore_bus_route", + check_log = False, + check_passfail = True, + data = [":test_resources"], +) + +regression_test( + name = "multicore_incremental_state", + check_log = False, + check_passfail = True, + data = [":test_resources"], +) + +regression_test( + name = "multicore_smoke", + check_log = False, + check_passfail = True, + data = [":test_resources"], +) + regression_test( name = "thread_count_reports", check_log = False, diff --git a/src/grt/test/CMakeLists.txt b/src/grt/test/CMakeLists.txt index 98f88fc684a..fd5a31d8f4d 100644 --- a/src/grt/test/CMakeLists.txt +++ b/src/grt/test/CMakeLists.txt @@ -15,6 +15,7 @@ or_integration_tests( congestion5 congestion6 congestion7 + congestion7_multicore critical_nets_percentage critical_nets_percentage_cugr cugr_adjustment1 @@ -99,5 +100,8 @@ or_integration_tests( write_segments1 write_segments2 PASSFAIL_TESTS + multicore_bus_route + multicore_incremental_state + multicore_smoke thread_count_reports ) diff --git a/src/grt/test/congestion7_multicore-20.rptok b/src/grt/test/congestion7_multicore-20.rptok new file mode 100644 index 00000000000..244441e1000 --- /dev/null +++ b/src/grt/test/congestion7_multicore-20.rptok @@ -0,0 +1,2320 @@ +violation type: Horizontal congestion + srcs: net:_055_ net:_380_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_116_ net:_167_ net:_213_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_014_ net:_140_ net:_142_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_204_ net:_244_ net:_294_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_016_ net:_039_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_065_ net:_245_ net:_279_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_125_ net:_141_ net:_307_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_402_ net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 62.7000) - (39.9000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_133_ net:_258_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:net1 net:net13 net:net33 + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 88.3500) - (68.4000, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_133_ net:_147_ net:_158_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_111_ net:_370_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_253_ net:_349_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_247_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 51.3000) - (39.9000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_009_ net:_126_ net:_159_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[3\] + comment: capacity:2 usage:6 overflow:4 + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_372_ net:dpath.a_lt_b$in0\[11\] + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_138_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_059_ net:_403_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_195_ net:_388_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_401_ net:net36 net:net44 + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 51.3000) - (28.5000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_062_ net:_159_ net:_249_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_175_ net:_278_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:net1 net:net33 + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 88.3500) - (59.8500, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_177_ net:_195_ net:_199_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_299_ net:_353_ net:_418_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_158_ net:_248_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:net33 net:net9 + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 88.3500) - (42.7500, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_106_ net:_140_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_149_ net:_363_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_244_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_124_ net:_158_ net:_300_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_337_ net:_339_ net:_341_ net:net53 + comment: capacity:2 usage:5 overflow:3 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_129_ net:_130_ net:_207_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_220_ net:_302_ net:_311_ net:_381_ net:_397_ + comment: capacity:2 usage:6 overflow:4 + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_112_ net:_371_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_277_ net:_353_ net:_415_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_176_ net:_276_ net:_385_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_205_ net:_245_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_136_ net:_137_ net:_188_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_409_ net:net19 net:net40 + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 17.1000) - (62.7000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_132_ net:_319_ net:_320_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_380_ net:net31 net:net37 + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_201_ net:_220_ net:_221_ net:_317_ net:_381_ net:_397_ + comment: capacity:2 usage:7 overflow:5 + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_116_ net:_168_ net:_213_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_055_ net:_156_ net:_162_ net:_164_ net:_380_ + comment: capacity:2 usage:5 overflow:3 + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_131_ net:_227_ net:_327_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_054_ net:_403_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_128_ net:_221_ net:_249_ net:_381_ net:_397_ net:dpath.a_lt_b$in1\[15\] + comment: capacity:2 usage:7 overflow:5 + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_145_ net:_165_ net:_173_ net:_174_ net:_245_ + comment: capacity:2 usage:6 overflow:4 + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_050_ net:_245_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_396_ net:net39 net:net49 + comment: capacity:2 usage:3 overflow:1 + bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_371_ net:_373_ net:_409_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_072_ net:_248_ net:_407_ net:net53 + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_147_ net:_179_ net:_180_ net:_287_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_203_ net:_204_ net:_298_ net:_375_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_090_ net:_142_ net:dpath.a_lt_b$in0\[8\] + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_141_ net:_219_ net:_310_ net:_311_ net:_381_ net:_397_ + comment: capacity:2 usage:6 overflow:4 + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_149_ net:_206_ net:_207_ net:_352_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_058_ net:_161_ net:_380_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_129_ net:_232_ net:_233_ net:_234_ net:_352_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_245_ net:_250_ net:_253_ net:_412_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_093_ net:_111_ net:_127_ net:_370_ net:_401_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_215_ net:_298_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_378_ net:net51 + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_237_ net:_298_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_097_ net:_115_ net:_142_ net:_158_ net:_244_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_007_ net:_384_ net:_412_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_385_ net:_397_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_165_ net:_173_ net:_245_ net:_253_ + comment: capacity:2 usage:5 overflow:3 + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_186_ net:_283_ net:_377_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_048_ net:_136_ net:_385_ + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_123_ net:_171_ net:_189_ net:_297_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_092_ net:_159_ net:_351_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 68.4000) - (71.2500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_372_ net:net47 + comment: capacity:2 usage:3 overflow:1 + bbox = (79.8000, 37.0500) - (82.6500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_253_ net:_352_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_385_ net:dpath.a_lt_b$in1\[6\] + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_172_ net:_245_ net:_263_ net:_264_ + comment: capacity:2 usage:5 overflow:3 + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_037_ net:_381_ net:_397_ net:_405_ + comment: capacity:2 usage:5 overflow:3 + bbox = (25.6500, 37.0500) - (28.5000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:dpath.a_lt_b$in0\[12\] net:net53 + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_237_ net:_298_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ + comment: capacity:2 usage:5 overflow:3 + bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[22] net:net10 net:net40 + comment: capacity:2 usage:3 overflow:1 + bbox = (85.5000, 11.4000) - (88.3500, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_372_ net:_391_ net:net30 + comment: capacity:2 usage:3 overflow:1 + bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_252_ net:_389_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_112_ net:_128_ net:_130_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_391_ net:net13 + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_149_ net:_208_ net:_352_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_348_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_253_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_298_ net:_352_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_112_ net:_371_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_174_ net:_199_ net:_250_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_031_ net:_085_ net:_126_ net:_159_ net:_353_ + comment: capacity:2 usage:5 overflow:3 + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_200_ net:_252_ net:_312_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[31] net:req_val net:net45 + comment: capacity:2 usage:3 overflow:1 + bbox = (85.5000, 88.3500) - (88.3500, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_120_ net:_415_ + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_372_ net:net47 + comment: capacity:2 usage:3 overflow:1 + bbox = (82.6500, 37.0500) - (85.5000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_245_ net:_385_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_236_ net:_287_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_420_ net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_158_ net:_329_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_159_ net:_249_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_159_ net:_249_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_139_ net:_143_ net:_245_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_249_ net:_268_ net:_383_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_244_ net:_252_ net:_253_ net:_385_ + comment: capacity:2 usage:5 overflow:3 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_132_ net:_221_ net:_347_ net:_381_ net:_397_ + comment: capacity:2 usage:6 overflow:4 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_248_ net:_252_ net:_327_ net:net53 + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_221_ net:_249_ net:_316_ net:_381_ + comment: capacity:2 usage:5 overflow:3 + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_215_ net:_298_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_105_ net:_353_ net:_360_ net:dpath.a_lt_b$in1\[7\] + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_201_ net:_221_ net:_381_ net:_397_ + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_019_ net:_114_ net:_409_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_272_ net:_284_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_139_ net:_245_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_070_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_175_ net:_185_ net:_186_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_243_ net:_352_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_141_ net:_203_ net:_306_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_298_ net:_375_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:net1 net:net13 net:net33 + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 88.3500) - (65.5500, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_138_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_145_ net:_147_ net:_236_ net:_287_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_119_ net:_135_ net:_172_ net:_245_ net:_265_ + comment: capacity:2 usage:6 overflow:4 + bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_122_ net:_159_ net:_249_ net:_416_ + comment: capacity:2 usage:5 overflow:3 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_119_ net:_143_ net:_144_ net:_236_ net:_287_ + comment: capacity:2 usage:5 overflow:3 + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_372_ net:net47 + comment: capacity:2 usage:3 overflow:1 + bbox = (85.5000, 37.0500) - (88.3500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_193_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_111_ net:_313_ net:_370_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_372_ net:_414_ net:net41 + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_084_ net:_118_ net:_160_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 71.2500) - (51.3000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_109_ net:_142_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_177_ net:_272_ net:_297_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_005_ net:_401_ net:net44 + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_275_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_131_ net:_227_ net:_352_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ + comment: capacity:2 usage:5 overflow:3 + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_138_ net:_177_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_119_ net:_391_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_069_ net:_375_ net:_386_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[14] net:net18 net:net37 + comment: capacity:2 usage:3 overflow:1 + bbox = (19.9500, 11.4000) - (22.8000, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_154_ net:_380_ net:_402_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_139_ net:_189_ net:_283_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_028_ net:_116_ net:_245_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_073_ net:_114_ net:_252_ net:_408_ net:_409_ + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_119_ net:_144_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_060_ net:_110_ net:_236_ net:_246_ net:_249_ net:_413_ + comment: capacity:2 usage:6 overflow:4 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_112_ net:_372_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_245_ net:_253_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_248_ net:_387_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_114_ net:_252_ net:_336_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_216_ net:_244_ net:_375_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_236_ net:_238_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_189_ net:_297_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_184_ net:_198_ net:_271_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_067_ net:_089_ net:_123_ + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_375_ net:_385_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_061_ net:_165_ net:_411_ net:_412_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_169_ net:_177_ net:_272_ net:_289_ net:_377_ + comment: capacity:2 usage:5 overflow:3 + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_248_ net:_327_ net:_332_ net:net53 + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_169_ net:_177_ net:_272_ net:_284_ net:_377_ + comment: capacity:2 usage:5 overflow:3 + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[2] net:net1 net:net30 net:net33 + comment: capacity:2 usage:4 overflow:2 + bbox = (74.1000, 88.3500) - (76.9500, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_253_ net:_352_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_221_ net:_249_ net:_381_ net:_397_ net:dpath.a_lt_b$in1\[11\] + comment: capacity:2 usage:5 overflow:3 + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_090_ net:_124_ net:_142_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_242_ net:_252_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[31] net:req_val net:net33 + comment: capacity:2 usage:3 overflow:1 + bbox = (82.6500, 88.3500) - (85.5000, 91.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_201_ net:_220_ net:_317_ net:_381_ net:_397_ + comment: capacity:2 usage:6 overflow:4 + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_066_ net:_245_ net:_253_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_202_ net:_252_ net:_419_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_124_ net:_399_ + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_218_ net:_381_ net:_397_ net:_405_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_248_ net:_339_ net:_410_ net:net53 + comment: capacity:2 usage:5 overflow:3 + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_133_ net:_254_ net:_258_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_121_ net:_160_ net:_249_ net:net49 + comment: capacity:2 usage:4 overflow:2 + bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_244_ net:_294_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_381_ net:_397_ net:_405_ + comment: capacity:2 usage:4 overflow:2 + bbox = (22.8000, 37.0500) - (25.6500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_165_ net:_230_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_381_ net:_397_ net:net42 + comment: capacity:2 usage:3 overflow:1 + bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_249_ net:_257_ net:_404_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_371_ net:net39 net:net43 + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 11.4000) - (54.1500, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_113_ net:_129_ net:_352_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_092_ net:_126_ net:_159_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_013_ net:_051_ net:_123_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_020_ net:_043_ net:_115_ net:_142_ net:_158_ net:_244_ + comment: capacity:2 usage:6 overflow:4 + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[20] net:net12 net:net37 + comment: capacity:2 usage:3 overflow:1 + bbox = (14.2500, 11.4000) - (17.1000, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_203_ net:_304_ net:_375_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_122_ net:_159_ net:_249_ net:_281_ + comment: capacity:2 usage:5 overflow:3 + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_143_ net:_236_ net:_287_ net:_388_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_100_ net:_118_ net:_160_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_391_ net:net13 + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 76.9500) - (68.4000, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_077_ net:_248_ net:_370_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_381_ net:_397_ net:net42 + comment: capacity:2 usage:3 overflow:1 + bbox = (19.9500, 37.0500) - (22.8000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_072_ net:_079_ net:_113_ net:_248_ net:_407_ net:net53 + comment: capacity:2 usage:6 overflow:4 + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_409_ net:net19 net:net40 + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_401_ net:net44 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_178_ net:_180_ net:_183_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_158_ net:_380_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_119_ net:dpath.a_lt_b$in0\[3\] + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_147_ net:_287_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_091_ net:_125_ net:_248_ net:_381_ net:_397_ net:_405_ net:dpath.a_lt_b$in0\[9\] + comment: capacity:2 usage:7 overflow:5 + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_158_ net:_244_ net:_343_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_420_ net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 62.7000) - (34.2000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_229_ net:_230_ net:_235_ net:_241_ + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_027_ net:_248_ net:_389_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_008_ net:_159_ net:_249_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_046_ net:_118_ net:_160_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_372_ net:net41 + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 31.3500) - (65.5500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_248_ net:_249_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_140_ net:_217_ net:_306_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_076_ net:_110_ net:_249_ net:_398_ net:_413_ + comment: capacity:2 usage:5 overflow:3 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_143_ net:_169_ net:_190_ net:_245_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_394_ net:net52 + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - +violation type: Vertical congestion + srcs: net:_124_ net:_353_ net:_386_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_171_ net:_177_ net:_184_ net:_272_ net:_348_ + comment: capacity:1 usage:5 overflow:4 + bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_145_ net:_348_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_154_ net:_157_ net:_160_ net:_402_ + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_174_ net:_253_ net:_262_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_225_ net:_228_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_193_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ net:net28 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 51.3000) - (91.2000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_376_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 71.2500) - (79.8000, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_123_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_123_ net:_190_ net:_191_ net:_245_ net:_248_ net:_291_ + comment: capacity:1 usage:6 overflow:5 + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_188_ net:_189_ net:_283_ + comment: capacity:1 usage:4 overflow:3 + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_134_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:_145_ net:_197_ net:_262_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_275_ net:_360_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_180_ net:_182_ net:_250_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_144_ net:_236_ net:_245_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_142_ net:_370_ + comment: capacity:1 usage:3 overflow:2 + bbox = (22.8000, 39.9000) - (25.6500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_158_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 54.1500) - (42.7500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_165_ net:_348_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 28.5000) - (14.2500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_072_ net:_371_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_376_ net:net30 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 79.8000) - (79.8000, 82.6500) on Layer - +violation type: Vertical congestion + srcs: net:_337_ net:_338_ net:_341_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_114_ net:_130_ net:_211_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_245_ net:_248_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_160_ net:_378_ net:_384_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_318_ net:_327_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_130_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_147_ net:_150_ net:_153_ net:_161_ + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 37.0500) - (91.2000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_125_ net:_158_ net:_244_ net:_248_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_388_ net:_391_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 74.1000) - (65.5500, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[16] net:req_msg[2] + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 91.2000) - (79.8000, 94.0500) on Layer - +violation type: Vertical congestion + srcs: net:_135_ net:dpath.a_lt_b$in1\[3\] + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_075_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[11] net:net47 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_268_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 37.0500) - (14.2500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_182_ net:_250_ net:_258_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_244_ net:_248_ net:_306_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_053_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_221_ net:_224_ net:_318_ net:_327_ + comment: capacity:1 usage:5 overflow:4 + bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 48.4500) - (91.2000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_224_ net:_326_ net:_327_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 59.8500) - (25.6500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_414_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_213_ net:_235_ net:_253_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 71.2500) - (25.6500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net17 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 48.4500) - (14.2500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net25 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 65.5500) - (91.2000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net17 net:net36 + comment: capacity:1 usage:3 overflow:2 + bbox = (11.4000, 42.7500) - (14.2500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 25.6500) - (14.2500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_392_ net:_394_ net:net17 + comment: capacity:1 usage:3 overflow:2 + bbox = (11.4000, 76.9500) - (14.2500, 79.8000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 28.5000) - (31.3500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_159_ net:_384_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 65.5500) - (45.6000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[31] net:resp_msg[7] + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 91.2000) - (91.2000, 94.0500) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:dpath.a_lt_b$in0\[4\] net:net49 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 37.0500) - (79.8000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 19.9500) - (14.2500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_010_ net:_120_ net:_396_ net:dpath.a_lt_b$in1\[4\] + comment: capacity:1 usage:4 overflow:3 + bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:_221_ net:dpath.a_lt_b$in1\[11\] + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_141_ net:_353_ net:_362_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_192_ net:_388_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_202_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_043_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_248_ net:_288_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_160_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_202_ net:_311_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_239_ net:_404_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:net47 net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_123_ net:_143_ net:_245_ net:_248_ net:_417_ + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_096_ net:_366_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net13 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 79.8000) - (65.5500, 82.6500) on Layer - +violation type: Vertical congestion + srcs: net:_327_ net:_410_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_421_ net:net12 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 22.8000) - (14.2500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_179_ net:_239_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_353_ net:_393_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_022_ net:_110_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_109_ net:_243_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_185_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_137_ net:_187_ net:_415_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:net19 net:net46 net:net48 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 14.2500) - (65.5500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 28.5000) - (25.6500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_126_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_203_ net:_304_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_229_ net:_235_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_088_ net:dpath.a_lt_b$in0\[6\] + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_298_ net:_385_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[31] net:resp_msg[7] + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 88.3500) - (91.2000, 91.2000) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_244_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:net28 net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 48.4500) - (82.6500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_144_ net:_269_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 76.9500) - (25.6500, 79.8000) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 14.2500) - (79.8000, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net17 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 54.1500) - (14.2500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 17.1000) - (14.2500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_114_ net:_130_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:net19 net:net46 net:net48 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 11.4000) - (65.5500, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_159_ net:_393_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:net46 net:net48 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 8.5500) - (65.5500, 11.4000) on Layer - +violation type: Vertical congestion + srcs: net:_071_ net:_159_ net:_397_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_011_ net:_121_ net:_137_ net:_160_ + comment: capacity:1 usage:5 overflow:4 + bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_270_ net:_388_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_041_ net:_371_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_009_ net:_119_ net:_249_ net:_267_ net:_388_ + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ net:net15 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 39.9000) - (91.2000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_392_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_393_ net:net20 + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 82.6500) - (59.8500, 85.5000) on Layer - +violation type: Vertical congestion + srcs: net:_205_ net:_213_ net:_214_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_396_ net:net49 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 34.2000) - (79.8000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_307_ net:_362_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_377_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 45.6000) - (82.6500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_039_ net:_252_ net:dpath.a_lt_b$in1\[10\] + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_176_ net:_272_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_385_ net:net15 + comment: capacity:1 usage:2 overflow:1 + bbox = (85.5000, 42.7500) - (88.3500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[16] net:req_msg[2] + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 88.3500) - (79.8000, 91.2000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:dpath.a_lt_b$in0\[2\] + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_386_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 85.5000) - (25.6500, 88.3500) on Layer - +violation type: Vertical congestion + srcs: net:_131_ net:_149_ net:_227_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_244_ net:_248_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ net:net8 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 45.6000) - (91.2000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_370_ + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 34.2000) - (25.6500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_142_ net:_370_ + comment: capacity:1 usage:3 overflow:2 + bbox = (22.8000, 37.0500) - (25.6500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_215_ net:_298_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net25 net:net45 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 71.2500) - (91.2000, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_103_ net:_121_ net:_137_ net:_160_ + comment: capacity:1 usage:5 overflow:4 + bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_244_ net:_313_ net:_314_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 39.9000) - (14.2500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_145_ net:_173_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_163_ net:_164_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 65.5500) - (25.6500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_367_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_418_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:net47 net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 39.9000) - (82.6500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_021_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_020_ net:_131_ net:_252_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_393_ net:_394_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 74.1000) - (59.8500, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 19.9500) - (79.8000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_130_ net:_231_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 45.6000) - (25.6500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_121_ net:_160_ + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 54.1500) - (79.8000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_122_ net:_248_ net:_381_ + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[14] net:net46 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 8.5500) - (25.6500, 11.4000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_370_ + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 42.7500) - (25.6500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_230_ net:_242_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:net10 net:net40 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 14.2500) - (91.2000, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_244_ net:_248_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_352_ net:net43 + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_376_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_171_ net:_177_ net:_272_ net:_348_ net:_388_ + comment: capacity:1 usage:5 overflow:4 + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:net2 net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 85.5000) - (19.9500, 88.3500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net25 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 62.7000) - (91.2000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:net45 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 68.4000) - (79.8000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_031_ net:_119_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_042_ net:_371_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 14.2500) - (57.0000, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_196_ net:_197_ net:_272_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net17 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 51.3000) - (14.2500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_245_ net:_292_ net:_388_ net:_417_ + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[4] net:net48 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 5.7000) - (14.2500, 8.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_160_ net:_249_ + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 57.0000) - (79.8000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_402_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_376_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 74.1000) - (79.8000, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_133_ net:_165_ net:_384_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_007_ net:_159_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:net18 net:net46 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 14.2500) - (25.6500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_112_ net:_132_ net:_207_ net:_213_ net:_235_ + comment: capacity:1 usage:5 overflow:4 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_414_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_205_ net:_215_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_160_ net:net45 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 62.7000) - (79.8000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[5] net:resp_msg[12] + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 2.8500) - (91.2000, 5.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_384_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 74.1000) - (45.6000, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_166_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_012_ net:_050_ net:_122_ net:_245_ net:_248_ net:dpath.a_lt_b$in1\[6\] + comment: capacity:1 usage:7 overflow:6 + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 42.7500) - (91.2000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_201_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_165_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ net:net46 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 28.5000) - (65.5500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_243_ net:_252_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_170_ net:_177_ net:_253_ net:_284_ + comment: capacity:1 usage:4 overflow:3 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_249_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[22] net:resp_msg[12] + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 8.5500) - (91.2000, 11.4000) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_172_ net:_264_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_240_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_253_ net:_256_ net:_404_ net:_412_ + comment: capacity:1 usage:5 overflow:4 + bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_111_ net:_127_ net:_149_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_169_ net:_171_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_180_ net:_183_ net:_236_ net:_250_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:net17 net:net51 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:net46 net:net48 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 19.9500) - (65.5500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 82.6500) - (25.6500, 85.5000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_393_ net:_394_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_131_ net:net43 net:net53 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net10 net:net49 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 25.6500) - (79.8000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_252_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 34.2000) - (57.0000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_047_ net:_101_ net:_356_ + comment: capacity:1 usage:4 overflow:3 + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:net16 net:net30 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 85.5000) - (79.8000, 88.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_159_ net:_384_ net:dpath.a_lt_b$in0\[1\] + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 79.8000) - (25.6500, 82.6500) on Layer - +violation type: Vertical congestion + srcs: net:_001_ net:net7 + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_228_ net:_410_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_082_ net:_249_ net:_350_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_348_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[14] net:net48 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 5.7000) - (65.5500, 8.5500) on Layer - +violation type: Vertical congestion + srcs: net:_421_ net:net12 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_209_ net:_252_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_398_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_222_ net:_228_ net:_317_ net:_410_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_370_ + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 31.3500) - (25.6500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_044_ net:_098_ net:_249_ net:_347_ net:_352_ + comment: capacity:1 usage:5 overflow:4 + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_248_ net:_289_ net:_290_ net:_296_ + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_142_ net:_150_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_068_ net:_140_ net:_299_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_152_ net:_162_ net:_403_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_165_ net:_384_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:net10 net:net47 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 19.9500) - (91.2000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_416_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net46 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 22.8000) - (65.5500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_388_ net:net13 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_342_ net:_344_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_194_ net:_297_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_174_ net:_199_ net:_238_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_410_ net:net3 + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 11.4000) - (45.6000, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_167_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 14.2500) - (14.2500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 17.1000) - (79.8000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net46 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 34.2000) - (65.5500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_266_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_073_ net:_114_ net:_334_ net:_336_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_372_ + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 54.1500) - (91.2000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_092_ net:_165_ net:_261_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_229_ net:_235_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 74.1000) - (25.6500, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_206_ net:_341_ net:_346_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_027_ net:_248_ net:_374_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_396_ net:net49 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 31.3500) - (79.8000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_174_ net:_178_ net:_198_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_129_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_392_ net:_394_ net:net17 + comment: capacity:1 usage:3 overflow:2 + bbox = (11.4000, 82.6500) - (14.2500, 85.5000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_348_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_099_ net:_159_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_002_ net:_004_ net:_160_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_210_ net:_212_ net:_332_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ net:net46 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 25.6500) - (65.5500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_129_ net:_210_ net:_233_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:net13 net:net22 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 85.5000) - (65.5500, 88.3500) on Layer - +violation type: Vertical congestion + srcs: net:_111_ net:_127_ net:_200_ net:_252_ + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_174_ net:_271_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_250_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_386_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_386_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_219_ net:_252_ net:_302_ + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_364_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_392_ net:_394_ net:net17 + comment: capacity:1 usage:3 overflow:2 + bbox = (11.4000, 79.8000) - (14.2500, 82.6500) on Layer - +violation type: Vertical congestion + srcs: net:_072_ net:_114_ net:_130_ net:_244_ net:_328_ net:_352_ + comment: capacity:1 usage:6 overflow:5 + bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:net10 net:net47 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 17.1000) - (91.2000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_003_ net:_055_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_220_ net:_222_ net:_225_ net:_228_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:net45 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 65.5500) - (79.8000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_026_ net:_390_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_102_ net:_120_ net:_396_ + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_212_ net:_327_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 57.0000) - (25.6500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_213_ net:_245_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_158_ net:_244_ net:_343_ net:_387_ + comment: capacity:1 usage:5 overflow:4 + bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_259_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net41 net:net46 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 31.3500) - (65.5500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_127_ net:_148_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_057_ net:_156_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 31.3500) - (14.2500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net17 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 45.6000) - (14.2500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_109_ net:_150_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[22] net:req_msg[5] net:resp_msg[12] + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 5.7000) - (91.2000, 8.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_249_ net:net45 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_404_ net:_411_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_136_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 34.2000) - (14.2500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_006_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 68.4000) - (25.6500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_402_ net:_403_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 54.1500) - (37.0500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_146_ net:_174_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_207_ net:_327_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_250_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net25 net:net45 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 74.1000) - (91.2000, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_051_ net:_105_ net:_139_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net10 net:net49 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 22.8000) - (79.8000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_276_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:net17 net:net51 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:dpath.a_lt_b$in1\[5\] net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_390_ net:_409_ net:_410_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_371_ net:_407_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_160_ net:_395_ net:_396_ + comment: capacity:1 usage:4 overflow:3 + bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_408_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_244_ net:_308_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_204_ net:_298_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_175_ net:_277_ net:_415_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_142_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_142_ net:_158_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_141_ net:_218_ net:_309_ net:_310_ + comment: capacity:1 usage:4 overflow:3 + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_365_ net:_371_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_244_ net:_248_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_133_ net:_165_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_229_ net:_235_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_129_ net:_213_ net:_235_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_401_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[4] net:net48 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 8.5500) - (14.2500, 11.4000) on Layer - +violation type: Vertical congestion + srcs: net:_302_ net:_419_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_089_ net:_253_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_150_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_388_ net:_391_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[2] net:net50 + comment: capacity:1 usage:2 overflow:1 + bbox = (8.5500, 62.7000) - (11.4000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_384_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 71.2500) - (45.6000, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_008_ net:_134_ net:dpath.a_lt_b$in1\[2\] + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:net10 net:net40 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:resp_val net:net47 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 22.8000) - (91.2000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net25 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 68.4000) - (91.2000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:net43 net:net53 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_412_ net:net33 net:net50 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_175_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 62.7000) - (25.6500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_281_ net:_416_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_200_ net:net43 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_275_ net:_280_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 65.5500) - (76.9500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_332_ net:_339_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:ctrl.state.out\[1\] + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_139_ net:_169_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_249_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_413_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:_399_ + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 48.4500) - (25.6500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_159_ net:_165_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net11 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 59.8500) - (91.2000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_272_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_245_ net:_397_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_376_ net:net30 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - +violation type: Vertical congestion + srcs: net:_396_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 28.5000) - (79.8000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_037_ net:_091_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_409_ net:net38 net:net46 net:net48 + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 17.1000) - (65.5500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_389_ net:net43 + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_025_ net:_079_ net:_371_ net:_407_ + comment: capacity:1 usage:5 overflow:4 + bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:net18 net:net46 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 11.4000) - (25.6500, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[5] net:resp_msg[12] + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 0.0000) - (91.2000, 2.8500) on Layer - +violation type: Vertical congestion + srcs: net:_016_ net:_070_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_124_ net:_142_ net:_158_ net:_248_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_170_ net:_253_ net:_416_ + comment: capacity:1 usage:4 overflow:3 + bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_330_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - diff --git a/src/grt/test/congestion7_multicore.guideok b/src/grt/test/congestion7_multicore.guideok new file mode 100644 index 00000000000..6255f2db258 --- /dev/null +++ b/src/grt/test/congestion7_multicore.guideok @@ -0,0 +1,5977 @@ +_000_ +( +51300 102600 57000 108300 metal1 +51300 102600 57000 114000 metal2 +51300 108300 57000 114000 metal2 +51300 108300 62700 114000 metal3 +57000 108300 62700 114000 metal2 +57000 108300 62700 114000 metal1 +) +_001_ +( +51300 114000 57000 119700 metal1 +51300 114000 57000 125400 metal2 +51300 119700 57000 125400 metal2 +51300 119700 62700 125400 metal3 +57000 119700 62700 125400 metal2 +57000 119700 62700 125400 metal1 +) +_002_ +( +74100 114000 79800 119700 metal1 +74100 108300 79800 119700 metal2 +74100 108300 79800 114000 metal1 +) +_003_ +( +57000 114000 62700 119700 metal1 +57000 114000 62700 125400 metal2 +57000 119700 62700 125400 metal1 +) +_004_ +( +74100 108300 79800 114000 metal1 +74100 108300 79800 119700 metal2 +74100 114000 79800 119700 metal1 +) +_005_ +( +57000 102600 62700 108300 metal1 +57000 102600 62700 108300 metal2 +57000 102600 68400 108300 metal3 +62700 102600 68400 108300 metal2 +62700 102600 68400 108300 metal1 +) +_006_ +( +136800 131100 142500 136800 metal1 +136800 125400 142500 136800 metal2 +136800 125400 142500 131100 metal1 +) +_007_ +( +85500 119700 91200 125400 metal1 +85500 119700 91200 131100 metal2 +85500 125400 91200 131100 metal2 +85500 125400 96900 131100 metal3 +91200 125400 96900 131100 metal2 +91200 125400 96900 131100 metal1 +) +_008_ +( +102600 136800 108300 142500 metal1 +102600 136800 108300 148200 metal2 +102600 142500 108300 148200 metal2 +102600 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_009_ +( +119700 136800 125400 142500 metal1 +119700 131100 125400 142500 metal2 +119700 131100 125400 136800 metal2 +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 131100 131100 136800 metal1 +) +_010_ +( +148200 79800 153900 85500 metal1 +148200 79800 153900 85500 metal2 +148200 79800 159600 85500 metal3 +153900 79800 159600 85500 metal2 +153900 79800 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_011_ +( +153900 108300 159600 114000 metal1 +153900 108300 159600 114000 metal2 +153900 108300 165300 114000 metal3 +159600 108300 165300 114000 metal2 +159600 102600 165300 114000 metal2 +159600 102600 165300 108300 metal1 +) +_012_ +( +125400 85500 131100 91200 metal1 +125400 79800 131100 91200 metal2 +125400 79800 131100 85500 metal1 +) +_013_ +( +131100 114000 136800 119700 metal1 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal1 +) +_014_ +( +62700 96900 68400 102600 metal1 +62700 96900 68400 102600 metal2 +62700 96900 74100 102600 metal3 +68400 96900 74100 102600 metal2 +68400 96900 74100 102600 metal1 +) +_015_ +( +51300 85500 57000 91200 metal1 +51300 85500 57000 91200 metal2 +51300 85500 62700 91200 metal3 +57000 85500 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_016_ +( +68400 62700 74100 68400 metal1 +68400 62700 74100 68400 metal2 +68400 62700 79800 68400 metal3 +74100 62700 79800 68400 metal2 +74100 57000 79800 68400 metal2 +74100 57000 79800 62700 metal1 +) +_017_ +( +114000 68400 119700 74100 metal1 +114000 68400 119700 79800 metal2 +114000 74100 119700 79800 metal1 +) +_018_ +( +114000 51300 119700 57000 metal1 +114000 51300 119700 57000 metal2 +) +_019_ +( +96900 34200 102600 39900 metal1 +96900 34200 102600 39900 metal2 +96900 34200 108300 39900 metal3 +102600 34200 108300 39900 metal2 +102600 28500 108300 39900 metal2 +102600 28500 108300 34200 metal1 +) +_020_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 57000 metal2 +68400 51300 74100 57000 metal2 +68400 51300 79800 57000 metal3 +74100 51300 79800 57000 metal2 +74100 51300 79800 57000 metal1 +) +_021_ +( +108300 74100 114000 79800 metal1 +108300 74100 114000 85500 metal2 +108300 79800 114000 85500 metal1 +) +_022_ +( +148200 125400 153900 131100 metal1 +148200 125400 153900 136800 metal2 +148200 131100 153900 136800 metal1 +) +_023_ +( +57000 62700 62700 68400 metal1 +57000 62700 62700 68400 metal2 +) +_024_ +( +119700 68400 125400 74100 metal1 +119700 62700 125400 74100 metal2 +119700 62700 125400 68400 metal1 +) +_025_ +( +114000 39900 119700 45600 metal1 +114000 39900 119700 51300 metal2 +114000 45600 119700 51300 metal1 +) +_026_ +( +85500 34200 91200 39900 metal1 +85500 28500 91200 39900 metal2 +85500 28500 91200 34200 metal1 +) +_027_ +( +68400 39900 74100 45600 metal1 +68400 34200 74100 45600 metal2 +68400 34200 74100 39900 metal2 +68400 34200 79800 39900 metal3 +74100 34200 79800 39900 metal2 +74100 34200 79800 39900 metal1 +) +_028_ +( +102600 85500 108300 91200 metal1 +102600 85500 108300 91200 metal2 +102600 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +) +_029_ +( +85500 131100 91200 136800 metal1 +85500 131100 91200 136800 metal2 +) +_030_ +( +96900 142500 102600 148200 metal1 +96900 142500 102600 153900 metal2 +96900 148200 102600 153900 metal1 +) +_031_ +( +125400 142500 131100 148200 metal1 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 136800 136800 148200 metal2 +131100 136800 136800 142500 metal1 +) +_032_ +( +148200 74100 153900 79800 metal1 +148200 74100 153900 79800 metal2 +) +_033_ +( +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +) +_034_ +( +131100 68400 136800 74100 metal1 +131100 68400 136800 74100 metal2 +) +_035_ +( +131100 119700 136800 125400 metal1 +131100 119700 136800 125400 metal2 +) +_036_ +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +) +_037_ +( +51300 74100 57000 79800 metal1 +51300 68400 57000 79800 metal2 +51300 68400 57000 74100 metal2 +51300 68400 62700 74100 metal3 +57000 68400 62700 74100 metal2 +57000 68400 62700 74100 metal1 +) +_038_ +( +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +) +_039_ +( +68400 57000 74100 62700 metal1 +68400 57000 74100 62700 metal2 +68400 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 +74100 57000 79800 68400 metal2 +74100 62700 79800 68400 metal1 +) +_040_ +( +108300 68400 114000 74100 metal1 +108300 68400 114000 74100 metal2 +) +_041_ +( +114000 57000 119700 62700 metal1 +114000 51300 119700 62700 metal2 +114000 51300 119700 57000 metal1 +) +_042_ +( +96900 28500 102600 34200 metal1 +96900 28500 102600 34200 metal2 +96900 28500 114000 34200 metal3 +108300 28500 114000 34200 metal2 +108300 28500 114000 39900 metal2 +108300 34200 114000 39900 metal1 +) +_043_ +( +68400 51300 74100 57000 metal1 +68400 45600 74100 57000 metal2 +68400 45600 74100 51300 metal2 +68400 45600 79800 51300 metal3 +74100 45600 79800 51300 metal2 +74100 45600 79800 51300 metal1 +) +_044_ +( +102600 79800 108300 85500 metal1 +102600 74100 108300 85500 metal2 +102600 74100 108300 79800 metal1 +) +_045_ +( +85500 119700 91200 125400 metal1 +85500 119700 91200 125400 metal2 +) +_046_ +( +102600 142500 108300 148200 metal1 +102600 142500 108300 148200 metal2 +102600 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_047_ +( +119700 142500 125400 148200 metal1 +119700 136800 125400 148200 metal2 +119700 136800 125400 142500 metal1 +) +_048_ +( +148200 85500 153900 91200 metal1 +148200 85500 153900 91200 metal2 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_049_ +( +153900 102600 159600 108300 metal1 +153900 102600 159600 108300 metal2 +) +_050_ +( +119700 79800 125400 85500 metal1 +119700 79800 125400 85500 metal2 +119700 79800 131100 85500 metal3 +125400 79800 131100 85500 metal2 +125400 79800 131100 91200 metal2 +125400 85500 131100 91200 metal1 +) +_051_ +( +131100 114000 136800 119700 metal1 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 108300 142500 119700 metal2 +136800 108300 142500 114000 metal1 +) +_052_ +( +62700 96900 68400 102600 metal1 +62700 96900 68400 102600 metal2 +) +_053_ +( +51300 79800 57000 85500 metal1 +51300 79800 57000 91200 metal2 +51300 85500 57000 91200 metal1 +) +_054_ +( +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +) +_055_ +( +57000 119700 62700 125400 metal1 +57000 114000 62700 125400 metal2 +57000 114000 62700 119700 metal2 +57000 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_056_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +) +_057_ +( +57000 119700 62700 125400 metal1 +57000 119700 62700 125400 metal2 +57000 119700 68400 125400 metal3 +62700 119700 68400 125400 metal2 +62700 119700 68400 125400 metal1 +62700 114000 68400 125400 metal2 +62700 114000 68400 119700 metal1 +) +_058_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +74100 114000 85500 119700 metal3 +79800 114000 85500 119700 metal2 +79800 114000 85500 119700 metal1 +) +_059_ +( +62700 102600 68400 114000 metal2 +62700 108300 68400 114000 metal1 +62700 102600 68400 108300 metal1 +62700 102600 68400 108300 metal2 +62700 102600 74100 108300 metal3 +68400 102600 74100 108300 metal2 +68400 102600 74100 108300 metal1 +68400 102600 74100 114000 metal2 +68400 108300 74100 114000 metal1 +79800 102600 85500 108300 metal2 +79800 102600 91200 108300 metal3 +85500 102600 91200 108300 metal2 +85500 102600 91200 108300 metal1 +79800 96900 85500 108300 metal2 +79800 96900 85500 102600 metal1 +68400 102600 85500 108300 metal3 +) +_060_ +( +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_061_ +( +91200 125400 96900 131100 metal1 +91200 125400 96900 131100 metal2 +91200 125400 102600 131100 metal3 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal1 +) +_062_ +( +96900 136800 102600 142500 metal1 +96900 136800 102600 142500 metal2 +96900 136800 108300 142500 metal3 +102600 136800 108300 142500 metal2 +102600 136800 108300 142500 metal1 +) +_063_ +( +125400 131100 131100 136800 metal1 +125400 131100 131100 136800 metal2 +) +_064_ +( +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 153900 85500 metal3 +148200 79800 153900 85500 metal2 +148200 79800 153900 85500 metal1 +) +_065_ +( +142500 108300 148200 114000 metal1 +142500 108300 148200 114000 metal2 +142500 108300 159600 114000 metal3 +153900 108300 159600 114000 metal2 +153900 108300 159600 114000 metal1 +) +_066_ +( +125400 79800 131100 85500 metal1 +125400 79800 131100 85500 metal2 +125400 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +) +_067_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +131100 114000 136800 119700 metal1 +) +_068_ +( +68400 96900 74100 102600 metal1 +68400 91200 74100 102600 metal2 +68400 91200 74100 96900 metal1 +) +_069_ +( +57000 85500 62700 91200 metal1 +57000 85500 62700 91200 metal2 +57000 85500 68400 91200 metal3 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal1 +) +_070_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 68400 metal2 +62700 62700 68400 68400 metal2 +62700 62700 74100 68400 metal3 +68400 62700 74100 68400 metal2 +68400 62700 74100 68400 metal1 +) +_071_ +( +114000 74100 119700 79800 metal1 +114000 74100 119700 85500 metal2 +114000 79800 119700 85500 metal1 +) +_072_ +( +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 119700 45600 metal3 +114000 39900 119700 45600 metal2 +114000 39900 119700 57000 metal2 +114000 51300 119700 57000 metal1 +) +_073_ +( +91200 39900 96900 45600 metal1 +91200 34200 96900 45600 metal2 +91200 34200 96900 39900 metal2 +91200 34200 102600 39900 metal3 +96900 34200 102600 39900 metal2 +96900 34200 102600 39900 metal1 +) +_074_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +) +_075_ +( +108300 79800 114000 85500 metal1 +108300 79800 114000 91200 metal2 +108300 85500 114000 91200 metal1 +) +_076_ +( +142500 125400 148200 131100 metal1 +142500 125400 148200 131100 metal2 +142500 125400 153900 131100 metal3 +148200 125400 153900 131100 metal2 +148200 125400 153900 131100 metal1 +) +_077_ +( +57000 62700 62700 68400 metal1 +57000 62700 62700 68400 metal2 +57000 62700 68400 68400 metal3 +62700 62700 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_078_ +( +119700 68400 125400 74100 metal1 +119700 68400 125400 74100 metal2 +) +_079_ +( +108300 45600 114000 51300 metal1 +108300 39900 114000 51300 metal2 +108300 39900 114000 45600 metal2 +108300 39900 119700 45600 metal3 +114000 39900 119700 45600 metal2 +114000 39900 119700 45600 metal1 +) +_080_ +( +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +) +_081_ +( +68400 39900 74100 45600 metal1 +68400 39900 74100 45600 metal2 +) +_082_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_083_ +( +85500 131100 91200 136800 metal1 +85500 131100 91200 136800 metal2 +85500 131100 102600 136800 metal3 +96900 131100 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_084_ +( +96900 142500 102600 148200 metal1 +96900 142500 102600 148200 metal2 +96900 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 136800 108300 148200 metal2 +102600 136800 108300 142500 metal1 +) +_085_ +( +125400 136800 131100 142500 metal1 +125400 136800 131100 142500 metal2 +125400 136800 136800 142500 metal3 +131100 136800 136800 142500 metal2 +131100 136800 136800 142500 metal1 +) +_086_ +( +148200 74100 153900 79800 metal1 +148200 74100 153900 79800 metal2 +) +_087_ +( +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +) +_088_ +( +131100 74100 136800 79800 metal1 +131100 68400 136800 79800 metal2 +131100 68400 136800 74100 metal1 +) +_089_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 125400 metal2 +125400 119700 131100 125400 metal2 +125400 119700 136800 125400 metal3 +131100 119700 136800 125400 metal2 +131100 119700 136800 125400 metal1 +) +_090_ +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +51300 91200 68400 96900 metal3 +62700 91200 68400 96900 metal2 +62700 91200 68400 96900 metal1 +) +_091_ +( +57000 68400 62700 74100 metal1 +57000 68400 62700 74100 metal2 +57000 68400 68400 74100 metal3 +62700 68400 68400 74100 metal2 +62700 68400 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +_092_ +( +131100 131100 136800 136800 metal1 +131100 131100 136800 136800 metal2 +131100 131100 148200 136800 metal3 +142500 131100 148200 136800 metal2 +142500 131100 148200 142500 metal2 +142500 136800 148200 142500 metal1 +) +_093_ +( +74100 62700 79800 68400 metal1 +74100 62700 79800 68400 metal2 +74100 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +) +_094_ +( +108300 68400 114000 74100 metal1 +108300 68400 114000 74100 metal2 +) +_095_ +( +114000 57000 119700 62700 metal1 +114000 57000 119700 62700 metal2 +) +_096_ +( +108300 39900 114000 45600 metal1 +108300 34200 114000 45600 metal2 +108300 34200 114000 39900 metal1 +) +_097_ +( +74100 45600 79800 51300 metal1 +74100 45600 79800 51300 metal2 +74100 45600 85500 51300 metal3 +79800 45600 85500 51300 metal2 +79800 45600 85500 51300 metal1 +) +_098_ +( +102600 74100 108300 79800 metal1 +102600 74100 108300 85500 metal2 +102600 79800 108300 85500 metal1 +) +_099_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 125400 metal2 +85500 119700 91200 125400 metal1 +) +_100_ +( +108300 142500 114000 148200 metal1 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +) +_101_ +( +119700 136800 125400 142500 metal1 +119700 136800 125400 148200 metal2 +119700 142500 125400 148200 metal1 +) +_102_ +( +153900 91200 159600 96900 metal1 +153900 85500 159600 96900 metal2 +153900 85500 159600 91200 metal1 +) +_103_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 108300 metal2 +153900 102600 159600 108300 metal1 +) +_104_ +( +119700 85500 125400 91200 metal1 +119700 79800 125400 91200 metal2 +119700 79800 125400 85500 metal1 +) +_105_ +( +136800 108300 142500 114000 metal1 +136800 108300 142500 114000 metal2 +136800 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 119700 metal2 +142500 114000 148200 119700 metal1 +) +_106_ +( +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 68400 102600 metal3 +62700 96900 68400 102600 metal2 +62700 96900 68400 102600 metal1 +) +_107_ +( +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 62700 85500 metal3 +57000 79800 62700 85500 metal2 +57000 79800 62700 85500 metal1 +) +_108_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +) +_109_ +( +79800 108300 85500 114000 metal1 +79800 102600 85500 114000 metal2 +79800 102600 85500 108300 metal1 +79800 102600 85500 108300 metal2 +79800 102600 91200 108300 metal3 +85500 102600 91200 108300 metal2 +85500 102600 91200 108300 metal1 +85500 96900 91200 108300 metal2 +85500 96900 91200 102600 metal1 +) +_110_ +( +102600 125400 108300 136800 metal2 +102600 131100 108300 136800 metal1 +102600 125400 108300 131100 metal1 +102600 125400 108300 131100 metal2 +102600 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +148200 131100 153900 136800 metal1 +148200 125400 153900 136800 metal2 +148200 125400 153900 131100 metal2 +142500 125400 153900 131100 metal3 +148200 131100 153900 142500 metal2 +148200 136800 153900 142500 metal1 +) +_111_ +( +79800 62700 85500 74100 metal2 +62700 62700 68400 68400 metal1 +62700 62700 68400 68400 metal2 +62700 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +74100 68400 79800 74100 metal1 +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal1 +) +_112_ +( +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 62700 108300 74100 metal2 +114000 62700 119700 74100 metal2 +114000 68400 119700 74100 metal1 +102600 62700 108300 68400 metal1 +102600 62700 108300 68400 metal2 +102600 62700 119700 68400 metal3 +114000 62700 119700 68400 metal2 +114000 62700 125400 68400 metal3 +119700 62700 125400 68400 metal2 +119700 62700 125400 68400 metal1 +) +_113_ +( +108300 45600 114000 57000 metal2 +108300 51300 114000 57000 metal1 +102600 57000 108300 62700 metal1 +102600 57000 108300 62700 metal2 +102600 57000 114000 62700 metal3 +108300 57000 114000 62700 metal2 +108300 45600 114000 51300 metal1 +108300 45600 114000 51300 metal2 +108300 45600 119700 51300 metal3 +114000 45600 119700 51300 metal2 +114000 45600 119700 51300 metal1 +108300 57000 114000 68400 metal2 +108300 62700 114000 68400 metal1 +108300 51300 114000 62700 metal2 +) +_114_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 108300 39900 metal3 +102600 34200 108300 39900 metal2 +102600 39900 108300 45600 metal1 +102600 34200 108300 45600 metal2 +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 96900 39900 metal3 +102600 51300 108300 57000 metal1 +102600 39900 108300 57000 metal2 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +102600 34200 114000 39900 metal3 +108300 34200 114000 39900 metal2 +108300 34200 114000 39900 metal1 +) +_115_ +( +79800 39900 85500 57000 metal2 +79800 51300 85500 57000 metal1 +79800 51300 85500 62700 metal2 +79800 57000 85500 62700 metal1 +68400 39900 74100 45600 metal1 +68400 39900 74100 45600 metal2 +68400 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +) +_116_ +( +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +91200 68400 96900 91200 metal2 +91200 68400 96900 74100 metal1 +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +) +_117_ +( +91200 114000 96900 119700 metal1 +91200 114000 96900 119700 metal2 +91200 114000 102600 119700 metal3 +96900 114000 102600 119700 metal2 +96900 114000 102600 119700 metal1 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +91200 125400 96900 131100 metal1 +91200 114000 96900 131100 metal2 +91200 125400 96900 136800 metal2 +91200 131100 96900 136800 metal1 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 96900 119700 metal3 +) +_118_ +( +108300 131100 114000 148200 metal2 +114000 125400 119700 131100 metal1 +114000 119700 119700 131100 metal2 +114000 119700 119700 125400 metal1 +96900 136800 102600 142500 metal1 +96900 136800 102600 148200 metal2 +96900 142500 102600 148200 metal2 +96900 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal1 +108300 131100 114000 136800 metal1 +108300 131100 114000 136800 metal2 +108300 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 125400 119700 136800 metal2 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +102600 142500 114000 148200 metal3 +) +_119_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 142500 metal2 +119700 136800 125400 142500 metal2 +119700 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +114000 114000 119700 119700 metal1 +114000 114000 119700 125400 metal2 +125400 136800 131100 148200 metal2 +119700 114000 125400 125400 metal2 +119700 114000 125400 119700 metal1 +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +114000 142500 131100 148200 metal3 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal1 +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 125400 125400 metal3 +119700 119700 125400 125400 metal2 +119700 119700 125400 131100 metal2 +) +_120_ +( +142500 85500 148200 91200 metal1 +142500 85500 148200 91200 metal2 +142500 85500 153900 91200 metal3 +148200 85500 153900 91200 metal2 +148200 85500 153900 96900 metal2 +142500 79800 148200 91200 metal2 +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 159600 85500 metal3 +153900 79800 159600 85500 metal2 +153900 79800 159600 85500 metal1 +148200 91200 153900 96900 metal1 +148200 91200 153900 96900 metal2 +148200 91200 159600 96900 metal3 +153900 91200 159600 96900 metal2 +153900 91200 159600 96900 metal1 +) +_121_ +( +148200 102600 153900 119700 metal2 +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +148200 114000 159600 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal1 +142500 102600 148200 108300 metal1 +142500 102600 148200 108300 metal2 +142500 102600 153900 108300 metal3 +148200 102600 153900 108300 metal2 +148200 102600 153900 108300 metal1 +148200 96900 153900 108300 metal2 +148200 96900 153900 102600 metal2 +148200 96900 159600 102600 metal3 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal1 +) +_122_ +( +125400 74100 131100 96900 metal2 +114000 91200 119700 96900 metal1 +114000 91200 119700 96900 metal2 +114000 91200 131100 96900 metal3 +125400 91200 131100 96900 metal2 +114000 85500 119700 96900 metal2 +114000 85500 119700 91200 metal1 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +125400 91200 136800 96900 metal3 +131100 91200 136800 96900 metal2 +131100 91200 136800 96900 metal1 +) +_123_ +( +131100 102600 136800 119700 metal2 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 125400 metal2 +136800 119700 142500 125400 metal1 +125400 102600 131100 108300 metal1 +125400 102600 131100 108300 metal2 +125400 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +) +_124_ +( +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +62700 85500 68400 96900 metal2 +62700 85500 68400 91200 metal1 +57000 91200 62700 96900 metal1 +57000 91200 62700 96900 metal2 +57000 91200 68400 96900 metal3 +51300 96900 57000 102600 metal1 +51300 96900 57000 102600 metal2 +51300 96900 62700 102600 metal3 +57000 96900 62700 102600 metal2 +57000 91200 62700 102600 metal2 +) +_125_ +( +62700 74100 68400 85500 metal2 +57000 74100 62700 79800 metal1 +57000 74100 62700 79800 metal2 +57000 74100 68400 79800 metal3 +62700 74100 68400 79800 metal2 +62700 74100 68400 79800 metal1 +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +) +_126_ +( +108300 131100 114000 136800 metal2 +108300 131100 142500 136800 metal3 +136800 131100 142500 136800 metal2 +136800 131100 142500 136800 metal1 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal1 +108300 119700 114000 136800 metal2 +136800 131100 142500 142500 metal2 +136800 136800 142500 142500 metal1 +102600 131100 108300 136800 metal1 +102600 131100 108300 136800 metal2 +102600 131100 114000 136800 metal3 +102600 119700 108300 125400 metal1 +102600 119700 108300 125400 metal2 +102600 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +) +_127_ +( +74100 62700 79800 68400 metal1 +74100 62700 79800 68400 metal2 +74100 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +74100 68400 79800 74100 metal2 +74100 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +74100 74100 79800 79800 metal1 +74100 68400 79800 79800 metal2 +74100 62700 79800 74100 metal2 +) +_128_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 79800 metal2 +74100 74100 91200 79800 metal3 +85500 74100 91200 79800 metal2 +96900 62700 102600 68400 metal1 +96900 62700 102600 68400 metal2 +96900 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +102600 62700 108300 74100 metal2 +102600 68400 108300 74100 metal1 +91200 74100 96900 79800 metal1 +91200 74100 96900 79800 metal2 +91200 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +85500 68400 91200 79800 metal2 +85500 68400 91200 74100 metal1 +102600 68400 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +108300 74100 114000 79800 metal1 +85500 74100 96900 79800 metal3 +) +_129_ +( +91200 62700 96900 68400 metal1 +91200 57000 96900 68400 metal2 +91200 57000 96900 62700 metal2 +91200 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +108300 51300 114000 62700 metal2 +108300 51300 114000 57000 metal1 +102600 57000 108300 62700 metal1 +102600 57000 108300 62700 metal2 +102600 57000 114000 62700 metal3 +108300 57000 114000 62700 metal2 +108300 57000 114000 62700 metal1 +96900 51300 102600 62700 metal2 +96900 51300 102600 57000 metal1 +108300 57000 119700 62700 metal3 +114000 57000 119700 62700 metal2 +114000 57000 119700 62700 metal1 +96900 57000 108300 62700 metal3 +) +_130_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +102600 57000 108300 68400 metal2 +102600 57000 108300 62700 metal1 +102600 34200 108300 39900 metal1 +102600 34200 108300 45600 metal2 +102600 39900 108300 45600 metal1 +102600 39900 108300 62700 metal2 +) +_131_ +( +85500 57000 91200 68400 metal2 +85500 62700 91200 68400 metal2 +85500 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal1 +74100 51300 79800 57000 metal1 +74100 51300 79800 57000 metal2 +74100 51300 85500 57000 metal3 +79800 51300 85500 57000 metal2 +79800 51300 85500 57000 metal1 +79800 51300 85500 62700 metal2 +79800 57000 85500 62700 metal2 +79800 57000 91200 62700 metal3 +85500 57000 91200 62700 metal2 +85500 57000 91200 62700 metal1 +74100 45600 79800 57000 metal2 +74100 45600 79800 51300 metal1 +) +_132_ +( +96900 62700 102600 74100 metal2 +96900 62700 102600 68400 metal1 +96900 79800 102600 85500 metal1 +96900 79800 102600 91200 metal2 +96900 85500 102600 91200 metal1 +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 74100 102600 85500 metal2 +96900 74100 102600 79800 metal2 +96900 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +102600 74100 108300 79800 metal1 +96900 68400 102600 79800 metal2 +) +_133_ +( +91200 119700 96900 125400 metal1 +91200 119700 96900 125400 metal2 +91200 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +91200 108300 96900 119700 metal2 +91200 108300 96900 114000 metal1 +91200 114000 96900 125400 metal2 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 96900 119700 metal3 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal1 +) +_134_ +( +108300 136800 114000 142500 metal1 +108300 131100 114000 142500 metal2 +108300 131100 114000 136800 metal1 +108300 136800 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_135_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 131100 metal2 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +119700 131100 125400 136800 metal1 +119700 125400 125400 136800 metal2 +119700 131100 125400 142500 metal2 +119700 136800 125400 142500 metal1 +) +_136_ +( +136800 102600 142500 108300 metal1 +136800 96900 142500 108300 metal2 +136800 96900 142500 102600 metal2 +136800 96900 148200 102600 metal3 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal1 +142500 85500 148200 91200 metal1 +142500 85500 148200 91200 metal2 +142500 85500 153900 91200 metal3 +148200 85500 153900 91200 metal2 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 91200 153900 102600 metal2 +148200 91200 153900 96900 metal1 +148200 85500 153900 96900 metal2 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_137_ +( +136800 102600 142500 108300 metal1 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 108300 metal1 +148200 102600 153900 108300 metal1 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +142500 102600 153900 108300 metal3 +142500 96900 148200 108300 metal2 +142500 96900 148200 102600 metal1 +153900 96900 159600 108300 metal2 +153900 96900 159600 102600 metal1 +153900 108300 159600 114000 metal1 +153900 102600 159600 114000 metal2 +) +_138_ +( +131100 85500 136800 91200 metal1 +131100 85500 136800 91200 metal2 +131100 85500 142500 91200 metal3 +136800 85500 142500 91200 metal2 +136800 85500 142500 108300 metal2 +136800 102600 142500 108300 metal1 +119700 91200 125400 96900 metal1 +119700 91200 125400 102600 metal2 +119700 96900 125400 102600 metal1 +119700 85500 125400 96900 metal2 +119700 85500 125400 91200 metal1 +119700 85500 125400 91200 metal2 +119700 85500 136800 91200 metal3 +) +_139_ +( +136800 102600 142500 114000 metal2 +136800 108300 142500 119700 metal2 +136800 114000 142500 119700 metal1 +136800 108300 142500 114000 metal2 +136800 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +131100 108300 136800 114000 metal1 +131100 108300 136800 114000 metal2 +131100 108300 142500 114000 metal3 +131100 102600 136800 108300 metal1 +131100 102600 136800 108300 metal2 +131100 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 102600 142500 108300 metal1 +) +_140_ +( +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 79800 91200 metal3 +74100 85500 79800 91200 metal2 +74100 74100 79800 91200 metal2 +74100 74100 79800 79800 metal1 +68400 91200 74100 102600 metal2 +68400 91200 74100 96900 metal1 +68400 85500 74100 96900 metal2 +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 74100 102600 metal3 +68400 96900 74100 102600 metal2 +68400 96900 74100 102600 metal1 +) +_141_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +57000 79800 62700 85500 metal1 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +62700 79800 74100 85500 metal3 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal1 +68400 74100 74100 85500 metal2 +57000 79800 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_142_ +( +62700 108300 68400 114000 metal1 +62700 102600 68400 114000 metal2 +62700 85500 68400 108300 metal2 +62700 85500 68400 91200 metal1 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +79800 102600 91200 108300 metal3 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal1 +62700 51300 68400 91200 metal2 +62700 51300 68400 57000 metal1 +62700 39900 68400 57000 metal2 +62700 39900 68400 45600 metal2 +62700 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +79800 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +62700 102600 68400 108300 metal2 +62700 102600 85500 108300 metal3 +79800 91200 85500 108300 metal2 +79800 91200 85500 96900 metal1 +) +_143_ +( +114000 114000 119700 119700 metal1 +114000 108300 119700 119700 metal2 +114000 108300 119700 114000 metal2 +114000 108300 142500 114000 metal3 +136800 108300 142500 114000 metal2 +136800 102600 142500 114000 metal2 +136800 102600 142500 108300 metal1 +) +_144_ +( +119700 114000 125400 125400 metal2 +119700 119700 125400 125400 metal2 +119700 119700 131100 125400 metal3 +125400 119700 131100 125400 metal2 +125400 119700 131100 131100 metal2 +125400 125400 131100 131100 metal1 +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 125400 125400 metal3 +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 125400 119700 metal3 +119700 114000 125400 119700 metal2 +119700 114000 125400 119700 metal1 +) +_145_ +( +114000 125400 119700 131100 metal1 +114000 119700 119700 131100 metal2 +108300 114000 114000 119700 metal1 +108300 114000 114000 125400 metal2 +108300 119700 114000 125400 metal2 +108300 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 119700 119700 125400 metal1 +108300 131100 114000 136800 metal1 +108300 131100 114000 136800 metal2 +108300 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 125400 119700 136800 metal2 +) +_146_ +( +108300 119700 114000 125400 metal1 +108300 114000 114000 125400 metal2 +108300 114000 114000 119700 metal1 +) +_147_ +( +79800 119700 85500 125400 metal1 +79800 119700 85500 125400 metal2 +79800 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal2 +102600 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 119700 metal1 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +) +_148_ +( +74100 74100 79800 79800 metal1 +74100 68400 79800 79800 metal2 +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal1 +) +_149_ +( +79800 68400 85500 74100 metal1 +79800 57000 85500 74100 metal2 +79800 57000 85500 62700 metal2 +79800 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +) +_150_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 125400 metal2 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_151_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_152_ +( +68400 119700 74100 125400 metal1 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +68400 114000 74100 119700 metal1 +68400 114000 74100 125400 metal2 +) +_153_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +79800 114000 85500 119700 metal1 +79800 114000 85500 125400 metal2 +) +_154_ +( +68400 114000 74100 119700 metal1 +68400 114000 74100 119700 metal2 +68400 114000 79800 119700 metal3 +74100 114000 79800 119700 metal2 +74100 114000 79800 125400 metal2 +74100 119700 79800 125400 metal1 +) +_155_ +( +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +) +_156_ +( +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 114000 74100 125400 metal2 +68400 114000 74100 119700 metal1 +) +_157_ +( +74100 119700 79800 125400 metal1 +74100 114000 79800 125400 metal2 +74100 114000 79800 119700 metal1 +) +_158_ +( +68400 85500 74100 96900 metal2 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 91200 91200 96900 metal1 +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +79800 108300 96900 114000 metal3 +91200 108300 96900 114000 metal2 +91200 108300 96900 119700 metal2 +91200 114000 96900 119700 metal1 +74100 91200 85500 96900 metal3 +74100 102600 79800 114000 metal2 +74100 108300 79800 114000 metal2 +74100 108300 85500 114000 metal3 +68400 51300 74100 91200 metal2 +68400 51300 74100 57000 metal2 +68400 51300 85500 57000 metal3 +79800 51300 85500 57000 metal2 +79800 39900 85500 57000 metal2 +79800 39900 85500 45600 metal1 +79800 39900 85500 45600 metal2 +79800 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +74100 91200 79800 108300 metal2 +62700 51300 68400 57000 metal1 +62700 51300 68400 57000 metal2 +62700 51300 74100 57000 metal3 +68400 102600 74100 108300 metal1 +68400 102600 74100 108300 metal2 +68400 102600 79800 108300 metal3 +74100 102600 79800 108300 metal2 +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +) +_159_ +( +131100 136800 136800 142500 metal1 +131100 136800 136800 142500 metal2 +131100 136800 148200 142500 metal3 +142500 136800 148200 142500 metal2 +142500 131100 148200 142500 metal2 +142500 131100 148200 136800 metal1 +85500 108300 91200 114000 metal1 +85500 108300 91200 114000 metal2 +85500 108300 96900 114000 metal3 +91200 108300 96900 114000 metal2 +91200 96900 96900 114000 metal2 +91200 96900 96900 102600 metal2 +91200 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal1 +114000 85500 119700 91200 metal1 +114000 79800 119700 91200 metal2 +114000 79800 119700 85500 metal2 +114000 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +142500 119700 148200 136800 metal2 +142500 119700 148200 125400 metal1 +136800 74100 142500 85500 metal2 +136800 74100 142500 79800 metal1 +108300 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 85500 119700 102600 metal2 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 119700 142500 metal3 +114000 136800 119700 142500 metal2 +114000 136800 136800 142500 metal3 +79800 119700 85500 142500 metal2 +79800 136800 85500 142500 metal2 +79800 136800 96900 142500 metal3 +79800 119700 85500 125400 metal1 +79800 119700 85500 125400 metal2 +79800 119700 91200 125400 metal3 +85500 119700 91200 125400 metal2 +85500 108300 91200 125400 metal2 +114000 131100 119700 142500 metal2 +114000 131100 119700 136800 metal1 +) +_160_ +( +74100 114000 79800 125400 metal2 +74100 119700 79800 125400 metal1 +68400 108300 74100 114000 metal1 +68400 108300 74100 114000 metal2 +68400 108300 79800 114000 metal3 +74100 108300 79800 114000 metal2 +74100 108300 79800 119700 metal2 +108300 114000 114000 125400 metal2 +108300 119700 114000 125400 metal2 +108300 119700 142500 125400 metal3 +136800 119700 142500 125400 metal2 +136800 119700 142500 125400 metal1 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 114000 119700 metal3 +108300 114000 114000 119700 metal2 +114000 85500 119700 91200 metal1 +114000 85500 119700 96900 metal2 +114000 91200 119700 96900 metal2 +108300 91200 119700 96900 metal3 +108300 91200 114000 96900 metal2 +108300 91200 114000 96900 metal1 +148200 136800 153900 142500 metal1 +148200 136800 153900 142500 metal2 +148200 136800 159600 142500 metal3 +153900 136800 159600 142500 metal2 +153900 119700 159600 142500 metal2 +153900 96900 159600 102600 metal1 +153900 91200 159600 102600 metal2 +153900 91200 159600 96900 metal1 +108300 91200 114000 119700 metal2 +153900 96900 159600 125400 metal2 +148200 136800 153900 148200 metal2 +148200 142500 153900 148200 metal2 +114000 142500 153900 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +74100 114000 79800 119700 metal2 +74100 114000 91200 119700 metal3 +136800 119700 159600 125400 metal3 +153900 119700 159600 125400 metal2 +) +_161_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +74100 114000 85500 119700 metal3 +79800 114000 85500 119700 metal2 +79800 114000 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_162_ +( +62700 114000 68400 119700 metal1 +62700 114000 68400 125400 metal2 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 119700 74100 125400 metal1 +) +_163_ +( +62700 114000 68400 119700 metal1 +62700 108300 68400 119700 metal2 +62700 108300 68400 114000 metal1 +) +_164_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 119700 metal2 +62700 114000 68400 119700 metal2 +62700 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_165_ +( +131100 131100 136800 136800 metal2 +131100 131100 148200 136800 metal3 +142500 131100 148200 136800 metal2 +142500 131100 148200 136800 metal1 +91200 96900 96900 108300 metal2 +91200 96900 96900 102600 metal2 +91200 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal1 +91200 136800 96900 142500 metal1 +91200 131100 96900 142500 metal2 +131100 131100 136800 142500 metal2 +131100 136800 136800 142500 metal1 +114000 85500 119700 91200 metal1 +114000 85500 119700 91200 metal2 +114000 85500 142500 91200 metal3 +136800 85500 142500 91200 metal2 +136800 79800 142500 91200 metal2 +136800 79800 142500 85500 metal1 +142500 119700 148200 136800 metal2 +142500 119700 148200 125400 metal1 +136800 74100 142500 85500 metal2 +136800 74100 142500 79800 metal1 +91200 102600 96900 119700 metal2 +91200 114000 96900 119700 metal1 +108300 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 85500 119700 102600 metal2 +91200 131100 96900 136800 metal2 +91200 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 131100 119700 136800 metal1 +114000 131100 136800 136800 metal3 +91200 114000 96900 136800 metal2 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 96900 108300 metal3 +91200 102600 96900 108300 metal2 +) +_166_ +( +142500 131100 148200 136800 metal1 +142500 125400 148200 136800 metal2 +142500 125400 148200 131100 metal1 +) +_167_ +( +96900 79800 102600 85500 metal1 +96900 79800 102600 91200 metal2 +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_168_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +96900 85500 102600 91200 metal2 +96900 85500 102600 91200 metal1 +) +_169_ +( +131100 102600 136800 108300 metal1 +131100 96900 136800 108300 metal2 +119700 96900 125400 102600 metal1 +119700 96900 125400 102600 metal2 +119700 96900 131100 102600 metal3 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal1 +125400 108300 131100 114000 metal1 +125400 108300 131100 114000 metal2 +125400 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 102600 136800 114000 metal2 +125400 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +) +_170_ +( +131100 91200 136800 96900 metal1 +131100 91200 136800 102600 metal2 +131100 96900 136800 102600 metal1 +131100 85500 136800 91200 metal1 +131100 85500 136800 96900 metal2 +) +_171_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +131100 96900 136800 108300 metal2 +114000 102600 119700 114000 metal2 +114000 108300 119700 114000 metal1 +114000 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +131100 96900 142500 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +114000 96900 119700 108300 metal2 +114000 96900 119700 102600 metal1 +) +_172_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +119700 119700 125400 131100 metal2 +119700 119700 125400 125400 metal1 +) +_173_ +( +108300 125400 114000 131100 metal2 +108300 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +102600 125400 108300 131100 metal1 +102600 125400 108300 131100 metal2 +102600 125400 114000 131100 metal3 +108300 131100 114000 136800 metal1 +108300 125400 114000 136800 metal2 +) +_174_ +( +108300 114000 114000 119700 metal1 +108300 102600 114000 119700 metal2 +102600 96900 108300 102600 metal1 +102600 96900 108300 108300 metal2 +102600 102600 108300 108300 metal2 +102600 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 102600 114000 108300 metal1 +108300 114000 114000 131100 metal2 +108300 125400 114000 131100 metal2 +108300 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +) +_175_ +( +136800 91200 142500 96900 metal1 +136800 91200 142500 96900 metal2 +136800 91200 148200 96900 metal3 +142500 91200 148200 96900 metal2 +142500 91200 148200 96900 metal1 +142500 96900 148200 102600 metal1 +142500 96900 148200 108300 metal2 +142500 102600 148200 108300 metal2 +142500 102600 153900 108300 metal3 +148200 102600 153900 108300 metal2 +148200 102600 153900 108300 metal1 +142500 91200 148200 102600 metal2 +) +_176_ +( +136800 85500 142500 96900 metal2 +136800 91200 142500 96900 metal1 +136800 85500 142500 91200 metal1 +136800 85500 142500 91200 metal2 +136800 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 91200 metal1 +) +_177_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +114000 102600 119700 114000 metal2 +114000 108300 119700 114000 metal1 +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +131100 91200 136800 102600 metal2 +131100 91200 136800 96900 metal2 +131100 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 96900 metal1 +114000 96900 119700 108300 metal2 +) +_178_ +( +102600 108300 108300 114000 metal1 +102600 102600 108300 114000 metal2 +102600 102600 108300 108300 metal2 +102600 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 102600 114000 108300 metal1 +) +_179_ +( +91200 108300 96900 114000 metal1 +91200 108300 96900 114000 metal2 +91200 108300 102600 114000 metal3 +96900 108300 102600 114000 metal2 +96900 108300 102600 119700 metal2 +96900 114000 102600 119700 metal1 +96900 114000 102600 119700 metal2 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +) +_180_ +( +102600 108300 108300 119700 metal2 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 108300 114000 114000 metal1 +102600 114000 108300 125400 metal2 +102600 119700 108300 125400 metal1 +96900 114000 102600 119700 metal1 +96900 114000 102600 119700 metal2 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +) +_181_ +( +102600 114000 108300 119700 metal1 +102600 114000 108300 119700 metal2 +) +_182_ +( +102600 119700 108300 125400 metal1 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal1 +102600 125400 108300 131100 metal1 +102600 119700 108300 131100 metal2 +) +_183_ +( +102600 114000 108300 119700 metal1 +102600 108300 108300 119700 metal2 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 108300 114000 114000 metal1 +) +_184_ +( +108300 108300 114000 114000 metal1 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 102600 119700 114000 metal2 +114000 102600 119700 108300 metal1 +) +_185_ +( +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 91200 153900 102600 metal2 +148200 91200 153900 96900 metal1 +) +_186_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 96900 153900 102600 metal1 +) +_187_ +( +142500 102600 148200 108300 metal1 +142500 96900 148200 108300 metal2 +142500 96900 148200 102600 metal1 +) +_188_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 108300 metal2 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 108300 metal1 +) +_189_ +( +119700 102600 125400 108300 metal1 +119700 102600 125400 108300 metal2 +119700 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 96900 142500 108300 metal2 +136800 96900 142500 102600 metal1 +) +_190_ +( +125400 102600 131100 108300 metal1 +125400 102600 131100 114000 metal2 +125400 108300 131100 114000 metal2 +125400 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 108300 136800 114000 metal1 +) +_191_ +( +119700 108300 125400 114000 metal1 +119700 102600 125400 114000 metal2 +119700 102600 125400 108300 metal2 +119700 102600 131100 108300 metal3 +125400 102600 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_192_ +( +119700 108300 125400 114000 metal1 +119700 102600 125400 114000 metal2 +119700 102600 125400 108300 metal1 +) +_193_ +( +119700 91200 125400 102600 metal2 +119700 96900 125400 102600 metal1 +114000 91200 119700 96900 metal1 +114000 91200 119700 96900 metal2 +114000 91200 125400 96900 metal3 +119700 91200 125400 96900 metal2 +119700 91200 125400 96900 metal1 +) +_194_ +( +119700 96900 125400 102600 metal1 +119700 96900 125400 108300 metal2 +119700 102600 125400 108300 metal1 +) +_195_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 125400 108300 metal3 +119700 102600 125400 108300 metal2 +119700 102600 125400 108300 metal1 +) +_196_ +( +114000 114000 119700 119700 metal1 +114000 108300 119700 119700 metal2 +114000 108300 119700 114000 metal1 +) +_197_ +( +114000 119700 119700 125400 metal1 +114000 108300 119700 125400 metal2 +114000 108300 119700 114000 metal1 +) +_198_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 114000 metal2 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_199_ +( +102600 96900 108300 102600 metal1 +102600 96900 108300 108300 metal2 +102600 102600 108300 108300 metal2 +102600 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +114000 102600 119700 108300 metal1 +) +_200_ +( +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 79800 metal2 +79800 74100 85500 79800 metal1 +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 62700 79800 68400 metal1 +74100 62700 79800 74100 metal2 +) +_201_ +( +79800 74100 85500 79800 metal1 +79800 74100 85500 79800 metal2 +79800 74100 91200 79800 metal3 +85500 74100 91200 79800 metal2 +85500 74100 91200 79800 metal1 +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 68400 108300 74100 metal1 +85500 74100 102600 79800 metal3 +96900 74100 102600 79800 metal2 +96900 68400 102600 79800 metal2 +) +_202_ +( +79800 79800 85500 91200 metal2 +79800 85500 85500 91200 metal1 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal1 +79800 74100 85500 79800 metal1 +79800 74100 85500 85500 metal2 +) +_203_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 85500 91200 metal3 +79800 85500 85500 91200 metal2 +79800 85500 85500 91200 metal1 +68400 79800 74100 91200 metal2 +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 79800 91200 metal3 +62700 79800 68400 85500 metal1 +62700 79800 68400 85500 metal2 +62700 79800 74100 85500 metal3 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal1 +) +_204_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 85500 91200 metal3 +79800 85500 85500 91200 metal2 +79800 85500 85500 91200 metal1 +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +74100 91200 79800 96900 metal1 +74100 85500 79800 96900 metal2 +) +_205_ +( +85500 85500 91200 96900 metal2 +85500 91200 91200 96900 metal2 +85500 91200 108300 96900 metal3 +102600 91200 108300 96900 metal2 +102600 91200 108300 96900 metal1 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +79800 85500 85500 91200 metal1 +79800 85500 85500 91200 metal2 +79800 85500 91200 91200 metal3 +85500 85500 91200 91200 metal2 +85500 85500 91200 91200 metal1 +) +_206_ +( +85500 51300 91200 57000 metal1 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 +91200 51300 96900 62700 metal2 +91200 57000 96900 62700 metal1 +79800 51300 85500 57000 metal1 +79800 51300 85500 57000 metal2 +79800 51300 91200 57000 metal3 +) +_207_ +( +91200 62700 96900 68400 metal1 +91200 57000 96900 68400 metal2 +91200 62700 96900 74100 metal2 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +85500 57000 96900 62700 metal3 +91200 57000 96900 62700 metal2 +91200 57000 96900 62700 metal1 +) +_208_ +( +91200 57000 96900 62700 metal1 +91200 57000 96900 62700 metal2 +91200 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +) +_209_ +( +96900 39900 102600 51300 metal2 +96900 45600 102600 51300 metal1 +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +96900 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +91200 39900 96900 45600 metal1 +91200 39900 96900 45600 metal2 +91200 39900 102600 45600 metal3 +) +_210_ +( +96900 51300 102600 62700 metal2 +96900 57000 102600 62700 metal1 +91200 51300 96900 57000 metal1 +91200 51300 96900 57000 metal2 +91200 51300 102600 57000 metal3 +96900 51300 102600 57000 metal2 +96900 45600 102600 51300 metal1 +96900 45600 102600 57000 metal2 +) +_211_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 108300 57000 metal3 +102600 51300 108300 57000 metal2 +102600 45600 108300 57000 metal2 +102600 45600 108300 51300 metal1 +102600 51300 114000 57000 metal3 +108300 51300 114000 57000 metal2 +108300 51300 114000 57000 metal1 +) +_212_ +( +91200 51300 96900 62700 metal2 +91200 57000 96900 62700 metal1 +96900 45600 102600 57000 metal2 +96900 45600 102600 51300 metal1 +91200 51300 96900 57000 metal1 +91200 51300 96900 57000 metal2 +91200 51300 102600 57000 metal3 +96900 51300 102600 57000 metal2 +96900 51300 102600 57000 metal1 +) +_213_ +( +96900 85500 102600 96900 metal2 +96900 91200 102600 96900 metal2 +96900 91200 108300 96900 metal3 +102600 91200 108300 96900 metal2 +102600 91200 108300 96900 metal1 +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +96900 85500 102600 91200 metal2 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +96900 57000 102600 62700 metal1 +96900 57000 102600 91200 metal2 +) +_214_ +( +102600 91200 108300 96900 metal1 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_215_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 102600 metal2 +91200 96900 96900 102600 metal2 +91200 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_216_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 91200 metal1 +) +_217_ +( +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_218_ +( +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal1 +62700 74100 68400 79800 metal1 +62700 74100 68400 79800 metal2 +62700 74100 74100 79800 metal3 +68400 74100 74100 79800 metal2 +68400 74100 74100 79800 metal1 +) +_219_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_220_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 85500 metal2 +74100 79800 79800 85500 metal2 +74100 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_221_ +( +91200 68400 96900 74100 metal2 +91200 68400 119700 74100 metal3 +114000 68400 119700 74100 metal2 +114000 68400 119700 74100 metal1 +85500 68400 91200 74100 metal1 +85500 68400 91200 74100 metal2 +85500 68400 96900 74100 metal3 +114000 68400 125400 74100 metal3 +119700 68400 125400 74100 metal2 +119700 68400 125400 79800 metal2 +119700 74100 125400 79800 metal1 +91200 68400 96900 79800 metal2 +91200 74100 96900 79800 metal1 +) +_222_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 85500 metal2 +91200 79800 96900 85500 metal1 +91200 68400 96900 74100 metal1 +91200 68400 96900 79800 metal2 +) +_223_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 74100 metal2 +79800 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +) +_224_ +( +85500 68400 91200 74100 metal1 +85500 68400 91200 85500 metal2 +85500 79800 91200 85500 metal2 +85500 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_225_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_226_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +) +_227_ +( +85500 57000 91200 68400 metal2 +85500 62700 91200 68400 metal2 +85500 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal1 +79800 57000 85500 62700 metal1 +79800 57000 85500 62700 metal2 +79800 57000 91200 62700 metal3 +85500 57000 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_228_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_229_ +( +96900 85500 102600 91200 metal1 +96900 85500 102600 108300 metal2 +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_230_ +( +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +91200 96900 96900 108300 metal2 +91200 96900 96900 102600 metal1 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 96900 108300 metal3 +) +_231_ +( +102600 51300 108300 57000 metal1 +102600 51300 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_232_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_233_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 108300 57000 metal3 +102600 51300 108300 57000 metal2 +102600 51300 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_234_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_235_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 108300 metal2 +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_236_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 114000 metal2 +96900 108300 102600 114000 metal2 +96900 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 108300 136800 131100 metal2 +131100 125400 136800 131100 metal2 +131100 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_237_ +( +102600 96900 108300 102600 metal1 +102600 96900 108300 102600 metal2 +102600 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 96900 119700 102600 metal1 +) +_238_ +( +96900 102600 102600 108300 metal1 +96900 96900 102600 108300 metal2 +96900 96900 102600 102600 metal2 +96900 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_239_ +( +96900 114000 102600 119700 metal1 +96900 108300 102600 119700 metal2 +96900 108300 102600 114000 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 108300 108300 114000 metal1 +96900 114000 102600 125400 metal2 +96900 119700 102600 125400 metal1 +) +_240_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 108300 metal2 +96900 102600 108300 108300 metal3 +102600 102600 108300 108300 metal2 +102600 102600 108300 114000 metal2 +102600 108300 108300 114000 metal1 +) +_241_ +( +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_242_ +( +85500 96900 91200 102600 metal1 +85500 96900 91200 102600 metal2 +85500 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +91200 102600 96900 108300 metal1 +91200 96900 96900 108300 metal2 +) +_243_ +( +85500 91200 91200 102600 metal2 +85500 91200 91200 96900 metal1 +79800 96900 85500 102600 metal1 +79800 96900 85500 102600 metal2 +79800 96900 91200 102600 metal3 +85500 96900 91200 102600 metal2 +85500 102600 91200 108300 metal1 +85500 96900 91200 108300 metal2 +) +_244_ +( +85500 91200 91200 96900 metal1 +85500 91200 91200 96900 metal2 +85500 91200 102600 96900 metal3 +96900 91200 102600 96900 metal2 +96900 91200 102600 96900 metal1 +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 91200 96900 metal3 +62700 85500 68400 91200 metal1 +62700 85500 68400 96900 metal2 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +62700 57000 68400 91200 metal2 +62700 57000 68400 62700 metal1 +85500 39900 91200 45600 metal1 +85500 39900 91200 45600 metal2 +85500 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +68400 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 39900 91200 51300 metal2 +62700 45600 68400 62700 metal2 +62700 45600 68400 51300 metal2 +62700 45600 74100 51300 metal3 +) +_245_ +( +102600 125400 108300 131100 metal2 +102600 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 153900 85500 metal3 +148200 79800 153900 85500 metal2 +148200 79800 153900 114000 metal2 +148200 108300 153900 114000 metal1 +136800 125400 142500 131100 metal1 +136800 119700 142500 131100 metal2 +136800 119700 142500 125400 metal2 +136800 119700 153900 125400 metal3 +148200 119700 153900 125400 metal2 +148200 108300 153900 125400 metal2 +131100 125400 136800 136800 metal2 +131100 131100 136800 136800 metal1 +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +102600 85500 114000 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 96900 metal2 +102600 91200 108300 96900 metal2 +96900 91200 108300 96900 metal3 +96900 91200 102600 96900 metal2 +96900 91200 102600 96900 metal1 +102600 125400 108300 142500 metal2 +102600 136800 108300 142500 metal2 +96900 136800 108300 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +114000 79800 119700 85500 metal1 +114000 79800 119700 85500 metal2 +114000 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +131100 125400 142500 131100 metal2 +108300 79800 114000 91200 metal2 +108300 79800 114000 85500 metal2 +108300 79800 119700 85500 metal3 +131100 79800 148200 85500 metal3 +125400 114000 131100 119700 metal1 +125400 114000 131100 131100 metal2 +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +96900 125400 108300 131100 metal3 +125400 125400 136800 131100 metal3 +131100 125400 136800 131100 metal2 +) +_246_ +( +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_247_ +( +74100 102600 79800 108300 metal1 +74100 102600 79800 108300 metal2 +74100 102600 85500 108300 metal3 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal1 +) +_248_ +( +125400 74100 131100 119700 metal2 +125400 114000 131100 119700 metal1 +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +119700 74100 131100 79800 metal3 +125400 74100 131100 79800 metal2 +125400 74100 131100 79800 metal1 +85500 34200 91200 51300 metal2 +85500 45600 91200 51300 metal2 +85500 45600 114000 51300 metal3 +108300 45600 114000 51300 metal2 +108300 45600 114000 51300 metal1 +57000 74100 62700 79800 metal1 +57000 62700 62700 79800 metal2 +62700 91200 68400 102600 metal2 +62700 96900 68400 102600 metal2 +62700 96900 79800 102600 metal3 +74100 96900 79800 102600 metal2 +74100 96900 79800 108300 metal2 +74100 102600 79800 108300 metal1 +57000 45600 62700 68400 metal2 +57000 45600 62700 51300 metal2 +57000 45600 68400 51300 metal3 +62700 45600 68400 51300 metal2 +62700 39900 68400 51300 metal2 +62700 39900 68400 45600 metal2 +62700 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 +68400 39900 74100 45600 metal1 +108300 45600 125400 51300 metal3 +119700 45600 125400 51300 metal2 +119700 45600 125400 79800 metal2 +68400 34200 74100 45600 metal2 +68400 34200 74100 39900 metal2 +68400 34200 91200 39900 metal3 +85500 34200 91200 39900 metal2 +85500 34200 91200 39900 metal1 +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +57000 91200 68400 96900 metal3 +57000 91200 62700 96900 metal2 +57000 74100 62700 96900 metal2 +57000 62700 62700 68400 metal2 +57000 62700 68400 68400 metal3 +62700 62700 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_249_ +( +142500 114000 148200 131100 metal2 +91200 131100 96900 136800 metal1 +91200 131100 96900 142500 metal2 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +96900 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +125400 125400 131100 142500 metal2 +125400 125400 131100 131100 metal2 +125400 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 74100 148200 85500 metal2 +142500 79800 148200 85500 metal1 +142500 114000 148200 119700 metal2 +142500 114000 153900 119700 metal3 +148200 114000 153900 119700 metal2 +148200 114000 153900 119700 metal1 +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +119700 74100 131100 79800 metal3 +114000 74100 119700 79800 metal1 +114000 74100 119700 79800 metal2 +114000 74100 125400 79800 metal3 +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 114000 85500 metal3 +108300 79800 114000 85500 metal2 +108300 74100 114000 85500 metal2 +108300 74100 114000 79800 metal2 +108300 74100 119700 79800 metal3 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +142500 79800 148200 119700 metal2 +) +_250_ +( +96900 125400 102600 131100 metal1 +96900 102600 102600 131100 metal2 +96900 102600 102600 108300 metal2 +96900 102600 108300 108300 metal3 +102600 102600 108300 108300 metal2 +102600 96900 108300 108300 metal2 +102600 96900 108300 102600 metal2 +102600 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal1 +) +_251_ +( +91200 96900 96900 102600 metal1 +91200 96900 96900 102600 metal2 +) +_252_ +( +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 91200 91200 102600 metal2 +85500 96900 91200 102600 metal2 +85500 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +74100 79800 79800 85500 metal1 +74100 79800 79800 96900 metal2 +74100 91200 79800 96900 metal2 +74100 91200 85500 96900 metal3 +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 68400 79800 74100 metal2 +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 102600 39900 metal3 +96900 34200 102600 39900 metal2 +96900 34200 102600 51300 metal2 +96900 45600 102600 51300 metal2 +96900 45600 108300 51300 metal3 +102600 45600 108300 51300 metal2 +102600 45600 108300 51300 metal1 +74100 39900 79800 74100 metal2 +74100 39900 79800 45600 metal1 +74100 34200 79800 45600 metal2 +74100 34200 79800 39900 metal2 +74100 34200 96900 39900 metal3 +74100 68400 79800 85500 metal2 +) +_253_ +( +131100 79800 136800 114000 metal2 +131100 108300 136800 125400 metal2 +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +96900 125400 114000 131100 metal3 +108300 125400 114000 131100 metal2 +108300 119700 114000 131100 metal2 +108300 119700 114000 125400 metal2 +108300 119700 131100 125400 metal3 +125400 119700 131100 125400 metal2 +125400 119700 131100 125400 metal1 +74100 96900 79800 102600 metal1 +74100 96900 79800 102600 metal2 +74100 96900 85500 102600 metal3 +79800 96900 85500 102600 metal2 +79800 91200 85500 102600 metal2 +96900 131100 102600 136800 metal1 +96900 125400 102600 136800 metal2 +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 79800 91200 96900 metal2 +85500 79800 91200 85500 metal2 +85500 79800 102600 85500 metal3 +96900 79800 102600 85500 metal2 +131100 119700 136800 131100 metal2 +131100 125400 136800 131100 metal1 +131100 79800 136800 85500 metal1 +131100 79800 136800 85500 metal2 +131100 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +96900 79800 125400 85500 metal3 +119700 79800 125400 85500 metal2 +119700 79800 125400 85500 metal1 +96900 74100 102600 85500 metal2 +96900 74100 102600 79800 metal1 +119700 79800 136800 85500 metal3 +131100 108300 136800 114000 metal2 +131100 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +125400 119700 136800 125400 metal3 +131100 119700 136800 125400 metal2 +) +_254_ +( +96900 119700 102600 125400 metal1 +96900 119700 102600 125400 metal2 +96900 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 119700 108300 125400 metal1 +) +_255_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +) +_256_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_257_ +( +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_258_ +( +102600 119700 108300 131100 metal2 +102600 125400 108300 131100 metal1 +102600 119700 108300 125400 metal2 +102600 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +96900 119700 102600 125400 metal1 +96900 119700 102600 125400 metal2 +96900 119700 108300 125400 metal3 +) +_259_ +( +96900 131100 102600 136800 metal1 +96900 131100 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_260_ +( +96900 136800 102600 142500 metal1 +96900 136800 102600 142500 metal2 +) +_261_ +( +131100 136800 136800 142500 metal1 +131100 131100 136800 142500 metal2 +131100 131100 136800 136800 metal1 +) +_262_ +( +108300 119700 114000 131100 metal2 +108300 125400 114000 131100 metal1 +108300 119700 114000 125400 metal1 +108300 119700 114000 125400 metal2 +108300 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 114000 119700 125400 metal2 +114000 114000 119700 119700 metal1 +) +_263_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +) +_264_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +119700 119700 125400 131100 metal2 +119700 119700 125400 125400 metal1 +) +_265_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 131100 metal2 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +) +_266_ +( +131100 125400 136800 131100 metal1 +131100 125400 136800 136800 metal2 +131100 131100 136800 136800 metal1 +) +_267_ +( +125400 136800 131100 142500 metal1 +125400 131100 131100 142500 metal2 +125400 131100 131100 136800 metal2 +125400 131100 136800 136800 metal3 +131100 131100 136800 136800 metal2 +131100 131100 136800 136800 metal1 +) +_268_ +( +136800 74100 142500 79800 metal1 +136800 74100 142500 79800 metal2 +136800 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 74100 148200 85500 metal2 +142500 79800 148200 85500 metal1 +) +_269_ +( +119700 119700 125400 125400 metal1 +119700 114000 125400 125400 metal2 +119700 114000 125400 119700 metal1 +) +_270_ +( +114000 108300 119700 114000 metal1 +114000 108300 119700 114000 metal2 +114000 108300 125400 114000 metal3 +119700 108300 125400 114000 metal2 +119700 108300 125400 119700 metal2 +119700 114000 125400 119700 metal1 +) +_271_ +( +108300 114000 114000 119700 metal1 +108300 108300 114000 119700 metal2 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_272_ +( +136800 85500 142500 96900 metal2 +136800 85500 142500 91200 metal1 +114000 96900 119700 102600 metal1 +114000 91200 119700 102600 metal2 +114000 91200 119700 96900 metal2 +114000 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 96900 metal1 +114000 114000 119700 119700 metal1 +114000 96900 119700 119700 metal2 +136800 91200 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_273_ +( +136800 79800 142500 85500 metal1 +136800 79800 142500 85500 metal2 +136800 79800 148200 85500 metal3 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal1 +) +_274_ +( +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +) +_275_ +( +142500 119700 148200 125400 metal1 +142500 108300 148200 125400 metal2 +142500 108300 148200 114000 metal2 +142500 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +) +_276_ +( +136800 85500 142500 91200 metal1 +136800 85500 142500 91200 metal2 +136800 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_277_ +( +142500 91200 148200 96900 metal1 +142500 91200 148200 96900 metal2 +142500 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 96900 metal1 +142500 91200 148200 102600 metal2 +142500 96900 148200 102600 metal1 +) +_278_ +( +136800 91200 142500 96900 metal1 +136800 91200 142500 96900 metal2 +136800 91200 148200 96900 metal3 +142500 91200 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_279_ +( +142500 108300 148200 114000 metal1 +142500 108300 148200 114000 metal2 +142500 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +) +_280_ +( +148200 108300 153900 114000 metal1 +148200 108300 153900 119700 metal2 +148200 114000 153900 119700 metal1 +) +_281_ +( +131100 79800 136800 85500 metal1 +131100 74100 136800 85500 metal2 +131100 74100 136800 79800 metal2 +131100 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +) +_282_ +( +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +) +_283_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 148200 102600 metal3 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal1 +131100 102600 136800 108300 metal1 +131100 96900 136800 108300 metal2 +131100 96900 136800 102600 metal2 +131100 96900 142500 102600 metal3 +) +_284_ +( +131100 91200 136800 102600 metal2 +131100 91200 136800 96900 metal1 +125400 96900 131100 102600 metal1 +125400 96900 131100 102600 metal2 +125400 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_285_ +( +131100 79800 136800 85500 metal1 +131100 79800 136800 85500 metal2 +) +_286_ +( +131100 74100 136800 79800 metal1 +131100 74100 136800 79800 metal2 +) +_287_ +( +91200 114000 96900 119700 metal1 +91200 114000 96900 119700 metal2 +91200 114000 131100 119700 metal3 +125400 114000 131100 119700 metal2 +125400 114000 131100 119700 metal1 +) +_288_ +( +125400 91200 131100 96900 metal1 +125400 91200 131100 102600 metal2 +125400 96900 131100 102600 metal1 +) +_289_ +( +119700 96900 125400 102600 metal1 +119700 96900 125400 102600 metal2 +119700 96900 131100 102600 metal3 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_290_ +( +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_291_ +( +125400 102600 131100 108300 metal1 +125400 102600 131100 114000 metal2 +125400 108300 131100 114000 metal1 +) +_292_ +( +125400 119700 131100 125400 metal1 +125400 114000 131100 125400 metal2 +125400 114000 131100 119700 metal1 +) +_293_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +) +_294_ +( +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 85500 96900 metal3 +79800 91200 85500 96900 metal2 +79800 91200 85500 96900 metal1 +) +_295_ +( +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +) +_296_ +( +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_297_ +( +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 125400 102600 metal3 +119700 96900 125400 102600 metal2 +119700 96900 125400 108300 metal2 +119700 102600 125400 108300 metal2 +119700 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +) +_298_ +( +74100 85500 79800 96900 metal2 +74100 91200 79800 96900 metal1 +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 91200 91200 metal3 +85500 85500 91200 91200 metal2 +85500 85500 91200 91200 metal1 +85500 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 96900 metal2 +102600 91200 108300 96900 metal2 +102600 91200 119700 96900 metal3 +114000 91200 119700 96900 metal2 +114000 91200 119700 102600 metal2 +114000 96900 119700 102600 metal1 +) +_299_ +( +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +74100 91200 79800 102600 metal2 +74100 96900 79800 102600 metal1 +) +_300_ +( +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +) +_301_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +) +_302_ +( +74100 85500 79800 91200 metal1 +74100 74100 79800 91200 metal2 +74100 74100 79800 79800 metal1 +74100 74100 79800 79800 metal2 +74100 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +) +_303_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +) +_304_ +( +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 79800 91200 metal3 +74100 85500 79800 91200 metal2 +74100 85500 79800 91200 metal1 +68400 79800 74100 91200 metal2 +68400 79800 74100 85500 metal1 +) +_305_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +) +_306_ +( +62700 85500 68400 91200 metal1 +62700 79800 68400 91200 metal2 +62700 79800 68400 85500 metal2 +62700 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_307_ +( +57000 74100 62700 79800 metal1 +57000 74100 62700 85500 metal2 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +) +_308_ +( +62700 51300 68400 57000 metal1 +62700 51300 68400 62700 metal2 +62700 57000 68400 62700 metal1 +) +_309_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal1 +) +_310_ +( +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 74100 79800 85500 metal2 +74100 74100 79800 79800 metal1 +) +_311_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +74100 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +79800 74100 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_312_ +( +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 68400 79800 74100 metal2 +74100 68400 79800 74100 metal1 +) +_313_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 74100 metal2 +62700 68400 68400 74100 metal2 +62700 68400 74100 74100 metal3 +68400 68400 74100 74100 metal2 +68400 68400 74100 74100 metal1 +) +_314_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_315_ +( +114000 79800 119700 85500 metal1 +114000 79800 119700 85500 metal2 +) +_316_ +( +114000 74100 119700 79800 metal1 +114000 74100 119700 79800 metal2 +114000 74100 125400 79800 metal3 +119700 74100 125400 79800 metal2 +119700 74100 125400 79800 metal1 +) +_317_ +( +79800 74100 85500 79800 metal1 +79800 68400 85500 79800 metal2 +79800 68400 85500 74100 metal2 +79800 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +) +_318_ +( +85500 68400 91200 74100 metal2 +85500 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +85500 68400 91200 79800 metal2 +85500 74100 91200 79800 metal1 +85500 62700 91200 68400 metal1 +85500 62700 91200 74100 metal2 +) +_319_ +( +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +) +_320_ +( +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +) +_321_ +( +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +) +_322_ +( +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +) +_323_ +( +85500 85500 91200 91200 metal1 +85500 85500 91200 91200 metal2 +) +_324_ +( +85500 79800 91200 85500 metal1 +85500 79800 91200 85500 metal2 +) +_325_ +( +79800 79800 85500 85500 metal1 +79800 79800 85500 85500 metal2 +79800 79800 91200 85500 metal3 +85500 79800 91200 85500 metal2 +85500 79800 91200 85500 metal1 +) +_326_ +( +85500 74100 91200 79800 metal1 +85500 74100 91200 85500 metal2 +85500 79800 91200 85500 metal1 +) +_327_ +( +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +96900 45600 108300 51300 metal3 +102600 45600 108300 51300 metal2 +102600 45600 108300 51300 metal1 +91200 51300 96900 57000 metal1 +91200 45600 96900 57000 metal2 +91200 45600 96900 51300 metal2 +91200 45600 102600 51300 metal3 +85500 79800 91200 85500 metal1 +85500 57000 91200 85500 metal2 +85500 57000 91200 62700 metal2 +85500 57000 96900 62700 metal3 +91200 57000 96900 62700 metal2 +91200 51300 96900 62700 metal2 +) +_328_ +( +102600 45600 108300 51300 metal1 +102600 39900 108300 51300 metal2 +102600 39900 108300 45600 metal1 +) +_329_ +( +79800 39900 85500 45600 metal1 +79800 39900 85500 45600 metal2 +79800 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +) +_330_ +( +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 114000 45600 metal3 +108300 39900 114000 45600 metal2 +108300 39900 114000 51300 metal2 +108300 45600 114000 51300 metal1 +) +_331_ +( +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +) +_332_ +( +96900 51300 102600 57000 metal1 +96900 45600 102600 57000 metal2 +91200 39900 96900 45600 metal1 +91200 39900 96900 51300 metal2 +91200 45600 96900 51300 metal2 +91200 45600 102600 51300 metal3 +96900 45600 102600 51300 metal2 +96900 45600 102600 51300 metal1 +) +_333_ +( +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +) +_334_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_335_ +( +85500 39900 91200 45600 metal1 +85500 39900 91200 45600 metal2 +85500 39900 96900 45600 metal3 +91200 39900 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_336_ +( +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 96900 39900 metal3 +91200 34200 96900 39900 metal2 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_337_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +85500 45600 96900 51300 metal3 +91200 45600 96900 51300 metal2 +91200 45600 96900 57000 metal2 +91200 51300 96900 57000 metal1 +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +) +_338_ +( +85500 51300 91200 57000 metal1 +85500 45600 91200 57000 metal2 +85500 45600 91200 51300 metal1 +) +_339_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +85500 45600 96900 51300 metal3 +91200 45600 96900 51300 metal2 +91200 39900 96900 51300 metal2 +91200 39900 96900 45600 metal1 +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +) +_340_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +) +_341_ +( +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 45600 91200 51300 metal1 +85500 45600 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_342_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +68400 45600 79800 51300 metal3 +74100 45600 79800 51300 metal2 +74100 39900 79800 51300 metal2 +74100 39900 79800 45600 metal1 +) +_343_ +( +62700 51300 68400 57000 metal1 +62700 45600 68400 57000 metal2 +62700 45600 68400 51300 metal2 +62700 45600 74100 51300 metal3 +68400 45600 74100 51300 metal2 +68400 45600 74100 51300 metal1 +) +_344_ +( +68400 45600 74100 51300 metal1 +68400 39900 74100 51300 metal2 +68400 39900 74100 45600 metal1 +) +_345_ +( +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +) +_346_ +( +85500 51300 91200 57000 metal1 +85500 51300 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_347_ +( +96900 74100 102600 79800 metal1 +96900 74100 102600 79800 metal2 +96900 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +102600 74100 108300 85500 metal2 +102600 79800 108300 85500 metal1 +) +_348_ +( +108300 85500 114000 91200 metal1 +108300 85500 114000 119700 metal2 +108300 114000 114000 119700 metal2 +108300 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 136800 metal2 +114000 131100 119700 136800 metal1 +) +_349_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 114000 85500 metal3 +108300 79800 114000 85500 metal2 +108300 79800 114000 85500 metal1 +) +_350_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_351_ +( +136800 136800 142500 142500 metal1 +136800 136800 142500 142500 metal2 +136800 136800 153900 142500 metal3 +148200 136800 153900 142500 metal2 +148200 136800 153900 142500 metal1 +) +_352_ +( +102600 68400 108300 74100 metal1 +102600 62700 108300 74100 metal2 +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +96900 79800 102600 85500 metal1 +96900 79800 102600 85500 metal2 +96900 79800 108300 85500 metal3 +102600 79800 108300 85500 metal2 +102600 68400 108300 85500 metal2 +108300 57000 114000 62700 metal1 +108300 39900 114000 62700 metal2 +108300 39900 114000 45600 metal2 +102600 39900 114000 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +74100 45600 79800 51300 metal1 +74100 45600 79800 62700 metal2 +74100 57000 79800 62700 metal2 +74100 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +79800 57000 85500 68400 metal2 +91200 91200 96900 96900 metal1 +91200 79800 96900 96900 metal2 +91200 79800 96900 85500 metal2 +91200 79800 102600 85500 metal3 +79800 96900 85500 102600 metal1 +79800 96900 85500 102600 metal2 +79800 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 91200 96900 102600 metal2 +102600 62700 114000 68400 metal3 +108300 62700 114000 68400 metal2 +108300 57000 114000 68400 metal2 +) +_353_ +( +136800 114000 142500 119700 metal1 +136800 114000 142500 142500 metal2 +85500 96900 91200 119700 metal2 +85500 114000 91200 119700 metal1 +108300 142500 114000 148200 metal1 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 136800 119700 148200 metal2 +114000 136800 119700 142500 metal2 +114000 136800 125400 142500 metal3 +119700 136800 125400 142500 metal2 +119700 136800 125400 142500 metal1 +119700 136800 142500 142500 metal3 +136800 136800 142500 142500 metal2 +136800 136800 142500 142500 metal1 +148200 91200 153900 96900 metal1 +148200 91200 153900 96900 metal2 +136800 91200 153900 96900 metal3 +136800 91200 142500 96900 metal2 +148200 91200 159600 96900 metal3 +153900 91200 159600 96900 metal2 +153900 91200 159600 102600 metal2 +153900 96900 159600 102600 metal1 +119700 85500 125400 96900 metal2 +119700 85500 125400 91200 metal1 +136800 91200 142500 119700 metal2 +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 91200 102600 metal3 +85500 96900 91200 102600 metal2 +57000 79800 62700 102600 metal2 +57000 79800 62700 85500 metal1 +119700 91200 125400 96900 metal2 +119700 91200 142500 96900 metal3 +85500 91200 91200 102600 metal3 +85500 91200 96900 96900 metal3 +91200 91200 96900 96900 metal2 +91200 91200 96900 96900 metal1 +91200 91200 125400 96900 metal3 +) +_354_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +) +_355_ +( +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +) +_356_ +( +119700 142500 125400 148200 metal1 +119700 136800 125400 148200 metal2 +119700 136800 125400 142500 metal1 +) +_357_ +( +153900 91200 159600 96900 metal1 +153900 91200 159600 96900 metal2 +) +_358_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +) +_359_ +( +119700 85500 125400 91200 metal1 +119700 85500 125400 91200 metal2 +) +_360_ +( +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 148200 119700 metal3 +142500 114000 148200 119700 metal2 +142500 114000 148200 125400 metal2 +142500 119700 148200 125400 metal1 +) +_361_ +( +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +) +_362_ +( +57000 74100 62700 79800 metal1 +57000 74100 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_363_ +( +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 91200 68400 metal3 +85500 62700 91200 68400 metal2 +85500 62700 91200 68400 metal1 +) +_364_ +( +108300 62700 114000 68400 metal1 +108300 62700 114000 74100 metal2 +108300 68400 114000 74100 metal1 +) +_365_ +( +108300 57000 114000 62700 metal1 +108300 57000 114000 62700 metal2 +108300 57000 119700 62700 metal3 +114000 57000 119700 62700 metal2 +114000 57000 119700 68400 metal2 +114000 62700 119700 68400 metal1 +) +_366_ +( +108300 34200 114000 39900 metal1 +108300 34200 114000 45600 metal2 +108300 39900 114000 45600 metal1 +) +_367_ +( +74100 39900 79800 45600 metal1 +74100 39900 79800 51300 metal2 +74100 45600 79800 51300 metal1 +) +_368_ +( +96900 79800 102600 85500 metal1 +96900 79800 102600 85500 metal2 +) +_369_ +( +148200 136800 153900 142500 metal1 +148200 136800 153900 142500 metal2 +148200 136800 159600 142500 metal3 +153900 136800 159600 142500 metal2 +153900 136800 159600 142500 metal1 +) +_370_ +( +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +34200 62700 85500 68400 metal3 +34200 62700 39900 68400 metal2 +34200 62700 39900 131100 metal2 +34200 125400 39900 131100 metal2 +34200 125400 68400 131100 metal3 +62700 125400 68400 131100 metal2 +62700 125400 68400 159600 metal2 +62700 153900 68400 159600 metal2 +62700 153900 125400 159600 metal3 +119700 153900 125400 159600 metal2 +119700 153900 125400 176700 metal2 +119700 171000 125400 176700 metal1 +) +_371_ +( +102600 22800 108300 28500 metal1 +102600 22800 108300 68400 metal2 +102600 62700 108300 68400 metal1 +) +_372_ +( +114000 62700 119700 68400 metal1 +114000 62700 119700 68400 metal2 +114000 62700 153900 68400 metal3 +148200 62700 153900 68400 metal2 +148200 62700 153900 79800 metal2 +148200 74100 153900 79800 metal2 +148200 74100 165300 79800 metal3 +159600 74100 165300 79800 metal2 +159600 74100 165300 142500 metal2 +159600 136800 165300 142500 metal2 +153900 136800 165300 142500 metal3 +153900 136800 159600 142500 metal2 +153900 136800 159600 159600 metal2 +153900 153900 159600 159600 metal2 +125400 153900 159600 159600 metal3 +125400 153900 131100 159600 metal2 +125400 153900 131100 171000 metal2 +125400 165300 131100 171000 metal2 +119700 165300 131100 171000 metal3 +119700 165300 125400 171000 metal2 +119700 165300 125400 171000 metal1 +) +_373_ +( +108300 34200 114000 39900 metal1 +108300 34200 114000 39900 metal2 +108300 34200 119700 39900 metal3 +114000 34200 119700 39900 metal2 +114000 34200 119700 39900 metal1 +) +_374_ +( +62700 34200 68400 39900 metal1 +62700 34200 68400 39900 metal2 +62700 34200 74100 39900 metal3 +68400 34200 74100 39900 metal2 +68400 34200 74100 45600 metal2 +68400 39900 74100 45600 metal1 +) +_375_ +( +22800 85500 28500 91200 metal1 +22800 85500 28500 91200 metal2 +22800 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_376_ +( +142500 131100 148200 136800 metal1 +142500 131100 148200 176700 metal2 +142500 171000 148200 176700 metal2 +142500 171000 153900 176700 metal3 +148200 171000 153900 176700 metal2 +148200 171000 153900 176700 metal1 +) +_377_ +( +108300 96900 114000 102600 metal1 +108300 96900 114000 102600 metal2 +108300 96900 171000 102600 metal3 +165300 96900 171000 102600 metal2 +165300 91200 171000 102600 metal2 +165300 91200 171000 96900 metal2 +165300 91200 176700 96900 metal3 +171000 91200 176700 96900 metal2 +171000 91200 176700 96900 metal1 +) +_378_ +( +74100 142500 79800 148200 metal1 +74100 142500 79800 148200 metal2 +74100 142500 96900 148200 metal3 +91200 142500 96900 148200 metal2 +91200 136800 96900 148200 metal2 +91200 136800 96900 142500 metal1 +) +_379_ +( +131100 136800 136800 142500 metal1 +131100 136800 136800 148200 metal2 +131100 142500 136800 148200 metal2 +131100 142500 142500 148200 metal3 +136800 142500 142500 148200 metal2 +136800 142500 142500 148200 metal1 +) +_380_ +( +79800 22800 85500 28500 metal1 +79800 22800 85500 28500 metal2 +45600 22800 85500 28500 metal3 +45600 22800 51300 28500 metal2 +45600 22800 51300 119700 metal2 +45600 114000 51300 119700 metal2 +45600 114000 91200 119700 metal3 +85500 114000 91200 119700 metal2 +85500 114000 91200 119700 metal1 +) +_381_ +( +34200 74100 39900 79800 metal1 +34200 74100 39900 79800 metal2 +34200 74100 136800 79800 metal3 +131100 74100 136800 79800 metal2 +131100 74100 136800 85500 metal2 +131100 79800 136800 85500 metal2 +131100 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +) +_382_ +( +148200 119700 153900 125400 metal1 +148200 119700 153900 125400 metal2 +148200 119700 176700 125400 metal3 +171000 119700 176700 125400 metal2 +171000 119700 176700 125400 metal1 +) +_383_ +( +136800 74100 142500 79800 metal1 +136800 68400 142500 79800 metal2 +136800 68400 142500 74100 metal2 +136800 68400 148200 74100 metal3 +142500 68400 148200 74100 metal2 +142500 68400 148200 74100 metal1 +) +_384_ +( +85500 171000 91200 176700 metal1 +85500 159600 91200 176700 metal2 +85500 159600 91200 165300 metal2 +74100 159600 91200 165300 metal3 +74100 159600 79800 165300 metal2 +74100 125400 79800 165300 metal2 +74100 125400 79800 131100 metal2 +74100 125400 96900 131100 metal3 +91200 125400 96900 131100 metal2 +91200 114000 96900 131100 metal2 +91200 114000 96900 119700 metal1 +) +_385_ +( +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 165300 96900 metal3 +159600 91200 165300 96900 metal2 +159600 91200 165300 102600 metal2 +159600 96900 165300 102600 metal2 +159600 96900 176700 102600 metal3 +171000 96900 176700 102600 metal2 +171000 96900 176700 102600 metal1 +) +_386_ +( +51300 108300 57000 114000 metal1 +51300 108300 57000 114000 metal2 +51300 108300 62700 114000 metal3 +57000 108300 62700 114000 metal2 +57000 85500 62700 114000 metal2 +57000 85500 62700 91200 metal2 +57000 85500 68400 91200 metal3 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal1 +) +_387_ +( +57000 45600 62700 51300 metal1 +57000 45600 62700 57000 metal2 +57000 51300 62700 57000 metal2 +57000 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +) +_388_ +( +108300 171000 114000 176700 metal1 +108300 153900 114000 176700 metal2 +108300 153900 114000 159600 metal2 +108300 153900 125400 159600 metal3 +119700 153900 125400 159600 metal2 +119700 85500 125400 159600 metal2 +119700 85500 125400 91200 metal2 +114000 85500 125400 91200 metal3 +114000 85500 119700 91200 metal2 +114000 85500 119700 91200 metal1 +) +_389_ +( +22800 34200 28500 39900 metal1 +22800 34200 28500 39900 metal2 +22800 34200 85500 39900 metal3 +79800 34200 85500 39900 metal2 +79800 34200 85500 45600 metal2 +79800 39900 85500 45600 metal1 +) +_390_ +( +85500 28500 91200 34200 metal1 +85500 28500 91200 45600 metal2 +85500 39900 91200 45600 metal1 +) +_391_ +( +114000 142500 119700 148200 metal1 +114000 142500 119700 153900 metal2 +114000 148200 119700 153900 metal2 +114000 148200 125400 153900 metal3 +119700 148200 125400 153900 metal2 +119700 148200 125400 159600 metal2 +119700 153900 125400 159600 metal2 +119700 153900 165300 159600 metal3 +159600 153900 165300 159600 metal2 +159600 148200 165300 159600 metal2 +159600 148200 165300 153900 metal2 +159600 148200 171000 153900 metal3 +165300 148200 171000 153900 metal2 +165300 148200 171000 153900 metal1 +) +_392_ +( +39900 171000 45600 176700 metal1 +39900 171000 45600 176700 metal2 +11400 171000 45600 176700 metal3 +11400 171000 17100 176700 metal2 +11400 45600 17100 176700 metal2 +11400 45600 17100 51300 metal2 +11400 45600 57000 51300 metal3 +51300 45600 57000 51300 metal2 +51300 45600 57000 57000 metal2 +51300 51300 57000 57000 metal2 +51300 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +) +_393_ +( +114000 171000 119700 176700 metal1 +114000 131100 119700 176700 metal2 +114000 131100 119700 136800 metal1 +) +_394_ +( +22800 171000 28500 176700 metal1 +22800 171000 28500 176700 metal2 +22800 171000 34200 176700 metal3 +28500 171000 34200 176700 metal2 +28500 153900 34200 176700 metal2 +28500 153900 34200 159600 metal2 +28500 153900 108300 159600 metal3 +102600 153900 108300 159600 metal2 +102600 148200 108300 159600 metal2 +102600 148200 108300 153900 metal2 +102600 148200 119700 153900 metal3 +114000 148200 119700 153900 metal2 +114000 142500 119700 153900 metal2 +114000 142500 119700 148200 metal1 +) +_395_ +( +153900 91200 159600 96900 metal1 +153900 91200 159600 96900 metal2 +153900 91200 171000 96900 metal3 +165300 91200 171000 96900 metal2 +165300 91200 171000 102600 metal2 +165300 96900 171000 102600 metal1 +) +_396_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +153900 96900 165300 102600 metal3 +159600 96900 165300 102600 metal2 +159600 74100 165300 102600 metal2 +159600 74100 165300 79800 metal2 +153900 74100 165300 79800 metal3 +153900 74100 159600 79800 metal2 +153900 34200 159600 79800 metal2 +153900 34200 159600 39900 metal2 +153900 34200 171000 39900 metal3 +165300 34200 171000 39900 metal2 +165300 22800 171000 39900 metal2 +165300 22800 171000 28500 metal1 +) +_397_ +( +22800 62700 28500 68400 metal1 +22800 62700 28500 68400 metal2 +22800 62700 62700 68400 metal3 +57000 62700 62700 68400 metal2 +57000 62700 62700 74100 metal2 +57000 68400 62700 74100 metal2 +57000 68400 114000 74100 metal3 +108300 68400 114000 74100 metal2 +108300 68400 114000 79800 metal2 +108300 74100 114000 79800 metal2 +108300 74100 119700 79800 metal3 +114000 74100 119700 79800 metal2 +114000 74100 119700 91200 metal2 +114000 85500 119700 91200 metal2 +114000 85500 125400 91200 metal3 +119700 85500 125400 91200 metal2 +119700 85500 125400 91200 metal1 +) +_398_ +( +142500 119700 148200 125400 metal1 +142500 119700 148200 125400 metal2 +142500 119700 153900 125400 metal3 +148200 119700 153900 125400 metal2 +148200 119700 153900 131100 metal2 +148200 125400 153900 131100 metal2 +148200 125400 176700 131100 metal3 +171000 125400 176700 131100 metal2 +171000 125400 176700 131100 metal1 +) +_399_ +( +45600 102600 51300 108300 metal1 +45600 102600 51300 108300 metal2 +45600 102600 57000 108300 metal3 +51300 102600 57000 108300 metal2 +51300 96900 57000 108300 metal2 +51300 96900 57000 102600 metal2 +51300 96900 62700 102600 metal3 +57000 96900 62700 102600 metal2 +57000 96900 62700 102600 metal1 +) +_400_ +( +22800 74100 28500 79800 metal1 +22800 74100 28500 79800 metal2 +22800 74100 39900 79800 metal3 +34200 74100 39900 79800 metal2 +34200 74100 39900 85500 metal2 +34200 79800 39900 85500 metal2 +34200 79800 57000 85500 metal3 +51300 79800 57000 85500 metal2 +51300 79800 57000 85500 metal1 +) +_401_ +( +68400 39900 74100 45600 metal1 +68400 39900 74100 62700 metal2 +51300 79800 57000 85500 metal1 +51300 57000 57000 85500 metal2 +51300 57000 57000 62700 metal2 +51300 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +102600 62700 108300 68400 metal1 +102600 62700 108300 68400 metal2 +102600 62700 114000 68400 metal3 +108300 62700 114000 68400 metal2 +108300 62700 114000 68400 metal1 +91200 62700 96900 68400 metal2 +79800 62700 96900 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +91200 79800 96900 85500 metal1 +91200 62700 96900 85500 metal2 +108300 34200 114000 68400 metal2 +108300 34200 114000 39900 metal1 +79800 102600 85500 108300 metal1 +79800 102600 85500 108300 metal2 +79800 102600 96900 108300 metal3 +91200 102600 96900 108300 metal2 +91200 91200 96900 108300 metal2 +91200 91200 96900 96900 metal2 +91200 91200 114000 96900 metal3 +108300 91200 114000 96900 metal2 +108300 91200 114000 96900 metal1 +91200 79800 96900 96900 metal2 +68400 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +79800 57000 85500 68400 metal2 +51300 79800 57000 102600 metal2 +51300 96900 57000 102600 metal1 +91200 62700 108300 68400 metal3 +) +_402_ +( +74100 119700 79800 131100 metal2 +74100 125400 79800 131100 metal2 +74100 125400 85500 131100 metal3 +79800 125400 85500 131100 metal2 +79800 125400 85500 131100 metal1 +68400 108300 74100 114000 metal1 +68400 108300 74100 125400 metal2 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +) +_403_ +( +62700 114000 68400 119700 metal2 +62700 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +62700 108300 74100 114000 metal3 +68400 108300 74100 114000 metal2 +68400 108300 74100 114000 metal1 +62700 108300 68400 119700 metal2 +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +62700 114000 68400 125400 metal2 +62700 119700 68400 125400 metal1 +) +_404_ +( +96900 102600 102600 136800 metal2 +96900 102600 102600 108300 metal1 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 131100 102600 142500 metal2 +96900 131100 102600 136800 metal2 +96900 131100 108300 136800 metal3 +102600 131100 108300 136800 metal2 +102600 131100 108300 136800 metal1 +) +_405_ +( +45600 74100 51300 79800 metal1 +45600 74100 51300 79800 metal2 +45600 74100 57000 79800 metal3 +51300 74100 57000 79800 metal2 +51300 68400 57000 79800 metal2 +51300 68400 57000 74100 metal2 +51300 68400 74100 74100 metal3 +68400 68400 74100 74100 metal2 +68400 68400 74100 74100 metal1 +) +_406_ +( +119700 68400 125400 85500 metal2 +119700 79800 125400 85500 metal1 +119700 68400 125400 74100 metal2 +119700 68400 131100 74100 metal3 +125400 68400 131100 74100 metal2 +125400 68400 131100 74100 metal1 +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 125400 74100 metal3 +) +_407_ +( +102600 45600 108300 51300 metal1 +102600 45600 108300 51300 metal2 +102600 45600 119700 51300 metal3 +114000 45600 119700 51300 metal2 +114000 34200 119700 51300 metal2 +114000 34200 119700 39900 metal1 +) +_408_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 102600 39900 metal3 +96900 34200 102600 39900 metal2 +96900 22800 102600 39900 metal2 +96900 22800 102600 28500 metal1 +96900 39900 102600 45600 metal1 +96900 34200 102600 45600 metal2 +) +_409_ +( +74100 39900 79800 45600 metal1 +74100 39900 79800 45600 metal2 +74100 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +85500 39900 131100 45600 metal3 +125400 39900 131100 45600 metal2 +125400 39900 131100 45600 metal1 +) +_410_ +( +91200 57000 96900 62700 metal1 +91200 57000 96900 79800 metal2 +91200 74100 96900 79800 metal1 +85500 22800 91200 28500 metal1 +85500 22800 91200 28500 metal2 +85500 22800 96900 28500 metal3 +91200 22800 96900 28500 metal2 +91200 22800 96900 62700 metal2 +) +_411_ +( +96900 119700 102600 125400 metal1 +96900 119700 102600 131100 metal2 +91200 136800 96900 142500 metal1 +91200 125400 96900 142500 metal2 +91200 125400 96900 131100 metal2 +91200 125400 102600 131100 metal3 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal1 +) +_412_ +( +96900 131100 102600 136800 metal1 +96900 131100 102600 136800 metal2 +96900 131100 108300 136800 metal3 +102600 131100 108300 136800 metal2 +102600 125400 108300 136800 metal2 +102600 125400 108300 131100 metal1 +79800 131100 85500 136800 metal1 +79800 131100 85500 136800 metal2 +79800 131100 102600 136800 metal3 +) +_413_ +( +125400 125400 131100 131100 metal1 +125400 125400 131100 131100 metal2 +125400 125400 136800 131100 metal3 +131100 125400 136800 131100 metal2 +131100 125400 136800 131100 metal1 +131100 125400 153900 131100 metal3 +148200 125400 153900 131100 metal2 +148200 119700 153900 131100 metal2 +148200 119700 153900 125400 metal1 +) +_414_ +( +136800 85500 142500 91200 metal1 +136800 79800 142500 91200 metal2 +136800 79800 142500 85500 metal1 +131100 62700 136800 68400 metal1 +131100 62700 136800 68400 metal2 +131100 62700 142500 68400 metal3 +136800 62700 142500 68400 metal2 +136800 62700 142500 85500 metal2 +) +_415_ +( +142500 91200 148200 114000 metal2 +142500 108300 148200 114000 metal1 +142500 91200 148200 96900 metal1 +142500 91200 148200 96900 metal2 +142500 91200 165300 96900 metal3 +159600 91200 165300 96900 metal2 +159600 91200 165300 96900 metal1 +) +_416_ +( +131100 91200 136800 96900 metal1 +131100 79800 136800 96900 metal2 +131100 79800 136800 85500 metal1 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 136800 79800 metal3 +131100 74100 136800 79800 metal2 +131100 74100 136800 85500 metal2 +) +_417_ +( +125400 108300 131100 114000 metal1 +125400 108300 131100 125400 metal2 +125400 119700 131100 125400 metal1 +125400 119700 131100 125400 metal2 +125400 119700 159600 125400 metal3 +153900 119700 159600 125400 metal2 +153900 119700 159600 125400 metal1 +) +_418_ +( +74100 91200 79800 96900 metal1 +74100 91200 79800 102600 metal2 +68400 102600 74100 108300 metal1 +68400 96900 74100 108300 metal2 +68400 96900 74100 102600 metal2 +68400 96900 79800 102600 metal3 +74100 96900 79800 102600 metal2 +74100 96900 79800 102600 metal1 +) +_419_ +( +74100 85500 79800 91200 metal1 +74100 79800 79800 91200 metal2 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_420_ +( +57000 125400 62700 131100 metal1 +57000 125400 62700 131100 metal2 +57000 125400 68400 131100 metal3 +62700 125400 68400 131100 metal2 +62700 125400 74100 131100 metal3 +68400 125400 74100 131100 metal2 +68400 119700 74100 131100 metal2 +68400 119700 74100 125400 metal1 +62700 119700 68400 131100 metal2 +62700 119700 68400 125400 metal1 +) +_421_ +( +62700 108300 68400 125400 metal2 +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 119700 74100 125400 metal1 +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +62700 108300 74100 114000 metal3 +68400 108300 74100 114000 metal2 +68400 57000 74100 114000 metal2 +68400 57000 74100 62700 metal2 +68400 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 +74100 57000 79800 62700 metal1 +) +clk +( +57000 102600 62700 114000 metal2 +57000 102600 62700 108300 metal1 +57000 108300 62700 119700 metal2 +57000 114000 62700 119700 metal1 +74100 108300 79800 114000 metal1 +74100 108300 79800 114000 metal2 +74100 108300 85500 114000 metal3 +79800 108300 85500 114000 metal2 +79800 108300 85500 119700 metal2 +79800 114000 85500 119700 metal2 +79800 114000 91200 119700 metal3 +85500 114000 91200 119700 metal2 +85500 114000 91200 125400 metal2 +85500 119700 91200 125400 metal1 +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +136800 131100 153900 136800 metal3 +148200 131100 153900 136800 metal2 +148200 131100 153900 136800 metal1 +91200 193800 96900 201600 metal2 +91200 193800 96900 201600 metal3 +91200 193800 96900 201600 metal4 +91200 193800 96900 201600 metal5 +91200 193800 96900 201600 metal6 +91200 176700 96900 201600 metal2 +91200 176700 96900 182400 metal2 +91200 176700 108300 182400 metal3 +102600 176700 108300 182400 metal2 +102600 153900 108300 182400 metal2 +102600 148200 108300 153900 metal1 +102600 142500 108300 153900 metal2 +119700 136800 125400 142500 metal1 +119700 136800 125400 153900 metal2 +119700 148200 125400 153900 metal2 +119700 148200 131100 153900 metal3 +125400 148200 131100 153900 metal2 +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 159600 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal1 +108300 74100 114000 91200 metal2 +136800 119700 142500 136800 metal2 +51300 91200 57000 96900 metal1 +51300 91200 57000 102600 metal2 +51300 96900 57000 102600 metal2 +51300 96900 62700 102600 metal3 +57000 96900 62700 102600 metal2 +51300 85500 57000 91200 metal1 +51300 74100 57000 91200 metal2 +51300 74100 57000 79800 metal2 +51300 74100 62700 79800 metal3 +57000 74100 62700 79800 metal2 +57000 74100 62700 79800 metal1 +57000 62700 62700 79800 metal2 +57000 62700 62700 68400 metal1 +119700 62700 125400 68400 metal1 +119700 62700 125400 68400 metal2 +119700 62700 136800 68400 metal3 +131100 62700 136800 68400 metal2 +131100 62700 136800 74100 metal2 +153900 102600 159600 119700 metal2 +153900 102600 159600 108300 metal1 +85500 28500 91200 34200 metal1 +85500 28500 91200 34200 metal2 +85500 28500 108300 34200 metal3 +102600 28500 108300 34200 metal2 +102600 28500 108300 34200 metal1 +114000 45600 119700 51300 metal1 +114000 28500 119700 51300 metal2 +114000 28500 119700 34200 metal2 +102600 28500 119700 34200 metal3 +108300 68400 114000 74100 metal1 +108300 62700 114000 74100 metal2 +108300 62700 114000 68400 metal2 +108300 62700 119700 68400 metal3 +114000 62700 119700 68400 metal2 +85500 119700 91200 136800 metal2 +85500 131100 91200 136800 metal1 +85500 131100 91200 148200 metal2 +85500 142500 91200 148200 metal2 +85500 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal1 +131100 142500 136800 148200 metal1 +131100 142500 136800 148200 metal2 +131100 142500 142500 148200 metal3 +136800 142500 142500 148200 metal2 +136800 131100 142500 148200 metal2 +57000 57000 62700 68400 metal2 +57000 57000 62700 62700 metal2 +57000 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 62700 metal1 +114000 51300 119700 57000 metal1 +114000 51300 119700 68400 metal2 +148200 74100 153900 91200 metal2 +57000 96900 68400 102600 metal3 +62700 96900 68400 102600 metal2 +62700 96900 68400 102600 metal1 +51300 85500 57000 96900 metal2 +68400 51300 74100 57000 metal1 +68400 51300 74100 62700 metal2 +131100 68400 136800 74100 metal1 +131100 68400 136800 74100 metal2 +131100 68400 148200 74100 metal3 +142500 68400 148200 74100 metal2 +142500 68400 148200 79800 metal2 +142500 74100 148200 79800 metal2 +142500 74100 153900 79800 metal3 +148200 74100 153900 79800 metal2 +148200 74100 153900 79800 metal1 +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +108300 85500 131100 91200 metal3 +125400 85500 131100 91200 metal2 +125400 85500 131100 91200 metal1 +74100 28500 91200 34200 metal3 +74100 28500 79800 34200 metal2 +74100 28500 79800 39900 metal2 +74100 34200 79800 39900 metal1 +114000 45600 119700 57000 metal2 +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +102600 153900 108300 159600 metal2 +102600 153900 131100 159600 metal3 +125400 153900 131100 159600 metal2 +125400 148200 131100 159600 metal2 +125400 148200 136800 153900 metal3 +131100 148200 136800 153900 metal2 +131100 142500 136800 153900 metal2 +108300 68400 114000 79800 metal2 +102600 148200 108300 159600 metal2 +57000 96900 62700 108300 metal2 +57000 108300 62700 114000 metal2 +57000 108300 79800 114000 metal3 +136800 114000 142500 125400 metal2 +114000 62700 125400 68400 metal3 +131100 119700 136800 125400 metal1 +131100 119700 136800 125400 metal2 +131100 119700 142500 125400 metal3 +136800 119700 142500 125400 metal2 +148200 85500 153900 91200 metal1 +148200 85500 153900 91200 metal2 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 108300 metal2 +) +ctrl.state.out\[1\] +( +57000 114000 62700 119700 metal1 +57000 108300 62700 119700 metal2 +57000 108300 62700 114000 metal1 +) +ctrl.state.out\[2\] +( +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +) +dpath.a_lt_b$in0\[0\] +( +148200 131100 153900 136800 metal1 +148200 131100 153900 136800 metal2 +148200 131100 159600 136800 metal3 +153900 131100 159600 136800 metal2 +153900 131100 159600 136800 metal1 +) +dpath.a_lt_b$in0\[10\] +( +62700 62700 68400 68400 metal1 +62700 62700 68400 68400 metal2 +) +dpath.a_lt_b$in0\[11\] +( +119700 62700 125400 68400 metal1 +119700 62700 125400 68400 metal2 +119700 62700 131100 68400 metal3 +125400 62700 131100 68400 metal2 +125400 62700 131100 68400 metal1 +) +dpath.a_lt_b$in0\[12\] +( +114000 45600 119700 51300 metal1 +114000 45600 119700 51300 metal2 +114000 45600 125400 51300 metal3 +119700 45600 125400 51300 metal2 +119700 45600 125400 51300 metal1 +) +dpath.a_lt_b$in0\[13\] +( +91200 28500 96900 34200 metal1 +91200 28500 96900 39900 metal2 +91200 34200 96900 39900 metal1 +) +dpath.a_lt_b$in0\[14\] +( +74100 34200 79800 39900 metal1 +74100 34200 79800 45600 metal2 +74100 39900 79800 45600 metal1 +) +dpath.a_lt_b$in0\[15\] +( +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +) +dpath.a_lt_b$in0\[1\] +( +85500 131100 91200 136800 metal1 +85500 125400 91200 136800 metal2 +85500 125400 91200 131100 metal1 +) +dpath.a_lt_b$in0\[2\] +( +102600 148200 108300 153900 metal1 +102600 142500 108300 153900 metal2 +102600 142500 108300 148200 metal1 +) +dpath.a_lt_b$in0\[3\] +( +125400 142500 131100 148200 metal1 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal1 +) +dpath.a_lt_b$in0\[4\] +( +153900 74100 159600 79800 metal1 +153900 74100 159600 85500 metal2 +153900 79800 159600 85500 metal1 +) +dpath.a_lt_b$in0\[5\] +( +153900 114000 159600 119700 metal1 +153900 114000 159600 119700 metal2 +) +dpath.a_lt_b$in0\[6\] +( +131100 74100 136800 79800 metal1 +131100 68400 136800 79800 metal2 +131100 68400 136800 74100 metal2 +131100 68400 142500 74100 metal3 +136800 68400 142500 74100 metal2 +136800 68400 142500 74100 metal1 +) +dpath.a_lt_b$in0\[7\] +( +136800 119700 142500 125400 metal1 +136800 119700 142500 125400 metal2 +) +dpath.a_lt_b$in0\[8\] +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +51300 91200 62700 96900 metal3 +57000 91200 62700 96900 metal2 +57000 91200 62700 96900 metal1 +) +dpath.a_lt_b$in0\[9\] +( +57000 74100 62700 79800 metal1 +57000 74100 62700 79800 metal2 +57000 74100 68400 79800 metal3 +62700 74100 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +dpath.a_lt_b$in1\[0\] +( +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +) +dpath.a_lt_b$in1\[10\] +( +74100 57000 79800 62700 metal1 +74100 57000 79800 68400 metal2 +74100 62700 79800 68400 metal1 +) +dpath.a_lt_b$in1\[11\] +( +108300 74100 114000 79800 metal1 +108300 74100 114000 79800 metal2 +108300 74100 119700 79800 metal3 +114000 74100 119700 79800 metal2 +114000 68400 119700 79800 metal2 +114000 68400 119700 74100 metal1 +) +dpath.a_lt_b$in1\[12\] +( +114000 57000 119700 62700 metal1 +114000 57000 119700 62700 metal2 +114000 57000 125400 62700 metal3 +119700 57000 125400 62700 metal2 +119700 51300 125400 62700 metal2 +119700 51300 125400 57000 metal1 +) +dpath.a_lt_b$in1\[13\] +( +102600 28500 108300 34200 metal1 +102600 28500 108300 39900 metal2 +102600 34200 108300 39900 metal1 +) +dpath.a_lt_b$in1\[14\] +( +74100 51300 79800 57000 metal1 +74100 51300 79800 57000 metal2 +) +dpath.a_lt_b$in1\[15\] +( +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +108300 74100 114000 79800 metal1 +) +dpath.a_lt_b$in1\[1\] +( +91200 119700 96900 125400 metal1 +91200 119700 96900 125400 metal2 +) +dpath.a_lt_b$in1\[2\] +( +108300 142500 114000 148200 metal1 +108300 136800 114000 148200 metal2 +108300 136800 114000 142500 metal1 +) +dpath.a_lt_b$in1\[3\] +( +119700 131100 125400 136800 metal1 +119700 131100 125400 136800 metal2 +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 131100 131100 142500 metal2 +125400 136800 131100 142500 metal1 +) +dpath.a_lt_b$in1\[4\] +( +153900 79800 159600 85500 metal1 +153900 79800 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +dpath.a_lt_b$in1\[5\] +( +153900 108300 159600 114000 metal1 +153900 108300 159600 114000 metal2 +153900 108300 165300 114000 metal3 +159600 108300 165300 114000 metal2 +159600 102600 165300 114000 metal2 +159600 102600 165300 108300 metal1 +) +dpath.a_lt_b$in1\[6\] +( +125400 79800 131100 85500 metal1 +125400 79800 131100 91200 metal2 +125400 85500 131100 91200 metal2 +125400 85500 136800 91200 metal3 +131100 85500 136800 91200 metal2 +131100 85500 136800 91200 metal1 +) +dpath.a_lt_b$in1\[7\] +( +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 148200 119700 metal3 +142500 114000 148200 119700 metal2 +142500 108300 148200 119700 metal2 +142500 108300 148200 114000 metal1 +) +dpath.a_lt_b$in1\[8\] +( +68400 96900 74100 102600 metal1 +68400 96900 74100 102600 metal2 +) +dpath.a_lt_b$in1\[9\] +( +57000 79800 62700 85500 metal1 +57000 79800 62700 85500 metal2 +) +net1 +( +114000 171000 119700 176700 metal1 +114000 171000 119700 176700 metal2 +114000 171000 131100 176700 metal3 +125400 171000 131100 176700 metal2 +125400 171000 131100 182400 metal2 +125400 176700 131100 182400 metal2 +125400 176700 171000 182400 metal3 +165300 176700 171000 182400 metal2 +165300 176700 171000 182400 metal1 +) +net10 +( +142500 68400 148200 74100 metal1 +142500 45600 148200 74100 metal2 +142500 45600 148200 51300 metal2 +142500 45600 176700 51300 metal3 +171000 45600 176700 51300 metal2 +171000 22800 176700 51300 metal2 +171000 22800 176700 28500 metal1 +) +net11 +( +171000 119700 176700 125400 metal1 +171000 119700 176700 125400 metal2 +171000 119700 182400 125400 metal3 +176700 119700 182400 125400 metal2 +176700 119700 182400 131100 metal2 +176700 125400 182400 131100 metal1 +) +net12 +( +28500 22800 34200 28500 metal1 +28500 22800 34200 34200 metal2 +28500 28500 34200 34200 metal2 +28500 28500 39900 34200 metal3 +34200 28500 39900 34200 metal2 +34200 28500 39900 79800 metal2 +34200 74100 39900 79800 metal1 +) +net13 +( +136800 176700 142500 182400 metal1 +136800 142500 142500 182400 metal2 +136800 142500 142500 148200 metal1 +) +net14 +( +62700 176700 68400 182400 metal1 +62700 142500 68400 182400 metal2 +62700 142500 68400 148200 metal2 +62700 142500 74100 148200 metal3 +68400 142500 74100 148200 metal2 +68400 142500 74100 148200 metal1 +) +net15 +( +171000 91200 176700 96900 metal1 +171000 79800 176700 96900 metal2 +171000 79800 176700 85500 metal2 +171000 79800 182400 85500 metal3 +176700 79800 182400 85500 metal2 +176700 79800 182400 85500 metal1 +) +net16 +( +148200 171000 153900 176700 metal1 +148200 171000 153900 176700 metal2 +148200 171000 159600 176700 metal3 +153900 171000 159600 176700 metal2 +153900 171000 159600 182400 metal2 +153900 176700 159600 182400 metal1 +) +net17 +( +17100 85500 22800 91200 metal1 +17100 85500 22800 96900 metal2 +17100 91200 22800 96900 metal2 +17100 91200 28500 96900 metal3 +22800 91200 28500 96900 metal2 +22800 91200 28500 182400 metal2 +22800 176700 28500 182400 metal1 +) +net18 +( +39900 22800 45600 28500 metal1 +39900 22800 45600 34200 metal2 +39900 28500 45600 34200 metal2 +39900 28500 68400 34200 metal3 +62700 28500 68400 34200 metal2 +62700 28500 68400 39900 metal2 +62700 34200 68400 39900 metal1 +) +net19 +( +114000 34200 119700 39900 metal1 +114000 34200 119700 39900 metal2 +114000 34200 153900 39900 metal3 +148200 34200 153900 39900 metal2 +148200 22800 153900 39900 metal2 +148200 22800 153900 28500 metal1 +) +net2 +( +34200 176700 39900 182400 metal1 +34200 176700 39900 182400 metal2 +34200 176700 45600 182400 metal3 +39900 176700 45600 182400 metal2 +39900 171000 45600 182400 metal2 +39900 171000 45600 176700 metal1 +) +net20 +( +114000 165300 119700 171000 metal1 +114000 165300 119700 171000 metal2 +114000 165300 131100 171000 metal3 +125400 165300 131100 171000 metal2 +125400 165300 131100 176700 metal2 +125400 171000 131100 176700 metal2 +125400 171000 182400 176700 metal3 +176700 171000 182400 176700 metal2 +176700 171000 182400 176700 metal1 +) +net21 +( +102600 22800 108300 28500 metal1 +102600 22800 108300 28500 metal2 +) +net22 +( +119700 171000 125400 176700 metal1 +119700 171000 125400 182400 metal2 +119700 176700 125400 182400 metal2 +119700 176700 131100 182400 metal3 +125400 176700 131100 182400 metal2 +125400 176700 131100 182400 metal1 +) +net23 +( +17100 74100 22800 79800 metal1 +17100 74100 22800 79800 metal2 +) +net24 +( +28500 176700 34200 182400 metal1 +28500 176700 34200 182400 metal2 +28500 176700 39900 182400 metal3 +34200 176700 39900 182400 metal2 +34200 125400 39900 182400 metal2 +34200 125400 39900 131100 metal2 +34200 125400 51300 131100 metal3 +45600 125400 51300 131100 metal2 +45600 102600 51300 131100 metal2 +45600 102600 51300 108300 metal1 +) +net25 +( +171000 125400 176700 131100 metal1 +171000 125400 176700 159600 metal2 +171000 153900 176700 159600 metal2 +171000 153900 182400 159600 metal3 +176700 153900 182400 159600 metal2 +176700 153900 182400 159600 metal1 +) +net26 +( +17100 57000 22800 62700 metal1 +17100 57000 22800 68400 metal2 +17100 62700 22800 68400 metal2 +17100 62700 28500 68400 metal3 +22800 62700 28500 68400 metal2 +22800 62700 28500 68400 metal1 +) +net27 +( +159600 22800 165300 28500 metal1 +159600 22800 165300 28500 metal2 +159600 22800 182400 28500 metal3 +176700 22800 182400 28500 metal2 +176700 22800 182400 34200 metal2 +176700 28500 182400 34200 metal1 +) +net28 +( +159600 96900 165300 102600 metal1 +159600 96900 165300 108300 metal2 +159600 102600 165300 108300 metal2 +159600 102600 176700 108300 metal3 +171000 102600 176700 108300 metal2 +171000 102600 176700 114000 metal2 +171000 108300 176700 114000 metal2 +171000 108300 182400 114000 metal3 +176700 108300 182400 114000 metal2 +176700 108300 182400 114000 metal1 +) +net29 +( +17100 171000 22800 176700 metal1 +17100 171000 22800 176700 metal2 +) +net3 +( +85500 22800 91200 28500 metal1 +85500 22800 91200 34200 metal2 +85500 28500 91200 34200 metal1 +) +net30 +( +148200 176700 153900 182400 metal1 +148200 171000 153900 182400 metal2 +148200 171000 153900 176700 metal2 +148200 171000 159600 176700 metal3 +153900 171000 159600 176700 metal2 +153900 153900 159600 176700 metal2 +153900 153900 159600 159600 metal2 +153900 153900 171000 159600 metal3 +165300 153900 171000 159600 metal2 +165300 148200 171000 159600 metal2 +165300 148200 171000 153900 metal1 +) +net31 +( +74100 22800 79800 28500 metal1 +74100 22800 79800 28500 metal2 +74100 22800 85500 28500 metal3 +79800 22800 85500 28500 metal2 +79800 22800 85500 28500 metal1 +) +net32 +( +153900 136800 159600 142500 metal1 +153900 136800 159600 142500 metal2 +153900 136800 182400 142500 metal3 +176700 136800 182400 142500 metal2 +176700 136800 182400 142500 metal1 +) +net33 +( +79800 125400 85500 131100 metal1 +79800 125400 85500 182400 metal2 +79800 176700 85500 182400 metal2 +79800 176700 176700 182400 metal3 +171000 176700 176700 182400 metal2 +171000 176700 176700 182400 metal1 +) +net34 +( +17100 102600 22800 108300 metal1 +17100 102600 22800 108300 metal2 +17100 102600 28500 108300 metal3 +22800 102600 28500 108300 metal2 +22800 102600 28500 114000 metal2 +22800 108300 28500 114000 metal2 +22800 108300 57000 114000 metal3 +51300 108300 57000 114000 metal2 +51300 108300 57000 114000 metal1 +) +net35 +( +17100 176700 22800 182400 metal1 +17100 176700 22800 182400 metal2 +17100 176700 51300 182400 metal3 +45600 176700 51300 182400 metal2 +45600 125400 51300 182400 metal2 +45600 125400 51300 131100 metal2 +45600 125400 62700 131100 metal3 +57000 125400 62700 131100 metal2 +57000 125400 62700 131100 metal1 +) +net36 +( +51300 96900 57000 108300 metal2 +51300 102600 57000 108300 metal2 +51300 102600 62700 108300 metal3 +57000 102600 62700 108300 metal2 +57000 102600 62700 108300 metal1 +17100 22800 22800 28500 metal1 +17100 22800 22800 28500 metal2 +17100 22800 28500 28500 metal3 +22800 22800 28500 28500 metal2 +22800 22800 28500 96900 metal2 +22800 91200 28500 96900 metal2 +22800 91200 34200 96900 metal3 +28500 91200 34200 96900 metal2 +28500 91200 34200 102600 metal2 +28500 96900 34200 102600 metal2 +28500 96900 57000 102600 metal3 +51300 96900 57000 102600 metal2 +51300 96900 57000 102600 metal1 +) +net37 +( +17100 22800 22800 28500 metal1 +17100 22800 22800 28500 metal2 +17100 22800 91200 28500 metal3 +85500 22800 91200 28500 metal2 +85500 22800 91200 28500 metal1 +) +net38 +( +125400 39900 131100 45600 metal1 +125400 39900 131100 45600 metal2 +125400 39900 136800 45600 metal3 +131100 39900 136800 45600 metal2 +131100 22800 136800 45600 metal2 +131100 22800 136800 28500 metal1 +) +net39 +( +96900 22800 102600 28500 metal1 +96900 22800 102600 28500 metal2 +96900 22800 176700 28500 metal3 +171000 22800 176700 28500 metal2 +171000 22800 176700 28500 metal1 +) +net4 +( +17100 28500 22800 34200 metal1 +17100 28500 22800 39900 metal2 +17100 34200 22800 39900 metal1 +) +net40 +( +114000 34200 119700 39900 metal1 +114000 34200 119700 39900 metal2 +114000 34200 159600 39900 metal3 +153900 34200 159600 39900 metal2 +153900 28500 159600 39900 metal2 +153900 28500 159600 34200 metal2 +153900 28500 176700 34200 metal3 +171000 28500 176700 34200 metal2 +171000 22800 176700 34200 metal2 +171000 22800 176700 28500 metal1 +) +net41 +( +125400 68400 131100 74100 metal1 +125400 68400 131100 74100 metal2 +125400 68400 136800 74100 metal3 +131100 68400 136800 74100 metal2 +131100 62700 136800 74100 metal2 +131100 62700 136800 68400 metal2 +131100 62700 176700 68400 metal3 +171000 62700 176700 68400 metal2 +171000 62700 176700 74100 metal2 +171000 68400 176700 74100 metal1 +) +net42 +( +17100 85500 22800 91200 metal1 +17100 74100 22800 91200 metal2 +17100 74100 22800 79800 metal2 +17100 74100 51300 79800 metal3 +45600 74100 51300 79800 metal2 +45600 74100 51300 79800 metal1 +) +net43 +( +79800 79800 85500 85500 metal1 +79800 22800 85500 85500 metal2 +79800 22800 85500 28500 metal2 +79800 22800 119700 28500 metal3 +114000 22800 119700 28500 metal2 +114000 22800 119700 28500 metal1 +) +net44 +( +17100 114000 22800 119700 metal1 +17100 114000 22800 119700 metal2 +17100 114000 39900 119700 metal3 +34200 114000 39900 119700 metal2 +34200 102600 39900 119700 metal2 +34200 102600 39900 108300 metal2 +34200 102600 74100 108300 metal3 +68400 102600 74100 108300 metal2 +68400 102600 74100 108300 metal1 +) +net45 +( +153900 119700 159600 125400 metal1 +153900 119700 159600 131100 metal2 +153900 125400 159600 131100 metal2 +153900 125400 182400 131100 metal3 +176700 125400 182400 131100 metal2 +176700 125400 182400 182400 metal2 +176700 176700 182400 182400 metal2 +171000 176700 182400 182400 metal3 +171000 176700 176700 182400 metal2 +171000 176700 176700 182400 metal1 +) +net46 +( +17100 45600 22800 51300 metal1 +17100 45600 22800 51300 metal2 +17100 45600 57000 51300 metal3 +51300 45600 57000 51300 metal2 +51300 34200 57000 51300 metal2 +51300 34200 57000 39900 metal2 +51300 34200 68400 39900 metal3 +62700 34200 68400 39900 metal2 +62700 17100 68400 39900 metal2 +62700 17100 68400 22800 metal2 +62700 17100 119700 22800 metal3 +114000 17100 119700 22800 metal2 +114000 17100 119700 34200 metal2 +114000 28500 119700 34200 metal2 +114000 28500 125400 34200 metal3 +119700 28500 125400 34200 metal2 +119700 28500 125400 51300 metal2 +119700 45600 125400 51300 metal2 +119700 45600 131100 51300 metal3 +125400 45600 131100 51300 metal2 +125400 45600 131100 79800 metal2 +125400 74100 131100 79800 metal1 +) +net47 +( +159600 91200 165300 96900 metal1 +159600 91200 165300 96900 metal2 +159600 91200 171000 96900 metal3 +165300 91200 171000 96900 metal2 +165300 74100 171000 96900 metal2 +165300 74100 171000 79800 metal2 +165300 74100 182400 79800 metal3 +176700 74100 182400 79800 metal2 +176700 34200 182400 79800 metal2 +176700 34200 182400 39900 metal2 +171000 34200 182400 39900 metal3 +171000 34200 176700 39900 metal2 +171000 34200 176700 39900 metal1 +) +net48 +( +22800 22800 28500 28500 metal1 +22800 22800 28500 28500 metal2 +22800 22800 39900 28500 metal3 +34200 22800 39900 28500 metal2 +34200 11400 39900 28500 metal2 +34200 11400 39900 17100 metal2 +34200 11400 131100 17100 metal3 +125400 11400 131100 17100 metal2 +125400 11400 131100 51300 metal2 +125400 45600 131100 51300 metal2 +125400 45600 136800 51300 metal3 +131100 45600 136800 51300 metal2 +131100 45600 136800 68400 metal2 +131100 62700 136800 68400 metal1 +) +net49 +( +148200 119700 153900 125400 metal1 +148200 119700 153900 125400 metal2 +148200 119700 159600 125400 metal3 +153900 119700 159600 125400 metal2 +153900 114000 159600 125400 metal2 +153900 114000 159600 119700 metal2 +153900 114000 182400 119700 metal3 +176700 114000 182400 119700 metal2 +176700 74100 182400 119700 metal2 +176700 74100 182400 79800 metal2 +159600 74100 182400 79800 metal3 +159600 74100 165300 79800 metal2 +159600 22800 165300 79800 metal2 +159600 22800 165300 28500 metal1 +) +net5 +( +108300 176700 114000 182400 metal1 +108300 171000 114000 182400 metal2 +108300 171000 114000 176700 metal1 +) +net50 +( +17100 131100 22800 136800 metal1 +17100 125400 22800 136800 metal2 +17100 125400 22800 131100 metal2 +17100 125400 79800 131100 metal3 +74100 125400 79800 131100 metal2 +74100 125400 79800 136800 metal2 +74100 131100 79800 136800 metal2 +74100 131100 85500 136800 metal3 +79800 131100 85500 136800 metal2 +79800 131100 85500 136800 metal1 +) +net51 +( +17100 148200 22800 153900 metal1 +17100 148200 22800 153900 metal2 +17100 148200 28500 153900 metal3 +22800 148200 28500 153900 metal2 +22800 136800 28500 153900 metal2 +22800 136800 28500 142500 metal2 +22800 136800 96900 142500 metal3 +91200 136800 96900 142500 metal2 +91200 136800 96900 142500 metal1 +) +net52 +( +17100 159600 22800 165300 metal1 +17100 153900 22800 165300 metal2 +17100 153900 22800 159600 metal2 +17100 153900 96900 159600 metal3 +91200 153900 96900 159600 metal2 +91200 136800 96900 159600 metal2 +91200 136800 96900 142500 metal1 +) +net53 +( +74100 57000 79800 62700 metal1 +74100 57000 79800 62700 metal2 +74100 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +79800 51300 85500 62700 metal2 +79800 51300 85500 57000 metal2 +79800 51300 125400 57000 metal3 +119700 51300 125400 57000 metal2 +119700 45600 125400 57000 metal2 +119700 45600 125400 51300 metal2 +119700 45600 176700 51300 metal3 +171000 45600 176700 51300 metal2 +171000 45600 176700 57000 metal2 +171000 51300 176700 57000 metal1 +) +net6 +( +57000 22800 62700 28500 metal1 +57000 22800 62700 51300 metal2 +57000 45600 62700 51300 metal1 +) +net7 +( +51300 176700 57000 182400 metal1 +51300 108300 57000 182400 metal2 +51300 108300 57000 114000 metal1 +) +net8 +( +171000 96900 176700 102600 metal1 +171000 96900 176700 102600 metal2 +171000 96900 182400 102600 metal3 +176700 96900 182400 102600 metal2 +176700 91200 182400 102600 metal2 +176700 91200 182400 96900 metal1 +) +net9 +( +79800 176700 85500 182400 metal1 +79800 176700 85500 182400 metal2 +79800 176700 91200 182400 metal3 +85500 176700 91200 182400 metal2 +85500 171000 91200 182400 metal2 +85500 171000 91200 176700 metal1 +) +req_msg[0] +( +171000 136800 176700 142500 metal1 +171000 136800 176700 142500 metal2 +171000 136800 200260 142500 metal3 +193800 136800 200260 142500 metal3 +193800 136800 200260 142500 metal4 +193800 136800 200260 142500 metal5 +) +req_msg[10] +( +125400 193800 131100 201600 metal2 +125400 193800 131100 201600 metal3 +125400 193800 131100 201600 metal4 +125400 193800 131100 201600 metal5 +125400 193800 131100 201600 metal6 +125400 176700 131100 201600 metal2 +125400 176700 131100 182400 metal1 +) +req_msg[11] +( +102600 0 108300 5700 metal2 +102600 0 108300 5700 metal3 +102600 0 108300 5700 metal4 +102600 0 108300 5700 metal5 +102600 0 108300 5700 metal6 +102600 0 108300 28500 metal2 +102600 22800 108300 28500 metal1 +) +req_msg[12] +( +171000 171000 176700 176700 metal1 +171000 171000 176700 176700 metal2 +171000 171000 200260 176700 metal3 +193800 171000 200260 176700 metal3 +193800 171000 200260 176700 metal4 +193800 171000 200260 176700 metal5 +) +req_msg[13] +( +142500 0 148200 5700 metal2 +142500 0 148200 5700 metal3 +142500 0 148200 5700 metal4 +142500 0 148200 5700 metal5 +142500 0 148200 5700 metal6 +142500 0 148200 28500 metal2 +142500 22800 148200 28500 metal1 +) +req_msg[14] +( +39900 0 45600 5700 metal3 +39900 0 45600 5700 metal4 +39900 0 45600 5700 metal5 +39900 0 45600 5700 metal6 +39900 0 51300 5700 metal3 +45600 0 51300 5700 metal2 +45600 0 51300 28500 metal2 +45600 22800 51300 28500 metal2 +39900 22800 51300 28500 metal3 +39900 22800 45600 28500 metal2 +39900 22800 45600 28500 metal1 +) +req_msg[15] +( +5700 193800 11400 201600 metal2 +5700 193800 11400 201600 metal3 +5700 193800 11400 201600 metal4 +5700 193800 11400 201600 metal5 +5700 193800 11400 201600 metal6 +5700 188100 11400 201600 metal2 +5700 188100 11400 193800 metal2 +5700 188100 17100 193800 metal3 +11400 188100 17100 193800 metal2 +11400 176700 17100 193800 metal2 +11400 176700 17100 182400 metal2 +11400 176700 28500 182400 metal3 +22800 176700 28500 182400 metal2 +22800 176700 28500 182400 metal1 +) +req_msg[16] +( +153900 193800 159600 201600 metal2 +153900 193800 159600 201600 metal3 +153900 193800 159600 201600 metal4 +153900 193800 159600 201600 metal5 +153900 193800 159600 201600 metal6 +153900 176700 159600 201600 metal2 +153900 176700 159600 182400 metal1 +) +req_msg[17] +( +171000 79800 176700 85500 metal1 +171000 79800 176700 85500 metal2 +171000 79800 200260 85500 metal3 +193800 79800 200260 85500 metal3 +193800 79800 200260 85500 metal4 +193800 79800 200260 85500 metal5 +) +req_msg[18] +( +62700 193800 68400 201600 metal2 +62700 193800 68400 201600 metal3 +62700 193800 68400 201600 metal4 +62700 193800 68400 201600 metal5 +62700 193800 68400 201600 metal6 +62700 176700 68400 201600 metal2 +62700 176700 68400 182400 metal1 +) +req_msg[19] +( +136800 193800 142500 201600 metal2 +136800 193800 142500 201600 metal3 +136800 193800 142500 201600 metal4 +136800 193800 142500 201600 metal5 +136800 193800 142500 201600 metal6 +136800 176700 142500 201600 metal2 +136800 176700 142500 182400 metal1 +) +req_msg[1] +( +74100 0 79800 5700 metal2 +74100 0 79800 5700 metal3 +74100 0 79800 5700 metal4 +74100 0 79800 5700 metal5 +74100 0 79800 5700 metal6 +74100 0 79800 28500 metal2 +74100 22800 79800 28500 metal1 +) +req_msg[20] +( +28500 0 34200 5700 metal3 +28500 0 34200 5700 metal4 +28500 0 34200 5700 metal5 +28500 0 34200 5700 metal6 +22800 0 34200 5700 metal3 +22800 0 28500 5700 metal2 +22800 0 28500 17100 metal2 +22800 11400 28500 17100 metal2 +22800 11400 34200 17100 metal3 +28500 11400 34200 17100 metal2 +28500 11400 34200 28500 metal2 +28500 22800 34200 28500 metal1 +) +req_msg[21] +( +171000 125400 176700 131100 metal1 +171000 125400 176700 131100 metal2 +171000 125400 200260 131100 metal3 +193800 125400 200260 131100 metal3 +193800 125400 200260 131100 metal4 +193800 125400 200260 131100 metal5 +) +req_msg[22] +( +165300 22800 171000 28500 metal1 +165300 11400 171000 28500 metal2 +165300 11400 171000 17100 metal2 +165300 11400 200260 17100 metal3 +193800 11400 200260 17100 metal2 +193800 5700 200260 17100 metal2 +193800 5700 200260 11400 metal2 +193800 5700 200260 11400 metal3 +193800 5700 200260 11400 metal4 +193800 5700 200260 11400 metal5 +) +req_msg[23] +( +79800 193800 85500 201600 metal2 +79800 193800 85500 201600 metal3 +79800 193800 85500 201600 metal4 +79800 193800 85500 201600 metal5 +79800 193800 85500 201600 metal6 +79800 176700 85500 201600 metal2 +79800 176700 85500 182400 metal1 +) +req_msg[24] +( +171000 91200 176700 96900 metal1 +171000 91200 176700 96900 metal2 +171000 91200 200260 96900 metal3 +193800 91200 200260 96900 metal3 +193800 91200 200260 96900 metal4 +193800 91200 200260 96900 metal5 +) +req_msg[25] +( +51300 193800 57000 201600 metal2 +51300 193800 57000 201600 metal3 +51300 193800 57000 201600 metal4 +51300 193800 57000 201600 metal5 +51300 193800 57000 201600 metal6 +51300 188100 57000 201600 metal2 +51300 188100 57000 193800 metal2 +45600 188100 57000 193800 metal3 +45600 188100 51300 193800 metal2 +45600 176700 51300 193800 metal2 +45600 176700 51300 182400 metal2 +45600 176700 57000 182400 metal3 +51300 176700 57000 182400 metal2 +51300 176700 57000 182400 metal1 +) +req_msg[26] +( +57000 0 62700 5700 metal2 +57000 0 62700 5700 metal3 +57000 0 62700 5700 metal4 +57000 0 62700 5700 metal5 +57000 0 62700 5700 metal6 +57000 0 62700 28500 metal2 +57000 22800 62700 28500 metal1 +) +req_msg[27] +( +108300 193800 114000 201600 metal2 +108300 193800 114000 201600 metal3 +108300 193800 114000 201600 metal4 +108300 193800 114000 201600 metal5 +108300 193800 114000 201600 metal6 +108300 176700 114000 201600 metal2 +108300 176700 114000 182400 metal1 +) +req_msg[28] +( +0 28500 5700 34200 metal3 +0 28500 5700 34200 metal4 +0 28500 5700 34200 metal5 +0 28500 22800 34200 metal3 +17100 28500 22800 34200 metal2 +17100 28500 22800 34200 metal1 +) +req_msg[29] +( +85500 0 91200 5700 metal2 +85500 0 91200 5700 metal3 +85500 0 91200 5700 metal4 +85500 0 91200 5700 metal5 +85500 0 91200 5700 metal6 +85500 0 91200 28500 metal2 +85500 22800 91200 28500 metal1 +) +req_msg[2] +( +148200 176700 153900 182400 metal1 +148200 176700 153900 193800 metal2 +148200 188100 153900 193800 metal2 +148200 188100 171000 193800 metal3 +165300 188100 171000 193800 metal2 +165300 188100 171000 201600 metal2 +165300 193800 171000 201600 metal2 +165300 193800 171000 201600 metal3 +165300 193800 171000 201600 metal4 +165300 193800 171000 201600 metal5 +165300 193800 171000 201600 metal6 +) +req_msg[30] +( +34200 193800 39900 201600 metal2 +34200 193800 39900 201600 metal3 +34200 193800 39900 201600 metal4 +34200 193800 39900 201600 metal5 +34200 193800 39900 201600 metal6 +34200 176700 39900 201600 metal2 +34200 176700 39900 182400 metal1 +) +req_msg[31] +( +165300 176700 171000 182400 metal1 +165300 176700 171000 193800 metal2 +165300 188100 171000 193800 metal2 +165300 188100 188100 193800 metal3 +182400 188100 188100 193800 metal2 +182400 188100 188100 201600 metal2 +182400 193800 188100 201600 metal2 +182400 193800 188100 201600 metal3 +182400 193800 188100 201600 metal4 +182400 193800 188100 201600 metal5 +182400 193800 188100 201600 metal6 +) +req_msg[3] +( +0 176700 5700 182400 metal3 +0 176700 5700 182400 metal4 +0 176700 5700 182400 metal5 +0 176700 17100 182400 metal3 +11400 176700 17100 182400 metal2 +11400 171000 17100 182400 metal2 +11400 171000 17100 176700 metal2 +11400 171000 22800 176700 metal3 +17100 171000 22800 176700 metal2 +17100 171000 22800 176700 metal1 +) +req_msg[4] +( +171000 108300 176700 114000 metal1 +171000 108300 176700 114000 metal2 +171000 108300 200260 114000 metal3 +193800 108300 200260 114000 metal3 +193800 108300 200260 114000 metal4 +193800 108300 200260 114000 metal5 +) +req_msg[5] +( +171000 28500 176700 34200 metal1 +171000 28500 176700 34200 metal2 +171000 28500 182400 34200 metal3 +176700 28500 182400 34200 metal2 +176700 0 182400 34200 metal2 +176700 0 182400 5700 metal2 +176700 0 182400 5700 metal3 +176700 0 182400 5700 metal4 +176700 0 182400 5700 metal5 +176700 0 182400 5700 metal6 +) +req_msg[6] +( +0 57000 5700 62700 metal3 +0 57000 5700 62700 metal4 +0 57000 5700 62700 metal5 +0 57000 22800 62700 metal3 +17100 57000 22800 62700 metal2 +17100 57000 22800 62700 metal1 +) +req_msg[7] +( +171000 153900 176700 159600 metal1 +171000 153900 176700 159600 metal2 +171000 153900 200260 159600 metal3 +193800 153900 200260 159600 metal3 +193800 153900 200260 159600 metal4 +193800 153900 200260 159600 metal5 +) +req_msg[8] +( +17100 193800 22800 201600 metal2 +17100 193800 22800 201600 metal3 +17100 193800 22800 201600 metal4 +17100 193800 22800 201600 metal5 +17100 193800 22800 201600 metal6 +17100 188100 22800 201600 metal2 +17100 188100 22800 193800 metal2 +17100 188100 28500 193800 metal3 +22800 188100 28500 193800 metal2 +22800 176700 28500 193800 metal2 +22800 176700 28500 182400 metal2 +22800 176700 34200 182400 metal3 +28500 176700 34200 182400 metal2 +28500 176700 34200 182400 metal1 +) +req_msg[9] +( +0 68400 5700 74100 metal2 +0 68400 5700 74100 metal3 +0 68400 5700 74100 metal4 +0 68400 5700 74100 metal5 +0 68400 5700 79800 metal2 +0 74100 5700 79800 metal2 +0 74100 22800 79800 metal3 +17100 74100 22800 79800 metal2 +17100 74100 22800 79800 metal1 +) +req_rdy +( +0 0 5700 5700 metal2 +0 0 5700 5700 metal3 +0 0 5700 5700 metal4 +0 0 5700 5700 metal5 +0 0 5700 5700 metal6 +0 0 5700 28500 metal2 +0 22800 5700 28500 metal2 +0 22800 22800 28500 metal3 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal1 +) +req_val +( +165300 176700 171000 182400 metal1 +165300 176700 171000 182400 metal2 +165300 176700 193800 182400 metal3 +188100 176700 193800 182400 metal2 +188100 176700 193800 188100 metal2 +188100 182400 193800 188100 metal2 +188100 182400 200260 188100 metal3 +193800 182400 200260 188100 metal3 +193800 182400 200260 188100 metal4 +193800 182400 200260 188100 metal5 +) +reset +( +0 102600 5700 108300 metal3 +0 102600 5700 108300 metal4 +0 102600 5700 108300 metal5 +0 102600 22800 108300 metal3 +17100 102600 22800 108300 metal2 +17100 102600 22800 108300 metal1 +) +resp_msg[0] +( +0 159600 5700 165300 metal3 +0 159600 5700 165300 metal4 +0 159600 5700 165300 metal5 +0 159600 22800 165300 metal3 +17100 159600 22800 165300 metal2 +17100 159600 22800 165300 metal1 +) +resp_msg[10] +( +0 85500 5700 91200 metal3 +0 85500 5700 91200 metal4 +0 85500 5700 91200 metal5 +0 85500 22800 91200 metal3 +17100 85500 22800 91200 metal2 +17100 85500 22800 91200 metal1 +) +resp_msg[11] +( +176700 68400 182400 74100 metal1 +176700 62700 182400 74100 metal2 +176700 62700 182400 68400 metal2 +176700 62700 200260 68400 metal3 +193800 62700 200260 68400 metal3 +193800 62700 200260 68400 metal4 +193800 62700 200260 68400 metal5 +) +resp_msg[12] +( +176700 22800 182400 28500 metal1 +176700 22800 182400 28500 metal2 +176700 22800 188100 28500 metal3 +182400 22800 188100 28500 metal2 +182400 17100 188100 28500 metal2 +182400 17100 188100 22800 metal2 +182400 17100 193800 22800 metal3 +188100 17100 193800 22800 metal2 +188100 0 193800 22800 metal2 +188100 0 193800 5700 metal2 +188100 0 193800 5700 metal3 +188100 0 193800 5700 metal4 +188100 0 193800 5700 metal5 +188100 0 193800 5700 metal6 +) +resp_msg[13] +( +176700 22800 182400 28500 metal1 +176700 22800 182400 28500 metal2 +176700 22800 193800 28500 metal3 +188100 22800 193800 28500 metal2 +188100 17100 193800 28500 metal2 +188100 17100 193800 22800 metal2 +188100 17100 200260 22800 metal3 +193800 17100 200260 22800 metal3 +193800 17100 200260 22800 metal4 +193800 17100 200260 22800 metal5 +) +resp_msg[14] +( +131100 22800 136800 28500 metal1 +131100 11400 136800 28500 metal2 +131100 11400 136800 17100 metal2 +125400 11400 136800 17100 metal3 +125400 11400 131100 17100 metal2 +125400 0 131100 17100 metal2 +125400 0 131100 5700 metal2 +125400 0 136800 5700 metal3 +131100 0 136800 5700 metal3 +131100 0 136800 5700 metal4 +131100 0 136800 5700 metal5 +131100 0 136800 5700 metal6 +) +resp_msg[15] +( +11400 0 17100 5700 metal2 +11400 0 17100 5700 metal3 +11400 0 17100 5700 metal4 +11400 0 17100 5700 metal5 +11400 0 17100 5700 metal6 +11400 0 17100 28500 metal2 +11400 22800 17100 28500 metal2 +11400 22800 22800 28500 metal3 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal1 +) +resp_msg[1] +( +0 142500 5700 148200 metal3 +0 142500 5700 148200 metal4 +0 142500 5700 148200 metal5 +0 142500 22800 148200 metal3 +17100 142500 22800 148200 metal2 +17100 142500 22800 153900 metal2 +17100 148200 22800 153900 metal1 +) +resp_msg[2] +( +0 131100 5700 136800 metal2 +0 131100 5700 136800 metal3 +0 131100 5700 136800 metal4 +0 131100 5700 136800 metal5 +0 131100 5700 142500 metal2 +0 136800 5700 142500 metal2 +0 136800 22800 142500 metal3 +17100 136800 22800 142500 metal2 +17100 131100 22800 142500 metal2 +17100 131100 22800 136800 metal1 +) +resp_msg[3] +( +159600 22800 165300 28500 metal1 +159600 22800 165300 28500 metal2 +153900 22800 165300 28500 metal3 +153900 22800 159600 28500 metal2 +153900 0 159600 28500 metal2 +153900 0 159600 5700 metal2 +153900 0 165300 5700 metal3 +159600 0 165300 5700 metal3 +159600 0 165300 5700 metal4 +159600 0 165300 5700 metal5 +159600 0 165300 5700 metal6 +) +resp_msg[4] +( +0 11400 5700 17100 metal3 +0 11400 5700 17100 metal4 +0 11400 5700 17100 metal5 +0 11400 28500 17100 metal3 +22800 11400 28500 17100 metal2 +22800 11400 28500 28500 metal2 +22800 22800 28500 28500 metal1 +) +resp_msg[5] +( +176700 34200 182400 39900 metal1 +176700 34200 182400 39900 metal2 +176700 34200 200260 39900 metal3 +193800 34200 200260 39900 metal3 +193800 34200 200260 39900 metal4 +193800 34200 200260 39900 metal5 +) +resp_msg[6] +( +0 39900 5700 45600 metal2 +0 39900 5700 45600 metal3 +0 39900 5700 45600 metal4 +0 39900 5700 45600 metal5 +0 39900 5700 51300 metal2 +0 45600 5700 51300 metal2 +0 45600 22800 51300 metal3 +17100 45600 22800 51300 metal2 +17100 45600 22800 51300 metal1 +) +resp_msg[7] +( +176700 176700 182400 182400 metal1 +176700 176700 182400 193800 metal2 +176700 188100 182400 193800 metal2 +176700 188100 200260 193800 metal3 +193800 188100 200260 193800 metal2 +193800 188100 200260 201600 metal2 +193800 193800 200260 201600 metal2 +193800 193800 200260 201600 metal3 +193800 193800 200260 201600 metal4 +193800 193800 200260 201600 metal5 +193800 193800 200260 201600 metal6 +) +resp_msg[8] +( +0 114000 5700 119700 metal3 +0 114000 5700 119700 metal4 +0 114000 5700 119700 metal5 +0 114000 22800 119700 metal3 +17100 114000 22800 119700 metal2 +17100 114000 22800 119700 metal1 +) +resp_msg[9] +( +114000 0 119700 5700 metal2 +114000 0 119700 5700 metal3 +114000 0 119700 5700 metal4 +114000 0 119700 5700 metal5 +114000 0 119700 5700 metal6 +114000 0 119700 22800 metal2 +114000 17100 119700 22800 metal2 +114000 17100 125400 22800 metal3 +119700 17100 125400 22800 metal2 +119700 17100 125400 28500 metal2 +119700 22800 125400 28500 metal1 +) +resp_rdy +( +0 188100 5700 193800 metal2 +0 188100 5700 193800 metal3 +0 188100 5700 193800 metal4 +0 188100 5700 193800 metal5 +0 176700 5700 193800 metal2 +0 176700 5700 182400 metal2 +0 176700 22800 182400 metal3 +17100 176700 22800 182400 metal2 +17100 176700 22800 182400 metal1 +) +resp_val +( +176700 51300 182400 57000 metal1 +176700 51300 182400 57000 metal2 +176700 51300 200260 57000 metal3 +193800 51300 200260 57000 metal3 +193800 51300 200260 57000 metal4 +193800 51300 200260 57000 metal5 +) diff --git a/src/grt/test/congestion7_multicore.ok b/src/grt/test/congestion7_multicore.ok new file mode 100644 index 00000000000..b6c89349fc4 --- /dev/null +++ b/src/grt/test/congestion7_multicore.ok @@ -0,0 +1,96 @@ +[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells +[INFO ODB-0128] Design: gcd +[INFO ODB-0130] Created 54 pins. +[INFO ODB-0131] Created 676 components and 2850 component-terminals. +[INFO ODB-0133] Created 579 nets and 1498 connections. +[WARNING GRT-0300] Timing is not available, setting critical nets percentage to 0. +[INFO GRT-0020] Min routing layer: metal2 +[INFO GRT-0021] Max routing layer: metal10 +[INFO GRT-0022] Global adjustment: 0% +[INFO GRT-0023] Grid origin: (0, 0) +[INFO GRT-0088] Layer metal1 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1350 +[INFO GRT-0088] Layer metal2 Track-Pitch = 0.1900 line-2-Via Pitch: 0.1400 +[INFO GRT-0088] Layer metal3 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1400 +[INFO GRT-0088] Layer metal4 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal5 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal6 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal7 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 +[INFO GRT-0088] Layer metal8 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 +[INFO GRT-0088] Layer metal9 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 +[INFO GRT-0088] Layer metal10 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 +[INFO GRT-0003] Macros: 0 +[INFO GRT-0004] Blockages: 0 +[INFO GRT-0019] Found 0 clock nets. +[INFO GRT-0001] Minimum degree: 2 +[INFO GRT-0002] Maximum degree: 36 + +[INFO GRT-0053] Routing resources analysis: + Routing Original Derated Resource +Layer Direction Resources Resources Reduction (%) +--------------------------------------------------------------- +metal1 Horizontal 0 0 0.00% +metal2 Vertical 17918 1190 93.36% +metal3 Horizontal 24480 2380 90.28% +metal4 Vertical 12172 0 100.00% +metal5 Horizontal 12240 0 100.00% +metal6 Vertical 12172 0 100.00% +metal7 Horizontal 4284 0 100.00% +metal8 Vertical 4284 0 100.00% +metal9 Horizontal 2142 0 100.00% +metal10 Vertical 2142 0 100.00% +--------------------------------------------------------------- + +[INFO GRT-0101] Running extra iterations to remove overflow. +[INFO GRT-0102] Start extra iteration 1/50 +[INFO GRT-0102] Start extra iteration 2/50 +[INFO GRT-0102] Start extra iteration 3/50 +[INFO GRT-0102] Start extra iteration 4/50 +[INFO GRT-0102] Start extra iteration 5/50 +[INFO GRT-0102] Start extra iteration 6/50 +[INFO GRT-0102] Start extra iteration 7/50 +[INFO GRT-0102] Start extra iteration 8/50 +[INFO GRT-0102] Start extra iteration 9/50 +[INFO GRT-0102] Start extra iteration 10/50 +[INFO GRT-0102] Start extra iteration 11/50 +[INFO GRT-0102] Start extra iteration 12/50 +[INFO GRT-0102] Start extra iteration 13/50 +[INFO GRT-0102] Start extra iteration 14/50 +[INFO GRT-0102] Start extra iteration 15/50 +[INFO GRT-0102] Start extra iteration 16/50 +[INFO GRT-0102] Start extra iteration 17/50 +[INFO GRT-0102] Start extra iteration 18/50 +[INFO GRT-0102] Start extra iteration 19/50 +[INFO GRT-0102] Start extra iteration 20/50 +[INFO GRT-0102] Start extra iteration 21/50 +[INFO GRT-0102] Start extra iteration 22/50 +[INFO GRT-0102] Start extra iteration 23/50 +[INFO GRT-0102] Start extra iteration 24/50 +[INFO GRT-0102] Start extra iteration 25/50 +[INFO GRT-0197] Via related to pin nodes: 2851 +[INFO GRT-0198] Via related Steiner nodes: 34 +[INFO GRT-0199] Via filling finished. +[INFO GRT-0111] Final number of vias: 3850 +[INFO GRT-0112] Final usage 3D: 14185 + +[INFO GRT-0096] Final congestion report: +Layer Resource Demand Usage (%) Max H / Max V / Total Overflow +--------------------------------------------------------------------------------------- +metal1 0 0 0.00% 0 / 0 / 0 +metal2 1190 1263 106.13% 1 / 5 / 524 +metal3 2380 1372 57.65% 4 / 1 / 298 +metal4 0 0 0.00% 0 / 0 / 0 +metal5 0 0 0.00% 0 / 0 / 0 +metal6 0 0 0.00% 0 / 0 / 0 +metal7 0 0 0.00% 0 / 0 / 0 +metal8 0 0 0.00% 0 / 0 / 0 +metal9 0 0 0.00% 0 / 0 / 0 +metal10 0 0 0.00% 0 / 0 / 0 +--------------------------------------------------------------------------------------- +Total 3570 2635 73.81% 5 / 6 / 822 + +[INFO GRT-0018] Total wirelength: 11451 um +[INFO GRT-0014] Routed nets: 563 +[WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. +No differences found. +No differences found. +No differences found. diff --git a/src/grt/test/congestion7_multicore.rptok b/src/grt/test/congestion7_multicore.rptok new file mode 100644 index 00000000000..359debe941f --- /dev/null +++ b/src/grt/test/congestion7_multicore.rptok @@ -0,0 +1,1956 @@ +violation type: Horizontal congestion + srcs: net:clk net:_138_ net:_165_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_077_ net:_248_ net:_370_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_120_ net:_353_ net:_385_ net:_415_ + comment: capacity:2 usage:4 overflow:2 + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_249_ net:_381_ net:_416_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_060_ net:_110_ net:_236_ net:_246_ net:_249_ net:_413_ + comment: capacity:2 usage:6 overflow:4 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_158_ net:_329_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_203_ net:_204_ net:_298_ net:_375_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_173_ net:_174_ net:_245_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_253_ net:_349_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_072_ net:_079_ net:_409_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_072_ net:_330_ net:_352_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_133_ net:_160_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_089_ net:_160_ net:_253_ net:_417_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_221_ net:_317_ net:_318_ net:_397_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_062_ net:_159_ net:_245_ net:_249_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_204_ net:_244_ net:_294_ net:_299_ + comment: capacity:2 usage:5 overflow:3 + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:net35 net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (22.8000, 62.7000) - (25.6500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_380_ net:net31 net:net37 + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:net16 net:net20 net:net30 + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 85.5000) - (76.9500, 88.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_210_ net:_212_ net:net53 + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_298_ net:_375_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_177_ net:_297_ net:_377_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_316_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_352_ net:_401_ net:net53 + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_039_ net:_401_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_216_ net:_375_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_370_ net:_388_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 76.9500) - (57.0000, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_245_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_106_ net:_140_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_298_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_244_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_352_ net:_363_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_160_ net:_287_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_160_ net:_179_ net:_180_ net:_287_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_372_ net:_414_ net:net41 + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_217_ net:_219_ net:_306_ net:_310_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:_394_ net:net52 + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_287_ net:_348_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_128_ net:_381_ net:dpath.a_lt_b$in1\[15\] + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_160_ net:_287_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_145_ net:_160_ net:_253_ net:_262_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_165_ net:_215_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_043_ net:_244_ net:_342_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_245_ net:_417_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_149_ net:_207_ net:_327_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_083_ net:_165_ net:_412_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_013_ net:_051_ net:_123_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_076_ net:_110_ net:_413_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_329_ net:_335_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_123_ net:_171_ net:_189_ net:_297_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_193_ net:_272_ net:_353_ net:_385_ + comment: capacity:2 usage:5 overflow:3 + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_243_ net:_352_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_313_ net:_397_ net:_405_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_160_ net:_380_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_055_ net:_164_ net:_380_ net:_403_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_404_ net:_412_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:_394_ net:net52 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 76.9500) - (34.2000, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_244_ net:_252_ net:_253_ net:_385_ + comment: capacity:2 usage:5 overflow:3 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_160_ net:_417_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:net35 net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 62.7000) - (28.5000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_092_ net:_165_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_165_ net:_267_ + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_209_ net:_244_ net:_329_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ + comment: capacity:2 usage:5 overflow:3 + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_116_ net:_167_ net:_298_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_209_ net:_244_ net:_329_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_093_ net:_111_ net:_127_ net:_370_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_112_ net:_352_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_144_ net:_160_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_327_ net:_332_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_249_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_112_ net:_372_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_115_ net:_142_ net:_409_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_142_ net:net44 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_213_ net:_245_ net:_353_ net:_385_ net:_401_ + comment: capacity:2 usage:6 overflow:4 + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_277_ net:_353_ net:_385_ net:_415_ + comment: capacity:2 usage:4 overflow:2 + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_048_ net:_136_ + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_136_ net:_186_ net:_283_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_073_ net:_114_ net:_252_ net:_408_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_132_ net:_347_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_211_ net:_233_ net:net53 + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - +violation type: Horizontal congestion + srcs: net:_141_ net:_203_ net:_306_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_142_ net:_247_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 51.3000) - (39.9000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_009_ net:_126_ net:_165_ net:dpath.a_lt_b$in1\[3\] + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_105_ net:_139_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_130_ net:_352_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_114_ net:_252_ net:_336_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_175_ net:_278_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_165_ net:_388_ net:_397_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_130_ net:_352_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_177_ net:_272_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_229_ net:_230_ net:_235_ net:_241_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_111_ net:_127_ net:_148_ net:_200_ net:_397_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_249_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_084_ net:_118_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 71.2500) - (51.3000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_065_ net:_275_ net:_279_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_298_ net:_353_ net:_385_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_382_ net:_417_ net:net49 + comment: capacity:2 usage:4 overflow:2 + bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_245_ net:_398_ net:_417_ + comment: capacity:2 usage:4 overflow:2 + bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_370_ net:_388_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 76.9500) - (59.8500, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_119_ net:_159_ net:_249_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_131_ net:_149_ net:_227_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_135_ net:_172_ net:_245_ net:_265_ + comment: capacity:2 usage:5 overflow:3 + bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_140_ net:_203_ net:_304_ net:_375_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_133_ net:_258_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_050_ net:_159_ net:_245_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_028_ net:_116_ net:_245_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_008_ net:_046_ net:_118_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_302_ net:_311_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_245_ net:_249_ net:_413_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_014_ net:_140_ net:_248_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_169_ net:_177_ net:_284_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_129_ net:_232_ net:_234_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_201_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_220_ net:_224_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_070_ net:_111_ net:_370_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_129_ net:_149_ net:_208_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_337_ net:_339_ net:_341_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_113_ net:_248_ net:_407_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_138_ net:_165_ net:dpath.a_lt_b$in1\[6\] + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_139_ net:_143_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_054_ net:_403_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_100_ net:_118_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_252_ net:_389_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_058_ net:_160_ net:_161_ net:_380_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_085_ net:_159_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_242_ net:_252_ net:_352_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_118_ net:_126_ net:_145_ net:_165_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_381_ net:_397_ net:dpath.a_lt_b$in1\[11\] + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_165_ net:_237_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_283_ net:_284_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_125_ net:_141_ net:_307_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_360_ net:dpath.a_lt_b$in1\[7\] + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_156_ net:_162_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 59.8500) - (34.2000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_252_ net:_327_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_119_ net:_144_ net:_160_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_173_ net:_245_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_091_ net:_397_ net:_405_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_337_ net:_339_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_136_ net:_185_ net:_186_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_143_ net:_236_ net:_270_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_385_ net:_395_ net:_415_ + comment: capacity:2 usage:3 overflow:1 + bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_189_ net:_191_ net:_297_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_016_ net:_111_ net:_370_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_249_ net:_257_ net:_404_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_160_ net:_379_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 71.2500) - (68.4000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:_420_ net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_131_ net:_227_ net:_352_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_353_ net:_418_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_127_ net:_223_ net:_317_ net:_397_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_272_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_202_ net:_220_ net:_419_ + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_125_ net:_381_ net:dpath.a_lt_b$in0\[9\] + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_403_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:_394_ net:net52 + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 76.9500) - (42.7500, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_112_ net:_201_ net:_221_ net:_397_ net:_406_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_132_ net:_207_ net:_221_ net:_319_ net:_320_ net:_397_ + comment: capacity:2 usage:6 overflow:4 + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_244_ net:_252_ net:_294_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_092_ net:_126_ net:_165_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_201_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:net24 net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (19.9500, 62.7000) - (22.8000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_205_ net:_244_ net:_353_ net:_385_ net:_401_ + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_165_ net:_215_ net:_238_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:_394_ net:net52 + comment: capacity:2 usage:3 overflow:1 + bbox = (37.0500, 76.9500) - (39.9000, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_133_ net:_147_ net:_254_ net:_258_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_249_ net:_281_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_031_ net:_119_ net:_160_ net:dpath.a_lt_b$in0\[3\] + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_141_ net:_311_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:net24 net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (17.1000, 62.7000) - (19.9500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_370_ net:_394_ net:net52 + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 76.9500) - (37.0500, 79.8000) on Layer - +violation type: Horizontal congestion + srcs: net:_143_ net:_169_ net:_190_ net:_236_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_372_ net:dpath.a_lt_b$in0\[11\] + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_177_ net:_195_ net:_199_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_245_ net:_253_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_069_ net:_375_ net:_386_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_124_ net:_399_ + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_180_ net:_183_ net:_236_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_184_ net:_198_ net:_236_ net:_271_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_027_ net:_248_ net:_389_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - +violation type: Horizontal congestion + srcs: net:_221_ net:_397_ net:_406_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_109_ net:_142_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_272_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_116_ net:_168_ net:_213_ net:_298_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_090_ net:_124_ net:_248_ + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_124_ net:_244_ net:_300_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_121_ net:_137_ net:_175_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_201_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_200_ net:_252_ net:_312_ net:_397_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_165_ net:_237_ net:_250_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_174_ net:_178_ net:_199_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_169_ net:_177_ net:_289_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_172_ net:_245_ net:_263_ net:_264_ + comment: capacity:2 usage:5 overflow:3 + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_142_ net:_158_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_064_ net:_120_ net:_245_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_066_ net:_159_ net:_245_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_230_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_145_ net:_146_ net:_160_ net:_174_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_114_ net:_130_ net:_371_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:net45 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:_400_ + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_071_ net:_397_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_006_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_344_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_096_ net:_366_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_135_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_158_ net:net43 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_051_ net:_139_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_154_ net:_157_ net:_160_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_120_ net:_136_ net:_245_ + comment: capacity:1 usage:3 overflow:2 + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_121_ net:_245_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_174_ net:_199_ net:_250_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[11] net:net47 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net12 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:dpath.a_lt_b$in1\[12\] + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 25.6500) - (62.7000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_160_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_386_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:net41 + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_213_ net:_235_ net:_253_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_245_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_141_ net:_248_ net:_353_ net:_362_ + comment: capacity:1 usage:4 overflow:3 + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_053_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 57.0000) - (79.8000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_388_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_229_ net:_235_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_001_ net:net7 + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:net28 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 48.4500) - (82.6500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_044_ net:_098_ net:_347_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_390_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_281_ net:_381_ net:_416_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_191_ net:_192_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_092_ net:_159_ net:_376_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_169_ net:_171_ net:_253_ net:_283_ + comment: capacity:1 usage:4 overflow:3 + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_399_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_075_ net:_245_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net12 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_229_ net:_235_ net:_238_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_213_ net:_235_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_025_ net:_072_ net:_407_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[5] net:net27 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:_091_ net:_142_ net:_244_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_129_ net:_207_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_318_ net:_327_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_205_ net:_253_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_114_ net:_130_ net:_211_ net:_371_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_397_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 34.2000) - (57.0000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_159_ net:_160_ net:_165_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 28.5000) - (31.3500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_158_ net:net43 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_103_ net:_137_ net:_160_ + comment: capacity:1 usage:4 overflow:3 + bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_416_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_245_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 39.9000) - (76.9500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_133_ net:_165_ net:_384_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_150_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_398_ net:_413_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_365_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_012_ net:_050_ net:_122_ net:_248_ net:dpath.a_lt_b$in1\[6\] + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_253_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_250_ net:_404_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_244_ net:_306_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_307_ net:_362_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 37.0500) - (28.5000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_215_ net:_352_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_088_ net:dpath.a_lt_b$in0\[6\] + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_170_ net:_253_ net:_416_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_239_ net:_250_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_134_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_109_ net:_150_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_144_ net:_245_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_123_ net:_236_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_027_ net:_248_ net:_374_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_102_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_266_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_396_ + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 37.0500) - (82.6500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_415_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_250_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_130_ net:_371_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_145_ net:_348_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_123_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_393_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_244_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_388_ net:_391_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 74.1000) - (62.7000, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_173_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_272_ net:_298_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_133_ net:_158_ net:_165_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_139_ net:_143_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_137_ net:_160_ + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_252_ net:_302_ net:_419_ + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_244_ net:_313_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_348_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_070_ net:_142_ net:_244_ net:_313_ net:_314_ + comment: capacity:1 usage:5 overflow:4 + bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ net:_397_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_127_ net:_200_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_179_ net:_239_ net:_250_ net:_404_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_180_ net:_183_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_178_ net:_240_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_267_ net:dpath.a_lt_b$in1\[3\] + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net53 + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 22.8000) - (62.7000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_037_ net:_401_ net:_405_ + comment: capacity:1 usage:3 overflow:2 + bbox = (25.6500, 34.2000) - (28.5000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_332_ net:_339_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_249_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_082_ net:_249_ net:_350_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:net10 net:net40 + comment: capacity:1 usage:2 overflow:1 + bbox = (85.5000, 11.4000) - (88.3500, 14.2500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_021_ net:_249_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_047_ net:_101_ net:_356_ net:_388_ + comment: capacity:1 usage:5 overflow:4 + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_341_ net:_346_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_121_ net:_245_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 51.3000) - (76.9500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_275_ net:_360_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_137_ net:_175_ net:_187_ net:_249_ net:_415_ + comment: capacity:1 usage:5 overflow:4 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_272_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_142_ net:_150_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_073_ net:_114_ net:_334_ net:_336_ net:_410_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_220_ net:_252_ net:_302_ net:_310_ + comment: capacity:1 usage:5 overflow:4 + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_222_ net:_225_ net:_228_ net:_401_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_407_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_396_ + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 39.9000) - (82.6500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_129_ net:_352_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_174_ net:_253_ net:_262_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_414_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_387_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_327_ net:_337_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_352_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_204_ net:_252_ net:_298_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_121_ net:_245_ net:_280_ + comment: capacity:1 usage:3 overflow:2 + bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_194_ net:_297_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_338_ net:_341_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_210_ net:_212_ net:_332_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_124_ net:_353_ net:_386_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_270_ net:_388_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_026_ net:_390_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_114_ net:_130_ net:_328_ net:_371_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_225_ net:_228_ net:_352_ net:_401_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_384_ net:net50 + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 62.7000) - (39.9000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:dpath.a_lt_b$in0\[2\] + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:net17 net:net51 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_244_ net:_308_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_243_ net:_252_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_158_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:net33 + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_129_ net:_210_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_171_ net:_177_ net:_184_ net:_272_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_410_ net:dpath.a_lt_b$in0\[13\] + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 14.2500) - (48.4500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_003_ net:_055_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_079_ net:_330_ net:_352_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_089_ net:_245_ net:_292_ net:_417_ + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_353_ net:_386_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_182_ net:_258_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_408_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_348_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_213_ net:_235_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_172_ net:_264_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:dpath.a_lt_b$in1\[11\] + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_099_ net:_159_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_008_ net:_084_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_174_ net:_198_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_149_ net:_352_ net:_401_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_131_ net:_252_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_385_ net:_396_ + comment: capacity:1 usage:3 overflow:2 + bbox = (79.8000, 45.6000) - (82.6500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_165_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_163_ net:_164_ net:_403_ net:_421_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_142_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_016_ net:_039_ net:_252_ net:dpath.a_lt_b$in1\[10\] + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_201_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_041_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_007_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net14 + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 71.2500) - (34.2000, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_224_ net:_326_ net:_327_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_174_ net:_271_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_202_ net:_311_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_396_ + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_123_ net:_169_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_190_ net:_248_ net:_291_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_378_ net:net52 + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net14 + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 74.1000) - (34.2000, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_230_ net:_242_ net:_401_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_364_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_261_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_197_ net:_262_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net44 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 51.3000) - (19.9500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_377_ net:_395_ + comment: capacity:1 usage:2 overflow:1 + bbox = (82.6500, 45.6000) - (85.5000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_111_ net:_149_ net:net43 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_224_ net:_318_ net:_327_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_397_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_009_ net:_119_ net:_135_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_141_ net:_158_ net:_218_ net:_219_ net:_309_ net:_421_ + comment: capacity:1 usage:6 overflow:5 + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:net49 net:net8 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 45.6000) - (91.2000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_145_ net:_348_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_418_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:net18 net:net46 + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 14.2500) - (34.2000, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_289_ net:_290_ net:_296_ + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_019_ net:_371_ net:dpath.a_lt_b$in1\[13\] + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_253_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_256_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_353_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_138_ net:_188_ net:_189_ net:_353_ + comment: capacity:1 usage:5 overflow:4 + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_383_ net:_414_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 34.2000) - (71.2500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_024_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_414_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_150_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 54.1500) - (42.7500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_112_ net:_128_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_207_ net:_228_ net:_401_ net:_410_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_126_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_125_ net:_142_ net:_244_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_010_ net:dpath.a_lt_b$in1\[4\] + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_203_ net:_304_ net:_421_ + comment: capacity:1 usage:4 overflow:3 + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_389_ net:net43 + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_342_ net:_367_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_031_ net:_379_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_205_ net:_213_ net:_214_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_206_ net:_212_ net:_327_ net:_410_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_131_ net:_227_ net:_327_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_165_ net:_384_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_276_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_160_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 54.1500) - (79.8000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:net17 net:net51 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_002_ net:_004_ net:_160_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_391_ net:_393_ net:_394_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_202_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_171_ net:_177_ net:_272_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:net17 net:net34 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 51.3000) - (14.2500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_109_ net:_243_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_298_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_158_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_127_ net:_148_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_386_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_166_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_105_ net:_249_ net:_275_ net:dpath.a_lt_b$in1\[7\] + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_153_ net:_161_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 19.9500) - (34.2000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_393_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_200_ net:_317_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_167_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_288_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_011_ net:_372_ net:dpath.a_lt_b$in1\[5\] + comment: capacity:1 usage:3 overflow:2 + bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:dpath.a_lt_b$in0\[1\] + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_020_ net:_043_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_022_ net:_110_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_221_ net:_248_ net:_406_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 34.2000) - (62.7000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_215_ net:_352_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_417_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:ctrl.state.out\[1\] + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_249_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_185_ net:_245_ + comment: capacity:1 usage:3 overflow:2 + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_144_ net:_269_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_394_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 74.1000) - (54.1500, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_176_ net:_272_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_170_ net:_177_ net:_253_ net:_284_ + comment: capacity:1 usage:4 overflow:3 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_057_ net:_162_ net:_403_ net:_421_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_072_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_131_ net:net43 net:net53 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_245_ net:_412_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_120_ net:_249_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_068_ net:_140_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_193_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_130_ net:_231_ net:_233_ net:_371_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_221_ net:_222_ net:_228_ net:_401_ net:_410_ + comment: capacity:1 usage:6 overflow:5 + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_352_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_299_ net:_418_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_124_ net:_142_ net:_244_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_268_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_143_ net:_196_ net:_197_ net:_272_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_259_ net:_404_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_147_ net:_180_ net:_182_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:net33 + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 65.5500) - (42.7500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_213_ net:_229_ net:_235_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_134_ net:dpath.a_lt_b$in1\[2\] + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_175_ net:_249_ net:_277_ net:_415_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_152_ net:_156_ net:_402_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_244_ net:_343_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_209_ net:_252_ + comment: capacity:1 usage:2 overflow:1 + bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net44 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 54.1500) - (19.9500, 57.0000) on Layer - diff --git a/src/grt/test/congestion7_multicore.tcl b/src/grt/test/congestion7_multicore.tcl new file mode 100644 index 00000000000..7415d5ec2a8 --- /dev/null +++ b/src/grt/test/congestion7_multicore.tcl @@ -0,0 +1,26 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 4 + +set guide_file [make_result_file congestion7_multicore.guide] +set rpt_file [make_result_file congestion7_multicore.rpt] + +set_global_routing_layer_adjustment metal2 0.9 +set_global_routing_layer_adjustment metal3 0.9 +set_global_routing_layer_adjustment metal4-metal10 1 + +set_routing_layers -signal metal2-metal10 + +global_route -allow_congestion -multicore -verbose -congestion_report_file $rpt_file \ + -congestion_report_iter_step 20 + +write_guides $guide_file + +diff_file congestion7_multicore.guideok $guide_file +diff_file congestion7_multicore.rptok $rpt_file + +set rpt_folder [file dirname $rpt_file] +diff_file congestion7_multicore-20.rptok \ + [file join $rpt_folder congestion7_multicore-tcl-20.rpt] diff --git a/src/grt/test/multicore_bus_route.tcl b/src/grt/test/multicore_bus_route.tcl new file mode 100644 index 00000000000..01207db2bf0 --- /dev/null +++ b/src/grt/test/multicore_bus_route.tcl @@ -0,0 +1,11 @@ +set_thread_count 16 + +rename global_route global_route_serial +proc global_route {args} { + uplevel 1 [list global_route_serial {*}$args -multicore] +} + +source "bus_route.tcl" + +puts "pass" +exit 0 diff --git a/src/grt/test/multicore_incremental_state.tcl b/src/grt/test/multicore_incremental_state.tcl new file mode 100644 index 00000000000..c93011ab95c --- /dev/null +++ b/src/grt/test/multicore_incremental_state.tcl @@ -0,0 +1,35 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 2 + +if {[grt::is_multicore]} { + utl::error GRT 707 "FastRoute should start with multicore routing disabled." +} + +global_route -verbose + +if {[grt::is_multicore]} { + utl::error GRT 708 \ + "Serial global_route unexpectedly left multicore routing enabled." +} + +global_route -start_incremental +global_route -end_incremental -multicore + +if {![grt::is_multicore]} { + utl::error GRT 709 \ + "Incremental global_route -multicore did not reach FastRoute." +} + +global_route -start_incremental +global_route -end_incremental + +if {[grt::is_multicore]} { + utl::error GRT 710 \ + "Incremental global_route without -multicore did not disable FastRoute multicore routing." +} + +puts "pass" +exit 0 diff --git a/src/grt/test/multicore_smoke.tcl b/src/grt/test/multicore_smoke.tcl new file mode 100644 index 00000000000..fe134b7b41d --- /dev/null +++ b/src/grt/test/multicore_smoke.tcl @@ -0,0 +1,35 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 2 + +set output "" +tee -variable output -quiet { + global_route \ + -multicore \ + -verbose +} + +set report_file [make_result_file "multicore_smoke.rpt"] +set stream [open $report_file w] +puts -nonewline $stream $output +close $stream + +set wirelength -1 +set vias -1 + +foreach line [split $output "\n"] { + if { [regexp {Total wirelength:\s+([0-9]+)\s+um} $line -> value] } { + set wirelength $value + } elseif { [regexp {Final number of vias:\s+([0-9]+)} $line -> value] } { + set vias $value + } +} + +if { $wirelength <= 0 || $vias < 0 } { + utl::error GRT 706 "Failed to capture multicore global-route summary output." +} + +puts "pass" +exit 0 From e6f90ac73f995c9ab42e3efadf88cf915814828e Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Tue, 3 Mar 2026 11:57:37 -0800 Subject: [PATCH 06/25] grt: restore default non-batched routing Reset the public snapshot-batched-width default to 0, keep explicit width-16 coverage in dedicated snapshot-batched regressions, and rename the old multicore-specific tests to the snapshot-batched terminology. Add congestion1/2 snapshot-batched variants and refresh the congestion7 snapshot-batched goldens from one-thread runs, then verify the focused fluorine slice still passes with the checked-in tests pinned at 16 threads. Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/grt/README.md | 4 +- src/grt/include/grt/GlobalRouter.h | 6 +- src/grt/src/GlobalRouter.cpp | 12 +- src/grt/src/GlobalRouter.i | 10 +- src/grt/src/GlobalRouter.tcl | 16 +- src/grt/src/fastroute/include/FastRoute.h | 12 +- src/grt/src/fastroute/src/FastRoute.cpp | 64 +- src/grt/src/fastroute/src/maze.cpp | 44 +- src/grt/test/BUILD | 17 +- src/grt/test/CMakeLists.txt | 11 +- ...k => congestion1_snapshot_batched.guideok} | 1456 ++-- src/grt/test/congestion1_snapshot_batched.ok | 94 + src/grt/test/congestion1_snapshot_batched.tcl | 19 + .../test/congestion2_snapshot_batched.guideok | 7185 +++++++++++++++++ src/grt/test/congestion2_snapshot_batched.ok | 97 + src/grt/test/congestion2_snapshot_batched.tcl | 20 + src/grt/test/congestion7_multicore.tcl | 26 - ... => congestion7_snapshot_batched-20.rptok} | 2828 +++---- .../test/congestion7_snapshot_batched.guideok | 5971 ++++++++++++++ ...ore.ok => congestion7_snapshot_batched.ok} | 16 +- ...tok => congestion7_snapshot_batched.rptok} | 2412 +++--- src/grt/test/congestion7_snapshot_batched.tcl | 26 + src/grt/test/multicore_incremental_state.tcl | 35 - ...ute.tcl => snapshot_batched_bus_route.tcl} | 2 +- .../snapshot_batched_incremental_state.tcl | 36 + .../snapshot_batched_single_thread_smoke.tcl | 36 + ...e_smoke.tcl => snapshot_batched_smoke.tcl} | 8 +- 27 files changed, 17025 insertions(+), 3438 deletions(-) rename src/grt/test/{congestion7_multicore.guideok => congestion1_snapshot_batched.guideok} (89%) create mode 100644 src/grt/test/congestion1_snapshot_batched.ok create mode 100644 src/grt/test/congestion1_snapshot_batched.tcl create mode 100644 src/grt/test/congestion2_snapshot_batched.guideok create mode 100644 src/grt/test/congestion2_snapshot_batched.ok create mode 100644 src/grt/test/congestion2_snapshot_batched.tcl delete mode 100644 src/grt/test/congestion7_multicore.tcl rename src/grt/test/{congestion7_multicore-20.rptok => congestion7_snapshot_batched-20.rptok} (81%) create mode 100644 src/grt/test/congestion7_snapshot_batched.guideok rename src/grt/test/{congestion7_multicore.ok => congestion7_snapshot_batched.ok} (91%) rename src/grt/test/{congestion7_multicore.rptok => congestion7_snapshot_batched.rptok} (76%) create mode 100644 src/grt/test/congestion7_snapshot_batched.tcl delete mode 100644 src/grt/test/multicore_incremental_state.tcl rename src/grt/test/{multicore_bus_route.tcl => snapshot_batched_bus_route.tcl} (64%) create mode 100644 src/grt/test/snapshot_batched_incremental_state.tcl create mode 100644 src/grt/test/snapshot_batched_single_thread_smoke.tcl rename src/grt/test/{multicore_smoke.tcl => snapshot_batched_smoke.tcl} (73%) diff --git a/src/grt/README.md b/src/grt/README.md index c3c88386424..3b0c9ea5a58 100644 --- a/src/grt/README.md +++ b/src/grt/README.md @@ -26,7 +26,7 @@ global_route [-critical_nets_percentage percent] [-skip_large_fanout_nets fanout] [-allow_congestion] - [-multicore] + [-snapshot_batched_width width] [-verbose] [-start_incremental] [-end_incremental] @@ -47,7 +47,7 @@ global_route | `-critical_nets_percentage` | Set the percentage of nets with the worst slack value that are considered timing critical, having preference over other nets during congestion iterations (e.g. `-critical_nets_percentage 30`). The default value is `0`, and the allowed values are integers `[0, MAX_INT]`. | | `-skip_large_fanout_nets` | Skips routing for nets with a fanout higher than the specified limit. Nets above this pin count threshold are ignored by the global router and will not have routing guides, meaning they will also be skipped during detailed routing. This option is useful in debugging or estimation flows where high-fanout nets (such as pre-CTS clock nets) can be ignored. The default value is 0, indicating no fanout limit. The default value is `MAX_INT`. The allowed values are integers `[0, MAX_INT]`. | | `-allow_congestion` | Allow global routing results to be generated with remaining congestion. The default is false. | -| `-multicore` | Enable the optional multicore Track B routing path. | +| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing. The default is `0`. Use `0` for non-batched behavior. Execution width still follows `set_thread_count`. | | `-verbose` | This flag enables the full reporting of the global routing. | | `-start_incremental` | This flag initializes the GRT listener to get the net modified. The default is false. | | `-end_incremental` | This flag run incremental GRT with the nets modified. The default is false. | diff --git a/src/grt/include/grt/GlobalRouter.h b/src/grt/include/grt/GlobalRouter.h index eac30184d52..21aa3c316b5 100644 --- a/src/grt/include/grt/GlobalRouter.h +++ b/src/grt/include/grt/GlobalRouter.h @@ -153,8 +153,8 @@ class GlobalRouter void setGridOrigin(int x, int y); void setAllowCongestion(bool allow_congestion); void setResistanceAware(bool resistance_aware); - void setMulticoreRouting(bool multicore_routing); - bool isMulticoreRouting() const; + void setSnapshotBatchedWidth(int snapshot_batched_width); + int getSnapshotBatchedWidth() const; void setMacroExtension(int macro_extension); void setUseCUGR(bool use_cugr) { use_cugr_ = use_cugr; }; void setSkipLargeFanoutNets(int skip_large_fanout) @@ -526,7 +526,7 @@ class GlobalRouter int congestion_report_iter_step_; bool allow_congestion_; bool resistance_aware_{false}; - bool multicore_routing_{false}; + int snapshot_batched_width_{0}; int num_threads_; std::vector vertical_capacities_; std::vector horizontal_capacities_; diff --git a/src/grt/src/GlobalRouter.cpp b/src/grt/src/GlobalRouter.cpp index 41d230b3012..82c543d92c7 100644 --- a/src/grt/src/GlobalRouter.cpp +++ b/src/grt/src/GlobalRouter.cpp @@ -116,15 +116,15 @@ void GlobalRouter::setNumThreads(int num_threads) fastroute_->setNumThreads(num_threads_); } -void GlobalRouter::setMulticoreRouting(bool multicore_routing) +void GlobalRouter::setSnapshotBatchedWidth(int snapshot_batched_width) { - multicore_routing_ = multicore_routing; - fastroute_->setMulticoreRouting(multicore_routing_); + snapshot_batched_width_ = snapshot_batched_width; + fastroute_->setSnapshotBatchedWidth(snapshot_batched_width_); } -bool GlobalRouter::isMulticoreRouting() const +int GlobalRouter::getSnapshotBatchedWidth() const { - return fastroute_->isMulticoreRouting(); + return fastroute_->getSnapshotBatchedWidth(); } void GlobalRouter::initGui(std::unique_ptr @@ -2267,7 +2267,7 @@ void GlobalRouter::configFastRoute() fastroute_->setOverflowIterations(congestion_iterations_); fastroute_->setCongestionReportIterStep(congestion_report_iter_step_); fastroute_->setResistanceAware(resistance_aware_); - fastroute_->setMulticoreRouting(multicore_routing_); + fastroute_->setSnapshotBatchedWidth(snapshot_batched_width_); if (congestion_file_name_ != nullptr) { fastroute_->setCongestionReportFile(congestion_file_name_); diff --git a/src/grt/src/GlobalRouter.i b/src/grt/src/GlobalRouter.i index 37fb3c52d63..f16cfe02ed4 100644 --- a/src/grt/src/GlobalRouter.i +++ b/src/grt/src/GlobalRouter.i @@ -111,15 +111,15 @@ set_resistance_aware(bool resistance_aware) } void -set_multicore(bool multicore_routing) +set_snapshot_batched_width(int snapshot_batched_width) { - getGlobalRouter()->setMulticoreRouting(multicore_routing); + getGlobalRouter()->setSnapshotBatchedWidth(snapshot_batched_width); } -bool -is_multicore() +int +get_snapshot_batched_width() { - return getGlobalRouter()->isMulticoreRouting(); + return getGlobalRouter()->getSnapshotBatchedWidth(); } void diff --git a/src/grt/src/GlobalRouter.tcl b/src/grt/src/GlobalRouter.tcl index 0d6e1434fdd..38d6732f56d 100644 --- a/src/grt/src/GlobalRouter.tcl +++ b/src/grt/src/GlobalRouter.tcl @@ -148,7 +148,7 @@ sta::define_cmd_args "global_route" {[-guide_file out_file] \ [-critical_nets_percentage percent] \ [-skip_large_fanout_nets fanout] \ [-allow_congestion] \ - [-multicore] \ + [-snapshot_batched_width width] \ [-verbose] \ [-start_incremental] \ [-end_incremental] \ @@ -161,9 +161,9 @@ proc global_route { args } { sta::parse_key_args "global_route" args \ keys {-guide_file -congestion_iterations -congestion_report_file \ -grid_origin -critical_nets_percentage -congestion_report_iter_step \ - -skip_large_fanout_nets + -skip_large_fanout_nets -snapshot_batched_width } \ - flags {-allow_congestion -multicore -resistance_aware -infinite_cap -verbose -start_incremental \ + flags {-allow_congestion -resistance_aware -infinite_cap -verbose -start_incremental \ -end_incremental -use_cugr} sta::check_argc_eq0 "global_route" $args @@ -230,8 +230,14 @@ proc global_route { args } { set resistance_aware [info exists flags(-resistance_aware)] grt::set_resistance_aware $resistance_aware - set multicore [info exists flags(-multicore)] - grt::set_multicore $multicore + if { [info exists keys(-snapshot_batched_width)] } { + set snapshot_batched_width $keys(-snapshot_batched_width) + sta::check_positive_integer "-snapshot_batched_width" \ + $snapshot_batched_width + } else { + set snapshot_batched_width 0 + } + grt::set_snapshot_batched_width $snapshot_batched_width set infinite_cap [info exists flags(-infinite_cap)] grt::set_infinite_cap $infinite_cap diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 4c6789fbcf2..0eb5bcc79d5 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -229,11 +229,11 @@ class FastRouteCore void setGridMax(int x_max, int y_max); void setDetourPenalty(int penalty); void setNumThreads(int num_threads) { num_threads_ = num_threads; } - void setMulticoreRouting(bool multicore_routing) + void setSnapshotBatchedWidth(int snapshot_batched_width) { - multicore_routing_ = multicore_routing; + snapshot_batched_width_ = snapshot_batched_width; } - bool isMulticoreRouting() const { return multicore_routing_; } + int getSnapshotBatchedWidth() const { return snapshot_batched_width_; } void getCongestionNets(std::set& congestion_nets); void computeCongestionInformation(); std::vector getOriginalResources(); @@ -614,11 +614,13 @@ class FastRouteCore void freeRR(); std::vector getMazeRouteNetOrder(bool ordering, float& slack_th); bool hasNonSoftNdrNets() const; + int resolveSnapshotExecutionThreads(int work_items) const; + int resolveSnapshotWaveSize(int available_batch_count) const; int resolveSnapshotBaseBatchSize(int net_count) const; bool useSnapshotBatchRouting(int net_count) const; int resolveSnapshotBatchIterationLimit(int net_count) const; bool useSnapshotBatchRoutingForIteration(int iter, int net_count) const; - int resolveSnapshotBatchSize(int iter, int net_count) const; + int resolveSnapshotNetsForBatch(int iter, int net_count) const; std::unique_ptr buildSnapshotBatchWorker() const; void syncSnapshotBatchWorker(const FastRouteCore& snapshot, const std::vector& batch_net_ids); @@ -652,7 +654,7 @@ class FastRouteCore std::vector db_layers_; int num_threads_; bool owns_nets_; - bool multicore_routing_; + int snapshot_batched_width_; int x_range_; int y_range_; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index ee9e43f4c10..eb46bf08b5d 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -27,6 +27,15 @@ namespace grt { using utl::GRT; using utl::DebugScopedTimer; +namespace { + +// Keep snapshot-batched route semantics pinned to the operating point that +// benchmarked best, while letting execution width follow the user-requested +// thread count. +constexpr int kSnapshotSemanticWidth = 16; + +} + FastRouteCore::FastRouteCore(odb::dbDatabase* db, utl::Logger* log, utl::CallBackHandler* callback_handler, @@ -38,7 +47,7 @@ FastRouteCore::FastRouteCore(odb::dbDatabase* db, congestion_report_iter_step_(0), num_threads_(1), owns_nets_(true), - multicore_routing_(false), + snapshot_batched_width_(0), x_range_(0), y_range_(0), num_adjust_(0), @@ -907,15 +916,25 @@ bool FastRouteCore::hasNonSoftNdrNets() const return false; } +int FastRouteCore::resolveSnapshotExecutionThreads(const int work_items) const +{ + const int requested_threads = snapshot_batched_width_ > 0 ? num_threads_ : 1; + return std::min(work_items, std::max(1, requested_threads)); +} + +int FastRouteCore::resolveSnapshotWaveSize(const int available_batch_count) const +{ + return std::min(available_batch_count, kSnapshotSemanticWidth); +} + int FastRouteCore::resolveSnapshotBaseBatchSize(const int net_count) const { - const int batch_multiplier = num_threads_ >= 64 ? 4 : 2; - return std::min(net_count, std::max(32, batch_multiplier * num_threads_)); + return std::min(net_count, std::max(32, 2 * kSnapshotSemanticWidth)); } bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const { - return multicore_routing_ && !debug_->isOn() && num_threads_ > 1 + return snapshot_batched_width_ > 0 && !debug_->isOn() && net_count > resolveSnapshotBaseBatchSize(net_count) && !hasNonSoftNdrNets(); } @@ -935,16 +954,17 @@ bool FastRouteCore::useSnapshotBatchRoutingForIteration(const int iter, return false; } - // Track B is intentionally not exact-preserving, but late cleanup is still - // sensitive to route-choice drift. Keep the aggressive snapshot mode for the - // early/high-overflow phase and fall back to the serial kernel later. + // Snapshot-batched routing is intentionally not exact-preserving, but late + // cleanup is still sensitive to route-choice drift. Keep the aggressive + // snapshot mode for the early/high-overflow phase and fall back to the + // serial kernel later. return iter <= resolveSnapshotBatchIterationLimit(net_count); } -int FastRouteCore::resolveSnapshotBatchSize(const int iter, - const int net_count) const +int FastRouteCore::resolveSnapshotNetsForBatch(const int iter, + const int net_count) const { - const int batch_size = resolveSnapshotBaseBatchSize(net_count); + const int nets_for_batch = resolveSnapshotBaseBatchSize(net_count); const int early_iteration_limit = resolveSnapshotBatchIterationLimit(net_count); const int scaled_iter = iter * 100; @@ -956,12 +976,12 @@ int FastRouteCore::resolveSnapshotBatchSize(const int iter, return 1; } if (scaled_iter > kQuarterPercentage * early_iteration_limit) { - return std::max(1, batch_size / 4); + return std::max(1, nets_for_batch / 4); } if (scaled_iter > kHalfPercentage * early_iteration_limit) { - return std::max(1, batch_size / 2); + return std::max(1, nets_for_batch / 2); } - return batch_size; + return nets_for_batch; } std::unique_ptr FastRouteCore::buildSnapshotBatchWorker() const @@ -970,7 +990,7 @@ std::unique_ptr FastRouteCore::buildSnapshotBatchWorker() const db_, logger_, callback_handler_, stt_builder_, sta_); worker->owns_nets_ = false; - worker->multicore_routing_ = false; + worker->snapshot_batched_width_ = 0; worker->num_threads_ = 1; worker->max_degree_ = max_degree_; @@ -1768,10 +1788,10 @@ NetRouteMap FastRouteCore::run() SaveLastRouteLen(); const int max_overflow_increases = 25; - const int trackb_iteration_limit + const int snapshot_iteration_limit = resolveSnapshotBatchIterationLimit(net_ids_.size()); - const int trackb_cleanup_patience = 12; - bool trackb_cleanup_active = false; + const int snapshot_cleanup_patience = 12; + bool snapshot_cleanup_active = false; float slack_th = std::numeric_limits::lowest(); @@ -1873,8 +1893,8 @@ NetRouteMap FastRouteCore::run() int last_cong = past_cong; past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); - trackb_cleanup_active - = trackb_cleanup_active + snapshot_cleanup_active + = snapshot_cleanup_active || snapshot_batch_count_ > snapshot_batch_count_before; if (minofl > past_cong) { @@ -1882,7 +1902,7 @@ NetRouteMap FastRouteCore::run() minoflrnd = i; } - if (trackb_cleanup_active && past_cong < bmfl) { + if (snapshot_cleanup_active && past_cong < bmfl) { copyRS(); bmfl = past_cong; bwcnt = 0; @@ -1947,12 +1967,12 @@ NetRouteMap FastRouteCore::run() VIA = 0; } - if (trackb_cleanup_active && i > trackb_iteration_limit) { + if (snapshot_cleanup_active && i > snapshot_iteration_limit) { if (past_cong >= bmfl) { bwcnt++; } - if (bwcnt > trackb_cleanup_patience) { + if (bwcnt > snapshot_cleanup_patience) { break; } } else { diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 1fcd931cbe3..a567e40741e 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -1049,9 +1049,10 @@ void FastRouteCore::mazeRouteMSMD(const int iter, } // If this iteration cannot form multiple snapshot batches, stay entirely on - // the sequential path instead of doing Track B-only ordering work first. - const int initial_batch_size = resolveSnapshotBatchSize(iter, net_ids_.size()); - if (initial_batch_size <= 1 || net_ids_.size() <= initial_batch_size) { + // the sequential path instead of doing snapshot-batched ordering work first. + const int initial_nets_for_batch + = resolveSnapshotNetsForBatch(iter, net_ids_.size()); + if (initial_nets_for_batch <= 1 || net_ids_.size() <= initial_nets_for_batch) { mazeRouteMSMDSequential(iter, expand, ripup_threshold, @@ -1078,8 +1079,9 @@ void FastRouteCore::mazeRouteMSMD(const int iter, return; } - const int batch_size = resolveSnapshotBatchSize(iter, ordered_net_ids.size()); - if (batch_size <= 1 || ordered_net_ids.size() <= batch_size) { + const int nets_for_batch + = resolveSnapshotNetsForBatch(iter, ordered_net_ids.size()); + if (nets_for_batch <= 1 || ordered_net_ids.size() <= nets_for_batch) { mazeRouteMSMDSequential(iter, expand, ripup_threshold, @@ -1098,9 +1100,11 @@ void FastRouteCore::mazeRouteMSMD(const int iter, std::vector sttrees; }; std::vector> batch_net_ids; - batch_net_ids.reserve((ordered_net_ids.size() + batch_size - 1) / batch_size); + batch_net_ids.reserve((ordered_net_ids.size() + nets_for_batch - 1) + / nets_for_batch); for (const int net_id : ordered_net_ids) { - if (batch_net_ids.empty() || batch_net_ids.back().size() == batch_size) { + if (batch_net_ids.empty() + || batch_net_ids.back().size() == nets_for_batch) { batch_net_ids.emplace_back(); } batch_net_ids.back().push_back(net_id); @@ -1124,29 +1128,31 @@ void FastRouteCore::mazeRouteMSMD(const int iter, double snapshot_apply_time = 0.0; int wave_count = 0; { - const int wave_size - = std::min((int) batch_net_ids.size(), std::max(1, num_threads_)); + const int semantic_wave_size + = resolveSnapshotWaveSize(batch_net_ids.size()); std::vector> workers; - workers.reserve(wave_size); - for (int worker_idx = 0; worker_idx < wave_size; worker_idx++) { + workers.reserve(semantic_wave_size); + for (int worker_idx = 0; worker_idx < semantic_wave_size; worker_idx++) { workers.push_back(buildSnapshotBatchWorker()); } - // Track B intentionally allows route-choice drift inside a wave. Route + // Snapshot-batched routing intentionally allows route-choice drift inside a wave. Route // fixed contiguous batches against one snapshot, then commit them in the // original batch order before advancing to the next wave. for (int wave_begin = 0; wave_begin < batch_net_ids.size(); - wave_begin += wave_size) { - const int active_batch_count - = std::min(wave_size, (int) batch_net_ids.size() - wave_begin); - const int active_threads = std::min(active_batch_count, num_threads_); - std::vector batch_results(active_batch_count); + wave_begin += semantic_wave_size) { + const int batches_in_wave + = std::min(semantic_wave_size, + (int) batch_net_ids.size() - wave_begin); + const int active_threads + = resolveSnapshotExecutionThreads(batches_in_wave); + std::vector batch_results(batches_in_wave); wave_count++; { Timer timer; #pragma omp parallel for num_threads(active_threads) schedule(static) - for (int wave_batch = 0; wave_batch < active_batch_count; wave_batch++) { + for (int wave_batch = 0; wave_batch < batches_in_wave; wave_batch++) { workers[wave_batch]->syncSnapshotBatchWorker( *this, batch_net_ids[wave_begin + wave_batch]); } @@ -1156,7 +1162,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, { Timer timer; #pragma omp parallel for num_threads(active_threads) schedule(static) - for (int wave_batch = 0; wave_batch < active_batch_count; wave_batch++) { + for (int wave_batch = 0; wave_batch < batches_in_wave; wave_batch++) { auto& worker = workers[wave_batch]; float batch_slack_th = slack_th; worker->mazeRouteMSMDSequential(iter, diff --git a/src/grt/test/BUILD b/src/grt/test/BUILD index f7550adbef0..4d80d0a8cb6 100644 --- a/src/grt/test/BUILD +++ b/src/grt/test/BUILD @@ -11,13 +11,15 @@ TESTS = [ "clock_route_error1", "clock_route_error2", "congestion1", + "congestion1_snapshot_batched", "congestion2", + "congestion2_snapshot_batched", "congestion3", "congestion4", "congestion5", "congestion6", "congestion7", - "congestion7_multicore", + "congestion7_snapshot_batched", "critical_nets_percentage", "critical_nets_percentage_cugr", "cugr_adjustment1", @@ -139,21 +141,28 @@ MANUAL_FOR_BAZEL_TESTS = [ ) for test_name in TESTS] regression_test( - name = "multicore_bus_route", + name = "snapshot_batched_bus_route", check_log = False, check_passfail = True, data = [":test_resources"], ) regression_test( - name = "multicore_incremental_state", + name = "snapshot_batched_incremental_state", check_log = False, check_passfail = True, data = [":test_resources"], ) regression_test( - name = "multicore_smoke", + name = "snapshot_batched_smoke", + check_log = False, + check_passfail = True, + data = [":test_resources"], +) + +regression_test( + name = "snapshot_batched_single_thread_smoke", check_log = False, check_passfail = True, data = [":test_resources"], diff --git a/src/grt/test/CMakeLists.txt b/src/grt/test/CMakeLists.txt index fd5a31d8f4d..cf9b94f568e 100644 --- a/src/grt/test/CMakeLists.txt +++ b/src/grt/test/CMakeLists.txt @@ -9,13 +9,15 @@ or_integration_tests( clock_route_error1 clock_route_error2 congestion1 + congestion1_snapshot_batched congestion2 + congestion2_snapshot_batched congestion3 congestion4 congestion5 congestion6 congestion7 - congestion7_multicore + congestion7_snapshot_batched critical_nets_percentage critical_nets_percentage_cugr cugr_adjustment1 @@ -100,8 +102,9 @@ or_integration_tests( write_segments1 write_segments2 PASSFAIL_TESTS - multicore_bus_route - multicore_incremental_state - multicore_smoke + snapshot_batched_bus_route + snapshot_batched_incremental_state + snapshot_batched_smoke + snapshot_batched_single_thread_smoke thread_count_reports ) diff --git a/src/grt/test/congestion7_multicore.guideok b/src/grt/test/congestion1_snapshot_batched.guideok similarity index 89% rename from src/grt/test/congestion7_multicore.guideok rename to src/grt/test/congestion1_snapshot_batched.guideok index 6255f2db258..51f9b0ff5de 100644 --- a/src/grt/test/congestion7_multicore.guideok +++ b/src/grt/test/congestion1_snapshot_batched.guideok @@ -126,10 +126,10 @@ _015_ _016_ ( 68400 62700 74100 68400 metal1 -68400 62700 74100 68400 metal2 -68400 62700 79800 68400 metal3 -74100 62700 79800 68400 metal2 -74100 57000 79800 68400 metal2 +68400 57000 74100 68400 metal2 +68400 57000 74100 62700 metal2 +68400 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 74100 57000 79800 62700 metal1 ) _017_ @@ -351,10 +351,10 @@ _049_ _050_ ( 119700 79800 125400 85500 metal1 -119700 79800 125400 85500 metal2 -119700 79800 131100 85500 metal3 -125400 79800 131100 85500 metal2 -125400 79800 131100 91200 metal2 +119700 79800 125400 91200 metal2 +119700 85500 125400 91200 metal2 +119700 85500 131100 91200 metal3 +125400 85500 131100 91200 metal2 125400 85500 131100 91200 metal1 ) _051_ @@ -514,10 +514,10 @@ _069_ _070_ ( 62700 57000 68400 62700 metal1 -62700 57000 68400 68400 metal2 -62700 62700 68400 68400 metal2 -62700 62700 74100 68400 metal3 -68400 62700 74100 68400 metal2 +62700 57000 68400 62700 metal2 +62700 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 68400 metal2 68400 62700 74100 68400 metal1 ) _071_ @@ -538,10 +538,10 @@ _072_ _073_ ( 91200 39900 96900 45600 metal1 -91200 34200 96900 45600 metal2 -91200 34200 96900 39900 metal2 -91200 34200 102600 39900 metal3 -96900 34200 102600 39900 metal2 +91200 39900 96900 45600 metal2 +91200 39900 102600 45600 metal3 +96900 39900 102600 45600 metal2 +96900 34200 102600 45600 metal2 96900 34200 102600 39900 metal1 ) _074_ @@ -579,10 +579,10 @@ _078_ _079_ ( 108300 45600 114000 51300 metal1 -108300 39900 114000 51300 metal2 -108300 39900 114000 45600 metal2 -108300 39900 119700 45600 metal3 -114000 39900 119700 45600 metal2 +108300 45600 114000 51300 metal2 +108300 45600 119700 51300 metal3 +114000 45600 119700 51300 metal2 +114000 39900 119700 51300 metal2 114000 39900 119700 45600 metal1 ) _080_ @@ -645,10 +645,10 @@ _088_ _089_ ( 125400 114000 131100 119700 metal1 -125400 114000 131100 125400 metal2 -125400 119700 131100 125400 metal2 -125400 119700 136800 125400 metal3 -131100 119700 136800 125400 metal2 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +131100 114000 136800 125400 metal2 131100 119700 136800 125400 metal1 ) _090_ @@ -813,17 +813,17 @@ _110_ ) _111_ ( -79800 62700 85500 74100 metal2 -62700 62700 68400 68400 metal1 -62700 62700 68400 68400 metal2 -62700 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 74100 68400 79800 74100 metal1 74100 68400 79800 74100 metal2 74100 68400 85500 74100 metal3 79800 68400 85500 74100 metal2 79800 68400 85500 74100 metal1 +79800 62700 85500 68400 metal1 +79800 62700 85500 74100 metal2 +62700 62700 68400 68400 metal1 +62700 62700 68400 74100 metal2 +62700 68400 68400 74100 metal2 +62700 68400 79800 74100 metal3 ) _112_ ( @@ -947,16 +947,23 @@ _118_ _119_ ( 119700 125400 125400 131100 metal1 -119700 125400 125400 142500 metal2 -119700 136800 125400 142500 metal2 -119700 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 +119700 125400 125400 136800 metal2 +119700 131100 125400 136800 metal2 +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 131100 131100 142500 metal2 125400 136800 131100 142500 metal1 -114000 114000 119700 119700 metal1 -114000 114000 119700 125400 metal2 -125400 136800 131100 148200 metal2 119700 114000 125400 125400 metal2 +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 125400 119700 metal3 +119700 114000 125400 119700 metal2 119700 114000 125400 119700 metal1 +125400 136800 131100 148200 metal2 +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 125400 125400 metal3 +119700 119700 125400 125400 metal2 114000 142500 119700 148200 metal1 114000 142500 119700 148200 metal2 114000 142500 131100 148200 metal3 @@ -964,10 +971,6 @@ _119_ 125400 142500 136800 148200 metal3 131100 142500 136800 148200 metal2 131100 142500 136800 148200 metal1 -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 125400 125400 metal3 -119700 119700 125400 125400 metal2 119700 119700 125400 131100 metal2 ) _120_ @@ -977,36 +980,35 @@ _120_ 142500 85500 153900 91200 metal3 148200 85500 153900 91200 metal2 148200 85500 153900 96900 metal2 +148200 91200 153900 96900 metal1 +148200 91200 153900 96900 metal2 +148200 91200 159600 96900 metal3 +153900 91200 159600 96900 metal2 +153900 91200 159600 96900 metal1 142500 79800 148200 91200 metal2 142500 79800 148200 85500 metal1 142500 79800 148200 85500 metal2 142500 79800 159600 85500 metal3 153900 79800 159600 85500 metal2 153900 79800 159600 85500 metal1 -148200 91200 153900 96900 metal1 -148200 91200 153900 96900 metal2 -148200 91200 159600 96900 metal3 -153900 91200 159600 96900 metal2 -153900 91200 159600 96900 metal1 ) _121_ ( -148200 102600 153900 119700 metal2 +153900 102600 159600 119700 metal2 +148200 102600 153900 108300 metal1 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +142500 102600 148200 108300 metal1 +142500 102600 148200 108300 metal2 +142500 102600 153900 108300 metal3 148200 114000 153900 119700 metal1 148200 114000 153900 119700 metal2 148200 114000 159600 119700 metal3 153900 114000 159600 119700 metal2 153900 114000 159600 119700 metal1 -142500 102600 148200 108300 metal1 -142500 102600 148200 108300 metal2 -142500 102600 153900 108300 metal3 -148200 102600 153900 108300 metal2 -148200 102600 153900 108300 metal1 -148200 96900 153900 108300 metal2 -148200 96900 153900 102600 metal2 -148200 96900 159600 102600 metal3 -153900 96900 159600 102600 metal2 153900 96900 159600 102600 metal1 +153900 96900 159600 108300 metal2 ) _122_ ( @@ -1056,44 +1058,43 @@ _124_ 57000 91200 62700 96900 metal2 57000 91200 68400 96900 metal3 51300 96900 57000 102600 metal1 -51300 96900 57000 102600 metal2 -51300 96900 62700 102600 metal3 -57000 96900 62700 102600 metal2 -57000 91200 62700 102600 metal2 +51300 91200 57000 102600 metal2 +51300 91200 57000 96900 metal2 +51300 91200 62700 96900 metal3 ) _125_ ( -62700 74100 68400 85500 metal2 +57000 74100 62700 85500 metal2 +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 62700 85500 metal3 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 57000 74100 62700 79800 metal1 57000 74100 62700 79800 metal2 57000 74100 68400 79800 metal3 62700 74100 68400 79800 metal2 62700 74100 68400 79800 metal1 -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 ) _126_ ( -108300 131100 114000 136800 metal2 -108300 131100 142500 136800 metal3 -136800 131100 142500 136800 metal2 -136800 131100 142500 136800 metal1 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal1 -108300 119700 114000 136800 metal2 -136800 131100 142500 142500 metal2 -136800 136800 142500 142500 metal1 102600 131100 108300 136800 metal1 102600 131100 108300 136800 metal2 -102600 131100 114000 136800 metal3 +102600 131100 142500 136800 metal3 +136800 131100 142500 136800 metal2 +136800 131100 142500 136800 metal1 102600 119700 108300 125400 metal1 102600 119700 108300 125400 metal2 102600 119700 114000 125400 metal3 108300 119700 114000 125400 metal2 108300 119700 114000 125400 metal1 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal1 +102600 119700 108300 136800 metal2 +136800 131100 142500 142500 metal2 +136800 136800 142500 142500 metal1 ) _127_ ( @@ -1170,6 +1171,7 @@ _130_ ) _131_ ( +85500 57000 91200 62700 metal1 85500 57000 91200 68400 metal2 85500 62700 91200 68400 metal2 85500 62700 96900 68400 metal3 @@ -1180,11 +1182,9 @@ _131_ 74100 51300 85500 57000 metal3 79800 51300 85500 57000 metal2 79800 51300 85500 57000 metal1 -79800 51300 85500 62700 metal2 -79800 57000 85500 62700 metal2 -79800 57000 91200 62700 metal3 -85500 57000 91200 62700 metal2 -85500 57000 91200 62700 metal1 +79800 51300 91200 57000 metal3 +85500 51300 91200 57000 metal2 +85500 51300 91200 62700 metal2 74100 45600 79800 57000 metal2 74100 45600 79800 51300 metal1 ) @@ -1245,15 +1245,16 @@ _135_ _136_ ( 136800 102600 142500 108300 metal1 -136800 96900 142500 108300 metal2 -136800 96900 142500 102600 metal2 -136800 96900 148200 102600 metal3 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal1 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 96900 148200 108300 metal2 142500 85500 148200 91200 metal1 142500 85500 148200 91200 metal2 142500 85500 153900 91200 metal3 148200 85500 153900 91200 metal2 +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 142500 96900 153900 102600 metal3 148200 96900 153900 102600 metal2 148200 91200 153900 102600 metal2 @@ -1319,10 +1320,10 @@ _139_ _140_ ( 68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 79800 91200 metal3 -74100 85500 79800 91200 metal2 -74100 74100 79800 91200 metal2 +68400 74100 74100 91200 metal2 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 74100 74100 79800 79800 metal1 68400 91200 74100 102600 metal2 68400 91200 74100 96900 metal1 @@ -1365,11 +1366,12 @@ _142_ 79800 102600 85500 108300 metal1 62700 51300 68400 91200 metal2 62700 51300 68400 57000 metal1 -62700 39900 68400 57000 metal2 -62700 39900 68400 45600 metal2 -62700 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 +62700 51300 68400 57000 metal2 +62700 51300 85500 57000 metal3 +79800 51300 85500 57000 metal2 +79800 39900 85500 57000 metal2 79800 39900 85500 45600 metal1 +79800 39900 85500 45600 metal2 79800 39900 91200 45600 metal3 85500 39900 91200 45600 metal2 85500 39900 91200 45600 metal1 @@ -1407,19 +1409,19 @@ _144_ ) _145_ ( -114000 125400 119700 131100 metal1 -114000 119700 119700 131100 metal2 108300 114000 114000 119700 metal1 108300 114000 114000 125400 metal2 +108300 125400 114000 131100 metal2 +108300 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +108300 131100 114000 136800 metal1 +108300 125400 114000 136800 metal2 108300 119700 114000 125400 metal2 108300 119700 119700 125400 metal3 114000 119700 119700 125400 metal2 114000 119700 119700 125400 metal1 -108300 131100 114000 136800 metal1 -108300 131100 114000 136800 metal2 -108300 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 125400 119700 136800 metal2 +108300 119700 114000 131100 metal2 ) _146_ ( @@ -1504,10 +1506,10 @@ _153_ _154_ ( 68400 114000 74100 119700 metal1 -68400 114000 74100 119700 metal2 -68400 114000 79800 119700 metal3 -74100 114000 79800 119700 metal2 -74100 114000 79800 125400 metal2 +68400 114000 74100 125400 metal2 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 74100 119700 79800 125400 metal1 ) _155_ @@ -1532,10 +1534,11 @@ _157_ ) _158_ ( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 68400 85500 74100 96900 metal2 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 79800 91200 85500 96900 metal1 79800 91200 85500 96900 metal2 79800 91200 91200 96900 metal3 @@ -1547,32 +1550,23 @@ _158_ 91200 108300 96900 114000 metal2 91200 108300 96900 119700 metal2 91200 114000 96900 119700 metal1 -74100 91200 85500 96900 metal3 -74100 102600 79800 114000 metal2 -74100 108300 79800 114000 metal2 -74100 108300 85500 114000 metal3 -68400 51300 74100 91200 metal2 -68400 51300 74100 57000 metal2 -68400 51300 85500 57000 metal3 -79800 51300 85500 57000 metal2 -79800 39900 85500 57000 metal2 -79800 39900 85500 45600 metal1 +68400 91200 74100 96900 metal2 +68400 91200 85500 96900 metal3 +68400 102600 74100 108300 metal1 +68400 102600 74100 114000 metal2 +68400 108300 74100 114000 metal2 +68400 108300 85500 114000 metal3 +62700 51300 68400 91200 metal2 +62700 51300 68400 57000 metal1 +62700 39900 68400 57000 metal2 +62700 39900 68400 45600 metal2 +62700 39900 85500 45600 metal3 79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 79800 39900 91200 45600 metal3 85500 39900 91200 45600 metal2 85500 39900 91200 45600 metal1 -74100 91200 79800 108300 metal2 -62700 51300 68400 57000 metal1 -62700 51300 68400 57000 metal2 -62700 51300 74100 57000 metal3 -68400 102600 74100 108300 metal1 -68400 102600 74100 108300 metal2 -68400 102600 79800 108300 metal3 -74100 102600 79800 108300 metal2 -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 +68400 91200 74100 108300 metal2 ) _159_ ( @@ -1584,13 +1578,13 @@ _159_ 142500 131100 148200 136800 metal1 85500 108300 91200 114000 metal1 85500 108300 91200 114000 metal2 -85500 108300 96900 114000 metal3 -91200 108300 96900 114000 metal2 -91200 96900 96900 114000 metal2 -91200 96900 96900 102600 metal2 -91200 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 102600 metal1 +85500 108300 102600 114000 metal3 +96900 108300 102600 114000 metal2 +96900 102600 102600 114000 metal2 +96900 102600 102600 108300 metal2 +96900 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 96900 114000 108300 metal2 114000 85500 119700 91200 metal1 114000 79800 119700 91200 metal2 114000 79800 119700 85500 metal2 @@ -1601,6 +1595,8 @@ _159_ 142500 119700 148200 125400 metal1 136800 74100 142500 85500 metal2 136800 74100 142500 79800 metal1 +108300 96900 114000 102600 metal1 +108300 96900 114000 102600 metal2 108300 96900 119700 102600 metal3 114000 96900 119700 102600 metal2 114000 85500 119700 102600 metal2 @@ -1622,47 +1618,58 @@ _159_ ) _160_ ( -74100 114000 79800 125400 metal2 -74100 119700 79800 125400 metal1 -68400 108300 74100 114000 metal1 -68400 108300 74100 114000 metal2 -68400 108300 79800 114000 metal3 -74100 108300 79800 114000 metal2 -74100 108300 79800 119700 metal2 -108300 114000 114000 125400 metal2 -108300 119700 114000 125400 metal2 -108300 119700 142500 125400 metal3 -136800 119700 142500 125400 metal2 -136800 119700 142500 125400 metal1 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 114000 119700 metal3 -108300 114000 114000 119700 metal2 +153900 91200 159600 96900 metal1 +153900 85500 159600 96900 metal2 +153900 85500 159600 91200 metal2 +114000 85500 159600 91200 metal3 +114000 85500 119700 91200 metal2 114000 85500 119700 91200 metal1 -114000 85500 119700 96900 metal2 -114000 91200 119700 96900 metal2 -108300 91200 119700 96900 metal3 -108300 91200 114000 96900 metal2 -108300 91200 114000 96900 metal1 -148200 136800 153900 142500 metal1 +68400 108300 74100 114000 metal1 +68400 108300 74100 119700 metal2 +68400 114000 74100 119700 metal2 +68400 114000 79800 119700 metal3 +74100 114000 79800 119700 metal2 +74100 119700 79800 125400 metal1 +74100 119700 79800 131100 metal2 +74100 125400 79800 131100 metal2 +68400 125400 79800 131100 metal3 +68400 125400 74100 131100 metal2 +68400 125400 74100 159600 metal2 +68400 153900 74100 159600 metal2 +68400 153900 119700 159600 metal3 +114000 153900 119700 159600 metal2 +74100 114000 79800 125400 metal2 +148200 136800 153900 142500 metal1 148200 136800 153900 142500 metal2 148200 136800 159600 142500 metal3 153900 136800 159600 142500 metal2 +114000 153900 159600 159600 metal3 +153900 153900 159600 159600 metal2 +153900 136800 159600 159600 metal2 153900 119700 159600 142500 metal2 -153900 96900 159600 102600 metal1 -153900 91200 159600 102600 metal2 -153900 91200 159600 96900 metal1 -108300 91200 114000 119700 metal2 -153900 96900 159600 125400 metal2 -148200 136800 153900 148200 metal2 -148200 142500 153900 148200 metal2 -114000 142500 153900 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -74100 114000 79800 119700 metal2 74100 114000 91200 119700 metal3 +85500 114000 91200 119700 metal2 +85500 114000 91200 119700 metal1 +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +153900 96900 165300 102600 metal3 +159600 96900 165300 102600 metal2 +159600 96900 165300 119700 metal2 +159600 114000 165300 119700 metal2 +153900 114000 165300 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 125400 metal2 +136800 119700 142500 125400 metal1 +136800 119700 142500 125400 metal2 136800 119700 159600 125400 metal3 153900 119700 159600 125400 metal2 +153900 91200 159600 102600 metal2 +114000 142500 119700 148200 metal1 +114000 142500 119700 159600 metal2 +108300 91200 114000 96900 metal1 +108300 85500 114000 96900 metal2 +108300 85500 114000 91200 metal2 +108300 85500 119700 91200 metal3 ) _161_ ( @@ -1691,10 +1698,10 @@ _163_ _164_ ( 62700 108300 68400 114000 metal1 -62700 108300 68400 119700 metal2 -62700 114000 68400 119700 metal2 -62700 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 +62700 108300 68400 114000 metal2 +62700 108300 74100 114000 metal3 +68400 108300 74100 114000 metal2 +68400 108300 74100 119700 metal2 68400 114000 74100 119700 metal1 ) _165_ @@ -1724,9 +1731,9 @@ _165_ 136800 74100 142500 79800 metal1 91200 102600 96900 119700 metal2 91200 114000 96900 119700 metal1 -108300 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 85500 119700 102600 metal2 +108300 85500 114000 102600 metal2 +108300 85500 114000 91200 metal2 +108300 85500 119700 91200 metal3 91200 131100 96900 136800 metal2 91200 131100 119700 136800 metal3 114000 131100 119700 136800 metal2 @@ -1835,18 +1842,18 @@ _173_ ) _174_ ( -108300 114000 114000 119700 metal1 108300 102600 114000 119700 metal2 -102600 96900 108300 102600 metal1 -102600 96900 108300 108300 metal2 -102600 102600 108300 108300 metal2 -102600 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 108300 102600 114000 108300 metal1 -108300 114000 114000 131100 metal2 -108300 125400 114000 131100 metal2 -108300 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 +102600 96900 108300 102600 metal1 +102600 96900 108300 102600 metal2 +102600 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 108300 metal2 +108300 114000 114000 119700 metal1 +108300 114000 114000 119700 metal2 +108300 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 131100 metal2 114000 125400 119700 131100 metal1 ) _175_ @@ -1857,10 +1864,10 @@ _175_ 142500 91200 148200 96900 metal2 142500 91200 148200 96900 metal1 142500 96900 148200 102600 metal1 -142500 96900 148200 108300 metal2 -142500 102600 148200 108300 metal2 -142500 102600 153900 108300 metal3 -148200 102600 153900 108300 metal2 +142500 96900 148200 102600 metal2 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 96900 153900 108300 metal2 148200 102600 153900 108300 metal1 142500 91200 148200 102600 metal2 ) @@ -1897,10 +1904,10 @@ _177_ _178_ ( 102600 108300 108300 114000 metal1 -102600 102600 108300 114000 metal2 -102600 102600 108300 108300 metal2 -102600 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 102600 114000 114000 metal2 108300 102600 114000 108300 metal1 ) _179_ @@ -1997,9 +2004,12 @@ _189_ ( 119700 102600 125400 108300 metal1 119700 102600 125400 108300 metal2 -119700 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 96900 142500 108300 metal2 +119700 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 96900 136800 108300 metal2 +131100 96900 136800 102600 metal2 +131100 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 136800 96900 142500 102600 metal1 ) _190_ @@ -2154,18 +2164,17 @@ _204_ ) _205_ ( -85500 85500 91200 96900 metal2 -85500 91200 91200 96900 metal2 -85500 91200 108300 96900 metal3 -102600 91200 108300 96900 metal2 +85500 85500 91200 91200 metal1 +85500 85500 91200 91200 metal2 +85500 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 96900 metal2 102600 91200 108300 96900 metal1 102600 91200 108300 102600 metal2 102600 96900 108300 102600 metal1 79800 85500 85500 91200 metal1 79800 85500 85500 91200 metal2 79800 85500 91200 91200 metal3 -85500 85500 91200 91200 metal2 -85500 85500 91200 91200 metal1 ) _206_ ( @@ -2181,12 +2190,12 @@ _206_ ) _207_ ( -91200 62700 96900 68400 metal1 91200 57000 96900 68400 metal2 -91200 62700 96900 74100 metal2 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 102600 68400 metal3 +96900 62700 102600 68400 metal2 +96900 62700 102600 74100 metal2 96900 68400 102600 74100 metal1 85500 57000 91200 62700 metal1 85500 57000 91200 62700 metal2 @@ -2252,15 +2261,14 @@ _212_ ) _213_ ( -96900 85500 102600 96900 metal2 -96900 91200 102600 96900 metal2 -96900 91200 108300 96900 metal3 -102600 91200 108300 96900 metal2 +96900 85500 102600 91200 metal2 +96900 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 96900 metal2 102600 91200 108300 96900 metal1 91200 85500 96900 91200 metal1 91200 85500 96900 91200 metal2 91200 85500 102600 91200 metal3 -96900 85500 102600 91200 metal2 102600 91200 108300 102600 metal2 102600 96900 108300 102600 metal1 96900 57000 102600 62700 metal1 @@ -2464,12 +2472,17 @@ _236_ 96900 102600 102600 108300 metal1 96900 102600 102600 114000 metal2 96900 108300 102600 114000 metal2 -96900 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 108300 136800 131100 metal2 -131100 125400 136800 131100 metal2 -131100 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 108300 108300 119700 metal2 +102600 114000 108300 119700 metal2 +102600 114000 114000 119700 metal3 +108300 114000 114000 119700 metal2 +108300 114000 114000 125400 metal2 +108300 119700 114000 125400 metal2 +108300 119700 148200 125400 metal3 +142500 119700 148200 125400 metal2 +142500 119700 148200 131100 metal2 142500 125400 148200 131100 metal1 ) _237_ @@ -2483,10 +2496,10 @@ _237_ _238_ ( 96900 102600 102600 108300 metal1 -96900 96900 102600 108300 metal2 -96900 96900 102600 102600 metal2 -96900 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 +96900 102600 102600 108300 metal2 +96900 102600 108300 108300 metal3 +102600 102600 108300 108300 metal2 +102600 96900 108300 108300 metal2 102600 96900 108300 102600 metal1 ) _239_ @@ -2549,9 +2562,10 @@ _244_ 68400 91200 74100 96900 metal2 68400 91200 91200 96900 metal3 62700 85500 68400 91200 metal1 -62700 85500 68400 96900 metal2 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 96900 metal2 62700 57000 68400 91200 metal2 62700 57000 68400 62700 metal1 85500 39900 91200 45600 metal1 @@ -2570,54 +2584,45 @@ _244_ ) _245_ ( -102600 125400 108300 131100 metal2 -102600 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 153900 85500 metal3 -148200 79800 153900 85500 metal2 -148200 79800 153900 114000 metal2 -148200 108300 153900 114000 metal1 -136800 125400 142500 131100 metal1 -136800 119700 142500 131100 metal2 -136800 119700 142500 125400 metal2 -136800 119700 153900 125400 metal3 -148200 119700 153900 125400 metal2 -148200 108300 153900 125400 metal2 131100 125400 136800 136800 metal2 -131100 131100 136800 136800 metal1 +131100 79800 136800 114000 metal2 +131100 108300 136800 119700 metal2 108300 85500 114000 91200 metal1 108300 85500 114000 91200 metal2 -102600 85500 114000 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 96900 metal2 -102600 91200 108300 96900 metal2 -96900 91200 108300 96900 metal3 -96900 91200 102600 96900 metal2 +96900 85500 114000 91200 metal3 +96900 85500 102600 91200 metal2 +96900 85500 102600 96900 metal2 96900 91200 102600 96900 metal1 -102600 125400 108300 142500 metal2 -102600 136800 108300 142500 metal2 -96900 136800 108300 142500 metal3 -96900 136800 102600 142500 metal2 96900 136800 102600 142500 metal1 +96900 131100 102600 142500 metal2 114000 79800 119700 85500 metal1 114000 79800 119700 85500 metal2 114000 79800 136800 85500 metal3 131100 79800 136800 85500 metal2 131100 79800 136800 85500 metal1 -131100 125400 142500 131100 metal2 +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 108300 79800 114000 91200 metal2 108300 79800 114000 85500 metal2 108300 79800 119700 85500 metal3 +131100 114000 136800 131100 metal2 +96900 131100 102600 136800 metal2 +96900 131100 136800 136800 metal3 +131100 131100 136800 136800 metal2 +131100 131100 136800 136800 metal1 131100 79800 148200 85500 metal3 -125400 114000 131100 119700 metal1 -125400 114000 131100 131100 metal2 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal1 +131100 108300 136800 114000 metal2 +131100 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +96900 125400 102600 136800 metal2 96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -96900 125400 108300 131100 metal3 -125400 125400 136800 131100 metal3 -131100 125400 136800 131100 metal2 +131100 125400 142500 131100 metal2 +136800 125400 142500 131100 metal1 ) _246_ ( @@ -2651,15 +2656,22 @@ _248_ 108300 45600 114000 51300 metal1 57000 74100 62700 79800 metal1 57000 62700 62700 79800 metal2 -62700 91200 68400 102600 metal2 -62700 96900 68400 102600 metal2 -62700 96900 79800 102600 metal3 +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 102600 metal2 +68400 96900 74100 102600 metal2 +68400 96900 79800 102600 metal3 74100 96900 79800 102600 metal2 74100 96900 79800 108300 metal2 74100 102600 79800 108300 metal1 -57000 45600 62700 68400 metal2 -57000 45600 62700 51300 metal2 -57000 45600 68400 51300 metal3 +57000 62700 62700 68400 metal2 +51300 62700 62700 68400 metal3 +51300 62700 57000 68400 metal2 +51300 45600 57000 68400 metal2 +51300 45600 57000 51300 metal2 +51300 45600 68400 51300 metal3 62700 45600 68400 51300 metal2 62700 39900 68400 51300 metal2 62700 39900 68400 45600 metal2 @@ -2674,18 +2686,16 @@ _248_ 68400 34200 91200 39900 metal3 85500 34200 91200 39900 metal2 85500 34200 91200 39900 metal1 -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 57000 91200 68400 96900 metal3 57000 91200 62700 96900 metal2 57000 74100 62700 96900 metal2 -57000 62700 62700 68400 metal2 57000 62700 68400 68400 metal3 62700 62700 68400 68400 metal2 62700 62700 68400 68400 metal1 ) _249_ ( +142500 125400 148200 131100 metal1 142500 114000 148200 131100 metal2 91200 131100 96900 136800 metal1 91200 131100 96900 142500 metal2 @@ -2696,11 +2706,9 @@ _249_ 96900 136800 131100 142500 metal3 125400 136800 131100 142500 metal2 125400 136800 131100 142500 metal1 -125400 125400 131100 142500 metal2 -125400 125400 131100 131100 metal2 -125400 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 +125400 136800 148200 142500 metal3 +142500 136800 148200 142500 metal2 +142500 125400 148200 142500 metal2 125400 74100 131100 79800 metal1 125400 74100 131100 79800 metal2 125400 74100 148200 79800 metal3 @@ -2719,11 +2727,9 @@ _249_ 114000 74100 125400 79800 metal3 102600 79800 108300 85500 metal1 102600 79800 108300 85500 metal2 -102600 79800 114000 85500 metal3 -108300 79800 114000 85500 metal2 -108300 74100 114000 85500 metal2 -108300 74100 114000 79800 metal2 -108300 74100 119700 79800 metal3 +102600 79800 119700 85500 metal3 +114000 79800 119700 85500 metal2 +114000 74100 119700 85500 metal2 102600 79800 108300 91200 metal2 102600 85500 108300 91200 metal1 142500 79800 148200 119700 metal2 @@ -2731,14 +2737,15 @@ _249_ _250_ ( 96900 125400 102600 131100 metal1 -96900 102600 102600 131100 metal2 -96900 102600 102600 108300 metal2 -96900 102600 108300 108300 metal3 +96900 108300 102600 131100 metal2 +96900 108300 102600 114000 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 102600 108300 114000 metal2 102600 102600 108300 108300 metal2 -102600 96900 108300 108300 metal2 -102600 96900 108300 102600 metal2 -102600 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 +102600 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 96900 114000 108300 metal2 108300 96900 114000 102600 metal1 ) _251_ @@ -2749,18 +2756,16 @@ _251_ _252_ ( 79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 91200 91200 102600 metal2 -85500 96900 91200 102600 metal2 -85500 96900 96900 102600 metal3 +79800 91200 85500 102600 metal2 +79800 96900 85500 102600 metal2 +79800 96900 96900 102600 metal3 91200 96900 96900 102600 metal2 91200 96900 96900 102600 metal1 74100 79800 79800 85500 metal1 -74100 79800 79800 96900 metal2 -74100 91200 79800 96900 metal2 -74100 91200 85500 96900 metal3 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 96900 metal2 68400 68400 74100 74100 metal1 68400 68400 74100 74100 metal2 68400 68400 79800 74100 metal3 @@ -2794,11 +2799,11 @@ _253_ 108300 119700 131100 125400 metal3 125400 119700 131100 125400 metal2 125400 119700 131100 125400 metal1 -74100 96900 79800 102600 metal1 -74100 96900 79800 102600 metal2 -74100 96900 85500 102600 metal3 -79800 96900 85500 102600 metal2 -79800 91200 85500 102600 metal2 +119700 79800 125400 85500 metal1 +119700 79800 125400 85500 metal2 +119700 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 96900 131100 102600 136800 metal1 96900 125400 102600 136800 metal2 79800 91200 85500 96900 metal1 @@ -2811,17 +2816,17 @@ _253_ 96900 79800 102600 85500 metal2 131100 119700 136800 131100 metal2 131100 125400 136800 131100 metal1 -131100 79800 136800 85500 metal1 -131100 79800 136800 85500 metal2 -131100 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 +74100 96900 79800 102600 metal1 +74100 96900 79800 102600 metal2 +74100 96900 85500 102600 metal3 +79800 96900 85500 102600 metal2 +79800 91200 85500 102600 metal2 96900 79800 125400 85500 metal3 -119700 79800 125400 85500 metal2 -119700 79800 125400 85500 metal1 96900 74100 102600 85500 metal2 96900 74100 102600 79800 metal1 -119700 79800 136800 85500 metal3 +131100 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 131100 108300 136800 114000 metal2 131100 108300 148200 114000 metal3 142500 108300 148200 114000 metal2 @@ -2972,18 +2977,17 @@ _271_ ) _272_ ( +136800 91200 142500 96900 metal1 136800 85500 142500 96900 metal2 136800 85500 142500 91200 metal1 +136800 91200 142500 102600 metal2 114000 96900 119700 102600 metal1 -114000 91200 119700 102600 metal2 -114000 91200 119700 96900 metal2 -114000 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 96900 metal1 +114000 96900 119700 102600 metal2 +114000 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 114000 114000 119700 119700 metal1 114000 96900 119700 119700 metal2 -136800 91200 142500 102600 metal2 -136800 96900 142500 102600 metal1 ) _273_ ( @@ -3001,10 +3005,11 @@ _274_ _275_ ( 142500 119700 148200 125400 metal1 -142500 108300 148200 125400 metal2 -142500 108300 148200 114000 metal2 -142500 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 +142500 114000 148200 125400 metal2 +142500 114000 148200 119700 metal2 +142500 114000 153900 119700 metal3 +148200 114000 153900 119700 metal2 +148200 108300 153900 119700 metal2 148200 108300 153900 114000 metal1 ) _276_ @@ -3070,9 +3075,10 @@ _283_ 142500 96900 148200 102600 metal2 142500 96900 148200 102600 metal1 131100 102600 136800 108300 metal1 -131100 96900 136800 108300 metal2 -131100 96900 136800 102600 metal2 -131100 96900 142500 102600 metal3 +131100 102600 136800 108300 metal2 +131100 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 96900 142500 108300 metal2 ) _284_ ( @@ -3183,13 +3189,12 @@ _298_ 74100 85500 91200 91200 metal3 85500 85500 91200 91200 metal2 85500 85500 91200 91200 metal1 -85500 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 96900 metal2 -102600 91200 108300 96900 metal2 -102600 91200 119700 96900 metal3 -114000 91200 119700 96900 metal2 -114000 91200 119700 102600 metal2 +85500 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 102600 metal2 +91200 96900 96900 102600 metal2 +91200 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 114000 96900 119700 102600 metal1 ) _299_ @@ -3247,10 +3252,10 @@ _305_ _306_ ( 62700 85500 68400 91200 metal1 -62700 79800 68400 91200 metal2 -62700 79800 68400 85500 metal2 -62700 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 +62700 85500 68400 91200 metal2 +62700 85500 79800 91200 metal3 +74100 85500 79800 91200 metal2 +74100 79800 79800 91200 metal2 74100 79800 79800 85500 metal1 ) _307_ @@ -3307,10 +3312,10 @@ _312_ _313_ ( 62700 57000 68400 62700 metal1 -62700 57000 68400 74100 metal2 -62700 68400 68400 74100 metal2 -62700 68400 74100 74100 metal3 -68400 68400 74100 74100 metal2 +62700 57000 68400 62700 metal2 +62700 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 74100 metal2 68400 68400 74100 74100 metal1 ) _314_ @@ -3409,16 +3414,15 @@ _327_ 96900 45600 108300 51300 metal3 102600 45600 108300 51300 metal2 102600 45600 108300 51300 metal1 -91200 51300 96900 57000 metal1 91200 45600 96900 57000 metal2 91200 45600 96900 51300 metal2 91200 45600 102600 51300 metal3 85500 79800 91200 85500 metal1 -85500 57000 91200 85500 metal2 -85500 57000 91200 62700 metal2 -85500 57000 96900 62700 metal3 -91200 57000 96900 62700 metal2 -91200 51300 96900 62700 metal2 +85500 51300 91200 85500 metal2 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 +91200 51300 96900 57000 metal1 ) _328_ ( @@ -3489,15 +3493,16 @@ _336_ ) _337_ ( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -85500 45600 96900 51300 metal3 -91200 45600 96900 51300 metal2 -91200 45600 96900 57000 metal2 +85500 45600 91200 57000 metal2 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 91200 51300 96900 57000 metal1 79800 45600 85500 51300 metal1 79800 45600 85500 51300 metal2 79800 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 45600 91200 51300 metal1 ) _338_ ( @@ -3610,21 +3615,23 @@ _351_ ) _352_ ( +102600 57000 108300 74100 metal2 102600 68400 108300 74100 metal1 -102600 62700 108300 74100 metal2 -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 +108300 57000 114000 62700 metal1 +108300 57000 114000 62700 metal2 +102600 57000 114000 62700 metal3 +102600 57000 108300 62700 metal2 96900 79800 102600 85500 metal1 96900 79800 102600 85500 metal2 96900 79800 108300 85500 metal3 102600 79800 108300 85500 metal2 102600 68400 108300 85500 metal2 -108300 57000 114000 62700 metal1 -108300 39900 114000 62700 metal2 -108300 39900 114000 45600 metal2 -102600 39900 114000 45600 metal3 +96900 57000 108300 62700 metal3 +96900 57000 102600 62700 metal2 +96900 45600 102600 62700 metal2 +96900 45600 102600 51300 metal2 +96900 39900 102600 51300 metal3 +96900 39900 108300 45600 metal3 102600 39900 108300 45600 metal2 102600 39900 108300 45600 metal1 74100 45600 79800 51300 metal1 @@ -3632,7 +3639,6 @@ _352_ 74100 57000 79800 62700 metal2 74100 57000 85500 62700 metal3 79800 57000 85500 62700 metal2 -79800 57000 85500 68400 metal2 91200 91200 96900 96900 metal1 91200 79800 96900 96900 metal2 91200 79800 96900 85500 metal2 @@ -3642,16 +3648,15 @@ _352_ 79800 96900 96900 102600 metal3 91200 96900 96900 102600 metal2 91200 91200 96900 102600 metal2 -102600 62700 114000 68400 metal3 -108300 62700 114000 68400 metal2 -108300 57000 114000 68400 metal2 +79800 57000 102600 62700 metal3 +79800 57000 85500 68400 metal2 +79800 62700 85500 68400 metal1 ) _353_ ( -136800 114000 142500 119700 metal1 136800 114000 142500 142500 metal2 -85500 96900 91200 119700 metal2 85500 114000 91200 119700 metal1 +85500 96900 91200 119700 metal2 108300 142500 114000 148200 metal1 108300 142500 114000 148200 metal2 108300 142500 119700 148200 metal3 @@ -3664,25 +3669,32 @@ _353_ 119700 136800 142500 142500 metal3 136800 136800 142500 142500 metal2 136800 136800 142500 142500 metal1 +148200 91200 153900 102600 metal2 148200 91200 153900 96900 metal1 148200 91200 153900 96900 metal2 -136800 91200 153900 96900 metal3 -136800 91200 142500 96900 metal2 -148200 91200 159600 96900 metal3 -153900 91200 159600 96900 metal2 -153900 91200 159600 102600 metal2 -153900 96900 159600 102600 metal1 +119700 91200 153900 96900 metal3 +119700 91200 125400 96900 metal2 119700 85500 125400 96900 metal2 119700 85500 125400 91200 metal1 -136800 91200 142500 119700 metal2 +148200 96900 153900 108300 metal2 +148200 102600 153900 108300 metal2 +142500 102600 153900 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 119700 metal2 +142500 114000 148200 119700 metal2 +136800 114000 148200 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal1 57000 96900 62700 102600 metal1 57000 96900 62700 102600 metal2 57000 96900 91200 102600 metal3 85500 96900 91200 102600 metal2 57000 79800 62700 102600 metal2 57000 79800 62700 85500 metal1 -119700 91200 125400 96900 metal2 -119700 91200 142500 96900 metal3 +148200 96900 153900 102600 metal2 +148200 96900 159600 102600 metal3 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal1 85500 91200 91200 102600 metal3 85500 91200 96900 96900 metal3 91200 91200 96900 96900 metal2 @@ -3792,23 +3804,33 @@ _370_ ( 79800 62700 85500 68400 metal1 79800 62700 85500 68400 metal2 -34200 62700 85500 68400 metal3 -34200 62700 39900 68400 metal2 -34200 62700 39900 131100 metal2 -34200 125400 39900 131100 metal2 -34200 125400 68400 131100 metal3 -62700 125400 68400 131100 metal2 -62700 125400 68400 159600 metal2 -62700 153900 68400 159600 metal2 -62700 153900 125400 159600 metal3 -119700 153900 125400 159600 metal2 -119700 153900 125400 176700 metal2 +28500 62700 85500 68400 metal3 +28500 62700 34200 68400 metal2 +28500 62700 34200 85500 metal2 +28500 79800 34200 85500 metal2 +22800 79800 34200 85500 metal3 +22800 79800 28500 85500 metal2 +22800 79800 28500 159600 metal2 +22800 153900 28500 159600 metal2 +22800 153900 74100 159600 metal3 +68400 153900 74100 159600 metal2 +68400 153900 74100 165300 metal2 +68400 159600 74100 165300 metal2 +68400 159600 125400 165300 metal3 +119700 159600 125400 165300 metal2 +119700 159600 125400 176700 metal2 119700 171000 125400 176700 metal1 ) _371_ ( 102600 22800 108300 28500 metal1 -102600 22800 108300 68400 metal2 +102600 22800 108300 28500 metal2 +102600 22800 114000 28500 metal3 +108300 22800 114000 28500 metal2 +108300 22800 114000 68400 metal2 +108300 62700 114000 68400 metal2 +102600 62700 114000 68400 metal3 +102600 62700 108300 68400 metal2 102600 62700 108300 68400 metal1 ) _372_ @@ -3819,15 +3841,11 @@ _372_ 148200 62700 153900 68400 metal2 148200 62700 153900 79800 metal2 148200 74100 153900 79800 metal2 -148200 74100 165300 79800 metal3 -159600 74100 165300 79800 metal2 -159600 74100 165300 142500 metal2 -159600 136800 165300 142500 metal2 -153900 136800 165300 142500 metal3 -153900 136800 159600 142500 metal2 -153900 136800 159600 159600 metal2 -153900 153900 159600 159600 metal2 -125400 153900 159600 159600 metal3 +148200 74100 176700 79800 metal3 +171000 74100 176700 79800 metal2 +171000 74100 176700 159600 metal2 +171000 153900 176700 159600 metal2 +125400 153900 176700 159600 metal3 125400 153900 131100 159600 metal2 125400 153900 131100 171000 metal2 125400 165300 131100 171000 metal2 @@ -3846,10 +3864,10 @@ _373_ _374_ ( 62700 34200 68400 39900 metal1 -62700 34200 68400 39900 metal2 -62700 34200 74100 39900 metal3 -68400 34200 74100 39900 metal2 -68400 34200 74100 45600 metal2 +62700 34200 68400 45600 metal2 +62700 39900 68400 45600 metal2 +62700 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 68400 39900 74100 45600 metal1 ) _375_ @@ -3863,21 +3881,22 @@ _375_ _376_ ( 142500 131100 148200 136800 metal1 -142500 131100 148200 176700 metal2 -142500 171000 148200 176700 metal2 -142500 171000 153900 176700 metal3 -148200 171000 153900 176700 metal2 +142500 131100 148200 142500 metal2 +142500 136800 148200 142500 metal2 +142500 136800 153900 142500 metal3 +148200 136800 153900 142500 metal2 +148200 136800 153900 176700 metal2 148200 171000 153900 176700 metal1 ) _377_ ( 108300 96900 114000 102600 metal1 108300 96900 114000 102600 metal2 -108300 96900 171000 102600 metal3 -165300 96900 171000 102600 metal2 -165300 91200 171000 102600 metal2 -165300 91200 171000 96900 metal2 -165300 91200 176700 96900 metal3 +108300 96900 125400 102600 metal3 +119700 96900 125400 102600 metal2 +119700 91200 125400 102600 metal2 +119700 91200 125400 96900 metal2 +119700 91200 176700 96900 metal3 171000 91200 176700 96900 metal2 171000 91200 176700 96900 metal1 ) @@ -3934,22 +3953,18 @@ _382_ _383_ ( 136800 74100 142500 79800 metal1 -136800 68400 142500 79800 metal2 -136800 68400 142500 74100 metal2 -136800 68400 148200 74100 metal3 -142500 68400 148200 74100 metal2 +136800 74100 142500 79800 metal2 +136800 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 68400 148200 79800 metal2 142500 68400 148200 74100 metal1 ) _384_ ( 85500 171000 91200 176700 metal1 -85500 159600 91200 176700 metal2 -85500 159600 91200 165300 metal2 -74100 159600 91200 165300 metal3 -74100 159600 79800 165300 metal2 -74100 125400 79800 165300 metal2 -74100 125400 79800 131100 metal2 -74100 125400 96900 131100 metal3 +85500 125400 91200 176700 metal2 +85500 125400 91200 131100 metal2 +85500 125400 96900 131100 metal3 91200 125400 96900 131100 metal2 91200 114000 96900 131100 metal2 91200 114000 96900 119700 metal1 @@ -3958,23 +3973,20 @@ _385_ ( 79800 91200 85500 96900 metal1 79800 91200 85500 96900 metal2 -79800 91200 165300 96900 metal3 -159600 91200 165300 96900 metal2 -159600 91200 165300 102600 metal2 -159600 96900 165300 102600 metal2 -159600 96900 176700 102600 metal3 +79800 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 102600 metal2 +136800 96900 142500 102600 metal2 +136800 96900 176700 102600 metal3 171000 96900 176700 102600 metal2 171000 96900 176700 102600 metal1 ) _386_ ( 51300 108300 57000 114000 metal1 -51300 108300 57000 114000 metal2 -51300 108300 62700 114000 metal3 -57000 108300 62700 114000 metal2 -57000 85500 62700 114000 metal2 -57000 85500 62700 91200 metal2 -57000 85500 68400 91200 metal3 +51300 85500 57000 114000 metal2 +51300 85500 57000 91200 metal2 +51300 85500 68400 91200 metal3 62700 85500 68400 91200 metal2 62700 85500 68400 91200 metal1 ) @@ -3990,14 +4002,18 @@ _387_ _388_ ( 108300 171000 114000 176700 metal1 -108300 153900 114000 176700 metal2 -108300 153900 114000 159600 metal2 -108300 153900 125400 159600 metal3 -119700 153900 125400 159600 metal2 -119700 85500 125400 159600 metal2 -119700 85500 125400 91200 metal2 -114000 85500 125400 91200 metal3 -114000 85500 119700 91200 metal2 +108300 171000 114000 176700 metal2 +108300 171000 131100 176700 metal3 +125400 171000 131100 176700 metal2 +125400 114000 131100 176700 metal2 +125400 114000 131100 119700 metal2 +119700 114000 131100 119700 metal3 +119700 114000 125400 119700 metal2 +119700 102600 125400 119700 metal2 +119700 102600 125400 108300 metal2 +114000 102600 125400 108300 metal3 +114000 102600 119700 108300 metal2 +114000 85500 119700 108300 metal2 114000 85500 119700 91200 metal1 ) _389_ @@ -4018,17 +4034,12 @@ _390_ _391_ ( 114000 142500 119700 148200 metal1 -114000 142500 119700 153900 metal2 -114000 148200 119700 153900 metal2 -114000 148200 125400 153900 metal3 +114000 142500 119700 148200 metal2 +114000 142500 125400 148200 metal3 +119700 142500 125400 148200 metal2 +119700 142500 125400 153900 metal2 119700 148200 125400 153900 metal2 -119700 148200 125400 159600 metal2 -119700 153900 125400 159600 metal2 -119700 153900 165300 159600 metal3 -159600 153900 165300 159600 metal2 -159600 148200 165300 159600 metal2 -159600 148200 165300 153900 metal2 -159600 148200 171000 153900 metal3 +119700 148200 171000 153900 metal3 165300 148200 171000 153900 metal2 165300 148200 171000 153900 metal1 ) @@ -4036,15 +4047,15 @@ _392_ ( 39900 171000 45600 176700 metal1 39900 171000 45600 176700 metal2 -11400 171000 45600 176700 metal3 -11400 171000 17100 176700 metal2 -11400 45600 17100 176700 metal2 -11400 45600 17100 51300 metal2 -11400 45600 57000 51300 metal3 -51300 45600 57000 51300 metal2 -51300 45600 57000 57000 metal2 -51300 51300 57000 57000 metal2 -51300 51300 68400 57000 metal3 +34200 171000 45600 176700 metal3 +34200 171000 39900 176700 metal2 +34200 57000 39900 176700 metal2 +34200 57000 39900 62700 metal2 +34200 57000 62700 62700 metal3 +57000 57000 62700 62700 metal2 +57000 51300 62700 62700 metal2 +57000 51300 62700 57000 metal2 +57000 51300 68400 57000 metal3 62700 51300 68400 57000 metal2 62700 51300 68400 57000 metal1 ) @@ -4058,17 +4069,20 @@ _394_ ( 22800 171000 28500 176700 metal1 22800 171000 28500 176700 metal2 -22800 171000 34200 176700 metal3 -28500 171000 34200 176700 metal2 -28500 153900 34200 176700 metal2 -28500 153900 34200 159600 metal2 -28500 153900 108300 159600 metal3 -102600 153900 108300 159600 metal2 -102600 148200 108300 159600 metal2 -102600 148200 108300 153900 metal2 -102600 148200 119700 153900 metal3 -114000 148200 119700 153900 metal2 -114000 142500 119700 153900 metal2 +22800 171000 51300 176700 metal3 +45600 171000 51300 176700 metal2 +45600 171000 51300 182400 metal2 +45600 176700 51300 182400 metal2 +45600 176700 108300 182400 metal3 +102600 176700 108300 182400 metal2 +102600 171000 108300 182400 metal2 +102600 171000 108300 176700 metal2 +102600 171000 114000 176700 metal3 +108300 171000 114000 176700 metal2 +108300 142500 114000 176700 metal2 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 114000 142500 119700 148200 metal1 ) _395_ @@ -4090,24 +4104,20 @@ _396_ 159600 74100 165300 79800 metal2 153900 74100 165300 79800 metal3 153900 74100 159600 79800 metal2 -153900 34200 159600 79800 metal2 -153900 34200 159600 39900 metal2 -153900 34200 171000 39900 metal3 -165300 34200 171000 39900 metal2 -165300 22800 171000 39900 metal2 +153900 28500 159600 79800 metal2 +153900 28500 159600 34200 metal2 +153900 28500 171000 34200 metal3 +165300 28500 171000 34200 metal2 +165300 22800 171000 34200 metal2 165300 22800 171000 28500 metal1 ) _397_ ( 22800 62700 28500 68400 metal1 22800 62700 28500 68400 metal2 -22800 62700 62700 68400 metal3 -57000 62700 62700 68400 metal2 -57000 62700 62700 74100 metal2 -57000 68400 62700 74100 metal2 -57000 68400 114000 74100 metal3 -108300 68400 114000 74100 metal2 -108300 68400 114000 79800 metal2 +22800 62700 114000 68400 metal3 +108300 62700 114000 68400 metal2 +108300 62700 114000 79800 metal2 108300 74100 114000 79800 metal2 108300 74100 119700 79800 metal3 114000 74100 119700 79800 metal2 @@ -4133,12 +4143,9 @@ _399_ ( 45600 102600 51300 108300 metal1 45600 102600 51300 108300 metal2 -45600 102600 57000 108300 metal3 -51300 102600 57000 108300 metal2 -51300 96900 57000 108300 metal2 -51300 96900 57000 102600 metal2 -51300 96900 62700 102600 metal3 -57000 96900 62700 102600 metal2 +45600 102600 62700 108300 metal3 +57000 102600 62700 108300 metal2 +57000 96900 62700 108300 metal2 57000 96900 62700 102600 metal1 ) _400_ @@ -4155,42 +4162,48 @@ _400_ ) _401_ ( -68400 39900 74100 45600 metal1 -68400 39900 74100 62700 metal2 +79800 102600 85500 108300 metal1 +79800 96900 85500 108300 metal2 +51300 96900 57000 102600 metal1 +51300 96900 57000 102600 metal2 +51300 96900 85500 102600 metal3 +79800 96900 85500 102600 metal2 +45600 96900 57000 102600 metal3 +45600 96900 51300 102600 metal2 +45600 79800 51300 102600 metal2 +45600 79800 51300 85500 metal2 +45600 79800 57000 85500 metal3 +51300 79800 57000 85500 metal2 51300 79800 57000 85500 metal1 -51300 57000 57000 85500 metal2 -51300 57000 57000 62700 metal2 -51300 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -102600 62700 108300 68400 metal1 +85500 62700 91200 85500 metal2 +85500 62700 91200 68400 metal2 +85500 62700 108300 68400 metal3 102600 62700 108300 68400 metal2 +102600 62700 108300 68400 metal1 102600 62700 114000 68400 metal3 108300 62700 114000 68400 metal2 108300 62700 114000 68400 metal1 -91200 62700 96900 68400 metal2 -79800 62700 96900 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -91200 79800 96900 85500 metal1 -91200 62700 96900 85500 metal2 -108300 34200 114000 68400 metal2 -108300 34200 114000 39900 metal1 -79800 102600 85500 108300 metal1 -79800 102600 85500 108300 metal2 -79800 102600 96900 108300 metal3 -91200 102600 96900 108300 metal2 -91200 91200 96900 108300 metal2 -91200 91200 96900 96900 metal2 -91200 91200 114000 96900 metal3 +85500 91200 91200 96900 metal2 +85500 91200 114000 96900 metal3 108300 91200 114000 96900 metal2 108300 91200 114000 96900 metal1 -91200 79800 96900 96900 metal2 +85500 79800 91200 96900 metal2 +79800 96900 91200 102600 metal3 +85500 96900 91200 102600 metal2 +85500 91200 91200 102600 metal2 +85500 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +68400 39900 74100 45600 metal1 +68400 39900 74100 62700 metal2 +68400 57000 74100 62700 metal2 68400 57000 85500 62700 metal3 79800 57000 85500 62700 metal2 79800 57000 85500 68400 metal2 -51300 79800 57000 102600 metal2 -51300 96900 57000 102600 metal1 -91200 62700 108300 68400 metal3 +108300 34200 114000 68400 metal2 +108300 34200 114000 39900 metal1 +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 91200 68400 metal3 ) _402_ ( @@ -4208,21 +4221,21 @@ _402_ ) _403_ ( +62700 119700 68400 125400 metal1 +62700 114000 68400 125400 metal2 +62700 108300 68400 119700 metal2 +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 62700 114000 68400 119700 metal2 62700 114000 74100 119700 metal3 68400 114000 74100 119700 metal2 68400 114000 74100 119700 metal1 -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 62700 108300 74100 114000 metal3 68400 108300 74100 114000 metal2 68400 108300 74100 114000 metal1 -62700 108300 68400 119700 metal2 -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -62700 114000 68400 125400 metal2 -62700 119700 68400 125400 metal1 ) _404_ ( @@ -4266,9 +4279,13 @@ _407_ ( 102600 45600 108300 51300 metal1 102600 45600 108300 51300 metal2 -102600 45600 119700 51300 metal3 -114000 45600 119700 51300 metal2 -114000 34200 119700 51300 metal2 +102600 45600 114000 51300 metal3 +108300 45600 114000 51300 metal2 +108300 39900 114000 51300 metal2 +108300 39900 114000 45600 metal2 +108300 39900 119700 45600 metal3 +114000 39900 119700 45600 metal2 +114000 34200 119700 45600 metal2 114000 34200 119700 39900 metal1 ) _408_ @@ -4385,12 +4402,12 @@ _418_ ( 74100 91200 79800 96900 metal1 74100 91200 79800 102600 metal2 -68400 102600 74100 108300 metal1 -68400 96900 74100 108300 metal2 -68400 96900 74100 102600 metal2 -68400 96900 79800 102600 metal3 -74100 96900 79800 102600 metal2 74100 96900 79800 102600 metal1 +68400 102600 74100 108300 metal1 +68400 102600 74100 108300 metal2 +68400 102600 79800 108300 metal3 +74100 102600 79800 108300 metal2 +74100 96900 79800 108300 metal2 ) _419_ ( @@ -4417,67 +4434,60 @@ _420_ ) _421_ ( +62700 108300 68400 114000 metal1 62700 108300 68400 125400 metal2 62700 119700 68400 125400 metal1 62700 119700 68400 125400 metal2 62700 119700 74100 125400 metal3 68400 119700 74100 125400 metal2 68400 119700 74100 125400 metal1 -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -62700 108300 74100 114000 metal3 -68400 108300 74100 114000 metal2 -68400 57000 74100 114000 metal2 -68400 57000 74100 62700 metal2 -68400 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 +62700 74100 68400 114000 metal2 +62700 74100 68400 79800 metal2 +62700 74100 74100 79800 metal3 +68400 74100 74100 79800 metal2 +68400 62700 74100 79800 metal2 +68400 62700 74100 68400 metal2 +68400 62700 79800 68400 metal3 +74100 62700 79800 68400 metal2 +74100 57000 79800 68400 metal2 74100 57000 79800 62700 metal1 ) clk ( 57000 102600 62700 114000 metal2 57000 102600 62700 108300 metal1 -57000 108300 62700 119700 metal2 -57000 114000 62700 119700 metal1 -74100 108300 79800 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 79800 114000 metal3 74100 108300 79800 114000 metal2 -74100 108300 85500 114000 metal3 -79800 108300 85500 114000 metal2 -79800 108300 85500 119700 metal2 -79800 114000 85500 119700 metal2 -79800 114000 91200 119700 metal3 -85500 114000 91200 119700 metal2 -85500 114000 91200 125400 metal2 -85500 119700 91200 125400 metal1 -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -136800 131100 153900 136800 metal3 -148200 131100 153900 136800 metal2 -148200 131100 153900 136800 metal1 +74100 108300 79800 114000 metal1 +57000 114000 62700 119700 metal1 +57000 114000 62700 131100 metal2 +57000 125400 62700 131100 metal2 +57000 125400 91200 131100 metal3 +85500 125400 91200 131100 metal2 +136800 119700 142500 136800 metal2 91200 193800 96900 201600 metal2 91200 193800 96900 201600 metal3 91200 193800 96900 201600 metal4 91200 193800 96900 201600 metal5 91200 193800 96900 201600 metal6 -91200 176700 96900 201600 metal2 -91200 176700 96900 182400 metal2 -91200 176700 108300 182400 metal3 -102600 176700 108300 182400 metal2 -102600 153900 108300 182400 metal2 -102600 148200 108300 153900 metal1 -102600 142500 108300 153900 metal2 +91200 153900 96900 201600 metal2 +91200 153900 96900 159600 metal2 +91200 153900 108300 159600 metal3 +102600 153900 108300 159600 metal2 +85500 131100 91200 136800 metal1 +85500 131100 91200 148200 metal2 +85500 142500 91200 148200 metal2 +85500 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal1 +119700 136800 125400 159600 metal2 119700 136800 125400 142500 metal1 -119700 136800 125400 153900 metal2 -119700 148200 125400 153900 metal2 -119700 148200 131100 153900 metal3 -125400 148200 131100 153900 metal2 136800 114000 142500 119700 metal1 136800 114000 142500 119700 metal2 -136800 114000 159600 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal1 +136800 114000 153900 119700 metal3 +148200 114000 153900 119700 metal2 108300 74100 114000 91200 metal2 -136800 119700 142500 136800 metal2 51300 91200 57000 96900 metal1 51300 91200 57000 102600 metal2 51300 96900 57000 102600 metal2 @@ -4496,8 +4506,8 @@ clk 119700 62700 136800 68400 metal3 131100 62700 136800 68400 metal2 131100 62700 136800 74100 metal2 -153900 102600 159600 119700 metal2 -153900 102600 159600 108300 metal1 +68400 51300 74100 62700 metal2 +68400 51300 74100 57000 metal1 85500 28500 91200 34200 metal1 85500 28500 91200 34200 metal2 85500 28500 108300 34200 metal3 @@ -4512,23 +4522,22 @@ clk 108300 62700 114000 68400 metal2 108300 62700 119700 68400 metal3 114000 62700 119700 68400 metal2 -85500 119700 91200 136800 metal2 -85500 131100 91200 136800 metal1 -85500 131100 91200 148200 metal2 -85500 142500 91200 148200 metal2 -85500 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal1 +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +136800 131100 153900 136800 metal3 +148200 131100 153900 136800 metal2 +148200 131100 153900 136800 metal1 +85500 125400 91200 136800 metal2 +102600 148200 108300 153900 metal1 +102600 142500 108300 153900 metal2 131100 142500 136800 148200 metal1 131100 142500 136800 148200 metal2 131100 142500 142500 148200 metal3 136800 142500 142500 148200 metal2 136800 131100 142500 148200 metal2 -57000 57000 62700 68400 metal2 -57000 57000 62700 62700 metal2 -57000 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 62700 metal1 +148200 85500 153900 91200 metal1 +148200 85500 153900 108300 metal2 +148200 102600 153900 119700 metal2 114000 51300 119700 57000 metal1 114000 51300 119700 68400 metal2 148200 74100 153900 91200 metal2 @@ -4536,8 +4545,11 @@ clk 62700 96900 68400 102600 metal2 62700 96900 68400 102600 metal1 51300 85500 57000 96900 metal2 -68400 51300 74100 57000 metal1 -68400 51300 74100 62700 metal2 +57000 57000 62700 68400 metal2 +57000 57000 62700 62700 metal2 +57000 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 62700 metal1 131100 68400 136800 74100 metal1 131100 68400 136800 74100 metal2 131100 68400 148200 74100 metal3 @@ -4561,29 +4573,30 @@ clk 102600 74100 108300 79800 metal2 102600 74100 114000 79800 metal3 108300 74100 114000 79800 metal2 -102600 153900 108300 159600 metal2 -102600 153900 131100 159600 metal3 -125400 153900 131100 159600 metal2 -125400 148200 131100 159600 metal2 -125400 148200 136800 153900 metal3 -131100 148200 136800 153900 metal2 -131100 142500 136800 153900 metal2 +102600 153900 125400 159600 metal3 +119700 153900 125400 159600 metal2 +119700 153900 136800 159600 metal3 +131100 153900 136800 159600 metal2 +131100 142500 136800 159600 metal2 108300 68400 114000 79800 metal2 102600 148200 108300 159600 metal2 57000 96900 62700 108300 metal2 -57000 108300 62700 114000 metal2 -57000 108300 79800 114000 metal3 +57000 108300 62700 119700 metal2 136800 114000 142500 125400 metal2 114000 62700 125400 68400 metal3 131100 119700 136800 125400 metal1 131100 119700 136800 125400 metal2 131100 119700 142500 125400 metal3 136800 119700 142500 125400 metal2 -148200 85500 153900 91200 metal1 -148200 85500 153900 91200 metal2 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 108300 metal2 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +153900 102600 159600 108300 metal1 +85500 119700 91200 131100 metal2 +85500 119700 91200 125400 metal1 +148200 114000 159600 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal1 ) ctrl.state.out\[1\] ( @@ -4765,10 +4778,10 @@ dpath.a_lt_b$in1\[2\] dpath.a_lt_b$in1\[3\] ( 119700 131100 125400 136800 metal1 -119700 131100 125400 136800 metal2 -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 131100 131100 142500 metal2 +119700 131100 125400 142500 metal2 +119700 136800 125400 142500 metal2 +119700 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 125400 136800 131100 142500 metal1 ) dpath.a_lt_b$in1\[4\] @@ -4817,12 +4830,9 @@ dpath.a_lt_b$in1\[9\] net1 ( 114000 171000 119700 176700 metal1 -114000 171000 119700 176700 metal2 -114000 171000 131100 176700 metal3 -125400 171000 131100 176700 metal2 -125400 171000 131100 182400 metal2 -125400 176700 131100 182400 metal2 -125400 176700 171000 182400 metal3 +114000 171000 119700 182400 metal2 +114000 176700 119700 182400 metal2 +114000 176700 171000 182400 metal3 165300 176700 171000 182400 metal2 165300 176700 171000 182400 metal1 ) @@ -4831,9 +4841,12 @@ net10 142500 68400 148200 74100 metal1 142500 45600 148200 74100 metal2 142500 45600 148200 51300 metal2 -142500 45600 176700 51300 metal3 -171000 45600 176700 51300 metal2 -171000 22800 176700 51300 metal2 +142500 45600 182400 51300 metal3 +176700 45600 182400 51300 metal2 +176700 22800 182400 51300 metal2 +176700 22800 182400 28500 metal2 +171000 22800 182400 28500 metal3 +171000 22800 176700 28500 metal2 171000 22800 176700 28500 metal1 ) net11 @@ -4873,10 +4886,11 @@ net14 net15 ( 171000 91200 176700 96900 metal1 -171000 79800 176700 96900 metal2 -171000 79800 176700 85500 metal2 -171000 79800 182400 85500 metal3 -176700 79800 182400 85500 metal2 +171000 85500 176700 96900 metal2 +171000 85500 176700 91200 metal2 +171000 85500 182400 91200 metal3 +176700 85500 182400 91200 metal2 +176700 79800 182400 91200 metal2 176700 79800 182400 85500 metal1 ) net16 @@ -4891,11 +4905,14 @@ net16 net17 ( 17100 85500 22800 91200 metal1 -17100 85500 22800 96900 metal2 -17100 91200 22800 96900 metal2 -17100 91200 28500 96900 metal3 -22800 91200 28500 96900 metal2 -22800 91200 28500 182400 metal2 +17100 85500 22800 91200 metal2 +11400 85500 22800 91200 metal3 +11400 85500 17100 91200 metal2 +11400 85500 17100 176700 metal2 +11400 171000 17100 176700 metal2 +11400 171000 28500 176700 metal3 +22800 171000 28500 176700 metal2 +22800 171000 28500 182400 metal2 22800 176700 28500 182400 metal1 ) net18 @@ -4911,10 +4928,11 @@ net18 net19 ( 114000 34200 119700 39900 metal1 -114000 34200 119700 39900 metal2 -114000 34200 153900 39900 metal3 -148200 34200 153900 39900 metal2 -148200 22800 153900 39900 metal2 +114000 28500 119700 39900 metal2 +114000 28500 119700 34200 metal2 +114000 28500 153900 34200 metal3 +148200 28500 153900 34200 metal2 +148200 22800 153900 34200 metal2 148200 22800 153900 28500 metal1 ) net2 @@ -4929,13 +4947,11 @@ net2 net20 ( 114000 165300 119700 171000 metal1 -114000 165300 119700 171000 metal2 -114000 165300 131100 171000 metal3 -125400 165300 131100 171000 metal2 -125400 165300 131100 176700 metal2 -125400 171000 131100 176700 metal2 -125400 171000 182400 176700 metal3 -176700 171000 182400 176700 metal2 +114000 159600 119700 171000 metal2 +114000 159600 119700 165300 metal2 +114000 159600 182400 165300 metal3 +176700 159600 182400 165300 metal2 +176700 159600 182400 176700 metal2 176700 171000 182400 176700 metal1 ) net21 @@ -4946,10 +4962,10 @@ net21 net22 ( 119700 171000 125400 176700 metal1 -119700 171000 125400 182400 metal2 -119700 176700 125400 182400 metal2 -119700 176700 131100 182400 metal3 -125400 176700 131100 182400 metal2 +119700 171000 125400 176700 metal2 +119700 171000 131100 176700 metal3 +125400 171000 131100 176700 metal2 +125400 171000 131100 182400 metal2 125400 176700 131100 182400 metal1 ) net23 @@ -4960,12 +4976,9 @@ net23 net24 ( 28500 176700 34200 182400 metal1 -28500 176700 34200 182400 metal2 -28500 176700 39900 182400 metal3 -34200 176700 39900 182400 metal2 -34200 125400 39900 182400 metal2 -34200 125400 39900 131100 metal2 -34200 125400 51300 131100 metal3 +28500 125400 34200 182400 metal2 +28500 125400 34200 131100 metal2 +28500 125400 51300 131100 metal3 45600 125400 51300 131100 metal2 45600 102600 51300 131100 metal2 45600 102600 51300 108300 metal1 @@ -4973,10 +4986,10 @@ net24 net25 ( 171000 125400 176700 131100 metal1 -171000 125400 176700 159600 metal2 -171000 153900 176700 159600 metal2 -171000 153900 182400 159600 metal3 -176700 153900 182400 159600 metal2 +171000 125400 176700 131100 metal2 +171000 125400 182400 131100 metal3 +176700 125400 182400 131100 metal2 +176700 125400 182400 159600 metal2 176700 153900 182400 159600 metal1 ) net26 @@ -5002,12 +5015,9 @@ net28 159600 96900 165300 102600 metal1 159600 96900 165300 108300 metal2 159600 102600 165300 108300 metal2 -159600 102600 176700 108300 metal3 -171000 102600 176700 108300 metal2 -171000 102600 176700 114000 metal2 -171000 108300 176700 114000 metal2 -171000 108300 182400 114000 metal3 -176700 108300 182400 114000 metal2 +159600 102600 182400 108300 metal3 +176700 102600 182400 108300 metal2 +176700 102600 182400 114000 metal2 176700 108300 182400 114000 metal1 ) net29 @@ -5063,12 +5073,9 @@ net33 net34 ( 17100 102600 22800 108300 metal1 -17100 102600 22800 108300 metal2 -17100 102600 28500 108300 metal3 -22800 102600 28500 108300 metal2 -22800 102600 28500 114000 metal2 -22800 108300 28500 114000 metal2 -22800 108300 57000 114000 metal3 +17100 102600 22800 114000 metal2 +17100 108300 22800 114000 metal2 +17100 108300 57000 114000 metal3 51300 108300 57000 114000 metal2 51300 108300 57000 114000 metal1 ) @@ -5140,24 +5147,20 @@ net40 ( 114000 34200 119700 39900 metal1 114000 34200 119700 39900 metal2 -114000 34200 159600 39900 metal3 -153900 34200 159600 39900 metal2 -153900 28500 159600 39900 metal2 -153900 28500 159600 34200 metal2 -153900 28500 176700 34200 metal3 -171000 28500 176700 34200 metal2 -171000 22800 176700 34200 metal2 +114000 34200 176700 39900 metal3 +171000 34200 176700 39900 metal2 +171000 22800 176700 39900 metal2 171000 22800 176700 28500 metal1 ) net41 ( 125400 68400 131100 74100 metal1 125400 68400 131100 74100 metal2 -125400 68400 136800 74100 metal3 -131100 68400 136800 74100 metal2 -131100 62700 136800 74100 metal2 -131100 62700 136800 68400 metal2 -131100 62700 176700 68400 metal3 +125400 68400 142500 74100 metal3 +136800 68400 142500 74100 metal2 +136800 62700 142500 74100 metal2 +136800 62700 142500 68400 metal2 +136800 62700 176700 68400 metal3 171000 62700 176700 68400 metal2 171000 62700 176700 74100 metal2 171000 68400 176700 74100 metal1 @@ -5184,25 +5187,26 @@ net44 ( 17100 114000 22800 119700 metal1 17100 114000 22800 119700 metal2 -17100 114000 39900 119700 metal3 -34200 114000 39900 119700 metal2 -34200 102600 39900 119700 metal2 -34200 102600 39900 108300 metal2 -34200 102600 74100 108300 metal3 +17100 114000 57000 119700 metal3 +51300 114000 57000 119700 metal2 +51300 108300 57000 119700 metal2 +51300 108300 57000 114000 metal2 +51300 108300 62700 114000 metal3 +57000 108300 62700 114000 metal2 +57000 102600 62700 114000 metal2 +57000 102600 62700 108300 metal2 +57000 102600 74100 108300 metal3 68400 102600 74100 108300 metal2 68400 102600 74100 108300 metal1 ) net45 ( 153900 119700 159600 125400 metal1 -153900 119700 159600 131100 metal2 -153900 125400 159600 131100 metal2 -153900 125400 182400 131100 metal3 -176700 125400 182400 131100 metal2 -176700 125400 182400 182400 metal2 -176700 176700 182400 182400 metal2 -171000 176700 182400 182400 metal3 -171000 176700 176700 182400 metal2 +153900 119700 159600 176700 metal2 +153900 171000 159600 176700 metal2 +153900 171000 176700 176700 metal3 +171000 171000 176700 176700 metal2 +171000 171000 176700 182400 metal2 171000 176700 176700 182400 metal1 ) net46 @@ -5213,37 +5217,35 @@ net46 51300 45600 57000 51300 metal2 51300 34200 57000 51300 metal2 51300 34200 57000 39900 metal2 -51300 34200 68400 39900 metal3 -62700 34200 68400 39900 metal2 -62700 17100 68400 39900 metal2 -62700 17100 68400 22800 metal2 -62700 17100 119700 22800 metal3 -114000 17100 119700 22800 metal2 -114000 17100 119700 34200 metal2 -114000 28500 119700 34200 metal2 -114000 28500 125400 34200 metal3 +51300 34200 74100 39900 metal3 +68400 34200 74100 39900 metal2 +68400 28500 74100 39900 metal2 +68400 28500 74100 34200 metal2 +68400 28500 125400 34200 metal3 119700 28500 125400 34200 metal2 -119700 28500 125400 51300 metal2 -119700 45600 125400 51300 metal2 -119700 45600 131100 51300 metal3 -125400 45600 131100 51300 metal2 -125400 45600 131100 79800 metal2 +119700 28500 125400 39900 metal2 +119700 34200 125400 39900 metal2 +119700 34200 131100 39900 metal3 +125400 34200 131100 39900 metal2 +125400 34200 131100 79800 metal2 125400 74100 131100 79800 metal1 ) net47 ( 159600 91200 165300 96900 metal1 -159600 91200 165300 96900 metal2 -159600 91200 171000 96900 metal3 -165300 91200 171000 96900 metal2 -165300 74100 171000 96900 metal2 +159600 85500 165300 96900 metal2 +159600 85500 165300 91200 metal2 +159600 85500 171000 91200 metal3 +165300 85500 171000 91200 metal2 +165300 74100 171000 91200 metal2 165300 74100 171000 79800 metal2 165300 74100 182400 79800 metal3 176700 74100 182400 79800 metal2 -176700 34200 182400 79800 metal2 -176700 34200 182400 39900 metal2 -171000 34200 182400 39900 metal3 -171000 34200 176700 39900 metal2 +176700 45600 182400 79800 metal2 +176700 45600 182400 51300 metal2 +171000 45600 182400 51300 metal3 +171000 45600 176700 51300 metal2 +171000 34200 176700 51300 metal2 171000 34200 176700 39900 metal1 ) net48 @@ -5266,16 +5268,13 @@ net48 net49 ( 148200 119700 153900 125400 metal1 -148200 119700 153900 125400 metal2 -148200 119700 159600 125400 metal3 -153900 119700 159600 125400 metal2 -153900 114000 159600 125400 metal2 -153900 114000 159600 119700 metal2 -153900 114000 182400 119700 metal3 -176700 114000 182400 119700 metal2 -176700 74100 182400 119700 metal2 -176700 74100 182400 79800 metal2 -159600 74100 182400 79800 metal3 +148200 114000 153900 125400 metal2 +148200 114000 153900 119700 metal2 +148200 114000 171000 119700 metal3 +165300 114000 171000 119700 metal2 +165300 74100 171000 119700 metal2 +165300 74100 171000 79800 metal2 +159600 74100 171000 79800 metal3 159600 74100 165300 79800 metal2 159600 22800 165300 79800 metal2 159600 22800 165300 28500 metal1 @@ -5362,10 +5361,10 @@ net8 net9 ( 79800 176700 85500 182400 metal1 -79800 176700 85500 182400 metal2 -79800 176700 91200 182400 metal3 -85500 176700 91200 182400 metal2 -85500 171000 91200 182400 metal2 +79800 171000 85500 182400 metal2 +79800 171000 85500 176700 metal2 +79800 171000 91200 176700 metal3 +85500 171000 91200 176700 metal2 85500 171000 91200 176700 metal1 ) req_msg[0] @@ -5439,12 +5438,9 @@ req_msg[15] 5700 193800 11400 201600 metal6 5700 188100 11400 201600 metal2 5700 188100 11400 193800 metal2 -5700 188100 17100 193800 metal3 -11400 188100 17100 193800 metal2 -11400 176700 17100 193800 metal2 -11400 176700 17100 182400 metal2 -11400 176700 28500 182400 metal3 -22800 176700 28500 182400 metal2 +5700 188100 28500 193800 metal3 +22800 188100 28500 193800 metal2 +22800 176700 28500 193800 metal2 22800 176700 28500 182400 metal1 ) req_msg[16] @@ -5635,11 +5631,10 @@ req_msg[30] req_msg[31] ( 165300 176700 171000 182400 metal1 -165300 176700 171000 193800 metal2 -165300 188100 171000 193800 metal2 -165300 188100 188100 193800 metal3 -182400 188100 188100 193800 metal2 -182400 188100 188100 201600 metal2 +165300 176700 171000 182400 metal2 +165300 176700 188100 182400 metal3 +182400 176700 188100 182400 metal2 +182400 176700 188100 201600 metal2 182400 193800 188100 201600 metal2 182400 193800 188100 201600 metal3 182400 193800 188100 201600 metal4 @@ -5947,11 +5942,10 @@ resp_msg[9] 114000 0 119700 5700 metal4 114000 0 119700 5700 metal5 114000 0 119700 5700 metal6 -114000 0 119700 22800 metal2 -114000 17100 119700 22800 metal2 -114000 17100 125400 22800 metal3 -119700 17100 125400 22800 metal2 -119700 17100 125400 28500 metal2 +114000 0 119700 28500 metal2 +114000 22800 119700 28500 metal2 +114000 22800 125400 28500 metal3 +119700 22800 125400 28500 metal2 119700 22800 125400 28500 metal1 ) resp_rdy diff --git a/src/grt/test/congestion1_snapshot_batched.ok b/src/grt/test/congestion1_snapshot_batched.ok new file mode 100644 index 00000000000..49bc25d93b7 --- /dev/null +++ b/src/grt/test/congestion1_snapshot_batched.ok @@ -0,0 +1,94 @@ +[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells +[INFO ODB-0128] Design: gcd +[INFO ODB-0130] Created 54 pins. +[INFO ODB-0131] Created 676 components and 2850 component-terminals. +[INFO ODB-0133] Created 579 nets and 1498 connections. +[WARNING GRT-0300] Timing is not available, setting critical nets percentage to 0. +[INFO GRT-0020] Min routing layer: metal2 +[INFO GRT-0021] Max routing layer: metal10 +[INFO GRT-0022] Global adjustment: 0% +[INFO GRT-0023] Grid origin: (0, 0) +[INFO GRT-0088] Layer metal1 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1350 +[INFO GRT-0088] Layer metal2 Track-Pitch = 0.1900 line-2-Via Pitch: 0.1400 +[INFO GRT-0088] Layer metal3 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1400 +[INFO GRT-0088] Layer metal4 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal5 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal6 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal7 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 +[INFO GRT-0088] Layer metal8 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 +[INFO GRT-0088] Layer metal9 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 +[INFO GRT-0088] Layer metal10 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 +[INFO GRT-0003] Macros: 0 +[INFO GRT-0004] Blockages: 0 +[INFO GRT-0019] Found 0 clock nets. +[INFO GRT-0001] Minimum degree: 2 +[INFO GRT-0002] Maximum degree: 36 + +[INFO GRT-0053] Routing resources analysis: + Routing Original Derated Resource +Layer Direction Resources Resources Reduction (%) +--------------------------------------------------------------- +metal1 Horizontal 0 0 0.00% +metal2 Vertical 17918 1190 93.36% +metal3 Horizontal 24480 2380 90.28% +metal4 Vertical 12172 0 100.00% +metal5 Horizontal 12240 0 100.00% +metal6 Vertical 12172 0 100.00% +metal7 Horizontal 4284 0 100.00% +metal8 Vertical 4284 0 100.00% +metal9 Horizontal 2142 0 100.00% +metal10 Vertical 2142 0 100.00% +--------------------------------------------------------------- + +[INFO GRT-0101] Running extra iterations to remove overflow. +[INFO GRT-0102] Start extra iteration 1/50 +[INFO GRT-0102] Start extra iteration 2/50 +[INFO GRT-0102] Start extra iteration 3/50 +[INFO GRT-0102] Start extra iteration 4/50 +[INFO GRT-0102] Start extra iteration 5/50 +[INFO GRT-0102] Start extra iteration 6/50 +[INFO GRT-0102] Start extra iteration 7/50 +[INFO GRT-0102] Start extra iteration 8/50 +[INFO GRT-0102] Start extra iteration 9/50 +[INFO GRT-0102] Start extra iteration 10/50 +[INFO GRT-0102] Start extra iteration 11/50 +[INFO GRT-0102] Start extra iteration 12/50 +[INFO GRT-0102] Start extra iteration 13/50 +[INFO GRT-0102] Start extra iteration 14/50 +[INFO GRT-0102] Start extra iteration 15/50 +[INFO GRT-0102] Start extra iteration 16/50 +[INFO GRT-0102] Start extra iteration 17/50 +[INFO GRT-0102] Start extra iteration 18/50 +[INFO GRT-0102] Start extra iteration 19/50 +[INFO GRT-0102] Start extra iteration 20/50 +[INFO GRT-0102] Start extra iteration 21/50 +[INFO GRT-0102] Start extra iteration 22/50 +[INFO GRT-0102] Start extra iteration 23/50 +[INFO GRT-0102] Start extra iteration 24/50 +[INFO GRT-0102] Start extra iteration 25/50 +[INFO GRT-0197] Via related to pin nodes: 2837 +[INFO GRT-0198] Via related Steiner nodes: 35 +[INFO GRT-0199] Via filling finished. +[INFO GRT-0111] Final number of vias: 3820 +[INFO GRT-0112] Final usage 3D: 14109 + +[INFO GRT-0096] Final congestion report: +Layer Resource Demand Usage (%) Max H / Max V / Total Overflow +--------------------------------------------------------------------------------------- +metal1 0 0 0.00% 0 / 0 / 0 +metal2 1190 1258 105.71% 1 / 4 / 527 +metal3 2380 1391 58.45% 3 / 1 / 300 +metal4 0 0 0.00% 0 / 0 / 0 +metal5 0 0 0.00% 0 / 0 / 0 +metal6 0 0 0.00% 0 / 0 / 0 +metal7 0 0 0.00% 0 / 0 / 0 +metal8 0 0 0.00% 0 / 0 / 0 +metal9 0 0 0.00% 0 / 0 / 0 +metal10 0 0 0.00% 0 / 0 / 0 +--------------------------------------------------------------------------------------- +Total 3570 2649 74.20% 4 / 5 / 827 + +[INFO GRT-0018] Total wirelength: 11502 um +[INFO GRT-0014] Routed nets: 563 +[WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. +No differences found. diff --git a/src/grt/test/congestion1_snapshot_batched.tcl b/src/grt/test/congestion1_snapshot_batched.tcl new file mode 100644 index 00000000000..14833162682 --- /dev/null +++ b/src/grt/test/congestion1_snapshot_batched.tcl @@ -0,0 +1,19 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 16 + +set guide_file [make_result_file congestion1_snapshot_batched.guide] + +set_global_routing_layer_adjustment metal2 0.9 +set_global_routing_layer_adjustment metal3 0.9 +set_global_routing_layer_adjustment metal4-metal10 1 + +set_routing_layers -signal metal2-metal10 + +global_route -allow_congestion -snapshot_batched_width 16 -verbose + +write_guides $guide_file + +diff_file congestion1_snapshot_batched.guideok $guide_file diff --git a/src/grt/test/congestion2_snapshot_batched.guideok b/src/grt/test/congestion2_snapshot_batched.guideok new file mode 100644 index 00000000000..2a5d91f9ad5 --- /dev/null +++ b/src/grt/test/congestion2_snapshot_batched.guideok @@ -0,0 +1,7185 @@ +_000_ +( +51300 102600 57000 108300 metal1 +51300 102600 57000 114000 metal2 +51300 108300 57000 114000 metal2 +51300 108300 62700 114000 metal3 +57000 108300 62700 114000 metal2 +57000 108300 62700 114000 metal1 +) +_001_ +( +51300 114000 57000 119700 metal1 +51300 114000 57000 125400 metal2 +51300 119700 57000 125400 metal2 +51300 119700 62700 125400 metal3 +57000 119700 62700 125400 metal2 +57000 119700 62700 125400 metal1 +) +_002_ +( +74100 114000 79800 119700 metal1 +74100 108300 79800 119700 metal2 +74100 108300 79800 114000 metal1 +) +_003_ +( +57000 114000 62700 119700 metal1 +57000 114000 62700 125400 metal2 +57000 119700 62700 125400 metal1 +) +_004_ +( +74100 108300 79800 114000 metal1 +74100 108300 79800 114000 metal2 +74100 108300 79800 114000 metal3 +74100 108300 79800 119700 metal4 +74100 114000 79800 119700 metal3 +74100 114000 79800 119700 metal2 +74100 114000 79800 119700 metal1 +) +_005_ +( +57000 102600 62700 108300 metal1 +57000 102600 62700 108300 metal2 +57000 102600 68400 108300 metal3 +62700 102600 68400 108300 metal2 +62700 102600 68400 108300 metal1 +) +_006_ +( +136800 131100 142500 136800 metal1 +136800 125400 142500 136800 metal2 +136800 125400 142500 131100 metal1 +) +_007_ +( +85500 119700 91200 125400 metal1 +85500 119700 91200 131100 metal2 +85500 125400 91200 131100 metal2 +85500 125400 96900 131100 metal3 +91200 125400 96900 131100 metal2 +91200 125400 96900 131100 metal1 +) +_008_ +( +102600 136800 108300 142500 metal1 +102600 136800 108300 142500 metal2 +102600 136800 108300 142500 metal3 +102600 136800 108300 148200 metal4 +102600 142500 108300 148200 metal3 +102600 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_009_ +( +119700 136800 125400 142500 metal1 +119700 131100 125400 142500 metal2 +119700 131100 125400 136800 metal2 +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 131100 131100 136800 metal1 +) +_010_ +( +148200 79800 153900 85500 metal1 +148200 79800 153900 85500 metal2 +148200 79800 159600 85500 metal3 +153900 79800 159600 85500 metal3 +153900 79800 159600 91200 metal4 +153900 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_011_ +( +153900 108300 159600 114000 metal1 +153900 108300 159600 114000 metal2 +153900 108300 165300 114000 metal3 +159600 108300 165300 114000 metal2 +159600 102600 165300 114000 metal2 +159600 102600 165300 108300 metal1 +) +_012_ +( +125400 85500 131100 91200 metal1 +125400 79800 131100 91200 metal2 +125400 79800 131100 85500 metal1 +) +_013_ +( +131100 114000 136800 119700 metal1 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal1 +) +_014_ +( +62700 96900 68400 102600 metal1 +62700 96900 68400 102600 metal2 +62700 96900 74100 102600 metal3 +68400 96900 74100 102600 metal2 +68400 96900 74100 102600 metal1 +) +_015_ +( +51300 85500 57000 91200 metal1 +51300 85500 57000 91200 metal2 +51300 85500 62700 91200 metal3 +57000 85500 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_016_ +( +68400 62700 74100 68400 metal1 +68400 62700 74100 68400 metal2 +68400 62700 79800 68400 metal3 +74100 62700 79800 68400 metal3 +74100 57000 79800 68400 metal4 +74100 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 +74100 57000 79800 62700 metal1 +) +_017_ +( +114000 68400 119700 74100 metal1 +114000 68400 119700 79800 metal2 +114000 74100 119700 79800 metal1 +) +_018_ +( +114000 51300 119700 57000 metal1 +114000 51300 119700 57000 metal2 +) +_019_ +( +96900 34200 102600 39900 metal1 +96900 34200 102600 39900 metal2 +96900 34200 108300 39900 metal3 +102600 34200 108300 39900 metal3 +102600 28500 108300 39900 metal4 +102600 28500 108300 34200 metal3 +102600 28500 108300 34200 metal2 +102600 28500 108300 34200 metal1 +) +_020_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 57000 metal2 +68400 51300 74100 57000 metal2 +68400 51300 79800 57000 metal3 +74100 51300 79800 57000 metal2 +74100 51300 79800 57000 metal1 +) +_021_ +( +108300 74100 114000 79800 metal1 +108300 74100 114000 85500 metal2 +108300 79800 114000 85500 metal1 +) +_022_ +( +148200 125400 153900 131100 metal1 +148200 125400 153900 136800 metal2 +148200 131100 153900 136800 metal1 +) +_023_ +( +57000 62700 62700 68400 metal1 +57000 62700 62700 68400 metal2 +) +_024_ +( +119700 68400 125400 74100 metal1 +119700 62700 125400 74100 metal2 +119700 62700 125400 68400 metal1 +) +_025_ +( +114000 39900 119700 45600 metal1 +114000 39900 119700 51300 metal2 +114000 45600 119700 51300 metal1 +) +_026_ +( +85500 34200 91200 39900 metal1 +85500 28500 91200 39900 metal2 +85500 28500 91200 34200 metal1 +) +_027_ +( +68400 39900 74100 45600 metal1 +68400 34200 74100 45600 metal2 +68400 34200 74100 39900 metal2 +68400 34200 79800 39900 metal3 +74100 34200 79800 39900 metal2 +74100 34200 79800 39900 metal1 +) +_028_ +( +102600 85500 108300 91200 metal1 +102600 85500 108300 91200 metal2 +102600 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +) +_029_ +( +85500 131100 91200 136800 metal1 +85500 131100 91200 136800 metal2 +) +_030_ +( +96900 142500 102600 148200 metal1 +96900 142500 102600 153900 metal2 +96900 148200 102600 153900 metal1 +) +_031_ +( +125400 142500 131100 148200 metal1 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 136800 136800 148200 metal2 +131100 136800 136800 142500 metal1 +) +_032_ +( +148200 74100 153900 79800 metal1 +148200 74100 153900 79800 metal2 +) +_033_ +( +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +) +_034_ +( +131100 68400 136800 74100 metal1 +131100 68400 136800 74100 metal2 +) +_035_ +( +131100 119700 136800 125400 metal1 +131100 119700 136800 125400 metal2 +) +_036_ +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +) +_037_ +( +51300 74100 57000 79800 metal1 +51300 68400 57000 79800 metal2 +51300 68400 57000 74100 metal2 +51300 68400 62700 74100 metal3 +57000 68400 62700 74100 metal2 +57000 68400 62700 74100 metal1 +) +_038_ +( +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +) +_039_ +( +68400 57000 74100 62700 metal1 +68400 57000 74100 62700 metal2 +68400 57000 74100 62700 metal3 +68400 57000 74100 62700 metal4 +68400 57000 79800 62700 metal5 +74100 57000 79800 62700 metal5 +74100 57000 79800 68400 metal6 +74100 62700 79800 68400 metal5 +74100 62700 79800 68400 metal4 +74100 62700 79800 68400 metal3 +74100 62700 79800 68400 metal2 +74100 62700 79800 68400 metal1 +) +_040_ +( +108300 68400 114000 74100 metal1 +108300 68400 114000 74100 metal2 +) +_041_ +( +114000 57000 119700 62700 metal1 +114000 51300 119700 62700 metal2 +114000 51300 119700 57000 metal1 +) +_042_ +( +96900 28500 102600 34200 metal1 +96900 28500 102600 34200 metal2 +96900 28500 114000 34200 metal3 +108300 28500 114000 34200 metal2 +108300 28500 114000 39900 metal2 +108300 34200 114000 39900 metal1 +) +_043_ +( +68400 51300 74100 57000 metal1 +68400 51300 74100 57000 metal2 +68400 51300 79800 57000 metal3 +74100 51300 79800 57000 metal2 +74100 45600 79800 57000 metal2 +74100 45600 79800 51300 metal1 +) +_044_ +( +102600 79800 108300 85500 metal1 +102600 74100 108300 85500 metal2 +102600 74100 108300 79800 metal1 +) +_045_ +( +85500 119700 91200 125400 metal1 +85500 119700 91200 125400 metal2 +) +_046_ +( +102600 142500 108300 148200 metal1 +102600 142500 108300 148200 metal2 +102600 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_047_ +( +119700 142500 125400 148200 metal1 +119700 136800 125400 148200 metal2 +119700 136800 125400 142500 metal1 +) +_048_ +( +148200 85500 153900 91200 metal1 +148200 85500 153900 91200 metal2 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_049_ +( +153900 102600 159600 108300 metal1 +153900 102600 159600 108300 metal2 +) +_050_ +( +119700 79800 125400 85500 metal1 +119700 79800 125400 85500 metal2 +119700 79800 125400 85500 metal3 +119700 79800 125400 91200 metal4 +119700 85500 125400 91200 metal3 +119700 85500 131100 91200 metal3 +125400 85500 131100 91200 metal2 +125400 85500 131100 91200 metal1 +) +_051_ +( +131100 114000 136800 119700 metal1 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 108300 142500 119700 metal2 +136800 108300 142500 114000 metal1 +) +_052_ +( +62700 96900 68400 102600 metal1 +62700 96900 68400 102600 metal2 +) +_053_ +( +51300 79800 57000 85500 metal1 +51300 79800 57000 91200 metal2 +51300 85500 57000 91200 metal1 +) +_054_ +( +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +) +_055_ +( +57000 119700 62700 125400 metal1 +57000 119700 62700 125400 metal2 +57000 119700 62700 125400 metal3 +57000 114000 62700 125400 metal4 +57000 114000 62700 119700 metal3 +57000 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_056_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +) +_057_ +( +57000 119700 62700 125400 metal1 +57000 119700 62700 125400 metal2 +57000 119700 68400 125400 metal3 +62700 119700 68400 125400 metal2 +62700 119700 68400 125400 metal1 +62700 114000 68400 125400 metal2 +62700 114000 68400 119700 metal1 +) +_058_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +74100 114000 85500 119700 metal3 +79800 114000 85500 119700 metal2 +79800 114000 85500 119700 metal1 +) +_059_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +62700 108300 74100 114000 metal3 +68400 108300 74100 114000 metal2 +68400 108300 74100 114000 metal1 +79800 102600 85500 108300 metal2 +79800 102600 91200 108300 metal3 +85500 102600 91200 108300 metal2 +85500 102600 91200 108300 metal1 +79800 96900 85500 108300 metal2 +79800 96900 85500 102600 metal1 +68400 102600 74100 108300 metal1 +68400 102600 74100 108300 metal2 +68400 102600 85500 108300 metal3 +62700 102600 68400 114000 metal2 +62700 102600 68400 108300 metal1 +68400 102600 74100 114000 metal2 +) +_060_ +( +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_061_ +( +91200 125400 96900 131100 metal1 +91200 125400 96900 131100 metal2 +91200 125400 102600 131100 metal3 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal1 +) +_062_ +( +96900 136800 102600 142500 metal1 +96900 136800 102600 142500 metal2 +96900 136800 108300 142500 metal3 +102600 136800 108300 142500 metal2 +102600 136800 108300 142500 metal1 +) +_063_ +( +125400 131100 131100 136800 metal1 +125400 131100 131100 136800 metal2 +) +_064_ +( +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 153900 85500 metal3 +148200 79800 153900 85500 metal2 +148200 79800 153900 85500 metal1 +) +_065_ +( +142500 108300 148200 114000 metal1 +142500 108300 148200 114000 metal2 +142500 108300 159600 114000 metal3 +153900 108300 159600 114000 metal2 +153900 108300 159600 114000 metal1 +) +_066_ +( +125400 79800 131100 85500 metal1 +125400 79800 131100 85500 metal2 +125400 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +) +_067_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +131100 114000 136800 119700 metal1 +) +_068_ +( +68400 96900 74100 102600 metal1 +68400 91200 74100 102600 metal2 +68400 91200 74100 96900 metal1 +) +_069_ +( +57000 85500 62700 91200 metal1 +57000 85500 62700 91200 metal2 +57000 85500 68400 91200 metal3 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal1 +) +_070_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 62700 metal2 +62700 57000 68400 62700 metal3 +62700 57000 68400 68400 metal4 +62700 62700 68400 68400 metal3 +62700 62700 74100 68400 metal3 +68400 62700 74100 68400 metal2 +68400 62700 74100 68400 metal1 +) +_071_ +( +114000 74100 119700 79800 metal1 +114000 74100 119700 85500 metal2 +114000 79800 119700 85500 metal1 +) +_072_ +( +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 119700 45600 metal3 +114000 39900 119700 45600 metal3 +114000 39900 119700 57000 metal4 +114000 51300 119700 57000 metal3 +114000 51300 119700 57000 metal2 +114000 51300 119700 57000 metal1 +) +_073_ +( +91200 39900 96900 45600 metal1 +91200 39900 96900 45600 metal2 +91200 39900 102600 45600 metal3 +96900 39900 102600 45600 metal2 +96900 34200 102600 45600 metal2 +96900 34200 102600 39900 metal1 +) +_074_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +) +_075_ +( +108300 79800 114000 85500 metal1 +108300 79800 114000 91200 metal2 +108300 85500 114000 91200 metal1 +) +_076_ +( +142500 125400 148200 131100 metal1 +142500 125400 148200 131100 metal2 +142500 125400 153900 131100 metal3 +148200 125400 153900 131100 metal2 +148200 125400 153900 131100 metal1 +) +_077_ +( +57000 62700 62700 68400 metal1 +57000 62700 62700 68400 metal2 +57000 62700 68400 68400 metal3 +62700 62700 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_078_ +( +119700 68400 125400 74100 metal1 +119700 68400 125400 74100 metal2 +) +_079_ +( +108300 45600 114000 51300 metal1 +108300 39900 114000 51300 metal2 +108300 39900 114000 45600 metal2 +108300 39900 119700 45600 metal3 +114000 39900 119700 45600 metal2 +114000 39900 119700 45600 metal1 +) +_080_ +( +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +) +_081_ +( +68400 39900 74100 45600 metal1 +68400 39900 74100 45600 metal2 +) +_082_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_083_ +( +85500 131100 91200 136800 metal1 +85500 131100 91200 136800 metal2 +85500 131100 102600 136800 metal3 +96900 131100 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_084_ +( +96900 142500 102600 148200 metal1 +96900 142500 102600 148200 metal2 +96900 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 136800 108300 148200 metal2 +102600 136800 108300 142500 metal1 +) +_085_ +( +125400 136800 131100 142500 metal1 +125400 136800 131100 142500 metal2 +125400 136800 136800 142500 metal3 +131100 136800 136800 142500 metal2 +131100 136800 136800 142500 metal1 +) +_086_ +( +148200 74100 153900 79800 metal1 +148200 74100 153900 79800 metal2 +) +_087_ +( +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +) +_088_ +( +131100 74100 136800 79800 metal1 +131100 68400 136800 79800 metal2 +131100 68400 136800 74100 metal1 +) +_089_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +131100 114000 136800 125400 metal2 +131100 119700 136800 125400 metal1 +) +_090_ +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +51300 91200 68400 96900 metal3 +62700 91200 68400 96900 metal2 +62700 91200 68400 96900 metal1 +) +_091_ +( +57000 68400 62700 74100 metal1 +57000 68400 62700 74100 metal2 +57000 68400 68400 74100 metal3 +62700 68400 68400 74100 metal2 +62700 68400 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +_092_ +( +131100 131100 136800 136800 metal1 +131100 131100 136800 136800 metal2 +131100 131100 148200 136800 metal3 +142500 131100 148200 136800 metal2 +142500 131100 148200 142500 metal2 +142500 136800 148200 142500 metal1 +) +_093_ +( +74100 62700 79800 68400 metal1 +74100 62700 79800 68400 metal2 +74100 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +) +_094_ +( +108300 68400 114000 74100 metal1 +108300 68400 114000 74100 metal2 +) +_095_ +( +114000 57000 119700 62700 metal1 +114000 57000 119700 62700 metal2 +) +_096_ +( +108300 39900 114000 45600 metal1 +108300 34200 114000 45600 metal2 +108300 34200 114000 39900 metal1 +) +_097_ +( +74100 45600 79800 51300 metal1 +74100 45600 79800 51300 metal2 +74100 45600 85500 51300 metal3 +79800 45600 85500 51300 metal2 +79800 45600 85500 51300 metal1 +) +_098_ +( +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 108300 79800 metal3 +102600 74100 108300 85500 metal4 +102600 79800 108300 85500 metal3 +102600 79800 108300 85500 metal2 +102600 79800 108300 85500 metal1 +) +_099_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 125400 metal2 +85500 119700 91200 125400 metal1 +) +_100_ +( +108300 142500 114000 148200 metal1 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +) +_101_ +( +119700 136800 125400 142500 metal1 +119700 136800 125400 142500 metal2 +119700 136800 125400 142500 metal3 +119700 136800 125400 148200 metal4 +119700 142500 125400 148200 metal3 +119700 142500 125400 148200 metal2 +119700 142500 125400 148200 metal1 +) +_102_ +( +153900 91200 159600 96900 metal1 +153900 85500 159600 96900 metal2 +153900 85500 159600 91200 metal1 +) +_103_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 108300 metal2 +153900 102600 159600 108300 metal1 +) +_104_ +( +119700 85500 125400 91200 metal1 +119700 79800 125400 91200 metal2 +119700 79800 125400 85500 metal1 +) +_105_ +( +136800 108300 142500 114000 metal1 +136800 108300 142500 114000 metal2 +136800 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 119700 metal2 +142500 114000 148200 119700 metal1 +) +_106_ +( +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 68400 102600 metal3 +62700 96900 68400 102600 metal2 +62700 96900 68400 102600 metal1 +) +_107_ +( +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 62700 85500 metal3 +57000 79800 62700 85500 metal2 +57000 79800 62700 85500 metal1 +) +_108_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +) +_109_ +( +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +79800 108300 91200 114000 metal3 +85500 108300 91200 114000 metal2 +85500 102600 91200 114000 metal2 +85500 102600 91200 108300 metal1 +85500 96900 91200 108300 metal2 +85500 96900 91200 102600 metal1 +79800 102600 85500 114000 metal2 +79800 102600 85500 108300 metal1 +) +_110_ +( +102600 131100 108300 136800 metal1 +102600 131100 108300 136800 metal2 +102600 131100 108300 136800 metal3 +102600 131100 108300 136800 metal4 +102600 131100 108300 136800 metal5 +102600 131100 108300 159600 metal6 +102600 153900 108300 159600 metal5 +102600 153900 153900 159600 metal5 +148200 153900 153900 159600 metal4 +148200 136800 153900 159600 metal4 +148200 136800 153900 142500 metal3 +148200 136800 153900 142500 metal2 +148200 136800 153900 142500 metal1 +148200 131100 153900 136800 metal1 +148200 131100 153900 136800 metal2 +148200 131100 153900 136800 metal3 +148200 131100 153900 142500 metal4 +148200 125400 153900 136800 metal4 +148200 125400 153900 131100 metal3 +142500 125400 153900 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +102600 125400 108300 136800 metal2 +102600 125400 108300 131100 metal1 +) +_111_ +( +74100 68400 79800 74100 metal1 +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal1 +62700 62700 68400 68400 metal1 +62700 62700 68400 74100 metal2 +62700 68400 68400 74100 metal2 +62700 68400 79800 74100 metal3 +79800 62700 85500 74100 metal2 +79800 62700 85500 68400 metal1 +) +_112_ +( +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 62700 108300 74100 metal2 +114000 62700 119700 74100 metal2 +114000 68400 119700 74100 metal1 +102600 62700 108300 68400 metal1 +102600 62700 108300 68400 metal2 +102600 62700 119700 68400 metal3 +114000 62700 119700 68400 metal2 +114000 62700 125400 68400 metal3 +119700 62700 125400 68400 metal2 +119700 62700 125400 68400 metal1 +) +_113_ +( +108300 45600 114000 57000 metal2 +108300 51300 114000 57000 metal1 +102600 57000 108300 62700 metal1 +102600 57000 108300 62700 metal2 +102600 57000 114000 62700 metal3 +108300 57000 114000 62700 metal2 +108300 45600 114000 51300 metal1 +108300 45600 114000 51300 metal2 +108300 45600 119700 51300 metal3 +114000 45600 119700 51300 metal2 +114000 45600 119700 51300 metal1 +108300 57000 114000 68400 metal2 +108300 62700 114000 68400 metal1 +108300 51300 114000 62700 metal2 +) +_114_ +( +91200 34200 108300 39900 metal3 +102600 34200 108300 39900 metal2 +102600 34200 108300 45600 metal2 +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 96900 39900 metal3 +102600 51300 108300 57000 metal1 +102600 51300 108300 57000 metal2 +102600 51300 108300 57000 metal3 +102600 51300 108300 57000 metal4 +102600 51300 108300 57000 metal5 +102600 39900 108300 57000 metal6 +102600 39900 108300 45600 metal5 +102600 39900 108300 45600 metal4 +102600 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 96900 39900 metal3 +91200 34200 96900 39900 metal4 +91200 34200 96900 39900 metal5 +91200 34200 96900 45600 metal6 +91200 39900 96900 45600 metal5 +91200 39900 96900 45600 metal4 +91200 39900 96900 45600 metal3 +91200 39900 96900 45600 metal2 +91200 39900 96900 45600 metal1 +102600 34200 114000 39900 metal3 +108300 34200 114000 39900 metal2 +108300 34200 114000 39900 metal1 +) +_115_ +( +79800 39900 85500 57000 metal2 +79800 51300 85500 57000 metal1 +79800 51300 85500 57000 metal2 +79800 51300 85500 57000 metal3 +79800 51300 85500 62700 metal4 +79800 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +79800 57000 85500 62700 metal1 +68400 39900 74100 45600 metal1 +68400 39900 74100 45600 metal2 +68400 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +) +_116_ +( +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal3 +91200 85500 96900 91200 metal4 +91200 85500 96900 91200 metal5 +91200 68400 96900 91200 metal6 +91200 68400 96900 74100 metal5 +91200 68400 96900 74100 metal4 +91200 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +91200 85500 102600 91200 metal3 +) +_117_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 96900 119700 metal3 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal1 +96900 114000 102600 119700 metal1 +96900 114000 102600 119700 metal2 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +91200 125400 96900 131100 metal1 +91200 114000 96900 131100 metal2 +91200 125400 96900 136800 metal2 +91200 131100 96900 136800 metal1 +91200 114000 102600 119700 metal3 +) +_118_ +( +108300 142500 114000 148200 metal5 +108300 131100 114000 148200 metal6 +108300 131100 114000 136800 metal5 +108300 131100 114000 136800 metal4 +108300 131100 114000 136800 metal3 +108300 131100 114000 136800 metal2 +108300 131100 114000 136800 metal1 +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal3 +114000 119700 119700 131100 metal4 +114000 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 119700 119700 125400 metal1 +96900 136800 102600 142500 metal1 +96900 136800 102600 148200 metal2 +96900 142500 102600 148200 metal2 +96900 142500 108300 148200 metal3 +108300 131100 119700 136800 metal3 +114000 131100 119700 136800 metal3 +114000 125400 119700 136800 metal4 +108300 142500 119700 148200 metal5 +114000 142500 119700 148200 metal4 +114000 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +102600 142500 108300 148200 metal1 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal3 +102600 142500 108300 148200 metal4 +102600 142500 114000 148200 metal5 +) +_119_ +( +119700 125400 131100 131100 metal5 +125400 125400 131100 131100 metal4 +125400 125400 131100 142500 metal4 +125400 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +119700 114000 125400 125400 metal4 +119700 114000 125400 119700 metal3 +119700 114000 125400 119700 metal2 +119700 114000 125400 119700 metal1 +119700 125400 125400 131100 metal1 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal3 +119700 125400 125400 131100 metal4 +119700 125400 125400 131100 metal5 +119700 119700 125400 131100 metal6 +119700 119700 125400 125400 metal5 +119700 119700 125400 125400 metal4 +119700 119700 125400 125400 metal3 +125400 136800 131100 148200 metal2 +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +114000 142500 131100 148200 metal3 +125400 142500 131100 148200 metal2 +125400 142500 131100 148200 metal3 +125400 142500 131100 148200 metal4 +125400 142500 136800 148200 metal5 +131100 142500 136800 148200 metal4 +131100 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal1 +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 125400 125400 metal3 +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 125400 119700 metal3 +) +_120_ +( +142500 79800 148200 91200 metal2 +142500 85500 148200 91200 metal1 +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 153900 85500 metal3 +148200 79800 153900 85500 metal2 +148200 79800 153900 96900 metal2 +148200 79800 159600 85500 metal3 +153900 79800 159600 85500 metal2 +153900 79800 159600 85500 metal1 +148200 91200 153900 96900 metal1 +148200 91200 153900 96900 metal2 +148200 91200 159600 96900 metal3 +153900 91200 159600 96900 metal2 +153900 91200 159600 96900 metal1 +) +_121_ +( +153900 114000 159600 119700 metal1 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal3 +153900 102600 159600 119700 metal4 +148200 102600 153900 108300 metal1 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +142500 102600 148200 108300 metal1 +142500 102600 148200 108300 metal2 +142500 102600 153900 108300 metal3 +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +148200 114000 159600 119700 metal3 +153900 102600 159600 108300 metal3 +153900 102600 159600 108300 metal4 +153900 102600 159600 108300 metal5 +153900 96900 159600 108300 metal6 +153900 96900 159600 102600 metal5 +153900 96900 159600 102600 metal4 +153900 96900 159600 102600 metal3 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal1 +) +_122_ +( +125400 91200 131100 96900 metal3 +125400 74100 131100 96900 metal4 +125400 74100 131100 79800 metal3 +125400 74100 131100 79800 metal2 +125400 74100 131100 79800 metal1 +114000 91200 119700 96900 metal1 +114000 91200 119700 96900 metal2 +114000 91200 131100 96900 metal3 +114000 85500 119700 96900 metal2 +114000 85500 119700 91200 metal1 +125400 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +125400 91200 136800 96900 metal3 +131100 91200 136800 96900 metal2 +131100 91200 136800 96900 metal1 +) +_123_ +( +131100 102600 136800 108300 metal1 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal3 +131100 102600 136800 119700 metal4 +131100 114000 136800 119700 metal4 +131100 114000 142500 119700 metal5 +136800 114000 142500 119700 metal4 +136800 114000 142500 125400 metal4 +136800 119700 142500 125400 metal3 +136800 119700 142500 125400 metal2 +136800 119700 142500 125400 metal1 +125400 102600 131100 108300 metal1 +125400 102600 131100 108300 metal2 +125400 102600 136800 108300 metal3 +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 131100 119700 metal3 +125400 114000 131100 119700 metal4 +125400 114000 136800 119700 metal5 +) +_124_ +( +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +62700 85500 68400 96900 metal2 +62700 85500 68400 91200 metal1 +57000 91200 62700 96900 metal1 +57000 91200 62700 96900 metal2 +57000 91200 68400 96900 metal3 +51300 96900 57000 102600 metal1 +51300 96900 57000 102600 metal2 +51300 96900 62700 102600 metal3 +57000 96900 62700 102600 metal2 +57000 91200 62700 102600 metal2 +) +_125_ +( +62700 74100 68400 85500 metal2 +62700 79800 68400 85500 metal1 +51300 79800 57000 85500 metal1 +51300 74100 57000 85500 metal2 +51300 74100 57000 79800 metal2 +51300 74100 62700 79800 metal3 +57000 74100 62700 79800 metal2 +57000 74100 62700 79800 metal1 +57000 74100 68400 79800 metal3 +62700 74100 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +_126_ +( +102600 131100 108300 142500 metal2 +102600 136800 108300 142500 metal2 +102600 136800 142500 142500 metal3 +136800 136800 142500 142500 metal2 +136800 136800 142500 142500 metal1 +102600 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +102600 119700 108300 125400 metal1 +102600 119700 108300 125400 metal2 +102600 119700 108300 125400 metal3 +102600 119700 108300 125400 metal4 +102600 119700 108300 125400 metal5 +102600 114000 108300 125400 metal6 +102600 114000 108300 119700 metal5 +102600 114000 108300 119700 metal4 +102600 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +102600 119700 108300 136800 metal6 +102600 131100 108300 136800 metal5 +102600 131100 108300 136800 metal4 +102600 131100 108300 136800 metal3 +102600 131100 108300 136800 metal2 +102600 131100 108300 136800 metal1 +136800 131100 142500 142500 metal2 +136800 131100 142500 136800 metal1 +) +_127_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal3 +74100 62700 79800 79800 metal4 +74100 62700 79800 68400 metal3 +74100 62700 79800 68400 metal2 +74100 62700 79800 68400 metal1 +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 91200 68400 metal3 +85500 62700 91200 68400 metal3 +85500 62700 91200 74100 metal4 +85500 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +74100 62700 85500 68400 metal3 +) +_128_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 79800 metal2 +74100 74100 91200 79800 metal3 +96900 62700 102600 68400 metal1 +96900 62700 102600 68400 metal2 +96900 62700 108300 68400 metal3 +102600 62700 108300 68400 metal3 +102600 62700 108300 74100 metal4 +102600 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 68400 108300 74100 metal1 +91200 74100 96900 79800 metal1 +91200 74100 96900 79800 metal2 +91200 74100 108300 79800 metal3 +85500 74100 91200 79800 metal3 +85500 74100 91200 79800 metal4 +85500 74100 91200 79800 metal5 +85500 68400 91200 79800 metal6 +85500 68400 91200 74100 metal5 +85500 68400 91200 74100 metal4 +85500 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +102600 74100 108300 79800 metal3 +102600 68400 108300 79800 metal4 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +108300 74100 114000 79800 metal1 +85500 74100 96900 79800 metal3 +) +_129_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 102600 68400 metal3 +96900 62700 102600 68400 metal2 +96900 57000 102600 68400 metal2 +108300 57000 114000 62700 metal1 +108300 57000 114000 62700 metal2 +108300 57000 114000 62700 metal3 +108300 51300 114000 62700 metal4 +108300 51300 114000 57000 metal3 +108300 51300 114000 57000 metal2 +108300 51300 114000 57000 metal1 +102600 57000 114000 62700 metal3 +96900 51300 102600 62700 metal2 +96900 51300 102600 57000 metal1 +108300 57000 119700 62700 metal3 +114000 57000 119700 62700 metal2 +114000 57000 119700 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal3 +96900 57000 102600 62700 metal4 +96900 57000 108300 62700 metal5 +102600 57000 108300 62700 metal4 +102600 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_130_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal3 +91200 62700 96900 68400 metal4 +91200 62700 108300 68400 metal5 +102600 62700 108300 68400 metal4 +102600 57000 108300 68400 metal4 +102600 34200 108300 39900 metal1 +102600 34200 108300 39900 metal2 +102600 34200 108300 39900 metal3 +102600 34200 108300 45600 metal4 +102600 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +102600 39900 108300 57000 metal4 +102600 51300 108300 57000 metal4 +102600 51300 108300 57000 metal5 +102600 51300 108300 62700 metal6 +102600 57000 108300 62700 metal5 +102600 57000 108300 62700 metal4 +102600 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_131_ +( +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +85500 57000 91200 62700 metal3 +85500 57000 91200 68400 metal4 +85500 62700 91200 68400 metal3 +85500 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal1 +74100 51300 85500 57000 metal3 +79800 51300 85500 57000 metal2 +79800 51300 85500 57000 metal1 +79800 51300 85500 62700 metal2 +79800 57000 85500 62700 metal2 +79800 57000 91200 62700 metal3 +74100 51300 79800 57000 metal1 +74100 51300 79800 57000 metal2 +74100 51300 79800 57000 metal3 +74100 45600 79800 57000 metal4 +74100 45600 79800 51300 metal3 +74100 45600 79800 51300 metal2 +74100 45600 79800 51300 metal1 +) +_132_ +( +96900 62700 102600 74100 metal4 +96900 62700 102600 68400 metal3 +96900 62700 102600 68400 metal2 +96900 62700 102600 68400 metal1 +96900 79800 102600 85500 metal1 +96900 79800 102600 85500 metal2 +96900 79800 102600 85500 metal3 +96900 79800 102600 91200 metal4 +96900 85500 102600 91200 metal3 +96900 85500 102600 91200 metal2 +96900 85500 102600 91200 metal1 +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal3 +91200 68400 96900 74100 metal4 +91200 68400 102600 74100 metal5 +96900 68400 102600 74100 metal4 +96900 74100 102600 85500 metal2 +96900 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +102600 74100 108300 79800 metal1 +96900 74100 102600 79800 metal2 +96900 74100 102600 79800 metal3 +96900 68400 102600 79800 metal4 +) +_133_ +( +91200 119700 96900 125400 metal1 +91200 119700 96900 125400 metal2 +91200 119700 96900 125400 metal3 +91200 119700 96900 125400 metal4 +91200 119700 114000 125400 metal5 +108300 119700 114000 125400 metal4 +108300 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +91200 114000 96900 119700 metal1 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal3 +91200 108300 96900 119700 metal4 +91200 108300 96900 114000 metal3 +91200 108300 96900 114000 metal2 +91200 108300 96900 114000 metal1 +91200 114000 96900 125400 metal4 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 96900 119700 metal3 +) +_134_ +( +108300 131100 114000 142500 metal2 +108300 131100 114000 136800 metal1 +108300 136800 114000 142500 metal1 +108300 136800 114000 142500 metal2 +108300 136800 114000 142500 metal3 +108300 136800 114000 148200 metal4 +108300 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_135_ +( +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 125400 131100 136800 metal2 +125400 125400 131100 131100 metal1 +119700 131100 125400 136800 metal1 +119700 131100 125400 136800 metal2 +119700 131100 125400 136800 metal3 +119700 131100 125400 142500 metal4 +119700 136800 125400 142500 metal3 +119700 136800 125400 142500 metal2 +119700 136800 125400 142500 metal1 +119700 125400 125400 136800 metal2 +119700 125400 125400 131100 metal1 +) +_136_ +( +136800 102600 142500 108300 metal1 +136800 102600 142500 108300 metal2 +136800 102600 142500 108300 metal3 +136800 102600 142500 108300 metal4 +136800 102600 148200 108300 metal5 +142500 102600 148200 108300 metal5 +142500 96900 148200 108300 metal6 +142500 96900 148200 102600 metal5 +142500 96900 148200 102600 metal4 +142500 96900 148200 102600 metal3 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal1 +148200 85500 153900 91200 metal3 +148200 85500 153900 96900 metal4 +148200 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 96900 metal1 +142500 85500 148200 102600 metal6 +142500 85500 148200 91200 metal5 +142500 85500 148200 91200 metal4 +142500 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 91200 metal1 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +142500 85500 153900 91200 metal3 +) +_137_ +( +148200 102600 153900 108300 metal1 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +153900 102600 159600 108300 metal3 +153900 96900 159600 108300 metal4 +153900 96900 159600 102600 metal3 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal1 +142500 102600 148200 108300 metal1 +142500 102600 148200 108300 metal2 +142500 102600 148200 108300 metal3 +142500 96900 148200 108300 metal4 +142500 96900 148200 102600 metal3 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal1 +136800 102600 142500 108300 metal1 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +153900 108300 159600 114000 metal1 +153900 102600 159600 114000 metal2 +142500 102600 153900 108300 metal3 +) +_138_ +( +125400 91200 131100 96900 metal3 +125400 91200 131100 96900 metal4 +125400 91200 131100 96900 metal5 +125400 91200 131100 102600 metal6 +125400 96900 136800 102600 metal6 +131100 96900 136800 108300 metal6 +131100 102600 136800 108300 metal5 +131100 102600 142500 108300 metal5 +136800 102600 142500 108300 metal4 +136800 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 102600 142500 108300 metal1 +119700 91200 125400 96900 metal1 +119700 91200 125400 96900 metal2 +119700 91200 125400 96900 metal3 +119700 91200 125400 102600 metal4 +119700 96900 125400 102600 metal3 +119700 96900 125400 102600 metal2 +119700 96900 125400 102600 metal1 +119700 91200 131100 96900 metal3 +125400 85500 131100 96900 metal6 +125400 85500 131100 91200 metal5 +125400 85500 136800 91200 metal5 +131100 85500 136800 91200 metal4 +131100 85500 136800 91200 metal3 +131100 85500 136800 91200 metal2 +131100 85500 136800 91200 metal1 +119700 85500 125400 96900 metal2 +119700 85500 125400 91200 metal1 +) +_139_ +( +136800 102600 142500 108300 metal1 +136800 102600 142500 108300 metal2 +131100 102600 142500 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +131100 108300 142500 114000 metal3 +131100 108300 136800 114000 metal2 +131100 108300 136800 114000 metal1 +136800 108300 142500 114000 metal2 +136800 108300 142500 114000 metal3 +136800 108300 142500 119700 metal4 +136800 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal1 +136800 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +136800 102600 142500 114000 metal2 +) +_140_ +( +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 74100 91200 metal3 +68400 85500 74100 91200 metal4 +68400 85500 74100 91200 metal5 +68400 79800 74100 91200 metal6 +68400 79800 74100 85500 metal5 +68400 79800 79800 85500 metal5 +74100 79800 79800 85500 metal5 +74100 74100 79800 85500 metal6 +74100 74100 79800 79800 metal5 +74100 74100 79800 79800 metal4 +74100 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +68400 96900 74100 102600 metal1 +68400 96900 74100 102600 metal2 +68400 96900 74100 102600 metal3 +68400 96900 74100 102600 metal4 +68400 96900 74100 102600 metal5 +68400 91200 74100 102600 metal6 +68400 91200 74100 96900 metal5 +68400 91200 74100 96900 metal4 +68400 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +68400 85500 74100 96900 metal6 +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 74100 102600 metal3 +) +_141_ +( +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +57000 79800 62700 85500 metal1 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +62700 79800 74100 85500 metal3 +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal3 +68400 79800 74100 85500 metal4 +68400 79800 74100 85500 metal5 +68400 74100 74100 85500 metal6 +68400 74100 74100 79800 metal5 +68400 74100 74100 79800 metal4 +68400 74100 74100 79800 metal3 +68400 74100 74100 79800 metal2 +68400 74100 74100 79800 metal1 +57000 79800 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_142_ +( +62700 96900 68400 114000 metal4 +62700 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal3 +62700 85500 68400 91200 metal4 +62700 85500 68400 91200 metal5 +62700 85500 68400 102600 metal6 +62700 96900 68400 102600 metal5 +62700 96900 68400 102600 metal4 +79800 96900 85500 108300 metal4 +79800 102600 85500 108300 metal3 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal1 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +79800 102600 91200 108300 metal3 +45600 45600 68400 51300 metal3 +45600 45600 51300 51300 metal2 +45600 45600 51300 91200 metal2 +45600 85500 51300 91200 metal2 +45600 85500 68400 91200 metal3 +62700 45600 74100 51300 metal3 +68400 45600 74100 51300 metal3 +68400 45600 74100 51300 metal4 +68400 45600 85500 51300 metal5 +79800 45600 85500 51300 metal4 +79800 39900 85500 51300 metal4 +79800 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +79800 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +62700 96900 85500 102600 metal5 +79800 96900 85500 102600 metal4 +79800 96900 85500 102600 metal3 +79800 96900 85500 102600 metal2 +62700 45600 68400 51300 metal3 +62700 45600 68400 51300 metal4 +62700 45600 68400 51300 metal5 +62700 45600 68400 57000 metal6 +62700 51300 68400 57000 metal5 +62700 51300 68400 57000 metal4 +62700 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +79800 91200 85500 96900 metal1 +79800 91200 85500 102600 metal2 +) +_143_ +( +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 131100 119700 metal3 +125400 114000 131100 119700 metal2 +125400 108300 131100 119700 metal2 +125400 108300 131100 114000 metal2 +125400 108300 142500 114000 metal3 +136800 108300 142500 114000 metal3 +136800 102600 142500 114000 metal4 +136800 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 102600 142500 108300 metal1 +) +_144_ +( +114000 114000 125400 119700 metal3 +119700 114000 125400 119700 metal2 +119700 114000 125400 119700 metal1 +119700 114000 131100 119700 metal3 +125400 114000 131100 119700 metal3 +125400 114000 131100 131100 metal4 +125400 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 119700 119700 metal3 +114000 114000 119700 125400 metal4 +114000 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 119700 119700 125400 metal1 +) +_145_ +( +114000 119700 119700 131100 metal2 +114000 125400 119700 131100 metal1 +114000 125400 119700 136800 metal2 +114000 131100 119700 136800 metal2 +108300 131100 119700 136800 metal3 +108300 131100 114000 136800 metal2 +108300 131100 114000 136800 metal1 +108300 114000 114000 119700 metal1 +108300 114000 114000 119700 metal2 +108300 114000 114000 119700 metal3 +108300 114000 114000 125400 metal4 +108300 119700 114000 125400 metal3 +108300 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 119700 119700 125400 metal1 +) +_146_ +( +108300 119700 114000 125400 metal1 +108300 114000 114000 125400 metal2 +108300 114000 114000 119700 metal1 +) +_147_ +( +79800 119700 85500 125400 metal1 +79800 119700 85500 125400 metal2 +79800 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal2 +102600 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 119700 metal1 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal3 +74100 119700 79800 131100 metal4 +74100 125400 79800 131100 metal3 +74100 125400 85500 131100 metal3 +79800 125400 85500 131100 metal2 +79800 119700 85500 131100 metal2 +) +_148_ +( +74100 74100 79800 79800 metal1 +74100 68400 79800 79800 metal2 +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal1 +) +_149_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal3 +79800 68400 85500 74100 metal4 +79800 68400 96900 74100 metal5 +91200 68400 96900 74100 metal5 +91200 57000 96900 74100 metal6 +91200 57000 96900 62700 metal5 +91200 57000 102600 62700 metal5 +96900 57000 102600 62700 metal4 +96900 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +) +_150_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal3 +79800 68400 85500 74100 metal4 +79800 68400 85500 74100 metal5 +79800 68400 85500 125400 metal6 +79800 119700 85500 125400 metal5 +79800 119700 85500 125400 metal4 +79800 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +) +_151_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_152_ +( +68400 119700 74100 125400 metal1 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal3 +74100 119700 79800 125400 metal4 +74100 119700 85500 125400 metal5 +79800 119700 85500 125400 metal4 +79800 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +68400 114000 74100 119700 metal1 +68400 114000 74100 125400 metal2 +) +_153_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +79800 114000 85500 119700 metal1 +79800 114000 85500 125400 metal2 +) +_154_ +( +68400 114000 74100 119700 metal1 +68400 114000 74100 119700 metal2 +68400 114000 79800 119700 metal3 +74100 114000 79800 119700 metal3 +74100 114000 79800 125400 metal4 +74100 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +) +_155_ +( +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +) +_156_ +( +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 68400 125400 metal3 +62700 119700 68400 125400 metal4 +62700 119700 74100 125400 metal5 +68400 119700 74100 125400 metal5 +68400 114000 74100 125400 metal6 +68400 114000 74100 119700 metal5 +68400 114000 74100 119700 metal4 +68400 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_157_ +( +74100 119700 79800 125400 metal1 +74100 114000 79800 125400 metal2 +74100 114000 79800 119700 metal1 +) +_158_ +( +74100 102600 79800 114000 metal2 +74100 108300 79800 114000 metal2 +74100 108300 85500 114000 metal3 +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 91200 91200 96900 metal1 +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +79800 108300 85500 114000 metal3 +79800 108300 85500 119700 metal4 +79800 114000 85500 119700 metal4 +79800 114000 96900 119700 metal5 +91200 114000 96900 119700 metal4 +91200 114000 96900 119700 metal3 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal1 +74100 91200 85500 96900 metal3 +68400 102600 79800 108300 metal3 +68400 102600 74100 108300 metal2 +68400 102600 74100 108300 metal1 +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal3 +62700 62700 68400 91200 metal4 +62700 62700 68400 68400 metal4 +62700 62700 68400 68400 metal5 +62700 51300 68400 68400 metal6 +62700 51300 68400 57000 metal5 +62700 51300 68400 57000 metal4 +62700 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +62700 45600 68400 57000 metal4 +62700 45600 68400 51300 metal4 +62700 45600 74100 51300 metal5 +68400 45600 74100 51300 metal5 +68400 39900 74100 51300 metal6 +68400 39900 74100 45600 metal5 +68400 39900 85500 45600 metal5 +79800 39900 85500 45600 metal4 +79800 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +79800 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +74100 102600 79800 108300 metal2 +74100 102600 79800 108300 metal3 +74100 91200 79800 108300 metal4 +74100 91200 79800 96900 metal3 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 96900 metal2 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +) +_159_ +( +131100 136800 148200 142500 metal3 +142500 136800 148200 142500 metal3 +142500 131100 148200 142500 metal4 +85500 108300 102600 114000 metal3 +96900 108300 102600 114000 metal2 +96900 102600 102600 114000 metal2 +96900 102600 102600 108300 metal2 +96900 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 96900 114000 108300 metal2 +114000 85500 119700 91200 metal1 +114000 85500 119700 91200 metal2 +114000 85500 119700 91200 metal3 +114000 79800 119700 91200 metal4 +114000 79800 119700 85500 metal4 +114000 79800 125400 85500 metal5 +119700 79800 125400 85500 metal4 +119700 79800 125400 85500 metal3 +119700 79800 131100 85500 metal3 +125400 79800 131100 85500 metal3 +125400 79800 131100 85500 metal4 +125400 79800 142500 85500 metal5 +142500 131100 148200 136800 metal1 +142500 131100 148200 136800 metal2 +142500 131100 148200 136800 metal3 +142500 131100 148200 136800 metal4 +142500 131100 148200 136800 metal5 +142500 119700 148200 136800 metal6 +142500 119700 148200 125400 metal5 +142500 119700 148200 125400 metal4 +142500 119700 148200 125400 metal3 +142500 119700 148200 125400 metal2 +142500 119700 148200 125400 metal1 +136800 79800 142500 85500 metal1 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal3 +136800 79800 142500 85500 metal4 +136800 79800 142500 85500 metal5 +136800 74100 142500 85500 metal6 +136800 74100 142500 79800 metal5 +136800 74100 142500 79800 metal4 +136800 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +108300 96900 114000 102600 metal1 +108300 96900 114000 102600 metal2 +108300 96900 119700 102600 metal3 +114000 96900 119700 102600 metal3 +114000 85500 119700 102600 metal4 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 96900 142500 metal3 +91200 136800 96900 142500 metal4 +91200 136800 119700 142500 metal5 +114000 136800 119700 142500 metal4 +114000 136800 119700 142500 metal3 +114000 136800 119700 142500 metal2 +114000 136800 131100 142500 metal3 +125400 136800 131100 142500 metal3 +125400 136800 131100 142500 metal4 +125400 136800 136800 142500 metal5 +131100 136800 136800 142500 metal4 +131100 136800 136800 142500 metal3 +131100 136800 136800 142500 metal2 +131100 136800 136800 142500 metal1 +79800 119700 85500 125400 metal1 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal3 +79800 119700 85500 131100 metal4 +79800 125400 85500 131100 metal3 +79800 125400 91200 131100 metal3 +85500 125400 91200 131100 metal3 +85500 125400 91200 142500 metal4 +85500 136800 91200 142500 metal3 +85500 136800 96900 142500 metal3 +79800 119700 91200 125400 metal3 +85500 119700 91200 125400 metal3 +85500 108300 91200 125400 metal4 +85500 108300 91200 114000 metal3 +85500 108300 91200 114000 metal2 +85500 108300 91200 114000 metal1 +114000 131100 119700 142500 metal2 +114000 131100 119700 136800 metal1 +) +_160_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal3 +74100 119700 79800 125400 metal4 +74100 119700 79800 125400 metal5 +74100 114000 79800 125400 metal6 +74100 114000 79800 119700 metal5 +68400 108300 74100 114000 metal1 +68400 108300 74100 114000 metal2 +68400 108300 74100 114000 metal3 +68400 108300 74100 114000 metal4 +68400 108300 74100 114000 metal5 +68400 108300 74100 119700 metal6 +68400 114000 74100 119700 metal5 +68400 114000 79800 119700 metal5 +153900 91200 159600 102600 metal2 +153900 91200 159600 96900 metal1 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 91200 119700 metal3 +85500 114000 91200 119700 metal4 +85500 114000 91200 119700 metal5 +85500 108300 91200 119700 metal6 +85500 108300 91200 114000 metal5 +85500 108300 114000 114000 metal5 +108300 91200 119700 96900 metal3 +114000 91200 119700 96900 metal3 +114000 91200 119700 96900 metal4 +114000 91200 119700 96900 metal5 +114000 85500 119700 96900 metal6 +114000 85500 119700 91200 metal5 +114000 85500 119700 91200 metal4 +114000 85500 119700 91200 metal3 +114000 85500 119700 91200 metal2 +114000 85500 119700 91200 metal1 +114000 119700 131100 125400 metal3 +125400 119700 131100 125400 metal3 +125400 119700 131100 125400 metal4 +125400 119700 142500 125400 metal5 +136800 119700 142500 125400 metal4 +136800 119700 142500 125400 metal3 +136800 119700 142500 125400 metal2 +136800 119700 142500 125400 metal1 +108300 108300 114000 114000 metal5 +108300 108300 114000 125400 metal6 +108300 119700 114000 125400 metal5 +108300 119700 119700 125400 metal5 +148200 136800 153900 142500 metal1 +148200 136800 153900 142500 metal2 +148200 136800 165300 142500 metal3 +159600 136800 165300 142500 metal2 +159600 119700 165300 142500 metal2 +108300 91200 114000 96900 metal1 +108300 91200 114000 96900 metal2 +108300 91200 114000 96900 metal3 +108300 91200 114000 96900 metal4 +108300 91200 114000 96900 metal5 +108300 91200 114000 114000 metal6 +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal3 +153900 96900 159600 102600 metal4 +153900 96900 165300 102600 metal5 +159600 96900 165300 102600 metal5 +159600 96900 165300 125400 metal6 +159600 119700 165300 125400 metal5 +159600 119700 165300 125400 metal4 +159600 119700 165300 125400 metal3 +159600 119700 165300 125400 metal2 +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal3 +114000 142500 119700 148200 metal4 +114000 142500 119700 148200 metal5 +114000 119700 119700 148200 metal6 +114000 119700 119700 125400 metal5 +114000 119700 119700 125400 metal4 +114000 119700 119700 125400 metal3 +74100 114000 85500 119700 metal5 +79800 114000 85500 119700 metal4 +79800 114000 85500 119700 metal3 +79800 114000 91200 119700 metal3 +136800 119700 165300 125400 metal5 +) +_161_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +74100 114000 85500 119700 metal3 +79800 114000 85500 119700 metal3 +79800 114000 85500 125400 metal4 +79800 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_162_ +( +62700 114000 68400 119700 metal1 +62700 114000 68400 119700 metal2 +62700 114000 68400 119700 metal3 +62700 114000 68400 125400 metal4 +62700 119700 68400 125400 metal3 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 119700 74100 125400 metal1 +) +_163_ +( +62700 114000 68400 119700 metal1 +62700 108300 68400 119700 metal2 +62700 108300 68400 114000 metal1 +) +_164_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal3 +62700 108300 68400 119700 metal4 +62700 114000 68400 119700 metal3 +62700 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_165_ +( +131100 131100 148200 136800 metal3 +91200 102600 96900 108300 metal3 +91200 102600 96900 108300 metal4 +91200 102600 96900 108300 metal5 +91200 96900 96900 108300 metal6 +91200 96900 96900 102600 metal5 +91200 96900 114000 102600 metal5 +108300 96900 114000 102600 metal4 +108300 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal1 +91200 131100 96900 142500 metal2 +91200 136800 96900 142500 metal1 +131100 131100 136800 142500 metal4 +131100 136800 136800 142500 metal3 +131100 136800 136800 142500 metal2 +131100 136800 136800 142500 metal1 +114000 85500 119700 91200 metal1 +114000 85500 119700 91200 metal2 +114000 85500 142500 91200 metal3 +136800 85500 142500 91200 metal3 +136800 79800 142500 91200 metal4 +136800 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +142500 131100 148200 136800 metal1 +142500 131100 148200 136800 metal2 +142500 131100 148200 136800 metal3 +142500 119700 148200 136800 metal4 +142500 119700 148200 125400 metal3 +142500 119700 148200 125400 metal2 +142500 119700 148200 125400 metal1 +136800 74100 142500 85500 metal4 +136800 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +91200 102600 96900 119700 metal6 +91200 114000 96900 119700 metal5 +91200 114000 96900 119700 metal4 +91200 114000 96900 119700 metal3 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal1 +108300 85500 114000 102600 metal2 +108300 85500 114000 91200 metal2 +108300 85500 119700 91200 metal3 +91200 131100 119700 136800 metal5 +114000 131100 119700 136800 metal4 +114000 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 131100 119700 136800 metal1 +114000 131100 136800 136800 metal5 +131100 131100 136800 136800 metal4 +131100 131100 136800 136800 metal3 +91200 114000 96900 136800 metal6 +91200 131100 96900 136800 metal5 +91200 131100 96900 136800 metal4 +91200 131100 96900 136800 metal3 +91200 131100 96900 136800 metal2 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 96900 108300 metal3 +) +_166_ +( +142500 131100 148200 136800 metal1 +142500 125400 148200 136800 metal2 +142500 125400 148200 131100 metal1 +) +_167_ +( +96900 79800 102600 85500 metal1 +96900 79800 102600 91200 metal2 +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_168_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +96900 85500 102600 91200 metal2 +96900 85500 102600 91200 metal1 +) +_169_ +( +131100 102600 136800 108300 metal1 +131100 96900 136800 108300 metal2 +119700 96900 125400 102600 metal1 +119700 96900 125400 102600 metal2 +119700 96900 131100 102600 metal3 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal1 +125400 108300 131100 114000 metal1 +125400 108300 131100 114000 metal2 +125400 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 102600 136800 114000 metal2 +125400 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +) +_170_ +( +131100 91200 136800 96900 metal1 +131100 91200 136800 102600 metal2 +131100 96900 136800 102600 metal1 +131100 85500 136800 91200 metal1 +131100 85500 136800 96900 metal2 +) +_171_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 119700 108300 metal3 +131100 96900 136800 102600 metal1 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal3 +131100 96900 136800 108300 metal4 +131100 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +114000 102600 119700 108300 metal2 +114000 102600 119700 108300 metal3 +114000 102600 119700 114000 metal4 +114000 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +114000 102600 136800 108300 metal3 +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +131100 96900 142500 102600 metal3 +114000 96900 119700 108300 metal2 +114000 96900 119700 102600 metal1 +) +_172_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal3 +114000 125400 119700 131100 metal4 +114000 125400 125400 131100 metal5 +119700 125400 125400 131100 metal4 +119700 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +119700 119700 125400 131100 metal4 +119700 119700 125400 125400 metal3 +119700 119700 125400 125400 metal2 +119700 119700 125400 125400 metal1 +) +_173_ +( +108300 125400 114000 131100 metal2 +108300 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +102600 125400 108300 131100 metal1 +102600 125400 108300 131100 metal2 +102600 125400 114000 131100 metal3 +108300 131100 114000 136800 metal1 +108300 125400 114000 136800 metal2 +) +_174_ +( +108300 102600 114000 119700 metal4 +108300 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 102600 114000 108300 metal1 +102600 96900 108300 102600 metal1 +102600 96900 108300 108300 metal2 +102600 102600 108300 108300 metal2 +102600 102600 114000 108300 metal3 +108300 114000 114000 119700 metal1 +108300 114000 114000 119700 metal2 +108300 114000 114000 119700 metal3 +108300 114000 114000 119700 metal4 +108300 114000 114000 119700 metal5 +108300 114000 114000 131100 metal6 +108300 125400 114000 131100 metal5 +108300 125400 119700 131100 metal5 +114000 125400 119700 131100 metal4 +114000 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +) +_175_ +( +136800 91200 142500 96900 metal1 +136800 91200 142500 96900 metal2 +136800 91200 148200 96900 metal3 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 96900 153900 108300 metal2 +148200 102600 153900 108300 metal1 +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal3 +142500 91200 148200 102600 metal4 +142500 91200 148200 96900 metal3 +142500 91200 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_176_ +( +136800 85500 142500 96900 metal2 +136800 91200 142500 96900 metal1 +136800 85500 142500 91200 metal1 +136800 85500 142500 91200 metal2 +136800 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 91200 metal1 +) +_177_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 119700 108300 metal3 +114000 102600 119700 108300 metal3 +114000 102600 119700 108300 metal4 +114000 102600 119700 108300 metal5 +114000 102600 119700 114000 metal6 +114000 108300 119700 114000 metal5 +114000 108300 119700 114000 metal4 +114000 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 119700 102600 metal3 +114000 96900 119700 102600 metal4 +114000 96900 136800 102600 metal5 +131100 96900 136800 102600 metal4 +131100 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +131100 96900 142500 102600 metal5 +136800 96900 142500 102600 metal4 +136800 91200 142500 102600 metal4 +136800 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 96900 metal1 +114000 96900 119700 108300 metal4 +) +_178_ +( +102600 108300 108300 114000 metal1 +102600 108300 108300 114000 metal2 +102600 108300 108300 114000 metal3 +102600 102600 108300 114000 metal4 +102600 102600 108300 108300 metal3 +102600 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 102600 114000 108300 metal1 +) +_179_ +( +91200 108300 96900 114000 metal1 +91200 108300 96900 119700 metal2 +91200 114000 96900 119700 metal2 +91200 114000 102600 119700 metal3 +96900 114000 102600 119700 metal2 +96900 114000 102600 119700 metal1 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +) +_180_ +( +102600 108300 108300 119700 metal4 +102600 108300 108300 114000 metal3 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 108300 114000 114000 metal1 +102600 114000 108300 125400 metal4 +102600 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 119700 108300 125400 metal1 +96900 114000 102600 119700 metal1 +96900 114000 102600 119700 metal2 +96900 114000 102600 119700 metal3 +96900 114000 102600 119700 metal4 +96900 114000 108300 119700 metal5 +102600 114000 108300 119700 metal4 +) +_181_ +( +102600 114000 108300 119700 metal1 +102600 114000 108300 119700 metal2 +) +_182_ +( +102600 119700 108300 125400 metal1 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal1 +102600 125400 108300 131100 metal1 +102600 119700 108300 131100 metal2 +) +_183_ +( +102600 114000 108300 119700 metal1 +102600 108300 108300 119700 metal2 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 108300 114000 114000 metal1 +) +_184_ +( +108300 108300 114000 114000 metal1 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 102600 119700 114000 metal2 +114000 102600 119700 108300 metal1 +) +_185_ +( +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal3 +142500 96900 148200 102600 metal4 +142500 96900 153900 102600 metal5 +148200 96900 153900 102600 metal4 +148200 91200 153900 102600 metal4 +148200 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 96900 metal1 +) +_186_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 96900 153900 102600 metal1 +) +_187_ +( +142500 102600 148200 108300 metal1 +142500 96900 148200 108300 metal2 +142500 96900 148200 102600 metal1 +) +_188_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal3 +136800 96900 142500 108300 metal4 +136800 102600 142500 108300 metal3 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 108300 metal1 +) +_189_ +( +119700 102600 125400 108300 metal1 +119700 102600 125400 108300 metal2 +119700 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 96900 136800 108300 metal2 +131100 96900 136800 102600 metal2 +131100 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_190_ +( +125400 102600 131100 108300 metal1 +125400 102600 131100 108300 metal2 +125400 102600 131100 108300 metal3 +125400 102600 131100 108300 metal4 +125400 102600 131100 108300 metal5 +125400 102600 131100 114000 metal6 +125400 108300 131100 114000 metal5 +125400 108300 136800 114000 metal5 +131100 108300 136800 114000 metal4 +131100 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 108300 136800 114000 metal1 +) +_191_ +( +119700 108300 125400 114000 metal1 +119700 108300 125400 114000 metal2 +119700 108300 131100 114000 metal3 +125400 108300 131100 114000 metal3 +125400 102600 131100 114000 metal4 +125400 102600 131100 108300 metal3 +125400 102600 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_192_ +( +119700 108300 125400 114000 metal1 +119700 102600 125400 114000 metal2 +119700 102600 125400 108300 metal1 +) +_193_ +( +119700 91200 125400 102600 metal2 +119700 96900 125400 102600 metal1 +114000 91200 119700 96900 metal1 +114000 91200 119700 96900 metal2 +114000 91200 125400 96900 metal3 +119700 91200 125400 96900 metal2 +119700 91200 125400 96900 metal1 +) +_194_ +( +119700 96900 125400 102600 metal1 +119700 96900 125400 108300 metal2 +119700 102600 125400 108300 metal1 +) +_195_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 125400 108300 metal3 +119700 102600 125400 108300 metal2 +119700 102600 125400 108300 metal1 +) +_196_ +( +114000 114000 119700 119700 metal1 +114000 108300 119700 119700 metal2 +114000 108300 119700 114000 metal1 +) +_197_ +( +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 119700 125400 metal3 +114000 119700 119700 125400 metal4 +114000 119700 119700 125400 metal5 +114000 108300 119700 125400 metal6 +114000 108300 119700 114000 metal5 +114000 108300 119700 114000 metal4 +114000 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_198_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 114000 metal2 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_199_ +( +102600 96900 108300 102600 metal1 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal3 +102600 96900 108300 108300 metal4 +102600 102600 108300 108300 metal4 +102600 102600 119700 108300 metal5 +114000 102600 119700 108300 metal4 +114000 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +114000 102600 119700 108300 metal1 +) +_200_ +( +74100 68400 79800 74100 metal2 +74100 68400 79800 74100 metal3 +74100 68400 79800 74100 metal4 +74100 68400 79800 74100 metal5 +74100 68400 79800 79800 metal6 +74100 74100 79800 79800 metal5 +74100 74100 85500 79800 metal5 +79800 74100 85500 79800 metal4 +79800 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 74100 74100 metal3 +68400 68400 74100 74100 metal4 +68400 68400 79800 74100 metal5 +74100 62700 79800 68400 metal1 +74100 62700 79800 74100 metal2 +) +_201_ +( +79800 74100 85500 79800 metal1 +79800 74100 85500 79800 metal2 +79800 74100 91200 79800 metal3 +85500 74100 91200 79800 metal2 +85500 74100 91200 79800 metal1 +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 68400 108300 74100 metal1 +85500 74100 102600 79800 metal3 +96900 74100 102600 79800 metal2 +96900 68400 102600 79800 metal2 +) +_202_ +( +79800 79800 85500 91200 metal2 +79800 85500 85500 91200 metal1 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 74100 85500 79800 metal1 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal3 +79800 74100 85500 85500 metal4 +79800 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_203_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 85500 91200 metal3 +79800 85500 85500 91200 metal2 +79800 85500 85500 91200 metal1 +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal3 +68400 79800 74100 91200 metal4 +68400 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 91200 metal1 +68400 85500 79800 91200 metal3 +62700 79800 68400 85500 metal1 +62700 79800 68400 85500 metal2 +62700 79800 74100 85500 metal3 +) +_204_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 85500 91200 metal3 +79800 85500 85500 91200 metal2 +79800 85500 85500 91200 metal1 +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +74100 91200 79800 96900 metal1 +74100 85500 79800 96900 metal2 +) +_205_ +( +85500 85500 91200 91200 metal1 +85500 85500 91200 91200 metal2 +85500 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 96900 metal2 +91200 91200 96900 96900 metal2 +91200 91200 108300 96900 metal3 +102600 91200 108300 96900 metal1 +102600 91200 108300 96900 metal2 +102600 91200 108300 96900 metal3 +102600 91200 108300 102600 metal4 +102600 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +79800 85500 85500 91200 metal1 +79800 85500 85500 91200 metal2 +79800 85500 91200 91200 metal3 +) +_206_ +( +85500 51300 91200 57000 metal1 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal3 +91200 51300 96900 62700 metal4 +91200 57000 96900 62700 metal3 +91200 57000 96900 62700 metal2 +91200 57000 96900 62700 metal1 +79800 51300 85500 57000 metal1 +79800 51300 85500 57000 metal2 +79800 51300 91200 57000 metal3 +) +_207_ +( +91200 57000 96900 68400 metal2 +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 102600 68400 metal3 +96900 62700 102600 68400 metal2 +96900 62700 102600 74100 metal2 +96900 68400 102600 74100 metal1 +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +85500 57000 96900 62700 metal3 +91200 57000 96900 62700 metal2 +91200 57000 96900 62700 metal1 +) +_208_ +( +91200 57000 96900 62700 metal1 +91200 57000 96900 62700 metal2 +91200 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +) +_209_ +( +96900 39900 102600 51300 metal2 +96900 45600 102600 51300 metal1 +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +96900 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +91200 39900 96900 45600 metal1 +91200 39900 96900 45600 metal2 +91200 39900 102600 45600 metal3 +) +_210_ +( +96900 51300 102600 57000 metal3 +96900 51300 102600 62700 metal4 +96900 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +91200 51300 96900 57000 metal1 +91200 51300 96900 57000 metal2 +91200 51300 102600 57000 metal3 +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +96900 45600 102600 51300 metal3 +96900 45600 102600 57000 metal4 +) +_211_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 108300 57000 metal3 +102600 51300 108300 57000 metal2 +102600 45600 108300 57000 metal2 +102600 45600 108300 51300 metal1 +102600 51300 114000 57000 metal3 +108300 51300 114000 57000 metal2 +108300 51300 114000 57000 metal1 +) +_212_ +( +91200 51300 96900 62700 metal2 +91200 57000 96900 62700 metal1 +96900 45600 102600 57000 metal2 +96900 45600 102600 51300 metal1 +91200 51300 96900 57000 metal1 +91200 51300 96900 57000 metal2 +91200 51300 102600 57000 metal3 +96900 51300 102600 57000 metal2 +96900 51300 102600 57000 metal1 +) +_213_ +( +102600 85500 108300 96900 metal2 +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal3 +91200 85500 96900 91200 metal4 +91200 85500 108300 91200 metal5 +102600 91200 108300 96900 metal1 +102600 91200 108300 96900 metal2 +102600 91200 108300 96900 metal3 +102600 91200 108300 96900 metal4 +102600 91200 108300 96900 metal5 +102600 91200 108300 102600 metal6 +102600 96900 108300 102600 metal5 +102600 96900 108300 102600 metal4 +102600 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal3 +96900 57000 102600 68400 metal4 +96900 62700 102600 68400 metal3 +96900 62700 108300 68400 metal3 +102600 62700 108300 68400 metal3 +102600 62700 108300 68400 metal4 +102600 62700 108300 68400 metal5 +102600 62700 108300 91200 metal6 +102600 85500 108300 91200 metal5 +102600 85500 108300 91200 metal4 +102600 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +) +_214_ +( +102600 91200 108300 96900 metal1 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_215_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal3 +91200 85500 96900 102600 metal4 +91200 96900 96900 102600 metal3 +91200 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_216_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 91200 metal1 +) +_217_ +( +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_218_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 79800 metal2 +68400 74100 74100 79800 metal3 +68400 74100 74100 85500 metal4 +68400 79800 74100 85500 metal3 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal1 +62700 74100 68400 79800 metal1 +62700 74100 68400 79800 metal2 +62700 74100 74100 79800 metal3 +) +_219_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_220_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 85500 metal2 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal3 +74100 79800 79800 85500 metal4 +74100 79800 96900 85500 metal5 +91200 79800 96900 85500 metal4 +91200 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_221_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 79800 metal2 +91200 74100 96900 79800 metal3 +91200 74100 96900 79800 metal4 +91200 74100 119700 79800 metal5 +85500 68400 91200 74100 metal1 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal3 +85500 68400 91200 79800 metal4 +85500 74100 91200 79800 metal4 +85500 74100 96900 79800 metal5 +114000 74100 125400 79800 metal5 +119700 74100 125400 79800 metal4 +119700 74100 125400 79800 metal3 +119700 74100 125400 79800 metal2 +119700 74100 125400 79800 metal1 +114000 68400 119700 74100 metal1 +114000 68400 119700 74100 metal2 +114000 68400 119700 74100 metal3 +114000 68400 119700 74100 metal4 +114000 68400 119700 74100 metal5 +114000 68400 119700 79800 metal6 +114000 74100 119700 79800 metal5 +) +_222_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 85500 metal2 +91200 79800 96900 85500 metal1 +91200 68400 96900 74100 metal1 +91200 68400 96900 79800 metal2 +) +_223_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 74100 metal2 +79800 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +) +_224_ +( +85500 68400 91200 74100 metal1 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal3 +85500 68400 91200 85500 metal4 +85500 79800 91200 85500 metal3 +85500 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_225_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 79800 metal2 +91200 74100 96900 79800 metal3 +91200 74100 96900 91200 metal4 +91200 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_226_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +) +_227_ +( +85500 57000 91200 68400 metal2 +85500 62700 91200 68400 metal2 +85500 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal1 +79800 57000 85500 62700 metal1 +79800 57000 85500 62700 metal2 +79800 57000 91200 62700 metal3 +85500 57000 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_228_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal3 +91200 62700 96900 79800 metal4 +91200 74100 96900 79800 metal3 +91200 74100 96900 79800 metal2 +91200 74100 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_229_ +( +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 102600 91200 metal3 +96900 85500 102600 108300 metal4 +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 96900 108300 metal3 +91200 102600 96900 108300 metal4 +91200 102600 102600 108300 metal5 +96900 102600 102600 108300 metal4 +96900 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_230_ +( +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +91200 102600 96900 108300 metal3 +91200 96900 96900 108300 metal4 +91200 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 96900 108300 metal3 +) +_231_ +( +102600 51300 108300 57000 metal1 +102600 51300 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_232_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_233_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 108300 57000 metal3 +102600 51300 108300 57000 metal3 +102600 51300 108300 62700 metal4 +102600 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_234_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_235_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal3 +96900 57000 102600 62700 metal4 +96900 57000 102600 62700 metal5 +96900 57000 102600 108300 metal6 +96900 102600 102600 108300 metal5 +96900 102600 102600 108300 metal4 +96900 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +) +_236_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal3 +96900 102600 102600 108300 metal4 +96900 102600 108300 108300 metal5 +102600 102600 108300 108300 metal5 +102600 102600 108300 114000 metal6 +102600 108300 108300 114000 metal5 +102600 108300 119700 114000 metal5 +114000 108300 119700 114000 metal4 +114000 108300 119700 114000 metal3 +114000 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 108300 136800 119700 metal2 +131100 114000 136800 119700 metal2 +131100 114000 136800 119700 metal3 +131100 114000 136800 131100 metal4 +131100 125400 136800 131100 metal4 +131100 125400 148200 131100 metal5 +142500 125400 148200 131100 metal4 +142500 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_237_ +( +102600 96900 108300 102600 metal1 +102600 96900 108300 102600 metal2 +102600 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 96900 119700 102600 metal1 +) +_238_ +( +96900 102600 102600 108300 metal1 +96900 96900 102600 108300 metal2 +96900 96900 102600 102600 metal2 +96900 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_239_ +( +96900 114000 102600 119700 metal1 +96900 108300 102600 119700 metal2 +96900 108300 102600 114000 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 108300 108300 114000 metal1 +96900 114000 102600 125400 metal2 +96900 119700 102600 125400 metal1 +) +_240_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 108300 metal2 +96900 102600 108300 108300 metal3 +102600 102600 108300 108300 metal2 +102600 102600 108300 114000 metal2 +102600 108300 108300 114000 metal1 +) +_241_ +( +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_242_ +( +85500 96900 91200 102600 metal1 +85500 96900 91200 102600 metal2 +85500 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +91200 102600 96900 108300 metal1 +91200 96900 96900 108300 metal2 +) +_243_ +( +85500 96900 91200 102600 metal3 +85500 91200 91200 102600 metal4 +85500 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 91200 91200 96900 metal1 +79800 96900 85500 102600 metal1 +79800 96900 85500 102600 metal2 +79800 96900 91200 102600 metal3 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 91200 108300 metal3 +85500 96900 91200 108300 metal4 +) +_244_ +( +85500 91200 91200 96900 metal1 +85500 91200 91200 96900 metal2 +85500 91200 91200 96900 metal3 +85500 91200 91200 96900 metal4 +85500 91200 102600 96900 metal5 +96900 91200 102600 96900 metal4 +96900 91200 102600 96900 metal3 +96900 91200 102600 96900 metal2 +96900 91200 102600 96900 metal1 +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal3 +68400 91200 74100 96900 metal4 +68400 91200 91200 96900 metal5 +62700 85500 68400 96900 metal4 +62700 91200 68400 96900 metal4 +62700 91200 74100 96900 metal5 +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal3 +62700 85500 68400 91200 metal4 +62700 85500 68400 91200 metal5 +62700 57000 68400 91200 metal6 +62700 57000 68400 62700 metal5 +62700 57000 68400 62700 metal4 +62700 57000 68400 62700 metal3 +62700 57000 68400 62700 metal2 +62700 57000 68400 62700 metal1 +85500 39900 91200 45600 metal1 +85500 39900 91200 45600 metal2 +85500 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +68400 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 39900 91200 51300 metal2 +62700 51300 68400 62700 metal4 +62700 51300 68400 57000 metal3 +62700 51300 74100 57000 metal3 +68400 51300 74100 57000 metal3 +68400 45600 74100 57000 metal4 +68400 45600 74100 51300 metal3 +68400 45600 74100 51300 metal2 +68400 45600 74100 51300 metal1 +) +_245_ +( +125400 125400 136800 131100 metal3 +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal3 +142500 79800 148200 91200 metal4 +142500 85500 148200 91200 metal4 +142500 85500 153900 91200 metal5 +148200 85500 153900 91200 metal5 +148200 85500 153900 96900 metal6 +148200 91200 153900 96900 metal5 +148200 91200 153900 96900 metal4 +148200 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 102600 metal2 +148200 96900 153900 102600 metal2 +148200 96900 153900 102600 metal3 +148200 96900 153900 114000 metal4 +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 142500 131100 metal3 +136800 119700 142500 131100 metal4 +136800 119700 142500 125400 metal4 +136800 119700 148200 125400 metal5 +142500 119700 148200 125400 metal5 +142500 108300 148200 125400 metal6 +142500 108300 148200 114000 metal5 +142500 108300 153900 114000 metal5 +148200 108300 153900 114000 metal4 +148200 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +131100 131100 136800 136800 metal1 +131100 131100 136800 136800 metal2 +131100 131100 136800 136800 metal3 +131100 125400 136800 136800 metal4 +131100 125400 136800 131100 metal3 +102600 125400 108300 142500 metal4 +102600 136800 108300 142500 metal3 +96900 136800 108300 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +114000 79800 119700 85500 metal1 +114000 79800 119700 85500 metal2 +114000 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +131100 125400 142500 131100 metal3 +108300 85500 119700 91200 metal3 +114000 85500 119700 91200 metal2 +114000 79800 119700 91200 metal2 +131100 79800 148200 85500 metal3 +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal3 +108300 85500 114000 91200 metal4 +102600 85500 114000 91200 metal5 +102600 85500 108300 91200 metal4 +102600 85500 108300 96900 metal4 +102600 91200 108300 96900 metal4 +96900 91200 108300 96900 metal5 +96900 91200 102600 96900 metal4 +96900 91200 102600 96900 metal3 +96900 91200 102600 96900 metal2 +96900 91200 102600 96900 metal1 +102600 125400 108300 131100 metal4 +102600 125400 131100 131100 metal5 +125400 125400 131100 131100 metal4 +125400 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal3 +96900 125400 102600 131100 metal4 +96900 125400 108300 131100 metal5 +125400 114000 131100 119700 metal1 +125400 114000 131100 131100 metal2 +) +_246_ +( +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_247_ +( +74100 102600 79800 108300 metal1 +74100 102600 79800 108300 metal2 +74100 102600 85500 108300 metal3 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal1 +) +_248_ +( +125400 74100 131100 96900 metal2 +125400 91200 131100 96900 metal2 +125400 91200 131100 96900 metal3 +125400 91200 131100 119700 metal4 +125400 114000 131100 119700 metal3 +125400 114000 131100 119700 metal2 +125400 114000 131100 119700 metal1 +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +119700 74100 131100 79800 metal3 +125400 74100 131100 79800 metal2 +125400 74100 131100 79800 metal1 +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 91200 39900 metal3 +85500 34200 91200 39900 metal4 +85500 34200 91200 39900 metal5 +85500 34200 91200 51300 metal6 +85500 45600 91200 51300 metal5 +85500 45600 96900 51300 metal5 +91200 45600 96900 51300 metal4 +91200 45600 96900 51300 metal3 +91200 45600 108300 51300 metal3 +102600 45600 108300 51300 metal3 +102600 45600 108300 51300 metal4 +102600 45600 114000 51300 metal5 +108300 45600 114000 51300 metal4 +108300 45600 114000 51300 metal3 +108300 45600 114000 51300 metal2 +108300 45600 114000 51300 metal1 +57000 62700 62700 79800 metal4 +57000 62700 62700 68400 metal3 +62700 91200 68400 108300 metal2 +62700 102600 68400 108300 metal2 +62700 102600 68400 108300 metal3 +62700 102600 68400 108300 metal4 +62700 102600 79800 108300 metal5 +74100 102600 79800 108300 metal4 +74100 102600 79800 108300 metal3 +74100 102600 79800 108300 metal2 +74100 102600 79800 108300 metal1 +57000 45600 62700 68400 metal4 +57000 45600 62700 51300 metal4 +57000 45600 68400 51300 metal5 +62700 45600 68400 51300 metal4 +62700 34200 68400 51300 metal4 +62700 34200 68400 39900 metal3 +62700 34200 74100 39900 metal3 +108300 45600 125400 51300 metal5 +119700 45600 125400 51300 metal4 +119700 45600 125400 51300 metal3 +119700 45600 131100 51300 metal3 +125400 45600 131100 51300 metal2 +125400 45600 131100 79800 metal2 +68400 28500 74100 39900 metal2 +68400 28500 74100 34200 metal2 +68400 28500 85500 34200 metal3 +79800 28500 85500 34200 metal2 +79800 28500 85500 39900 metal2 +79800 34200 85500 39900 metal2 +79800 34200 91200 39900 metal3 +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 68400 96900 metal3 +62700 91200 68400 96900 metal4 +57000 91200 68400 96900 metal5 +57000 91200 62700 96900 metal4 +57000 85500 62700 96900 metal4 +57000 85500 62700 91200 metal4 +57000 85500 62700 91200 metal5 +57000 74100 62700 91200 metal6 +57000 74100 62700 79800 metal5 +57000 74100 62700 79800 metal4 +57000 74100 62700 79800 metal3 +57000 74100 62700 79800 metal2 +57000 74100 62700 79800 metal1 +57000 62700 68400 68400 metal3 +62700 62700 68400 68400 metal2 +62700 62700 68400 68400 metal1 +68400 34200 74100 39900 metal2 +68400 34200 74100 39900 metal3 +68400 34200 74100 45600 metal4 +68400 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 +68400 39900 74100 45600 metal1 +) +_249_ +( +153900 114000 159600 119700 metal3 +153900 114000 159600 131100 metal4 +91200 131100 96900 136800 metal1 +91200 131100 96900 136800 metal2 +91200 131100 96900 136800 metal3 +91200 131100 96900 136800 metal4 +91200 131100 96900 136800 metal5 +91200 131100 96900 148200 metal6 +91200 142500 96900 148200 metal5 +91200 142500 102600 148200 metal5 +96900 142500 102600 148200 metal4 +96900 142500 102600 159600 metal4 +96900 153900 102600 159600 metal3 +96900 153900 131100 159600 metal3 +125400 153900 159600 159600 metal3 +153900 153900 159600 159600 metal3 +153900 125400 159600 159600 metal4 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 131100 79800 metal3 +125400 74100 131100 79800 metal4 +125400 74100 148200 79800 metal5 +142500 74100 148200 79800 metal4 +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +148200 114000 159600 119700 metal3 +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +119700 74100 131100 79800 metal3 +114000 74100 125400 79800 metal3 +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 119700 85500 metal3 +114000 79800 119700 85500 metal3 +114000 74100 119700 85500 metal4 +114000 74100 119700 79800 metal3 +114000 74100 119700 79800 metal2 +114000 74100 119700 79800 metal1 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +142500 74100 182400 79800 metal5 +176700 74100 182400 79800 metal4 +176700 74100 182400 119700 metal4 +176700 114000 182400 119700 metal3 +153900 114000 182400 119700 metal3 +142500 74100 148200 85500 metal4 +142500 79800 148200 85500 metal3 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal1 +142500 125400 148200 131100 metal1 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal3 +142500 125400 148200 131100 metal4 +142500 125400 159600 131100 metal5 +153900 125400 159600 131100 metal4 +125400 153900 131100 159600 metal3 +125400 136800 131100 159600 metal4 +125400 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +96900 136800 102600 148200 metal4 +96900 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_250_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal3 +96900 102600 102600 131100 metal4 +96900 102600 102600 108300 metal4 +96900 102600 108300 108300 metal5 +102600 102600 108300 108300 metal5 +102600 96900 108300 108300 metal6 +102600 96900 108300 102600 metal5 +102600 96900 108300 102600 metal4 +102600 96900 108300 102600 metal3 +102600 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal1 +) +_251_ +( +91200 96900 96900 102600 metal1 +91200 96900 96900 102600 metal2 +) +_252_ +( +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 85500 96900 metal3 +79800 91200 85500 96900 metal4 +79800 91200 85500 96900 metal5 +79800 91200 85500 102600 metal6 +79800 96900 85500 102600 metal5 +79800 96900 96900 102600 metal5 +91200 96900 96900 102600 metal4 +91200 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal3 +79800 79800 85500 96900 metal4 +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 96900 39900 metal3 +91200 34200 96900 39900 metal4 +91200 34200 102600 39900 metal5 +96900 34200 102600 39900 metal5 +96900 34200 102600 51300 metal6 +96900 45600 102600 51300 metal5 +96900 45600 108300 51300 metal5 +102600 45600 108300 51300 metal4 +102600 45600 108300 51300 metal3 +102600 45600 108300 51300 metal2 +102600 45600 108300 51300 metal1 +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 74100 74100 metal3 +68400 68400 74100 74100 metal4 +68400 68400 74100 74100 metal5 +68400 45600 74100 74100 metal6 +68400 45600 74100 51300 metal5 +68400 45600 74100 51300 metal4 +68400 45600 74100 51300 metal3 +68400 45600 79800 51300 metal3 +74100 45600 79800 51300 metal3 +74100 39900 79800 51300 metal4 +74100 39900 79800 45600 metal3 +74100 39900 79800 45600 metal2 +74100 39900 79800 45600 metal1 +74100 34200 79800 45600 metal4 +74100 34200 79800 39900 metal4 +74100 34200 96900 39900 metal5 +68400 68400 74100 79800 metal2 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 85500 metal2 +) +_253_ +( +131100 79800 136800 85500 metal1 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal3 +131100 79800 136800 85500 metal4 +131100 79800 136800 85500 metal5 +131100 79800 136800 114000 metal6 +131100 108300 136800 114000 metal5 +131100 119700 136800 125400 metal2 +131100 119700 136800 125400 metal3 +131100 119700 136800 125400 metal4 +131100 119700 136800 125400 metal5 +131100 108300 136800 125400 metal6 +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +96900 125400 119700 131100 metal3 +114000 125400 119700 131100 metal3 +114000 125400 119700 131100 metal4 +114000 125400 119700 131100 metal5 +114000 119700 119700 131100 metal6 +114000 119700 119700 125400 metal5 +114000 119700 131100 125400 metal5 +125400 119700 131100 125400 metal4 +125400 119700 131100 125400 metal3 +125400 119700 131100 125400 metal2 +125400 119700 131100 125400 metal1 +119700 79800 125400 85500 metal1 +119700 79800 125400 85500 metal2 +119700 79800 125400 85500 metal3 +119700 79800 125400 85500 metal4 +119700 79800 136800 85500 metal5 +96900 131100 102600 136800 metal1 +96900 125400 102600 136800 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal3 +85500 79800 91200 96900 metal4 +85500 79800 91200 85500 metal3 +85500 79800 102600 85500 metal3 +74100 96900 79800 102600 metal1 +74100 96900 79800 102600 metal2 +74100 96900 85500 102600 metal3 +79800 96900 85500 102600 metal3 +79800 91200 85500 102600 metal4 +79800 91200 85500 96900 metal3 +79800 91200 85500 96900 metal2 +79800 91200 85500 96900 metal1 +131100 119700 136800 131100 metal2 +131100 125400 136800 131100 metal1 +96900 79800 125400 85500 metal3 +96900 79800 102600 85500 metal3 +96900 74100 102600 85500 metal4 +96900 74100 102600 79800 metal3 +96900 74100 102600 79800 metal2 +96900 74100 102600 79800 metal1 +131100 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +131100 108300 148200 114000 metal5 +142500 108300 148200 114000 metal4 +142500 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +125400 119700 136800 125400 metal3 +) +_254_ +( +96900 119700 102600 125400 metal1 +96900 119700 102600 125400 metal2 +96900 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 119700 108300 125400 metal1 +) +_255_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +) +_256_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_257_ +( +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_258_ +( +102600 119700 108300 125400 metal3 +102600 119700 108300 131100 metal4 +102600 125400 108300 131100 metal3 +102600 125400 108300 131100 metal2 +102600 125400 108300 131100 metal1 +102600 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +96900 119700 102600 125400 metal1 +96900 119700 102600 125400 metal2 +96900 119700 108300 125400 metal3 +) +_259_ +( +96900 131100 102600 136800 metal1 +96900 131100 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_260_ +( +96900 136800 102600 142500 metal1 +96900 136800 102600 142500 metal2 +) +_261_ +( +131100 136800 136800 142500 metal1 +131100 131100 136800 142500 metal2 +131100 131100 136800 136800 metal1 +) +_262_ +( +108300 119700 114000 131100 metal2 +108300 125400 114000 131100 metal1 +108300 119700 114000 125400 metal1 +108300 119700 114000 125400 metal2 +108300 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 114000 119700 125400 metal2 +114000 114000 119700 119700 metal1 +) +_263_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +) +_264_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +119700 119700 125400 131100 metal2 +119700 119700 125400 125400 metal1 +) +_265_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 131100 metal2 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +) +_266_ +( +131100 125400 136800 131100 metal1 +131100 125400 136800 136800 metal2 +131100 131100 136800 136800 metal1 +) +_267_ +( +125400 136800 131100 142500 metal1 +125400 131100 131100 142500 metal2 +125400 131100 131100 136800 metal2 +125400 131100 136800 136800 metal3 +131100 131100 136800 136800 metal2 +131100 131100 136800 136800 metal1 +) +_268_ +( +136800 74100 142500 79800 metal1 +136800 74100 142500 79800 metal2 +136800 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 74100 148200 85500 metal2 +142500 79800 148200 85500 metal1 +) +_269_ +( +119700 119700 125400 125400 metal1 +119700 114000 125400 125400 metal2 +119700 114000 125400 119700 metal1 +) +_270_ +( +114000 108300 119700 114000 metal1 +114000 108300 119700 114000 metal2 +114000 108300 125400 114000 metal3 +119700 108300 125400 114000 metal2 +119700 108300 125400 119700 metal2 +119700 114000 125400 119700 metal1 +) +_271_ +( +108300 114000 114000 119700 metal1 +108300 114000 114000 119700 metal2 +108300 114000 119700 119700 metal3 +114000 114000 119700 119700 metal3 +114000 108300 119700 119700 metal4 +114000 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_272_ +( +136800 85500 142500 96900 metal4 +136800 85500 142500 91200 metal3 +136800 85500 142500 91200 metal2 +136800 85500 142500 91200 metal1 +119700 96900 125400 102600 metal3 +119700 96900 125400 102600 metal4 +119700 96900 125400 102600 metal5 +119700 91200 125400 102600 metal6 +119700 91200 125400 96900 metal5 +119700 91200 142500 96900 metal5 +136800 91200 142500 96900 metal4 +136800 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 96900 metal1 +119700 96900 125400 119700 metal4 +119700 114000 125400 119700 metal4 +114000 114000 125400 119700 metal5 +114000 114000 119700 119700 metal4 +114000 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 119700 metal1 +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 125400 102600 metal3 +136800 91200 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_273_ +( +136800 79800 142500 85500 metal1 +136800 79800 142500 85500 metal2 +136800 79800 148200 85500 metal3 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal1 +) +_274_ +( +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +) +_275_ +( +142500 119700 148200 125400 metal1 +142500 119700 148200 125400 metal2 +142500 119700 148200 125400 metal3 +142500 114000 148200 125400 metal4 +142500 114000 148200 119700 metal3 +142500 114000 153900 119700 metal3 +148200 114000 153900 119700 metal3 +148200 108300 153900 119700 metal4 +148200 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +) +_276_ +( +136800 85500 142500 91200 metal1 +136800 85500 142500 91200 metal2 +136800 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_277_ +( +142500 91200 148200 96900 metal1 +142500 91200 148200 96900 metal2 +142500 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 96900 metal1 +142500 91200 148200 102600 metal2 +142500 96900 148200 102600 metal1 +) +_278_ +( +136800 91200 142500 96900 metal1 +136800 91200 142500 96900 metal2 +136800 91200 148200 96900 metal3 +142500 91200 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_279_ +( +142500 108300 148200 114000 metal1 +142500 108300 148200 114000 metal2 +142500 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +) +_280_ +( +148200 108300 153900 114000 metal1 +148200 108300 153900 119700 metal2 +148200 114000 153900 119700 metal1 +) +_281_ +( +131100 79800 136800 85500 metal1 +131100 74100 136800 85500 metal2 +131100 74100 136800 79800 metal2 +131100 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +) +_282_ +( +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +) +_283_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 148200 102600 metal3 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal1 +131100 102600 136800 108300 metal1 +131100 102600 136800 108300 metal2 +131100 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 96900 142500 108300 metal2 +) +_284_ +( +131100 96900 136800 102600 metal3 +131100 91200 136800 102600 metal4 +131100 91200 136800 96900 metal3 +131100 91200 136800 96900 metal2 +131100 91200 136800 96900 metal1 +125400 96900 131100 102600 metal1 +125400 96900 131100 102600 metal2 +125400 96900 136800 102600 metal3 +131100 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_285_ +( +131100 79800 136800 85500 metal1 +131100 79800 136800 85500 metal2 +) +_286_ +( +131100 74100 136800 79800 metal1 +131100 74100 136800 79800 metal2 +) +_287_ +( +91200 114000 96900 119700 metal1 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal3 +91200 114000 96900 119700 metal4 +91200 114000 131100 119700 metal5 +125400 114000 131100 119700 metal4 +125400 114000 131100 119700 metal3 +125400 114000 131100 119700 metal2 +125400 114000 131100 119700 metal1 +) +_288_ +( +125400 91200 131100 96900 metal1 +125400 91200 131100 102600 metal2 +125400 96900 131100 102600 metal1 +) +_289_ +( +119700 96900 125400 102600 metal1 +119700 96900 125400 102600 metal2 +119700 96900 131100 102600 metal3 +125400 96900 131100 102600 metal1 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal3 +125400 96900 131100 102600 metal4 +125400 96900 131100 102600 metal5 +125400 96900 131100 108300 metal6 +125400 102600 131100 108300 metal5 +125400 102600 131100 108300 metal4 +125400 102600 131100 108300 metal3 +125400 102600 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_290_ +( +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_291_ +( +125400 102600 131100 108300 metal1 +125400 102600 131100 114000 metal2 +125400 108300 131100 114000 metal1 +) +_292_ +( +125400 119700 131100 125400 metal1 +125400 114000 131100 125400 metal2 +125400 114000 131100 119700 metal1 +) +_293_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +) +_294_ +( +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 85500 96900 metal3 +79800 91200 85500 96900 metal2 +79800 91200 85500 96900 metal1 +) +_295_ +( +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +) +_296_ +( +125400 96900 131100 102600 metal1 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal3 +125400 96900 131100 108300 metal4 +125400 102600 131100 108300 metal3 +125400 102600 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_297_ +( +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 119700 102600 metal3 +114000 96900 119700 102600 metal4 +114000 96900 119700 102600 metal5 +114000 96900 119700 108300 metal6 +114000 102600 119700 108300 metal5 +114000 102600 136800 108300 metal5 +131100 102600 136800 108300 metal4 +131100 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +) +_298_ +( +74100 85500 79800 96900 metal4 +74100 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +74100 91200 79800 96900 metal1 +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 79800 91200 metal3 +74100 85500 79800 91200 metal4 +74100 85500 91200 91200 metal5 +85500 85500 91200 91200 metal4 +85500 85500 91200 91200 metal3 +85500 85500 91200 91200 metal2 +85500 85500 91200 91200 metal1 +85500 85500 91200 96900 metal2 +85500 91200 91200 96900 metal2 +85500 91200 119700 96900 metal3 +114000 91200 119700 96900 metal2 +114000 91200 119700 102600 metal2 +114000 96900 119700 102600 metal1 +) +_299_ +( +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal3 +68400 91200 74100 102600 metal4 +68400 96900 74100 102600 metal3 +68400 96900 79800 102600 metal3 +74100 96900 79800 102600 metal2 +74100 96900 79800 102600 metal1 +) +_300_ +( +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +) +_301_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +) +_302_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 79800 91200 metal3 +74100 74100 79800 91200 metal4 +74100 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +74100 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +) +_303_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +) +_304_ +( +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 79800 91200 metal3 +74100 85500 79800 91200 metal2 +74100 85500 79800 91200 metal1 +68400 79800 74100 91200 metal2 +68400 79800 74100 85500 metal1 +) +_305_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +) +_306_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal3 +62700 85500 68400 91200 metal4 +62700 85500 79800 91200 metal5 +74100 85500 79800 91200 metal5 +74100 79800 79800 91200 metal6 +74100 79800 79800 85500 metal5 +74100 79800 79800 85500 metal4 +74100 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_307_ +( +57000 74100 62700 79800 metal1 +57000 74100 62700 85500 metal2 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +) +_308_ +( +62700 51300 68400 57000 metal1 +62700 51300 68400 62700 metal2 +62700 57000 68400 62700 metal1 +) +_309_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal1 +) +_310_ +( +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal3 +68400 74100 74100 85500 metal4 +68400 74100 74100 79800 metal4 +68400 74100 79800 79800 metal5 +74100 74100 79800 79800 metal4 +74100 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +) +_311_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +74100 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +79800 74100 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_312_ +( +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 68400 79800 74100 metal2 +74100 68400 79800 74100 metal1 +) +_313_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 62700 metal2 +62700 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 74100 metal2 +68400 68400 74100 74100 metal1 +) +_314_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_315_ +( +114000 79800 119700 85500 metal1 +114000 79800 119700 85500 metal2 +) +_316_ +( +114000 74100 119700 79800 metal1 +114000 74100 119700 79800 metal2 +114000 74100 125400 79800 metal3 +119700 74100 125400 79800 metal2 +119700 74100 125400 79800 metal1 +) +_317_ +( +79800 74100 85500 79800 metal1 +79800 68400 85500 79800 metal2 +79800 68400 85500 74100 metal2 +79800 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +) +_318_ +( +85500 68400 91200 74100 metal2 +85500 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +85500 68400 91200 79800 metal2 +85500 74100 91200 79800 metal1 +85500 62700 91200 68400 metal1 +85500 62700 91200 74100 metal2 +) +_319_ +( +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +) +_320_ +( +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +) +_321_ +( +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +) +_322_ +( +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +) +_323_ +( +85500 85500 91200 91200 metal1 +85500 85500 91200 91200 metal2 +) +_324_ +( +85500 79800 91200 85500 metal1 +85500 79800 91200 85500 metal2 +) +_325_ +( +79800 79800 85500 85500 metal1 +79800 79800 85500 85500 metal2 +79800 79800 91200 85500 metal3 +85500 79800 91200 85500 metal2 +85500 79800 91200 85500 metal1 +) +_326_ +( +85500 74100 91200 79800 metal1 +85500 74100 91200 85500 metal2 +85500 79800 91200 85500 metal1 +) +_327_ +( +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +96900 45600 108300 51300 metal3 +102600 45600 108300 51300 metal2 +102600 45600 108300 51300 metal1 +91200 45600 96900 57000 metal4 +91200 45600 96900 51300 metal3 +91200 45600 102600 51300 metal3 +85500 79800 91200 85500 metal1 +85500 79800 91200 85500 metal2 +85500 79800 91200 85500 metal3 +85500 79800 91200 85500 metal4 +85500 79800 91200 85500 metal5 +85500 51300 91200 85500 metal6 +85500 51300 91200 57000 metal5 +85500 51300 96900 57000 metal5 +91200 51300 96900 57000 metal4 +91200 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 +91200 51300 96900 57000 metal1 +) +_328_ +( +102600 45600 108300 51300 metal1 +102600 39900 108300 51300 metal2 +102600 39900 108300 45600 metal1 +) +_329_ +( +79800 39900 85500 45600 metal1 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal3 +79800 39900 85500 45600 metal4 +79800 39900 108300 45600 metal5 +102600 39900 108300 45600 metal4 +102600 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +) +_330_ +( +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal3 +102600 39900 108300 51300 metal4 +102600 45600 108300 51300 metal3 +102600 45600 114000 51300 metal3 +108300 45600 114000 51300 metal2 +108300 45600 114000 51300 metal1 +) +_331_ +( +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +) +_332_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 102600 57000 metal3 +96900 51300 102600 57000 metal4 +96900 51300 102600 57000 metal5 +96900 45600 102600 57000 metal6 +96900 45600 102600 51300 metal5 +96900 45600 102600 51300 metal4 +96900 45600 102600 51300 metal3 +96900 45600 102600 51300 metal2 +96900 45600 102600 51300 metal1 +91200 39900 96900 45600 metal1 +91200 39900 96900 45600 metal2 +91200 39900 96900 45600 metal3 +91200 39900 96900 51300 metal4 +91200 45600 96900 51300 metal4 +91200 45600 102600 51300 metal5 +) +_333_ +( +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +) +_334_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_335_ +( +85500 39900 91200 45600 metal1 +85500 39900 91200 45600 metal2 +85500 39900 96900 45600 metal3 +91200 39900 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_336_ +( +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 96900 39900 metal3 +91200 34200 96900 39900 metal3 +91200 34200 96900 45600 metal4 +91200 39900 96900 45600 metal3 +91200 39900 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_337_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +85500 45600 96900 51300 metal3 +91200 45600 96900 51300 metal2 +91200 45600 96900 57000 metal2 +91200 51300 96900 57000 metal1 +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +) +_338_ +( +85500 51300 91200 57000 metal1 +85500 45600 91200 57000 metal2 +85500 45600 91200 51300 metal1 +) +_339_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +85500 45600 96900 51300 metal3 +91200 45600 96900 51300 metal2 +91200 39900 96900 51300 metal2 +91200 39900 96900 45600 metal1 +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +) +_340_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +) +_341_ +( +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 85500 51300 metal3 +79800 45600 85500 51300 metal4 +79800 45600 91200 51300 metal5 +85500 45600 91200 51300 metal4 +85500 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 45600 91200 51300 metal1 +85500 45600 91200 62700 metal4 +85500 57000 91200 62700 metal3 +85500 57000 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_342_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +68400 45600 74100 51300 metal3 +68400 39900 74100 51300 metal4 +68400 39900 74100 45600 metal3 +68400 39900 79800 45600 metal3 +74100 39900 79800 45600 metal2 +74100 39900 79800 45600 metal1 +) +_343_ +( +62700 51300 68400 57000 metal1 +62700 45600 68400 57000 metal2 +62700 45600 68400 51300 metal2 +62700 45600 74100 51300 metal3 +68400 45600 74100 51300 metal2 +68400 45600 74100 51300 metal1 +) +_344_ +( +68400 45600 74100 51300 metal1 +68400 39900 74100 51300 metal2 +68400 39900 74100 45600 metal1 +) +_345_ +( +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +) +_346_ +( +85500 51300 91200 57000 metal1 +85500 51300 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_347_ +( +96900 74100 102600 79800 metal1 +96900 74100 102600 79800 metal2 +96900 74100 102600 79800 metal3 +96900 74100 102600 79800 metal4 +96900 74100 108300 79800 metal5 +102600 74100 108300 79800 metal5 +102600 74100 108300 85500 metal6 +102600 79800 108300 85500 metal5 +102600 79800 108300 85500 metal4 +102600 79800 108300 85500 metal3 +102600 79800 108300 85500 metal2 +102600 79800 108300 85500 metal1 +) +_348_ +( +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal3 +108300 85500 114000 108300 metal4 +108300 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 102600 114000 119700 metal2 +108300 114000 114000 119700 metal2 +108300 114000 114000 119700 metal3 +108300 114000 114000 136800 metal4 +108300 131100 114000 136800 metal3 +108300 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 131100 119700 136800 metal1 +) +_349_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 114000 85500 metal3 +108300 79800 114000 85500 metal2 +108300 79800 114000 85500 metal1 +) +_350_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 108300 85500 metal3 +102600 79800 108300 91200 metal4 +102600 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_351_ +( +136800 136800 142500 142500 metal1 +136800 136800 142500 142500 metal2 +136800 136800 153900 142500 metal3 +148200 136800 153900 142500 metal2 +148200 136800 153900 142500 metal1 +) +_352_ +( +91200 91200 96900 96900 metal1 +91200 91200 96900 96900 metal2 +91200 91200 96900 96900 metal3 +91200 91200 96900 96900 metal4 +91200 91200 96900 96900 metal5 +91200 79800 96900 96900 metal6 +91200 79800 96900 85500 metal5 +91200 79800 102600 85500 metal5 +96900 79800 102600 85500 metal4 +96900 79800 102600 85500 metal3 +96900 79800 102600 85500 metal2 +96900 79800 102600 85500 metal1 +96900 79800 108300 85500 metal3 +102600 79800 108300 85500 metal2 +102600 68400 108300 85500 metal2 +102600 68400 108300 74100 metal1 +102600 57000 108300 74100 metal2 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal3 +102600 57000 108300 62700 metal4 +102600 57000 114000 62700 metal5 +74100 45600 79800 51300 metal1 +74100 45600 79800 51300 metal2 +74100 45600 79800 51300 metal3 +74100 45600 79800 51300 metal4 +74100 45600 79800 51300 metal5 +74100 45600 79800 62700 metal6 +74100 57000 79800 62700 metal5 +74100 57000 85500 62700 metal5 +79800 57000 85500 62700 metal4 +79800 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal3 +102600 39900 108300 45600 metal4 +102600 39900 114000 45600 metal5 +108300 39900 114000 45600 metal5 +108300 39900 114000 62700 metal6 +108300 57000 114000 62700 metal5 +108300 57000 114000 62700 metal4 +108300 57000 114000 62700 metal3 +108300 57000 114000 62700 metal2 +108300 57000 114000 62700 metal1 +79800 96900 85500 102600 metal1 +79800 96900 85500 102600 metal2 +79800 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 91200 96900 102600 metal2 +79800 57000 91200 62700 metal5 +85500 57000 91200 62700 metal4 +85500 57000 91200 62700 metal3 +85500 57000 108300 62700 metal3 +79800 57000 85500 68400 metal2 +79800 62700 85500 68400 metal1 +) +_353_ +( +148200 114000 153900 119700 metal5 +148200 114000 153900 142500 metal6 +148200 136800 153900 142500 metal5 +136800 136800 153900 142500 metal5 +136800 136800 142500 142500 metal4 +136800 136800 142500 142500 metal3 +136800 136800 142500 142500 metal2 +136800 136800 142500 142500 metal1 +85500 108300 91200 119700 metal2 +85500 114000 91200 119700 metal1 +148200 96900 159600 102600 metal3 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal1 +119700 136800 125400 142500 metal1 +119700 136800 125400 142500 metal2 +119700 136800 125400 142500 metal3 +119700 136800 125400 142500 metal4 +119700 136800 142500 142500 metal5 +148200 91200 153900 102600 metal2 +108300 142500 114000 148200 metal1 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 136800 119700 148200 metal2 +114000 136800 119700 142500 metal2 +114000 136800 119700 142500 metal3 +114000 136800 119700 142500 metal4 +114000 136800 125400 142500 metal5 +119700 91200 142500 96900 metal3 +136800 91200 142500 96900 metal3 +136800 91200 142500 96900 metal4 +136800 91200 153900 96900 metal5 +148200 91200 153900 96900 metal4 +148200 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 96900 metal1 +148200 96900 153900 102600 metal2 +148200 96900 153900 102600 metal3 +148200 96900 153900 102600 metal4 +148200 96900 153900 102600 metal5 +148200 96900 153900 119700 metal6 +57000 96900 62700 108300 metal2 +57000 102600 62700 108300 metal2 +57000 102600 74100 108300 metal3 +68400 102600 74100 108300 metal3 +68400 102600 74100 114000 metal4 +68400 108300 74100 114000 metal3 +68400 108300 91200 114000 metal3 +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 62700 102600 metal3 +57000 96900 62700 102600 metal4 +57000 96900 62700 102600 metal5 +57000 79800 62700 102600 metal6 +57000 79800 62700 85500 metal5 +57000 79800 62700 85500 metal4 +57000 79800 62700 85500 metal3 +57000 79800 62700 85500 metal2 +57000 79800 62700 85500 metal1 +119700 85500 125400 96900 metal4 +119700 85500 125400 91200 metal3 +119700 85500 125400 91200 metal2 +119700 85500 125400 91200 metal1 +85500 108300 91200 114000 metal2 +85500 108300 91200 114000 metal3 +85500 102600 91200 114000 metal4 +85500 102600 91200 108300 metal4 +85500 102600 96900 108300 metal5 +91200 102600 96900 108300 metal5 +91200 91200 96900 108300 metal6 +91200 91200 96900 96900 metal5 +91200 91200 96900 96900 metal4 +91200 91200 96900 96900 metal3 +91200 91200 96900 96900 metal2 +91200 91200 96900 96900 metal1 +91200 91200 125400 96900 metal5 +119700 91200 125400 96900 metal4 +119700 91200 125400 96900 metal3 +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal3 +136800 114000 142500 119700 metal4 +136800 114000 153900 119700 metal5 +) +_354_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +) +_355_ +( +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +) +_356_ +( +119700 142500 125400 148200 metal1 +119700 142500 125400 148200 metal2 +119700 142500 125400 148200 metal3 +119700 142500 125400 148200 metal4 +119700 142500 125400 148200 metal5 +119700 136800 125400 148200 metal6 +119700 136800 125400 142500 metal5 +119700 136800 125400 142500 metal4 +119700 136800 125400 142500 metal3 +119700 136800 125400 142500 metal2 +119700 136800 125400 142500 metal1 +) +_357_ +( +153900 91200 159600 96900 metal1 +153900 91200 159600 96900 metal2 +) +_358_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +) +_359_ +( +119700 85500 125400 91200 metal1 +119700 85500 125400 91200 metal2 +) +_360_ +( +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 148200 119700 metal3 +142500 114000 148200 119700 metal2 +142500 114000 148200 125400 metal2 +142500 119700 148200 125400 metal1 +) +_361_ +( +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +) +_362_ +( +57000 74100 62700 79800 metal1 +57000 74100 62700 79800 metal2 +57000 74100 62700 79800 metal3 +57000 74100 62700 91200 metal4 +57000 85500 62700 91200 metal3 +57000 85500 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_363_ +( +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 91200 68400 metal3 +85500 62700 91200 68400 metal2 +85500 62700 91200 68400 metal1 +) +_364_ +( +108300 62700 114000 68400 metal1 +108300 62700 114000 74100 metal2 +108300 68400 114000 74100 metal1 +) +_365_ +( +108300 57000 114000 62700 metal1 +108300 57000 114000 62700 metal2 +108300 57000 119700 62700 metal3 +114000 57000 119700 62700 metal2 +114000 57000 119700 68400 metal2 +114000 62700 119700 68400 metal1 +) +_366_ +( +108300 34200 114000 39900 metal1 +108300 34200 114000 39900 metal2 +108300 34200 114000 39900 metal3 +108300 34200 114000 45600 metal4 +108300 39900 114000 45600 metal3 +108300 39900 114000 45600 metal2 +108300 39900 114000 45600 metal1 +) +_367_ +( +74100 39900 79800 45600 metal1 +74100 39900 79800 51300 metal2 +74100 45600 79800 51300 metal1 +) +_368_ +( +96900 79800 102600 85500 metal1 +96900 79800 102600 85500 metal2 +) +_369_ +( +148200 136800 153900 142500 metal1 +148200 136800 153900 142500 metal2 +148200 136800 159600 142500 metal3 +153900 136800 159600 142500 metal2 +153900 136800 159600 142500 metal1 +) +_370_ +( +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +45600 62700 85500 68400 metal3 +45600 62700 51300 68400 metal3 +45600 62700 51300 68400 metal4 +45600 62700 51300 68400 metal5 +45600 62700 51300 182400 metal6 +45600 176700 51300 182400 metal5 +45600 176700 91200 182400 metal5 +85500 176700 91200 182400 metal4 +85500 176700 91200 182400 metal3 +85500 176700 125400 182400 metal3 +119700 176700 125400 182400 metal2 +119700 171000 125400 182400 metal2 +119700 171000 125400 176700 metal1 +) +_371_ +( +102600 22800 108300 28500 metal1 +102600 22800 108300 28500 metal2 +102600 22800 108300 28500 metal3 +102600 22800 108300 28500 metal4 +102600 22800 119700 28500 metal5 +114000 22800 119700 28500 metal5 +114000 22800 119700 68400 metal6 +114000 62700 119700 68400 metal5 +102600 62700 119700 68400 metal5 +102600 62700 108300 68400 metal4 +102600 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +102600 62700 108300 68400 metal1 +) +_372_ +( +114000 62700 119700 68400 metal1 +114000 62700 119700 68400 metal2 +114000 62700 119700 68400 metal3 +114000 62700 119700 68400 metal4 +114000 62700 125400 68400 metal5 +119700 62700 125400 68400 metal4 +119700 57000 125400 68400 metal4 +119700 57000 125400 62700 metal3 +119700 57000 159600 62700 metal3 +153900 57000 159600 62700 metal3 +153900 57000 159600 79800 metal4 +153900 74100 159600 79800 metal3 +153900 74100 188100 79800 metal3 +182400 74100 188100 79800 metal2 +182400 74100 188100 119700 metal2 +182400 114000 188100 119700 metal2 +176700 114000 188100 119700 metal3 +176700 114000 182400 119700 metal3 +176700 114000 182400 159600 metal4 +176700 153900 182400 159600 metal4 +153900 153900 182400 159600 metal5 +153900 153900 159600 159600 metal4 +153900 153900 159600 165300 metal4 +153900 159600 159600 165300 metal3 +119700 159600 159600 165300 metal3 +119700 159600 125400 165300 metal2 +119700 159600 125400 171000 metal2 +119700 165300 125400 171000 metal1 +) +_373_ +( +108300 34200 114000 39900 metal1 +108300 34200 114000 39900 metal2 +108300 34200 119700 39900 metal3 +114000 34200 119700 39900 metal2 +114000 34200 119700 39900 metal1 +) +_374_ +( +62700 34200 68400 39900 metal1 +62700 34200 68400 45600 metal2 +62700 39900 68400 45600 metal2 +62700 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 +68400 39900 74100 45600 metal1 +) +_375_ +( +22800 85500 28500 91200 metal1 +22800 85500 28500 91200 metal2 +22800 85500 28500 91200 metal3 +22800 74100 28500 91200 metal4 +22800 74100 28500 79800 metal4 +22800 74100 51300 79800 metal5 +45600 74100 51300 79800 metal5 +45600 74100 51300 85500 metal6 +45600 79800 51300 85500 metal5 +45600 79800 74100 85500 metal5 +68400 79800 74100 85500 metal4 +68400 79800 74100 85500 metal3 +68400 79800 91200 85500 metal3 +85500 79800 91200 85500 metal2 +85500 79800 91200 91200 metal2 +85500 85500 91200 91200 metal2 +85500 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_376_ +( +142500 131100 148200 136800 metal1 +142500 131100 148200 136800 metal2 +142500 131100 148200 136800 metal3 +142500 131100 148200 136800 metal4 +142500 131100 148200 136800 metal5 +142500 131100 148200 176700 metal6 +142500 171000 148200 176700 metal5 +142500 171000 153900 176700 metal5 +148200 171000 153900 176700 metal4 +148200 171000 153900 176700 metal3 +148200 171000 153900 176700 metal2 +148200 171000 153900 176700 metal1 +) +_377_ +( +108300 96900 114000 102600 metal1 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal3 +108300 96900 114000 102600 metal4 +108300 96900 119700 102600 metal5 +114000 96900 119700 102600 metal4 +114000 96900 119700 102600 metal3 +114000 96900 125400 102600 metal3 +119700 96900 125400 102600 metal3 +119700 96900 125400 102600 metal4 +119700 96900 148200 102600 metal5 +142500 96900 148200 102600 metal4 +142500 96900 148200 102600 metal3 +142500 96900 165300 102600 metal3 +159600 96900 165300 102600 metal2 +159600 91200 165300 102600 metal2 +159600 91200 165300 96900 metal2 +159600 91200 176700 96900 metal3 +171000 91200 176700 96900 metal2 +171000 91200 176700 96900 metal1 +) +_378_ +( +74100 142500 79800 148200 metal1 +74100 136800 79800 148200 metal2 +74100 136800 79800 142500 metal2 +74100 136800 96900 142500 metal3 +91200 136800 96900 142500 metal2 +91200 136800 96900 142500 metal1 +) +_379_ +( +131100 136800 136800 142500 metal1 +131100 136800 136800 142500 metal2 +131100 136800 136800 142500 metal3 +131100 136800 136800 148200 metal4 +131100 142500 136800 148200 metal3 +131100 142500 142500 148200 metal3 +136800 142500 142500 148200 metal2 +136800 142500 142500 148200 metal1 +) +_380_ +( +79800 22800 85500 28500 metal1 +79800 22800 85500 28500 metal2 +79800 22800 85500 28500 metal3 +79800 22800 85500 28500 metal4 +45600 22800 85500 28500 metal5 +45600 22800 51300 28500 metal4 +45600 22800 51300 51300 metal4 +45600 45600 51300 51300 metal3 +34200 45600 51300 51300 metal3 +34200 45600 39900 51300 metal3 +34200 45600 39900 119700 metal4 +34200 114000 39900 119700 metal4 +34200 114000 74100 119700 metal5 +68400 114000 74100 119700 metal4 +68400 114000 74100 119700 metal3 +68400 114000 91200 119700 metal3 +85500 114000 91200 119700 metal2 +85500 114000 91200 119700 metal1 +) +_381_ +( +34200 74100 39900 79800 metal1 +34200 74100 39900 79800 metal2 +28500 74100 39900 79800 metal3 +28500 74100 34200 79800 metal3 +28500 62700 34200 79800 metal4 +28500 62700 34200 68400 metal4 +28500 62700 51300 68400 metal5 +45600 62700 51300 68400 metal5 +45600 0 51300 68400 metal6 +45600 0 51300 5700 metal5 +45600 0 131100 5700 metal5 +125400 0 131100 5700 metal4 +125400 0 131100 17100 metal4 +125400 11400 131100 17100 metal3 +125400 11400 159600 17100 metal3 +153900 11400 159600 17100 metal2 +153900 11400 159600 79800 metal2 +153900 74100 159600 79800 metal2 +142500 74100 159600 79800 metal3 +142500 74100 148200 79800 metal3 +142500 74100 148200 79800 metal4 +142500 74100 148200 79800 metal5 +142500 74100 148200 85500 metal6 +142500 79800 148200 85500 metal5 +136800 79800 148200 85500 metal5 +136800 79800 142500 85500 metal4 +136800 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +) +_382_ +( +148200 119700 153900 125400 metal1 +148200 119700 153900 131100 metal2 +148200 125400 153900 131100 metal2 +148200 125400 176700 131100 metal3 +171000 125400 176700 131100 metal2 +171000 119700 176700 131100 metal2 +171000 119700 176700 125400 metal1 +) +_383_ +( +136800 74100 142500 79800 metal1 +136800 74100 142500 79800 metal2 +136800 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 68400 148200 79800 metal2 +142500 68400 148200 74100 metal1 +) +_384_ +( +85500 171000 91200 176700 metal1 +85500 171000 91200 176700 metal2 +85500 171000 91200 176700 metal3 +85500 171000 91200 176700 metal4 +85500 171000 91200 176700 metal5 +85500 114000 91200 176700 metal6 +85500 114000 91200 119700 metal5 +85500 114000 96900 119700 metal5 +91200 114000 96900 119700 metal4 +91200 114000 96900 119700 metal3 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal1 +) +_385_ +( +79800 91200 85500 96900 metal1 +79800 85500 85500 96900 metal2 +79800 85500 85500 91200 metal2 +79800 85500 91200 91200 metal3 +85500 85500 91200 91200 metal3 +85500 85500 91200 91200 metal4 +85500 85500 131100 91200 metal5 +125400 85500 131100 91200 metal4 +125400 85500 131100 91200 metal3 +125400 85500 136800 91200 metal3 +131100 85500 136800 91200 metal3 +131100 85500 136800 91200 metal4 +131100 85500 148200 91200 metal5 +142500 85500 148200 91200 metal4 +142500 85500 148200 91200 metal3 +142500 85500 176700 91200 metal3 +171000 85500 176700 91200 metal2 +171000 85500 176700 102600 metal2 +171000 96900 176700 102600 metal1 +) +_386_ +( +51300 108300 57000 114000 metal1 +51300 108300 57000 114000 metal2 +51300 108300 57000 114000 metal3 +51300 85500 57000 114000 metal4 +51300 85500 57000 91200 metal4 +51300 85500 68400 91200 metal5 +62700 85500 68400 91200 metal4 +62700 85500 68400 91200 metal3 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal1 +) +_387_ +( +57000 45600 62700 51300 metal1 +57000 45600 62700 57000 metal2 +57000 51300 62700 57000 metal2 +57000 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +) +_388_ +( +108300 171000 114000 176700 metal1 +108300 171000 114000 176700 metal2 +108300 171000 114000 176700 metal3 +108300 171000 114000 176700 metal4 +108300 171000 131100 176700 metal5 +125400 171000 131100 176700 metal5 +125400 119700 131100 176700 metal6 +125400 119700 131100 125400 metal5 +125400 119700 131100 125400 metal4 +125400 119700 131100 125400 metal3 +119700 119700 131100 125400 metal3 +119700 119700 125400 125400 metal3 +119700 119700 125400 125400 metal4 +119700 119700 125400 125400 metal5 +119700 96900 125400 125400 metal6 +119700 96900 125400 102600 metal5 +114000 96900 125400 102600 metal5 +114000 96900 119700 102600 metal5 +114000 85500 119700 102600 metal6 +114000 85500 119700 91200 metal5 +114000 85500 119700 91200 metal4 +114000 85500 119700 91200 metal3 +114000 85500 119700 91200 metal2 +114000 85500 119700 91200 metal1 +) +_389_ +( +22800 34200 28500 39900 metal1 +22800 34200 28500 39900 metal2 +22800 34200 85500 39900 metal3 +79800 34200 85500 39900 metal2 +79800 34200 85500 45600 metal2 +79800 39900 85500 45600 metal1 +) +_390_ +( +85500 28500 91200 34200 metal1 +85500 28500 91200 34200 metal2 +85500 28500 91200 34200 metal3 +85500 28500 91200 45600 metal4 +85500 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +) +_391_ +( +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +114000 142500 171000 148200 metal3 +165300 142500 171000 148200 metal2 +165300 142500 171000 153900 metal2 +165300 148200 171000 153900 metal1 +) +_392_ +( +39900 171000 45600 176700 metal1 +39900 171000 45600 176700 metal2 +11400 171000 45600 176700 metal3 +11400 171000 17100 176700 metal3 +11400 45600 17100 176700 metal4 +11400 45600 17100 51300 metal4 +11400 45600 57000 51300 metal5 +51300 45600 57000 51300 metal5 +51300 45600 57000 57000 metal6 +51300 51300 57000 57000 metal5 +51300 51300 68400 57000 metal5 +62700 51300 68400 57000 metal4 +62700 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +) +_393_ +( +114000 171000 119700 176700 metal1 +114000 171000 119700 176700 metal2 +114000 171000 119700 176700 metal3 +114000 131100 119700 176700 metal4 +114000 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 131100 119700 136800 metal1 +) +_394_ +( +22800 171000 28500 176700 metal1 +22800 153900 28500 176700 metal2 +22800 153900 28500 159600 metal2 +22800 153900 28500 159600 metal3 +22800 153900 28500 159600 metal4 +22800 153900 108300 159600 metal5 +102600 153900 108300 159600 metal4 +102600 153900 108300 159600 metal3 +102600 153900 119700 159600 metal3 +114000 153900 119700 159600 metal2 +114000 142500 119700 159600 metal2 +114000 142500 119700 148200 metal1 +) +_395_ +( +153900 91200 159600 96900 metal1 +153900 91200 159600 96900 metal2 +153900 91200 171000 96900 metal3 +165300 91200 171000 96900 metal2 +165300 91200 171000 102600 metal2 +165300 96900 171000 102600 metal1 +) +_396_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal3 +153900 85500 159600 102600 metal4 +153900 85500 159600 91200 metal4 +153900 85500 159600 91200 metal5 +153900 22800 159600 91200 metal6 +153900 22800 159600 28500 metal5 +153900 22800 171000 28500 metal5 +165300 22800 171000 28500 metal4 +165300 22800 171000 28500 metal3 +165300 22800 171000 28500 metal2 +165300 22800 171000 28500 metal1 +) +_397_ +( +22800 62700 28500 68400 metal1 +22800 45600 28500 68400 metal2 +22800 45600 28500 51300 metal2 +22800 45600 39900 51300 metal3 +34200 45600 39900 51300 metal2 +34200 17100 39900 51300 metal2 +34200 17100 39900 22800 metal2 +34200 17100 131100 22800 metal3 +125400 17100 131100 22800 metal3 +125400 17100 131100 68400 metal4 +125400 62700 131100 68400 metal4 +119700 62700 131100 68400 metal5 +119700 62700 125400 68400 metal5 +119700 62700 125400 91200 metal6 +119700 85500 125400 91200 metal5 +119700 85500 125400 91200 metal4 +119700 85500 125400 91200 metal3 +119700 85500 125400 91200 metal2 +119700 85500 125400 91200 metal1 +) +_398_ +( +142500 119700 148200 125400 metal1 +142500 119700 148200 125400 metal2 +142500 119700 148200 125400 metal3 +142500 119700 148200 125400 metal4 +142500 119700 153900 125400 metal5 +148200 119700 153900 125400 metal4 +148200 119700 153900 131100 metal4 +148200 125400 153900 131100 metal3 +148200 125400 176700 131100 metal3 +171000 125400 176700 131100 metal2 +171000 125400 176700 131100 metal1 +) +_399_ +( +45600 102600 51300 108300 metal1 +45600 96900 51300 108300 metal2 +45600 96900 51300 102600 metal2 +45600 96900 62700 102600 metal3 +57000 96900 62700 102600 metal2 +57000 96900 62700 102600 metal1 +) +_400_ +( +22800 74100 28500 79800 metal1 +22800 74100 28500 85500 metal2 +22800 79800 28500 85500 metal2 +22800 79800 57000 85500 metal3 +51300 79800 57000 85500 metal2 +51300 79800 57000 85500 metal1 +) +_401_ +( +51300 45600 57000 68400 metal4 +51300 45600 57000 51300 metal3 +51300 45600 68400 51300 metal3 +62700 45600 68400 51300 metal2 +62700 39900 68400 51300 metal2 +62700 39900 68400 45600 metal2 +62700 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 +68400 39900 74100 45600 metal1 +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 57000 85500 metal3 +51300 62700 57000 85500 metal4 +79800 62700 85500 79800 metal4 +79800 74100 85500 79800 metal4 +79800 74100 91200 79800 metal5 +85500 74100 91200 79800 metal5 +85500 74100 91200 85500 metal6 +85500 79800 91200 85500 metal5 +79800 102600 85500 108300 metal1 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal3 +79800 102600 85500 108300 metal4 +79800 102600 91200 108300 metal5 +85500 102600 91200 108300 metal5 +85500 79800 91200 108300 metal6 +108300 62700 114000 68400 metal1 +108300 62700 114000 68400 metal2 +108300 62700 114000 68400 metal3 +108300 62700 114000 68400 metal4 +108300 62700 114000 68400 metal5 +108300 62700 114000 85500 metal6 +108300 79800 114000 85500 metal5 +108300 45600 114000 68400 metal4 +108300 45600 114000 51300 metal4 +108300 45600 114000 51300 metal5 +108300 34200 114000 51300 metal6 +108300 34200 114000 39900 metal5 +108300 34200 114000 39900 metal4 +108300 34200 114000 39900 metal3 +108300 34200 114000 39900 metal2 +108300 34200 114000 39900 metal1 +102600 62700 114000 68400 metal3 +102600 62700 108300 68400 metal2 +102600 62700 108300 68400 metal1 +91200 79800 102600 85500 metal3 +96900 79800 102600 85500 metal3 +96900 79800 102600 85500 metal4 +96900 79800 114000 85500 metal5 +51300 62700 57000 68400 metal4 +51300 62700 85500 68400 metal5 +79800 62700 85500 68400 metal4 +79800 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +51300 79800 57000 91200 metal4 +51300 85500 57000 91200 metal3 +51300 85500 57000 91200 metal2 +51300 85500 57000 102600 metal2 +51300 96900 57000 102600 metal1 +108300 79800 114000 96900 metal6 +108300 91200 114000 96900 metal5 +108300 91200 114000 96900 metal4 +108300 91200 114000 96900 metal3 +108300 91200 114000 96900 metal2 +108300 91200 114000 96900 metal1 +85500 79800 96900 85500 metal5 +91200 79800 96900 85500 metal4 +91200 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_402_ +( +74100 119700 79800 131100 metal2 +74100 125400 79800 131100 metal2 +74100 125400 85500 131100 metal3 +79800 125400 85500 131100 metal2 +79800 125400 85500 131100 metal1 +68400 108300 74100 114000 metal1 +68400 108300 74100 114000 metal2 +68400 108300 74100 114000 metal3 +68400 108300 74100 125400 metal4 +68400 119700 74100 125400 metal3 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +) +_403_ +( +68400 108300 74100 114000 metal1 +68400 108300 74100 114000 metal2 +62700 108300 74100 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal3 +68400 114000 74100 125400 metal4 +68400 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +68400 108300 74100 119700 metal2 +) +_404_ +( +96900 131100 102600 136800 metal3 +96900 131100 102600 136800 metal4 +96900 131100 102600 136800 metal5 +96900 102600 102600 136800 metal6 +96900 102600 102600 108300 metal5 +96900 102600 102600 108300 metal4 +96900 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal3 +96900 131100 102600 142500 metal4 +96900 131100 108300 136800 metal3 +102600 131100 108300 136800 metal2 +102600 131100 108300 136800 metal1 +) +_405_ +( +45600 74100 51300 79800 metal1 +45600 74100 51300 79800 metal2 +45600 74100 51300 79800 metal3 +45600 74100 51300 79800 metal4 +45600 74100 74100 79800 metal5 +68400 74100 74100 79800 metal4 +68400 68400 74100 79800 metal4 +68400 68400 74100 74100 metal3 +68400 68400 74100 74100 metal2 +68400 68400 74100 74100 metal1 +) +_406_ +( +119700 68400 125400 85500 metal4 +119700 79800 125400 85500 metal3 +119700 79800 125400 85500 metal2 +119700 79800 125400 85500 metal1 +119700 68400 131100 74100 metal3 +125400 68400 131100 74100 metal2 +125400 68400 131100 74100 metal1 +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal3 +96900 68400 102600 74100 metal4 +96900 68400 125400 74100 metal5 +119700 68400 125400 74100 metal4 +119700 68400 125400 74100 metal3 +) +_407_ +( +102600 45600 108300 51300 metal1 +102600 45600 108300 51300 metal2 +102600 45600 114000 51300 metal3 +108300 45600 114000 51300 metal3 +108300 39900 114000 51300 metal4 +108300 39900 114000 45600 metal4 +108300 39900 119700 45600 metal5 +114000 39900 119700 45600 metal4 +114000 34200 119700 45600 metal4 +114000 34200 119700 39900 metal3 +114000 34200 119700 39900 metal2 +114000 34200 119700 39900 metal1 +) +_408_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 102600 39900 metal3 +96900 22800 102600 39900 metal2 +96900 22800 102600 28500 metal1 +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +96900 39900 102600 45600 metal3 +96900 34200 102600 45600 metal4 +96900 34200 102600 39900 metal3 +96900 34200 102600 39900 metal2 +) +_409_ +( +74100 39900 79800 45600 metal1 +74100 39900 79800 45600 metal2 +74100 39900 79800 45600 metal3 +74100 39900 79800 45600 metal4 +74100 39900 79800 45600 metal5 +74100 34200 79800 45600 metal6 +74100 34200 79800 39900 metal5 +74100 34200 79800 39900 metal4 +74100 34200 79800 39900 metal3 +74100 34200 91200 39900 metal3 +85500 34200 91200 39900 metal2 +85500 34200 91200 39900 metal3 +85500 34200 91200 39900 metal4 +85500 34200 91200 39900 metal5 +85500 28500 91200 39900 metal6 +85500 28500 91200 34200 metal5 +85500 28500 102600 34200 metal5 +96900 28500 102600 34200 metal4 +96900 28500 102600 39900 metal4 +96900 34200 102600 39900 metal4 +96900 34200 125400 39900 metal5 +119700 34200 125400 39900 metal4 +119700 34200 125400 45600 metal4 +119700 39900 125400 45600 metal3 +119700 39900 131100 45600 metal3 +125400 39900 131100 45600 metal2 +125400 39900 131100 45600 metal1 +85500 34200 91200 45600 metal2 +85500 39900 91200 45600 metal1 +) +_410_ +( +91200 57000 96900 68400 metal4 +91200 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 79800 metal2 +91200 74100 96900 79800 metal1 +85500 22800 91200 28500 metal1 +85500 22800 91200 28500 metal2 +85500 22800 91200 28500 metal3 +85500 22800 91200 28500 metal4 +85500 22800 96900 28500 metal5 +91200 22800 96900 28500 metal5 +91200 22800 96900 62700 metal6 +91200 57000 96900 62700 metal5 +91200 57000 96900 62700 metal4 +91200 57000 96900 62700 metal3 +91200 57000 96900 62700 metal2 +91200 57000 96900 62700 metal1 +) +_411_ +( +96900 119700 102600 125400 metal1 +96900 119700 102600 131100 metal2 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 96900 142500 metal3 +91200 125400 96900 142500 metal4 +91200 125400 96900 131100 metal3 +91200 125400 102600 131100 metal3 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal1 +) +_412_ +( +96900 125400 108300 131100 metal3 +102600 125400 108300 131100 metal2 +102600 125400 108300 131100 metal1 +79800 131100 85500 136800 metal1 +79800 131100 85500 136800 metal2 +79800 131100 85500 136800 metal3 +79800 125400 85500 136800 metal4 +79800 125400 85500 131100 metal4 +79800 125400 102600 131100 metal5 +96900 125400 102600 131100 metal4 +96900 125400 102600 131100 metal3 +96900 125400 102600 136800 metal4 +96900 131100 102600 136800 metal3 +96900 131100 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_413_ +( +125400 125400 131100 131100 metal1 +125400 125400 131100 131100 metal2 +125400 125400 136800 131100 metal3 +131100 125400 136800 131100 metal2 +131100 125400 136800 131100 metal1 +131100 125400 142500 131100 metal3 +136800 125400 142500 131100 metal2 +136800 119700 142500 131100 metal2 +136800 119700 142500 125400 metal2 +136800 119700 153900 125400 metal3 +148200 119700 153900 125400 metal2 +148200 119700 153900 125400 metal1 +) +_414_ +( +136800 85500 142500 91200 metal1 +136800 79800 142500 91200 metal2 +136800 79800 142500 85500 metal1 +131100 62700 136800 68400 metal1 +131100 62700 136800 68400 metal2 +131100 62700 142500 68400 metal3 +136800 62700 142500 68400 metal2 +136800 62700 142500 85500 metal2 +) +_415_ +( +148200 91200 153900 96900 metal3 +148200 91200 153900 96900 metal4 +148200 91200 153900 96900 metal5 +148200 91200 153900 108300 metal6 +148200 102600 153900 108300 metal5 +142500 102600 153900 108300 metal5 +142500 102600 148200 108300 metal4 +142500 102600 148200 114000 metal4 +142500 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +148200 91200 165300 96900 metal3 +159600 91200 165300 96900 metal2 +159600 91200 165300 96900 metal1 +142500 91200 148200 96900 metal1 +142500 91200 148200 96900 metal2 +142500 91200 153900 96900 metal3 +) +_416_ +( +131100 91200 136800 96900 metal1 +131100 91200 136800 96900 metal2 +131100 91200 136800 96900 metal3 +131100 79800 136800 96900 metal4 +131100 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 136800 79800 metal3 +131100 74100 136800 79800 metal3 +131100 74100 136800 85500 metal4 +) +_417_ +( +125400 119700 131100 125400 metal1 +125400 119700 131100 125400 metal2 +125400 119700 131100 125400 metal3 +125400 119700 131100 125400 metal4 +125400 119700 131100 125400 metal5 +125400 108300 131100 125400 metal6 +125400 108300 131100 114000 metal5 +125400 108300 131100 114000 metal4 +125400 108300 131100 114000 metal3 +125400 108300 131100 114000 metal2 +125400 108300 131100 114000 metal1 +125400 119700 159600 125400 metal3 +153900 119700 159600 125400 metal2 +153900 119700 159600 125400 metal1 +) +_418_ +( +74100 91200 79800 96900 metal1 +74100 91200 79800 102600 metal2 +68400 102600 74100 108300 metal1 +68400 96900 74100 108300 metal2 +68400 96900 74100 102600 metal2 +68400 96900 79800 102600 metal3 +74100 96900 79800 102600 metal2 +74100 96900 79800 102600 metal1 +) +_419_ +( +74100 85500 79800 91200 metal1 +74100 79800 79800 91200 metal2 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_420_ +( +57000 125400 62700 131100 metal1 +57000 125400 62700 131100 metal2 +57000 125400 68400 131100 metal3 +62700 125400 68400 131100 metal2 +62700 125400 74100 131100 metal3 +68400 125400 74100 131100 metal2 +68400 119700 74100 131100 metal2 +68400 119700 74100 125400 metal1 +62700 119700 68400 131100 metal2 +62700 119700 68400 125400 metal1 +) +_421_ +( +62700 119700 68400 131100 metal4 +62700 125400 68400 131100 metal3 +62700 125400 74100 131100 metal3 +68400 125400 74100 131100 metal3 +68400 119700 74100 131100 metal4 +68400 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 119700 74100 125400 metal1 +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 68400 125400 metal3 +62700 119700 68400 125400 metal4 +62700 119700 68400 125400 metal5 +62700 108300 68400 125400 metal6 +62700 108300 68400 114000 metal5 +62700 108300 68400 114000 metal4 +62700 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +34200 125400 68400 131100 metal3 +34200 125400 39900 131100 metal2 +34200 74100 39900 131100 metal2 +34200 74100 39900 79800 metal2 +34200 74100 51300 79800 metal3 +45600 74100 51300 79800 metal3 +45600 57000 51300 79800 metal4 +45600 57000 51300 62700 metal4 +45600 57000 74100 62700 metal5 +68400 57000 74100 62700 metal4 +68400 57000 74100 62700 metal3 +68400 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 +74100 57000 79800 62700 metal1 +) +clk +( +57000 102600 62700 114000 metal2 +45600 91200 51300 96900 metal3 +45600 91200 51300 108300 metal4 +45600 102600 51300 108300 metal3 +45600 102600 62700 108300 metal3 +57000 102600 62700 108300 metal2 +57000 102600 62700 108300 metal1 +57000 114000 62700 119700 metal1 +57000 114000 62700 119700 metal2 +57000 114000 62700 119700 metal3 +57000 114000 62700 119700 metal4 +57000 114000 62700 119700 metal5 +57000 114000 62700 142500 metal6 +57000 136800 62700 142500 metal5 +57000 136800 74100 142500 metal5 +68400 136800 74100 142500 metal4 +131100 119700 142500 125400 metal3 +136800 119700 142500 125400 metal2 +136800 114000 142500 125400 metal2 +136800 114000 142500 119700 metal1 +85500 142500 91200 159600 metal2 +85500 153900 91200 159600 metal2 +85500 153900 108300 159600 metal3 +91200 176700 96900 201600 metal6 +91200 176700 96900 182400 metal5 +91200 176700 108300 182400 metal5 +102600 176700 108300 182400 metal4 +102600 159600 108300 182400 metal4 +102600 159600 108300 165300 metal3 +148200 85500 153900 91200 metal1 +148200 85500 153900 91200 metal2 +148200 85500 153900 91200 metal3 +148200 85500 153900 91200 metal4 +148200 85500 159600 91200 metal5 +153900 85500 159600 91200 metal5 +153900 85500 159600 108300 metal6 +153900 102600 159600 108300 metal5 +153900 102600 159600 108300 metal4 +153900 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +153900 102600 159600 108300 metal1 +148200 131100 159600 136800 metal3 +153900 131100 159600 136800 metal2 +153900 114000 159600 136800 metal2 +108300 68400 119700 74100 metal3 +114000 68400 119700 74100 metal3 +114000 62700 119700 74100 metal4 +114000 62700 119700 68400 metal3 +131100 131100 136800 136800 metal5 +131100 119700 136800 136800 metal6 +131100 119700 136800 125400 metal5 +131100 119700 136800 125400 metal4 +131100 119700 136800 125400 metal3 +131100 119700 136800 125400 metal2 +131100 119700 136800 125400 metal1 +57000 108300 62700 114000 metal2 +57000 108300 62700 114000 metal3 +57000 108300 62700 114000 metal4 +57000 108300 68400 114000 metal5 +45600 85500 51300 96900 metal4 +45600 85500 51300 91200 metal3 +57000 62700 62700 79800 metal2 +57000 62700 62700 68400 metal1 +114000 51300 119700 57000 metal1 +114000 51300 119700 57000 metal2 +114000 51300 119700 57000 metal3 +114000 51300 119700 68400 metal4 +68400 51300 74100 62700 metal2 +68400 51300 74100 57000 metal1 +85500 28500 91200 34200 metal1 +85500 28500 91200 34200 metal2 +85500 28500 108300 34200 metal3 +102600 28500 108300 34200 metal2 +102600 28500 108300 34200 metal1 +114000 45600 119700 51300 metal1 +114000 45600 119700 51300 metal2 +114000 45600 125400 51300 metal3 +119700 45600 125400 51300 metal2 +119700 28500 125400 51300 metal2 +119700 28500 125400 34200 metal2 +102600 28500 125400 34200 metal3 +131100 131100 142500 136800 metal5 +136800 131100 142500 136800 metal4 +136800 131100 142500 136800 metal3 +136800 131100 142500 136800 metal2 +136800 131100 142500 136800 metal1 +85500 142500 91200 148200 metal2 +68400 142500 91200 148200 metal3 +68400 142500 74100 148200 metal3 +68400 136800 74100 148200 metal4 +119700 136800 125400 142500 metal1 +119700 136800 125400 153900 metal2 +102600 153900 108300 165300 metal4 +102600 153900 108300 159600 metal3 +102600 153900 108300 159600 metal2 +136800 131100 153900 136800 metal5 +148200 131100 153900 136800 metal4 +148200 131100 153900 136800 metal3 +148200 131100 153900 136800 metal2 +148200 131100 153900 136800 metal1 +153900 114000 159600 119700 metal1 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal3 +153900 114000 159600 119700 metal4 +153900 114000 159600 119700 metal5 +153900 102600 159600 119700 metal6 +108300 74100 114000 79800 metal3 +108300 68400 114000 79800 metal4 +108300 68400 114000 74100 metal3 +108300 68400 114000 74100 metal2 +108300 68400 114000 74100 metal1 +148200 74100 153900 91200 metal4 +148200 74100 153900 79800 metal3 +148200 74100 153900 79800 metal2 +148200 74100 153900 79800 metal1 +62700 108300 68400 114000 metal5 +62700 96900 68400 114000 metal6 +62700 96900 68400 102600 metal5 +62700 96900 68400 102600 metal4 +62700 96900 68400 102600 metal3 +62700 96900 68400 102600 metal2 +62700 96900 68400 102600 metal1 +45600 74100 51300 91200 metal4 +45600 74100 51300 79800 metal3 +45600 74100 62700 79800 metal3 +57000 74100 62700 79800 metal2 +57000 74100 62700 79800 metal1 +57000 57000 62700 68400 metal2 +57000 57000 62700 62700 metal2 +57000 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 62700 metal1 +131100 62700 136800 68400 metal2 +131100 62700 153900 68400 metal3 +148200 62700 153900 68400 metal2 +148200 62700 153900 79800 metal2 +108300 74100 114000 91200 metal4 +108300 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +74100 28500 91200 34200 metal3 +74100 28500 79800 34200 metal2 +74100 28500 79800 39900 metal2 +74100 34200 79800 39900 metal1 +114000 45600 119700 57000 metal2 +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 114000 79800 metal3 +102600 148200 108300 153900 metal1 +102600 148200 108300 153900 metal2 +102600 148200 108300 153900 metal3 +102600 142500 108300 153900 metal4 +102600 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal1 +131100 142500 136800 148200 metal1 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal3 +131100 142500 136800 148200 metal4 +131100 142500 136800 148200 metal5 +131100 131100 136800 148200 metal6 +131100 62700 136800 74100 metal2 +102600 148200 108300 159600 metal2 +62700 108300 79800 114000 metal5 +74100 108300 79800 114000 metal4 +74100 108300 79800 114000 metal3 +74100 108300 79800 114000 metal2 +74100 108300 79800 114000 metal1 +57000 108300 62700 119700 metal4 +114000 62700 125400 68400 metal3 +119700 62700 125400 68400 metal2 +119700 62700 125400 68400 metal1 +45600 85500 57000 91200 metal3 +51300 85500 57000 91200 metal2 +51300 85500 57000 91200 metal1 +131100 68400 136800 74100 metal1 +131100 68400 136800 74100 metal2 +131100 68400 136800 74100 metal3 +131100 68400 136800 74100 metal4 +125400 68400 136800 74100 metal5 +125400 68400 131100 74100 metal5 +125400 68400 131100 91200 metal6 +125400 85500 131100 91200 metal5 +125400 85500 131100 91200 metal4 +125400 85500 131100 91200 metal3 +125400 85500 131100 91200 metal2 +125400 85500 131100 91200 metal1 +85500 131100 91200 148200 metal2 +85500 131100 91200 136800 metal1 +119700 62700 136800 68400 metal3 +68400 125400 74100 142500 metal4 +68400 125400 74100 131100 metal4 +68400 125400 85500 131100 metal5 +79800 125400 85500 131100 metal4 +79800 125400 85500 131100 metal3 +79800 125400 91200 131100 metal3 +85500 125400 91200 131100 metal3 +85500 119700 91200 131100 metal4 +85500 119700 91200 125400 metal3 +85500 119700 91200 125400 metal2 +85500 119700 91200 125400 metal1 +102600 159600 125400 165300 metal3 +119700 159600 125400 165300 metal2 +119700 148200 125400 165300 metal2 +119700 148200 125400 153900 metal2 +119700 148200 136800 153900 metal3 +131100 148200 136800 153900 metal2 +131100 142500 136800 153900 metal2 +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +45600 91200 57000 96900 metal3 +) +ctrl.state.out\[1\] +( +57000 114000 62700 119700 metal1 +57000 108300 62700 119700 metal2 +57000 108300 62700 114000 metal1 +) +ctrl.state.out\[2\] +( +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +) +dpath.a_lt_b$in0\[0\] +( +148200 131100 153900 136800 metal1 +148200 131100 153900 136800 metal2 +148200 131100 159600 136800 metal3 +153900 131100 159600 136800 metal2 +153900 131100 159600 136800 metal1 +) +dpath.a_lt_b$in0\[10\] +( +62700 62700 68400 68400 metal1 +62700 62700 68400 68400 metal2 +) +dpath.a_lt_b$in0\[11\] +( +119700 62700 125400 68400 metal1 +119700 62700 125400 68400 metal2 +119700 62700 131100 68400 metal3 +125400 62700 131100 68400 metal2 +125400 62700 131100 68400 metal1 +) +dpath.a_lt_b$in0\[12\] +( +114000 45600 119700 51300 metal1 +114000 45600 119700 51300 metal2 +114000 45600 125400 51300 metal3 +119700 45600 125400 51300 metal2 +119700 45600 125400 51300 metal1 +) +dpath.a_lt_b$in0\[13\] +( +91200 28500 96900 34200 metal1 +91200 28500 96900 39900 metal2 +91200 34200 96900 39900 metal1 +) +dpath.a_lt_b$in0\[14\] +( +74100 34200 79800 39900 metal1 +74100 34200 79800 45600 metal2 +74100 39900 79800 45600 metal1 +) +dpath.a_lt_b$in0\[15\] +( +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +) +dpath.a_lt_b$in0\[1\] +( +85500 131100 91200 136800 metal1 +85500 125400 91200 136800 metal2 +85500 125400 91200 131100 metal1 +) +dpath.a_lt_b$in0\[2\] +( +102600 148200 108300 153900 metal1 +102600 142500 108300 153900 metal2 +102600 142500 108300 148200 metal1 +) +dpath.a_lt_b$in0\[3\] +( +125400 142500 131100 148200 metal1 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal1 +) +dpath.a_lt_b$in0\[4\] +( +153900 74100 159600 79800 metal1 +153900 74100 159600 85500 metal2 +153900 79800 159600 85500 metal1 +) +dpath.a_lt_b$in0\[5\] +( +153900 114000 159600 119700 metal1 +153900 114000 159600 119700 metal2 +) +dpath.a_lt_b$in0\[6\] +( +131100 74100 136800 79800 metal1 +131100 74100 136800 79800 metal2 +131100 74100 136800 79800 metal3 +131100 68400 136800 79800 metal4 +131100 68400 136800 74100 metal3 +131100 68400 142500 74100 metal3 +136800 68400 142500 74100 metal2 +136800 68400 142500 74100 metal1 +) +dpath.a_lt_b$in0\[7\] +( +136800 119700 142500 125400 metal1 +136800 119700 142500 125400 metal2 +) +dpath.a_lt_b$in0\[8\] +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +51300 91200 62700 96900 metal3 +57000 91200 62700 96900 metal2 +57000 91200 62700 96900 metal1 +) +dpath.a_lt_b$in0\[9\] +( +57000 74100 62700 79800 metal1 +57000 74100 62700 79800 metal2 +57000 74100 68400 79800 metal3 +62700 74100 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +dpath.a_lt_b$in1\[0\] +( +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +) +dpath.a_lt_b$in1\[10\] +( +74100 57000 79800 62700 metal1 +74100 57000 79800 68400 metal2 +74100 62700 79800 68400 metal1 +) +dpath.a_lt_b$in1\[11\] +( +108300 74100 114000 79800 metal1 +108300 74100 114000 79800 metal2 +108300 74100 119700 79800 metal3 +114000 74100 119700 79800 metal3 +114000 68400 119700 79800 metal4 +114000 68400 119700 74100 metal3 +114000 68400 119700 74100 metal2 +114000 68400 119700 74100 metal1 +) +dpath.a_lt_b$in1\[12\] +( +114000 57000 119700 62700 metal1 +114000 57000 119700 62700 metal2 +114000 57000 125400 62700 metal3 +119700 57000 125400 62700 metal2 +119700 51300 125400 62700 metal2 +119700 51300 125400 57000 metal1 +) +dpath.a_lt_b$in1\[13\] +( +102600 28500 108300 34200 metal1 +102600 28500 108300 39900 metal2 +102600 34200 108300 39900 metal1 +) +dpath.a_lt_b$in1\[14\] +( +74100 51300 79800 57000 metal1 +74100 51300 79800 57000 metal2 +) +dpath.a_lt_b$in1\[15\] +( +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +108300 74100 114000 79800 metal1 +) +dpath.a_lt_b$in1\[1\] +( +91200 119700 96900 125400 metal1 +91200 119700 96900 125400 metal2 +) +dpath.a_lt_b$in1\[2\] +( +108300 142500 114000 148200 metal1 +108300 136800 114000 148200 metal2 +108300 136800 114000 142500 metal1 +) +dpath.a_lt_b$in1\[3\] +( +119700 131100 125400 136800 metal1 +119700 131100 125400 136800 metal2 +119700 131100 125400 136800 metal3 +119700 131100 125400 136800 metal4 +119700 131100 125400 136800 metal5 +119700 131100 125400 142500 metal6 +119700 136800 125400 142500 metal5 +119700 136800 131100 142500 metal5 +125400 136800 131100 142500 metal4 +125400 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +) +dpath.a_lt_b$in1\[4\] +( +153900 79800 159600 85500 metal1 +153900 79800 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +dpath.a_lt_b$in1\[5\] +( +153900 108300 159600 114000 metal1 +153900 108300 159600 114000 metal2 +153900 108300 165300 114000 metal3 +159600 108300 165300 114000 metal3 +159600 102600 165300 114000 metal4 +159600 102600 165300 108300 metal3 +159600 102600 165300 108300 metal2 +159600 102600 165300 108300 metal1 +) +dpath.a_lt_b$in1\[6\] +( +125400 79800 131100 85500 metal1 +125400 79800 131100 85500 metal2 +125400 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 91200 metal2 +131100 85500 136800 91200 metal1 +) +dpath.a_lt_b$in1\[7\] +( +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 148200 119700 metal3 +142500 114000 148200 119700 metal3 +142500 108300 148200 119700 metal4 +142500 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +) +dpath.a_lt_b$in1\[8\] +( +68400 96900 74100 102600 metal1 +68400 96900 74100 102600 metal2 +) +dpath.a_lt_b$in1\[9\] +( +57000 79800 62700 85500 metal1 +57000 79800 62700 85500 metal2 +) +net1 +( +114000 171000 119700 176700 metal1 +114000 171000 119700 182400 metal2 +114000 176700 119700 182400 metal2 +114000 176700 171000 182400 metal3 +165300 176700 171000 182400 metal2 +165300 176700 171000 182400 metal1 +) +net10 +( +142500 68400 148200 74100 metal1 +142500 45600 148200 74100 metal2 +142500 45600 148200 51300 metal2 +142500 45600 182400 51300 metal3 +176700 45600 182400 51300 metal2 +176700 22800 182400 51300 metal2 +176700 22800 182400 28500 metal2 +171000 22800 182400 28500 metal3 +171000 22800 176700 28500 metal2 +171000 22800 176700 28500 metal1 +) +net11 +( +171000 119700 176700 125400 metal1 +171000 119700 176700 125400 metal2 +171000 119700 182400 125400 metal3 +176700 119700 182400 125400 metal2 +176700 119700 182400 131100 metal2 +176700 125400 182400 131100 metal1 +) +net12 +( +28500 22800 34200 28500 metal1 +28500 22800 34200 51300 metal2 +28500 45600 34200 51300 metal2 +28500 45600 39900 51300 metal3 +34200 45600 39900 51300 metal2 +34200 45600 39900 79800 metal2 +34200 74100 39900 79800 metal1 +) +net13 +( +136800 176700 142500 182400 metal1 +136800 176700 142500 182400 metal2 +131100 176700 142500 182400 metal3 +131100 176700 136800 182400 metal2 +131100 148200 136800 182400 metal2 +131100 148200 136800 153900 metal2 +131100 148200 142500 153900 metal3 +136800 148200 142500 153900 metal2 +136800 142500 142500 153900 metal2 +136800 142500 142500 148200 metal1 +) +net14 +( +62700 176700 68400 182400 metal1 +62700 142500 68400 182400 metal2 +62700 142500 68400 148200 metal2 +62700 142500 74100 148200 metal3 +68400 142500 74100 148200 metal2 +68400 142500 74100 148200 metal1 +) +net15 +( +171000 91200 176700 96900 metal1 +171000 91200 176700 96900 metal2 +171000 91200 182400 96900 metal3 +176700 91200 182400 96900 metal2 +176700 79800 182400 96900 metal2 +176700 79800 182400 85500 metal1 +) +net16 +( +148200 171000 153900 176700 metal1 +148200 171000 153900 176700 metal2 +148200 171000 159600 176700 metal3 +153900 171000 159600 176700 metal2 +153900 171000 159600 182400 metal2 +153900 176700 159600 182400 metal1 +) +net17 +( +17100 85500 22800 91200 metal1 +17100 85500 22800 91200 metal2 +17100 85500 28500 91200 metal3 +22800 85500 28500 91200 metal3 +22800 85500 28500 182400 metal4 +22800 176700 28500 182400 metal3 +22800 176700 28500 182400 metal2 +22800 176700 28500 182400 metal1 +) +net18 +( +39900 22800 45600 28500 metal1 +39900 22800 45600 28500 metal2 +39900 22800 51300 28500 metal3 +45600 22800 51300 28500 metal2 +45600 22800 51300 34200 metal2 +45600 28500 51300 34200 metal2 +45600 28500 68400 34200 metal3 +62700 28500 68400 34200 metal2 +62700 28500 68400 39900 metal2 +62700 34200 68400 39900 metal1 +) +net19 +( +114000 34200 119700 39900 metal1 +114000 34200 119700 39900 metal2 +114000 34200 153900 39900 metal3 +148200 34200 153900 39900 metal2 +148200 22800 153900 39900 metal2 +148200 22800 153900 28500 metal1 +) +net2 +( +34200 176700 39900 182400 metal1 +34200 176700 39900 182400 metal2 +34200 176700 51300 182400 metal3 +45600 176700 51300 182400 metal2 +45600 171000 51300 182400 metal2 +45600 171000 51300 176700 metal2 +39900 171000 51300 176700 metal3 +39900 171000 45600 176700 metal2 +39900 171000 45600 176700 metal1 +) +net20 +( +114000 165300 119700 171000 metal1 +114000 153900 119700 171000 metal2 +114000 153900 119700 159600 metal2 +114000 153900 182400 159600 metal3 +176700 153900 182400 159600 metal2 +176700 153900 182400 176700 metal2 +176700 171000 182400 176700 metal1 +) +net21 +( +102600 22800 108300 28500 metal1 +102600 22800 108300 28500 metal2 +) +net22 +( +119700 171000 125400 176700 metal1 +119700 171000 125400 176700 metal2 +119700 171000 131100 176700 metal3 +125400 171000 131100 176700 metal2 +125400 171000 131100 182400 metal2 +125400 176700 131100 182400 metal1 +) +net23 +( +17100 74100 22800 79800 metal1 +17100 74100 22800 79800 metal2 +) +net24 +( +28500 176700 34200 182400 metal1 +28500 176700 34200 182400 metal2 +28500 176700 51300 182400 metal3 +45600 176700 51300 182400 metal3 +45600 102600 51300 182400 metal4 +45600 102600 51300 108300 metal3 +45600 102600 51300 108300 metal2 +45600 102600 51300 108300 metal1 +) +net25 +( +171000 125400 176700 131100 metal1 +171000 125400 176700 131100 metal2 +171000 125400 182400 131100 metal3 +176700 125400 182400 131100 metal2 +176700 125400 182400 159600 metal2 +176700 153900 182400 159600 metal1 +) +net26 +( +17100 57000 22800 62700 metal1 +17100 57000 22800 68400 metal2 +17100 62700 22800 68400 metal2 +17100 62700 28500 68400 metal3 +22800 62700 28500 68400 metal2 +22800 62700 28500 68400 metal1 +) +net27 +( +159600 22800 165300 28500 metal1 +159600 22800 165300 34200 metal2 +159600 28500 165300 34200 metal2 +159600 28500 182400 34200 metal3 +176700 28500 182400 34200 metal2 +176700 28500 182400 34200 metal1 +) +net28 +( +159600 96900 165300 102600 metal1 +159600 96900 165300 102600 metal2 +159600 96900 176700 102600 metal3 +171000 96900 176700 102600 metal2 +171000 96900 176700 108300 metal2 +171000 102600 176700 108300 metal2 +171000 102600 182400 108300 metal3 +176700 102600 182400 108300 metal2 +176700 102600 182400 114000 metal2 +176700 108300 182400 114000 metal1 +) +net29 +( +17100 171000 22800 176700 metal1 +17100 171000 22800 176700 metal2 +) +net3 +( +85500 22800 91200 28500 metal1 +85500 22800 91200 34200 metal2 +85500 28500 91200 34200 metal1 +) +net30 +( +148200 176700 153900 182400 metal1 +148200 171000 153900 182400 metal2 +148200 171000 153900 176700 metal2 +148200 171000 159600 176700 metal3 +153900 171000 159600 176700 metal2 +153900 159600 159600 176700 metal2 +153900 159600 159600 165300 metal2 +153900 159600 165300 165300 metal3 +159600 159600 165300 165300 metal2 +159600 148200 165300 165300 metal2 +159600 148200 165300 153900 metal2 +159600 148200 171000 153900 metal3 +165300 148200 171000 153900 metal2 +165300 148200 171000 153900 metal1 +) +net31 +( +74100 22800 79800 28500 metal1 +74100 22800 79800 28500 metal2 +74100 22800 85500 28500 metal3 +79800 22800 85500 28500 metal2 +79800 22800 85500 28500 metal1 +) +net32 +( +153900 136800 159600 142500 metal1 +153900 136800 159600 142500 metal2 +153900 136800 182400 142500 metal3 +176700 136800 182400 142500 metal2 +176700 136800 182400 142500 metal1 +) +net33 +( +79800 125400 85500 131100 metal1 +79800 125400 85500 182400 metal2 +79800 176700 85500 182400 metal2 +79800 176700 108300 182400 metal3 +102600 176700 108300 182400 metal3 +102600 176700 108300 182400 metal4 +102600 176700 176700 182400 metal5 +171000 176700 176700 182400 metal4 +171000 176700 176700 182400 metal3 +171000 176700 176700 182400 metal2 +171000 176700 176700 182400 metal1 +) +net34 +( +17100 102600 22800 108300 metal1 +17100 102600 22800 108300 metal2 +17100 102600 28500 108300 metal3 +22800 102600 28500 108300 metal2 +22800 102600 28500 114000 metal2 +22800 108300 28500 114000 metal2 +22800 108300 57000 114000 metal3 +51300 108300 57000 114000 metal2 +51300 108300 57000 114000 metal1 +) +net35 +( +17100 176700 22800 182400 metal1 +17100 176700 22800 182400 metal2 +17100 176700 39900 182400 metal3 +34200 176700 39900 182400 metal2 +34200 125400 39900 182400 metal2 +34200 125400 39900 131100 metal2 +34200 125400 62700 131100 metal3 +57000 125400 62700 131100 metal2 +57000 125400 62700 131100 metal1 +) +net36 +( +51300 96900 57000 108300 metal2 +51300 102600 57000 108300 metal2 +51300 102600 62700 108300 metal3 +57000 102600 62700 108300 metal2 +57000 102600 62700 108300 metal1 +17100 22800 22800 28500 metal1 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal3 +17100 22800 22800 28500 metal4 +17100 22800 28500 28500 metal5 +22800 22800 28500 28500 metal5 +22800 22800 28500 102600 metal6 +22800 96900 28500 102600 metal5 +22800 96900 57000 102600 metal5 +51300 96900 57000 102600 metal4 +51300 96900 57000 102600 metal3 +51300 96900 57000 102600 metal2 +51300 96900 57000 102600 metal1 +) +net37 +( +17100 22800 22800 28500 metal1 +17100 22800 22800 28500 metal2 +17100 22800 91200 28500 metal3 +85500 22800 91200 28500 metal2 +85500 22800 91200 28500 metal1 +) +net38 +( +125400 39900 131100 45600 metal1 +125400 22800 131100 45600 metal2 +125400 22800 131100 28500 metal2 +125400 22800 136800 28500 metal3 +131100 22800 136800 28500 metal2 +131100 22800 136800 28500 metal1 +) +net39 +( +96900 22800 102600 28500 metal1 +96900 22800 102600 28500 metal2 +96900 22800 176700 28500 metal3 +171000 22800 176700 28500 metal2 +171000 22800 176700 28500 metal1 +) +net4 +( +17100 28500 22800 34200 metal1 +17100 28500 22800 39900 metal2 +17100 34200 22800 39900 metal1 +) +net40 +( +114000 34200 119700 39900 metal1 +114000 34200 119700 39900 metal2 +114000 34200 176700 39900 metal3 +171000 34200 176700 39900 metal2 +171000 22800 176700 39900 metal2 +171000 22800 176700 28500 metal1 +) +net41 +( +125400 68400 131100 74100 metal1 +125400 68400 131100 74100 metal2 +125400 68400 131100 74100 metal3 +125400 62700 131100 74100 metal4 +125400 62700 131100 68400 metal4 +125400 62700 176700 68400 metal5 +171000 62700 176700 68400 metal4 +171000 62700 176700 74100 metal4 +171000 68400 176700 74100 metal3 +171000 68400 176700 74100 metal2 +171000 68400 176700 74100 metal1 +) +net42 +( +17100 85500 22800 91200 metal1 +17100 74100 22800 91200 metal2 +17100 74100 22800 79800 metal2 +17100 74100 51300 79800 metal3 +45600 74100 51300 79800 metal2 +45600 74100 51300 79800 metal1 +) +net43 +( +79800 79800 85500 85500 metal1 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal3 +79800 79800 85500 85500 metal4 +79800 79800 85500 85500 metal5 +79800 39900 85500 85500 metal6 +79800 39900 85500 45600 metal5 +79800 39900 85500 45600 metal4 +79800 22800 85500 45600 metal4 +79800 22800 85500 28500 metal3 +79800 22800 119700 28500 metal3 +114000 22800 119700 28500 metal2 +114000 22800 119700 28500 metal1 +) +net44 +( +17100 114000 22800 119700 metal1 +17100 114000 22800 119700 metal2 +17100 114000 51300 119700 metal3 +45600 114000 51300 119700 metal2 +45600 108300 51300 119700 metal2 +45600 108300 51300 114000 metal2 +45600 108300 62700 114000 metal3 +57000 108300 62700 114000 metal3 +57000 102600 62700 114000 metal4 +57000 102600 62700 108300 metal4 +57000 102600 68400 108300 metal5 +62700 102600 68400 108300 metal4 +62700 102600 68400 108300 metal3 +62700 102600 74100 108300 metal3 +68400 102600 74100 108300 metal2 +68400 102600 74100 108300 metal1 +) +net45 +( +153900 119700 159600 125400 metal1 +153900 119700 159600 125400 metal2 +153900 119700 159600 125400 metal3 +153900 119700 159600 125400 metal4 +153900 119700 159600 125400 metal5 +153900 119700 159600 176700 metal6 +153900 171000 159600 176700 metal5 +153900 171000 176700 176700 metal5 +171000 171000 176700 176700 metal4 +171000 171000 176700 182400 metal4 +171000 176700 176700 182400 metal3 +171000 176700 176700 182400 metal2 +171000 176700 176700 182400 metal1 +) +net46 +( +17100 45600 22800 51300 metal1 +17100 45600 22800 51300 metal2 +17100 45600 28500 51300 metal3 +22800 45600 28500 51300 metal2 +22800 34200 28500 51300 metal2 +22800 34200 28500 39900 metal2 +22800 34200 68400 39900 metal3 +62700 34200 68400 39900 metal3 +62700 11400 68400 39900 metal4 +62700 11400 68400 17100 metal4 +62700 11400 131100 17100 metal5 +125400 11400 131100 17100 metal5 +125400 11400 131100 74100 metal6 +125400 68400 131100 74100 metal5 +125400 68400 131100 74100 metal4 +125400 68400 131100 79800 metal4 +125400 74100 131100 79800 metal3 +125400 74100 131100 79800 metal2 +125400 74100 131100 79800 metal1 +) +net47 +( +159600 91200 165300 96900 metal1 +159600 74100 165300 96900 metal2 +159600 74100 165300 79800 metal2 +159600 74100 182400 79800 metal3 +176700 74100 182400 79800 metal3 +176700 34200 182400 79800 metal4 +176700 34200 182400 39900 metal3 +171000 34200 182400 39900 metal3 +171000 34200 176700 39900 metal2 +171000 34200 176700 39900 metal1 +) +net48 +( +22800 22800 28500 28500 metal1 +22800 11400 28500 28500 metal2 +22800 11400 28500 17100 metal2 +22800 11400 125400 17100 metal3 +119700 11400 125400 17100 metal2 +119700 11400 125400 34200 metal2 +119700 28500 125400 34200 metal2 +119700 28500 136800 34200 metal3 +131100 28500 136800 34200 metal2 +131100 28500 136800 68400 metal2 +131100 62700 136800 68400 metal1 +) +net49 +( +148200 119700 153900 125400 metal1 +148200 119700 153900 125400 metal2 +148200 119700 159600 125400 metal3 +153900 119700 159600 125400 metal3 +153900 119700 159600 125400 metal4 +153900 119700 159600 125400 metal5 +153900 114000 159600 125400 metal6 +153900 114000 159600 119700 metal5 +153900 114000 182400 119700 metal5 +176700 114000 182400 119700 metal5 +176700 45600 182400 119700 metal6 +176700 45600 182400 51300 metal5 +159600 45600 182400 51300 metal5 +159600 45600 165300 51300 metal4 +159600 22800 165300 51300 metal4 +159600 22800 165300 28500 metal3 +159600 22800 165300 28500 metal2 +159600 22800 165300 28500 metal1 +) +net5 +( +108300 176700 114000 182400 metal1 +108300 171000 114000 182400 metal2 +108300 171000 114000 176700 metal1 +) +net50 +( +17100 131100 22800 136800 metal1 +17100 131100 22800 136800 metal2 +17100 131100 22800 136800 metal3 +17100 125400 22800 136800 metal4 +17100 125400 22800 131100 metal4 +17100 125400 74100 131100 metal5 +68400 125400 74100 131100 metal4 +68400 125400 74100 131100 metal3 +68400 125400 79800 131100 metal3 +74100 125400 79800 131100 metal2 +74100 125400 79800 136800 metal2 +74100 131100 79800 136800 metal2 +74100 131100 85500 136800 metal3 +79800 131100 85500 136800 metal2 +79800 131100 85500 136800 metal1 +) +net51 +( +17100 148200 22800 153900 metal1 +17100 136800 22800 153900 metal2 +17100 136800 22800 142500 metal2 +17100 136800 74100 142500 metal3 +68400 136800 74100 142500 metal3 +68400 136800 74100 142500 metal4 +68400 136800 96900 142500 metal5 +91200 136800 96900 142500 metal4 +91200 136800 96900 142500 metal3 +91200 136800 96900 142500 metal2 +91200 136800 96900 142500 metal1 +) +net52 +( +17100 159600 22800 165300 metal1 +17100 153900 22800 165300 metal2 +17100 153900 22800 159600 metal2 +17100 153900 96900 159600 metal3 +91200 153900 96900 159600 metal2 +91200 136800 96900 159600 metal2 +91200 136800 96900 142500 metal1 +) +net53 +( +74100 57000 79800 62700 metal1 +74100 51300 79800 62700 metal2 +74100 51300 79800 57000 metal2 +74100 51300 96900 57000 metal3 +91200 51300 96900 57000 metal3 +91200 51300 96900 57000 metal4 +91200 51300 125400 57000 metal5 +119700 51300 125400 57000 metal4 +119700 45600 125400 57000 metal4 +119700 45600 125400 51300 metal3 +119700 45600 176700 51300 metal3 +171000 45600 176700 51300 metal2 +171000 45600 176700 57000 metal2 +171000 51300 176700 57000 metal1 +) +net6 +( +57000 22800 62700 28500 metal1 +57000 22800 62700 51300 metal2 +57000 45600 62700 51300 metal1 +) +net7 +( +51300 176700 57000 182400 metal1 +51300 176700 57000 182400 metal2 +51300 176700 57000 182400 metal3 +51300 108300 57000 182400 metal4 +51300 108300 57000 114000 metal3 +51300 108300 57000 114000 metal2 +51300 108300 57000 114000 metal1 +) +net8 +( +171000 96900 176700 102600 metal1 +171000 96900 176700 102600 metal2 +171000 96900 182400 102600 metal3 +176700 96900 182400 102600 metal2 +176700 91200 182400 102600 metal2 +176700 91200 182400 96900 metal1 +) +net9 +( +79800 176700 85500 182400 metal1 +79800 176700 85500 182400 metal2 +79800 176700 91200 182400 metal3 +85500 176700 91200 182400 metal2 +85500 171000 91200 182400 metal2 +85500 171000 91200 176700 metal1 +) +req_msg[0] +( +171000 136800 176700 142500 metal1 +171000 136800 176700 142500 metal2 +171000 136800 200260 142500 metal3 +193800 136800 200260 142500 metal3 +193800 136800 200260 142500 metal4 +193800 136800 200260 142500 metal5 +) +req_msg[10] +( +125400 176700 131100 201600 metal6 +125400 176700 131100 182400 metal5 +125400 176700 131100 182400 metal4 +125400 176700 131100 182400 metal3 +125400 176700 131100 182400 metal2 +125400 176700 131100 182400 metal1 +) +req_msg[11] +( +102600 0 108300 28500 metal6 +102600 22800 108300 28500 metal5 +102600 22800 108300 28500 metal4 +102600 22800 108300 28500 metal3 +102600 22800 108300 28500 metal2 +102600 22800 108300 28500 metal1 +) +req_msg[12] +( +171000 171000 176700 176700 metal1 +171000 171000 176700 176700 metal2 +171000 171000 200260 176700 metal3 +193800 171000 200260 176700 metal3 +193800 171000 200260 176700 metal4 +193800 171000 200260 176700 metal5 +) +req_msg[13] +( +142500 0 148200 28500 metal6 +142500 22800 148200 28500 metal5 +142500 22800 148200 28500 metal4 +142500 22800 148200 28500 metal3 +142500 22800 148200 28500 metal2 +142500 22800 148200 28500 metal1 +) +req_msg[14] +( +39900 0 45600 5700 metal5 +39900 0 45600 5700 metal6 +34200 0 45600 5700 metal5 +34200 0 39900 5700 metal4 +34200 0 39900 28500 metal4 +34200 22800 39900 28500 metal3 +34200 22800 45600 28500 metal3 +39900 22800 45600 28500 metal2 +39900 22800 45600 28500 metal1 +) +req_msg[15] +( +5700 188100 11400 201600 metal6 +5700 188100 11400 193800 metal5 +5700 188100 28500 193800 metal5 +22800 188100 28500 193800 metal4 +22800 176700 28500 193800 metal4 +22800 176700 28500 182400 metal3 +22800 176700 28500 182400 metal2 +22800 176700 28500 182400 metal1 +) +req_msg[16] +( +153900 176700 159600 201600 metal6 +153900 176700 159600 182400 metal5 +153900 176700 159600 182400 metal4 +153900 176700 159600 182400 metal3 +153900 176700 159600 182400 metal2 +153900 176700 159600 182400 metal1 +) +req_msg[17] +( +171000 79800 176700 85500 metal1 +171000 79800 176700 85500 metal2 +171000 79800 200260 85500 metal3 +193800 79800 200260 85500 metal3 +193800 79800 200260 85500 metal4 +193800 79800 200260 85500 metal5 +) +req_msg[18] +( +62700 176700 68400 201600 metal6 +62700 176700 68400 182400 metal5 +62700 176700 68400 182400 metal4 +62700 176700 68400 182400 metal3 +62700 176700 68400 182400 metal2 +62700 176700 68400 182400 metal1 +) +req_msg[19] +( +136800 188100 142500 201600 metal6 +136800 188100 142500 193800 metal5 +136800 188100 148200 193800 metal5 +142500 188100 148200 193800 metal4 +142500 176700 148200 193800 metal4 +142500 176700 148200 182400 metal3 +136800 176700 148200 182400 metal3 +136800 176700 142500 182400 metal2 +136800 176700 142500 182400 metal1 +) +req_msg[1] +( +74100 0 79800 28500 metal6 +74100 22800 79800 28500 metal5 +74100 22800 79800 28500 metal4 +74100 22800 79800 28500 metal3 +74100 22800 79800 28500 metal2 +74100 22800 79800 28500 metal1 +) +req_msg[20] +( +28500 0 34200 28500 metal6 +28500 22800 34200 28500 metal5 +28500 22800 34200 28500 metal4 +28500 22800 34200 28500 metal3 +28500 22800 34200 28500 metal2 +28500 22800 34200 28500 metal1 +) +req_msg[21] +( +171000 125400 176700 131100 metal1 +171000 125400 176700 131100 metal2 +171000 125400 200260 131100 metal3 +193800 125400 200260 131100 metal3 +193800 125400 200260 131100 metal4 +193800 125400 200260 131100 metal5 +) +req_msg[22] +( +165300 22800 171000 28500 metal1 +165300 22800 171000 28500 metal2 +165300 22800 176700 28500 metal3 +171000 22800 176700 28500 metal2 +171000 11400 176700 28500 metal2 +171000 11400 176700 17100 metal2 +171000 11400 193800 17100 metal3 +188100 11400 193800 17100 metal3 +188100 5700 193800 17100 metal4 +188100 5700 193800 11400 metal4 +188100 5700 200260 11400 metal5 +) +req_msg[23] +( +79800 176700 85500 201600 metal6 +79800 176700 85500 182400 metal5 +79800 176700 85500 182400 metal4 +79800 176700 85500 182400 metal3 +79800 176700 85500 182400 metal2 +79800 176700 85500 182400 metal1 +) +req_msg[24] +( +171000 91200 176700 96900 metal1 +171000 91200 176700 96900 metal2 +171000 91200 200260 96900 metal3 +193800 91200 200260 96900 metal3 +193800 91200 200260 96900 metal4 +193800 91200 200260 96900 metal5 +) +req_msg[25] +( +51300 176700 57000 201600 metal6 +51300 176700 57000 182400 metal5 +51300 176700 57000 182400 metal4 +51300 176700 57000 182400 metal3 +51300 176700 57000 182400 metal2 +51300 176700 57000 182400 metal1 +) +req_msg[26] +( +57000 0 62700 28500 metal6 +57000 22800 62700 28500 metal5 +57000 22800 62700 28500 metal4 +57000 22800 62700 28500 metal3 +57000 22800 62700 28500 metal2 +57000 22800 62700 28500 metal1 +) +req_msg[27] +( +108300 176700 114000 201600 metal6 +108300 176700 114000 182400 metal5 +108300 176700 114000 182400 metal4 +108300 176700 114000 182400 metal3 +108300 176700 114000 182400 metal2 +108300 176700 114000 182400 metal1 +) +req_msg[28] +( +0 28500 22800 34200 metal5 +17100 28500 22800 34200 metal4 +17100 28500 22800 34200 metal3 +17100 28500 22800 34200 metal2 +17100 28500 22800 34200 metal1 +) +req_msg[29] +( +85500 0 91200 28500 metal6 +85500 22800 91200 28500 metal5 +85500 22800 91200 28500 metal4 +85500 22800 91200 28500 metal3 +85500 22800 91200 28500 metal2 +85500 22800 91200 28500 metal1 +) +req_msg[2] +( +148200 176700 153900 182400 metal1 +148200 176700 153900 182400 metal2 +148200 176700 159600 182400 metal3 +153900 176700 159600 182400 metal3 +153900 176700 159600 193800 metal4 +153900 188100 159600 193800 metal4 +153900 188100 171000 193800 metal5 +165300 188100 171000 193800 metal5 +165300 188100 171000 201600 metal6 +) +req_msg[30] +( +34200 176700 39900 201600 metal6 +34200 176700 39900 182400 metal5 +34200 176700 39900 182400 metal4 +34200 176700 39900 182400 metal3 +34200 176700 39900 182400 metal2 +34200 176700 39900 182400 metal1 +) +req_msg[31] +( +165300 176700 171000 182400 metal1 +165300 176700 171000 182400 metal2 +165300 176700 182400 182400 metal3 +176700 176700 182400 182400 metal3 +176700 176700 182400 193800 metal4 +176700 188100 182400 193800 metal4 +176700 188100 188100 193800 metal5 +182400 188100 188100 193800 metal5 +182400 188100 188100 201600 metal6 +) +req_msg[3] +( +0 176700 22800 182400 metal5 +17100 176700 22800 182400 metal4 +17100 171000 22800 182400 metal4 +17100 171000 22800 176700 metal3 +17100 171000 22800 176700 metal2 +17100 171000 22800 176700 metal1 +) +req_msg[4] +( +171000 108300 176700 114000 metal1 +171000 108300 176700 114000 metal2 +171000 108300 200260 114000 metal3 +193800 108300 200260 114000 metal3 +193800 108300 200260 114000 metal4 +193800 108300 200260 114000 metal5 +) +req_msg[5] +( +171000 28500 176700 34200 metal1 +171000 28500 176700 34200 metal2 +171000 28500 182400 34200 metal3 +176700 28500 182400 34200 metal3 +176700 0 182400 34200 metal4 +176700 0 182400 5700 metal4 +176700 0 182400 5700 metal5 +176700 0 182400 5700 metal6 +) +req_msg[6] +( +0 57000 22800 62700 metal5 +17100 57000 22800 62700 metal4 +17100 57000 22800 62700 metal3 +17100 57000 22800 62700 metal2 +17100 57000 22800 62700 metal1 +) +req_msg[7] +( +171000 153900 176700 159600 metal1 +171000 153900 176700 159600 metal2 +171000 153900 200260 159600 metal3 +193800 153900 200260 159600 metal3 +193800 153900 200260 159600 metal4 +193800 153900 200260 159600 metal5 +) +req_msg[8] +( +17100 176700 22800 201600 metal6 +17100 176700 22800 182400 metal5 +17100 176700 34200 182400 metal5 +28500 176700 34200 182400 metal4 +28500 176700 34200 182400 metal3 +28500 176700 34200 182400 metal2 +28500 176700 34200 182400 metal1 +) +req_msg[9] +( +0 68400 5700 74100 metal4 +0 68400 5700 74100 metal5 +0 68400 5700 79800 metal4 +0 74100 5700 79800 metal3 +0 74100 22800 79800 metal3 +17100 74100 22800 79800 metal2 +17100 74100 22800 79800 metal1 +) +req_rdy +( +0 0 5700 5700 metal4 +0 0 5700 5700 metal5 +0 0 5700 5700 metal6 +0 0 5700 28500 metal4 +0 22800 5700 28500 metal3 +0 22800 22800 28500 metal3 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal1 +) +req_val +( +165300 176700 171000 182400 metal1 +165300 176700 171000 182400 metal2 +165300 176700 193800 182400 metal3 +188100 176700 193800 182400 metal3 +188100 176700 193800 188100 metal4 +188100 182400 193800 188100 metal4 +188100 182400 200260 188100 metal5 +) +reset +( +0 102600 22800 108300 metal5 +17100 102600 22800 108300 metal4 +17100 102600 22800 108300 metal3 +17100 102600 22800 108300 metal2 +17100 102600 22800 108300 metal1 +) +resp_msg[0] +( +0 159600 22800 165300 metal5 +17100 159600 22800 165300 metal4 +17100 159600 22800 165300 metal3 +17100 159600 22800 165300 metal2 +17100 159600 22800 165300 metal1 +) +resp_msg[10] +( +0 85500 22800 91200 metal5 +17100 85500 22800 91200 metal4 +17100 85500 22800 91200 metal3 +17100 85500 22800 91200 metal2 +17100 85500 22800 91200 metal1 +) +resp_msg[11] +( +176700 68400 182400 74100 metal1 +176700 62700 182400 74100 metal2 +176700 62700 182400 68400 metal2 +176700 62700 200260 68400 metal3 +193800 62700 200260 68400 metal3 +193800 62700 200260 68400 metal4 +193800 62700 200260 68400 metal5 +) +resp_msg[12] +( +176700 22800 182400 28500 metal1 +176700 0 182400 28500 metal2 +176700 0 182400 5700 metal2 +176700 0 193800 5700 metal3 +188100 0 193800 5700 metal3 +188100 0 193800 5700 metal4 +188100 0 193800 5700 metal5 +188100 0 193800 5700 metal6 +) +resp_msg[13] +( +176700 22800 182400 28500 metal1 +176700 22800 182400 28500 metal2 +176700 22800 193800 28500 metal3 +188100 22800 193800 28500 metal3 +188100 17100 193800 28500 metal4 +188100 17100 193800 22800 metal4 +188100 17100 200260 22800 metal5 +) +resp_msg[14] +( +131100 22800 136800 28500 metal1 +131100 0 136800 28500 metal2 +131100 0 136800 5700 metal2 +131100 0 136800 5700 metal3 +131100 0 136800 5700 metal4 +131100 0 136800 5700 metal5 +131100 0 136800 5700 metal6 +) +resp_msg[15] +( +11400 0 17100 28500 metal6 +11400 22800 17100 28500 metal5 +11400 22800 22800 28500 metal5 +17100 22800 22800 28500 metal4 +17100 22800 22800 28500 metal3 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal1 +) +resp_msg[1] +( +0 142500 5700 148200 metal4 +0 142500 5700 148200 metal5 +0 142500 5700 159600 metal4 +0 153900 5700 159600 metal3 +0 153900 22800 159600 metal3 +17100 153900 22800 159600 metal2 +17100 148200 22800 159600 metal2 +17100 148200 22800 153900 metal1 +) +resp_msg[2] +( +0 131100 5700 136800 metal4 +0 131100 5700 136800 metal5 +0 131100 5700 142500 metal4 +0 136800 5700 142500 metal3 +0 136800 22800 142500 metal3 +17100 136800 22800 142500 metal2 +17100 131100 22800 142500 metal2 +17100 131100 22800 136800 metal1 +) +resp_msg[3] +( +159600 22800 165300 28500 metal1 +159600 0 165300 28500 metal2 +159600 0 165300 5700 metal2 +159600 0 165300 5700 metal3 +159600 0 165300 5700 metal4 +159600 0 165300 5700 metal5 +159600 0 165300 5700 metal6 +) +resp_msg[4] +( +0 11400 28500 17100 metal5 +22800 11400 28500 17100 metal4 +22800 11400 28500 28500 metal4 +22800 22800 28500 28500 metal3 +22800 22800 28500 28500 metal2 +22800 22800 28500 28500 metal1 +) +resp_msg[5] +( +176700 34200 182400 39900 metal1 +176700 34200 182400 39900 metal2 +176700 34200 200260 39900 metal3 +193800 34200 200260 39900 metal3 +193800 34200 200260 39900 metal4 +193800 34200 200260 39900 metal5 +) +resp_msg[6] +( +0 39900 5700 45600 metal4 +0 39900 5700 45600 metal5 +0 39900 5700 51300 metal4 +0 45600 5700 51300 metal3 +0 45600 22800 51300 metal3 +17100 45600 22800 51300 metal2 +17100 45600 22800 51300 metal1 +) +resp_msg[7] +( +176700 176700 182400 182400 metal1 +176700 176700 182400 182400 metal2 +176700 176700 188100 182400 metal3 +182400 176700 188100 182400 metal3 +182400 176700 188100 193800 metal4 +182400 188100 188100 193800 metal4 +182400 188100 200260 193800 metal5 +193800 188100 200260 193800 metal5 +193800 188100 200260 201600 metal6 +) +resp_msg[8] +( +0 114000 22800 119700 metal5 +17100 114000 22800 119700 metal4 +17100 114000 22800 119700 metal3 +17100 114000 22800 119700 metal2 +17100 114000 22800 119700 metal1 +) +resp_msg[9] +( +114000 0 119700 28500 metal6 +114000 22800 119700 28500 metal5 +114000 22800 125400 28500 metal5 +119700 22800 125400 28500 metal4 +119700 22800 125400 28500 metal3 +119700 22800 125400 28500 metal2 +119700 22800 125400 28500 metal1 +) +resp_rdy +( +0 188100 5700 193800 metal4 +0 188100 5700 193800 metal5 +0 176700 5700 193800 metal4 +0 176700 5700 182400 metal3 +0 176700 22800 182400 metal3 +17100 176700 22800 182400 metal2 +17100 176700 22800 182400 metal1 +) +resp_val +( +176700 51300 182400 57000 metal1 +176700 45600 182400 57000 metal2 +176700 45600 182400 51300 metal2 +176700 45600 193800 51300 metal3 +188100 45600 193800 51300 metal3 +188100 45600 193800 57000 metal4 +188100 51300 193800 57000 metal4 +188100 51300 200260 57000 metal5 +) diff --git a/src/grt/test/congestion2_snapshot_batched.ok b/src/grt/test/congestion2_snapshot_batched.ok new file mode 100644 index 00000000000..21cb82a1e1e --- /dev/null +++ b/src/grt/test/congestion2_snapshot_batched.ok @@ -0,0 +1,97 @@ +[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells +[INFO ODB-0128] Design: gcd +[INFO ODB-0130] Created 54 pins. +[INFO ODB-0131] Created 676 components and 2850 component-terminals. +[INFO ODB-0133] Created 579 nets and 1498 connections. +[WARNING GRT-0300] Timing is not available, setting critical nets percentage to 0. +[INFO GRT-0020] Min routing layer: metal2 +[INFO GRT-0021] Max routing layer: metal10 +[INFO GRT-0022] Global adjustment: 0% +[INFO GRT-0023] Grid origin: (0, 0) +[INFO GRT-0088] Layer metal1 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1350 +[INFO GRT-0088] Layer metal2 Track-Pitch = 0.1900 line-2-Via Pitch: 0.1400 +[INFO GRT-0088] Layer metal3 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1400 +[INFO GRT-0088] Layer metal4 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal5 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal6 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 +[INFO GRT-0088] Layer metal7 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 +[INFO GRT-0088] Layer metal8 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 +[INFO GRT-0088] Layer metal9 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 +[INFO GRT-0088] Layer metal10 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 +[INFO GRT-0003] Macros: 0 +[INFO GRT-0004] Blockages: 0 +[INFO GRT-0019] Found 0 clock nets. +[INFO GRT-0001] Minimum degree: 2 +[INFO GRT-0002] Maximum degree: 36 + +[INFO GRT-0053] Routing resources analysis: + Routing Original Derated Resource +Layer Direction Resources Resources Reduction (%) +--------------------------------------------------------------- +metal1 Horizontal 0 0 0.00% +metal2 Vertical 17918 1190 93.36% +metal3 Horizontal 24480 2380 90.28% +metal4 Vertical 12172 1190 90.22% +metal5 Horizontal 12240 1190 90.28% +metal6 Vertical 12172 1190 90.22% +metal7 Horizontal 4284 0 100.00% +metal8 Vertical 4284 0 100.00% +metal9 Horizontal 2142 0 100.00% +metal10 Vertical 2142 0 100.00% +--------------------------------------------------------------- + +[INFO GRT-0101] Running extra iterations to remove overflow. +[INFO GRT-0102] Start extra iteration 1/50 +[INFO GRT-0102] Start extra iteration 2/50 +[INFO GRT-0102] Start extra iteration 3/50 +[INFO GRT-0102] Start extra iteration 4/50 +[INFO GRT-0102] Start extra iteration 5/50 +[INFO GRT-0102] Start extra iteration 6/50 +[INFO GRT-0102] Start extra iteration 7/50 +[INFO GRT-0102] Start extra iteration 8/50 +[INFO GRT-0102] Start extra iteration 9/50 +[INFO GRT-0102] Start extra iteration 10/50 +[INFO GRT-0102] Start extra iteration 11/50 +[INFO GRT-0102] Start extra iteration 12/50 +[INFO GRT-0102] Start extra iteration 13/50 +[INFO GRT-0102] Start extra iteration 14/50 +[INFO GRT-0102] Start extra iteration 15/50 +[INFO GRT-0102] Start extra iteration 16/50 +[INFO GRT-0102] Start extra iteration 17/50 +[INFO GRT-0102] Start extra iteration 18/50 +[INFO GRT-0102] Start extra iteration 19/50 +[INFO GRT-0102] Start extra iteration 20/50 +[INFO GRT-0102] Start extra iteration 21/50 +[INFO GRT-0102] Start extra iteration 22/50 +[INFO GRT-0102] Start extra iteration 23/50 +[INFO GRT-0102] Start extra iteration 24/50 +[INFO GRT-0102] Start extra iteration 25/50 +[INFO GRT-0102] Start extra iteration 26/50 +[INFO GRT-0102] Start extra iteration 27/50 +[INFO GRT-0102] Start extra iteration 28/50 +[INFO GRT-0197] Via related to pin nodes: 3743 +[INFO GRT-0198] Via related Steiner nodes: 106 +[INFO GRT-0199] Via filling finished. +[INFO GRT-0111] Final number of vias: 5470 +[INFO GRT-0112] Final usage 3D: 19230 + +[INFO GRT-0096] Final congestion report: +Layer Resource Demand Usage (%) Max H / Max V / Total Overflow +--------------------------------------------------------------------------------------- +metal1 0 0 0.00% 0 / 0 / 0 +metal2 1190 507 42.61% 0 / 1 / 15 +metal3 2380 965 40.55% 2 / 0 / 29 +metal4 1190 474 39.83% 0 / 1 / 8 +metal5 1190 461 38.74% 1 / 0 / 24 +metal6 1190 413 34.71% 1 / 1 / 20 +metal7 0 0 0.00% 0 / 0 / 0 +metal8 0 0 0.00% 0 / 0 / 0 +metal9 0 0 0.00% 0 / 0 / 0 +metal10 0 0 0.00% 0 / 0 / 0 +--------------------------------------------------------------------------------------- +Total 7140 2820 39.50% 4 / 3 / 96 + +[INFO GRT-0018] Total wirelength: 12280 um +[INFO GRT-0014] Routed nets: 563 +[WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. +No differences found. diff --git a/src/grt/test/congestion2_snapshot_batched.tcl b/src/grt/test/congestion2_snapshot_batched.tcl new file mode 100644 index 00000000000..c01401fe970 --- /dev/null +++ b/src/grt/test/congestion2_snapshot_batched.tcl @@ -0,0 +1,20 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 16 + +set guide_file [make_result_file congestion2_snapshot_batched.guide] + +set_global_routing_layer_adjustment metal2 0.9 +set_global_routing_layer_adjustment metal3 0.9 +set_global_routing_layer_adjustment metal4-metal6 0.9 +set_global_routing_layer_adjustment metal7-metal10 1.0 + +set_routing_layers -signal metal2-metal10 + +global_route -allow_congestion -snapshot_batched_width 16 -verbose + +write_guides $guide_file + +diff_file congestion2_snapshot_batched.guideok $guide_file diff --git a/src/grt/test/congestion7_multicore.tcl b/src/grt/test/congestion7_multicore.tcl deleted file mode 100644 index 7415d5ec2a8..00000000000 --- a/src/grt/test/congestion7_multicore.tcl +++ /dev/null @@ -1,26 +0,0 @@ -source "helpers.tcl" -read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" - -set_thread_count 4 - -set guide_file [make_result_file congestion7_multicore.guide] -set rpt_file [make_result_file congestion7_multicore.rpt] - -set_global_routing_layer_adjustment metal2 0.9 -set_global_routing_layer_adjustment metal3 0.9 -set_global_routing_layer_adjustment metal4-metal10 1 - -set_routing_layers -signal metal2-metal10 - -global_route -allow_congestion -multicore -verbose -congestion_report_file $rpt_file \ - -congestion_report_iter_step 20 - -write_guides $guide_file - -diff_file congestion7_multicore.guideok $guide_file -diff_file congestion7_multicore.rptok $rpt_file - -set rpt_folder [file dirname $rpt_file] -diff_file congestion7_multicore-20.rptok \ - [file join $rpt_folder congestion7_multicore-tcl-20.rpt] diff --git a/src/grt/test/congestion7_multicore-20.rptok b/src/grt/test/congestion7_snapshot_batched-20.rptok similarity index 81% rename from src/grt/test/congestion7_multicore-20.rptok rename to src/grt/test/congestion7_snapshot_batched-20.rptok index 244441e1000..8a9798448ba 100644 --- a/src/grt/test/congestion7_multicore-20.rptok +++ b/src/grt/test/congestion7_snapshot_batched-20.rptok @@ -1,2320 +1,2344 @@ violation type: Horizontal congestion - srcs: net:_055_ net:_380_ net:_421_ + srcs: net:clk net:_394_ net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - + bbox = (54.1500, 76.9500) - (57.0000, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_167_ net:_213_ net:_385_ + srcs: net:_142_ net:_299_ net:_353_ net:_418_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - + bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_014_ net:_140_ net:_142_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - + srcs: net:_160_ net:_165_ net:_215_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_204_ net:_244_ net:_294_ + srcs: net:_122_ net:_159_ net:_249_ net:_281_ comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_016_ net:_039_ net:_421_ + srcs: net:clk net:_249_ net:_275_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_065_ net:_245_ net:_279_ + srcs: net:clk net:_054_ net:_403_ comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_125_ net:_141_ net:_307_ + srcs: net:_380_ net:net31 net:net37 comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - + bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_402_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 62.7000) - (39.9000, 65.5500) on Layer - + srcs: net:_031_ net:_085_ net:_126_ net:_159_ net:_353_ + comment: capacity:2 usage:5 overflow:3 + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_133_ net:_258_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - + srcs: net:_110_ net:_145_ net:_165_ net:_173_ net:_245_ + comment: capacity:2 usage:5 overflow:3 + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:net1 net:net13 net:net33 + srcs: net:_396_ net:net39 net:net40 comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 88.3500) - (68.4000, 91.2000) on Layer - + bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_133_ net:_147_ net:_158_ + srcs: net:_128_ net:_201_ net:_221_ net:_381_ comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_111_ net:_370_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_349_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - + srcs: net:_117_ net:_147_ net:_179_ net:_180_ net:_287_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_247_ net:_401_ + srcs: net:_113_ net:_129_ net:_352_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 51.3000) - (39.9000, 54.1500) on Layer - + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_009_ net:_126_ net:_159_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[3\] - comment: capacity:2 usage:6 overflow:4 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - + srcs: net:_158_ net:_204_ net:_244_ net:_294_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ net:dpath.a_lt_b$in0\[11\] + srcs: net:_059_ net:_158_ net:_248_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - + bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_353_ + srcs: net:_058_ net:_161_ net:_380_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_059_ net:_403_ + srcs: net:_117_ net:_147_ net:_287_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_195_ net:_388_ + srcs: net:clk net:_420_ net:net50 comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - + bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net36 net:net44 + srcs: net:_409_ net:net19 net:net40 comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 51.3000) - (28.5000, 54.1500) on Layer - + bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_062_ net:_159_ net:_249_ + srcs: net:_248_ net:dpath.a_lt_b$in0\[12\] net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - + bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_278_ net:_353_ + srcs: net:_133_ net:_254_ net:_258_ comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:net1 net:net33 + srcs: net:_298_ net:_375_ net:_397_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 88.3500) - (59.8500, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_177_ net:_195_ net:_199_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_299_ net:_353_ net:_418_ + srcs: net:_126_ net:_159_ net:_249_ net:_353_ comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_158_ net:_248_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - + srcs: net:clk net:_371_ net:dpath.a_lt_b$in0\[11\] + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:net33 net:net9 + srcs: net:_248_ net:_252_ net:_389_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 88.3500) - (42.7500, 91.2000) on Layer - + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_106_ net:_140_ net:_353_ + srcs: net:_158_ net:_216_ net:_375_ net:_397_ comment: capacity:2 usage:4 overflow:2 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_149_ net:_363_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - + srcs: net:_139_ net:_143_ net:_253_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_244_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - + srcs: net:_244_ net:_248_ net:_327_ net:_332_ net:net53 + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_124_ net:_158_ net:_300_ + srcs: net:_159_ net:_165_ net:_230_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - + bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_337_ net:_339_ net:_341_ net:net53 + srcs: net:_119_ net:_143_ net:_144_ net:_236_ net:_287_ comment: capacity:2 usage:5 overflow:3 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_130_ net:_207_ net:_401_ + srcs: net:_143_ net:_236_ net:_287_ net:_388_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - + bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_220_ net:_302_ net:_311_ net:_381_ net:_397_ - comment: capacity:2 usage:6 overflow:4 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - + srcs: net:_128_ net:_201_ net:_220_ net:_317_ net:_381_ + comment: capacity:2 usage:5 overflow:3 + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_112_ net:_371_ + srcs: net:_136_ net:_137_ net:_188_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - + bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_277_ net:_353_ net:_415_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - + srcs: net:_016_ net:_039_ net:_111_ net:_370_ + comment: capacity:2 usage:4 overflow:2 + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_176_ net:_276_ net:_385_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - + srcs: net:_014_ net:_140_ net:_142_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_205_ net:_245_ net:_353_ + srcs: net:_221_ net:_249_ net:_381_ net:dpath.a_lt_b$in1\[11\] comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_137_ net:_188_ + srcs: net:_020_ net:_043_ net:_142_ net:_244_ net:_342_ + comment: capacity:2 usage:5 overflow:3 + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_159_ net:_249_ net:_416_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_372_ net:_391_ comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - + bbox = (71.2500, 76.9500) - (74.1000, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net19 net:net40 + srcs: net:clk net:_402_ net:net50 comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 17.1000) - (62.7000, 19.9500) on Layer - + bbox = (37.0500, 62.7000) - (39.9000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_132_ net:_319_ net:_320_ + srcs: net:_165_ net:_245_ net:_397_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - + bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:net31 net:net37 + srcs: net:_200_ net:_252_ net:_312_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - + bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_220_ net:_221_ net:_317_ net:_381_ net:_397_ - comment: capacity:2 usage:7 overflow:5 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - + srcs: net:_160_ net:_372_ net:_391_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 76.9500) - (71.2500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_168_ net:_213_ net:_385_ + srcs: net:_065_ net:_245_ net:_279_ net:_385_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_055_ net:_156_ net:_162_ net:_164_ net:_380_ - comment: capacity:2 usage:5 overflow:3 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_227_ net:_327_ net:_401_ + srcs: net:req_msg[2] net:net1 net:net30 net:net33 comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - + bbox = (74.1000, 88.3500) - (76.9500, 91.2000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_054_ net:_403_ + srcs: net:clk net:_414_ net:net41 comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - + bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_128_ net:_221_ net:_249_ net:_381_ net:_397_ net:dpath.a_lt_b$in1\[15\] - comment: capacity:2 usage:7 overflow:5 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - + srcs: net:_055_ net:_156_ net:_164_ net:_380_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_145_ net:_165_ net:_173_ net:_174_ net:_245_ - comment: capacity:2 usage:6 overflow:4 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - + srcs: net:_160_ net:_298_ net:_353_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_061_ net:_165_ net:_411_ net:_412_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_050_ net:_245_ net:_253_ + srcs: net:clk net:_119_ net:_391_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - + bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - violation type: Horizontal congestion - srcs: net:_396_ net:net39 net:net49 + srcs: net:_005_ net:_386_ net:net44 comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - + bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_174_ net:_178_ net:_199_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_371_ net:_373_ net:_409_ + srcs: net:_248_ net:_392_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - + bbox = (25.6500, 22.8000) - (28.5000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_248_ net:_407_ net:net53 + srcs: net:clk net:_106_ net:_140_ net:_353_ comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_147_ net:_179_ net:_180_ net:_287_ + srcs: net:_116_ net:_168_ net:_213_ net:_298_ net:_397_ comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_203_ net:_204_ net:_298_ net:_375_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - + srcs: net:_372_ net:_391_ net:net30 + comment: capacity:2 usage:3 overflow:1 + bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_142_ net:dpath.a_lt_b$in0\[8\] + srcs: net:_131_ net:_158_ net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - + bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_219_ net:_310_ net:_311_ net:_381_ net:_397_ - comment: capacity:2 usage:6 overflow:4 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - + srcs: net:_371_ net:net39 net:net43 + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 11.4000) - (54.1500, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_149_ net:_206_ net:_207_ net:_352_ + srcs: net:_072_ net:_248_ net:_407_ net:net53 comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - + bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_058_ net:_161_ net:_380_ + srcs: net:req_msg[31] net:req_val net:net45 comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - + bbox = (85.5000, 88.3500) - (88.3500, 91.2000) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_232_ net:_233_ net:_234_ net:_352_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - + srcs: net:clk net:_394_ net:net33 + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 76.9500) - (54.1500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_245_ net:_250_ net:_253_ net:_412_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - + srcs: net:_205_ net:_244_ net:_353_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_093_ net:_111_ net:_127_ net:_370_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - + srcs: net:_128_ net:_201_ net:_221_ net:_224_ net:_317_ net:_381_ + comment: capacity:2 usage:6 overflow:4 + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_215_ net:_298_ + srcs: net:_165_ net:_215_ net:_250_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_378_ net:net51 + srcs: net:_160_ net:_372_ net:_391_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_237_ net:_298_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - + bbox = (74.1000, 76.9500) - (76.9500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_097_ net:_115_ net:_142_ net:_158_ net:_244_ + srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - + bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_007_ net:_384_ net:_412_ + srcs: net:_245_ net:_253_ net:_381_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_385_ net:_397_ + srcs: net:_122_ net:_160_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_165_ net:_173_ net:_245_ net:_253_ - comment: capacity:2 usage:5 overflow:3 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - + srcs: net:_159_ net:_248_ net:_249_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_186_ net:_283_ net:_377_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - + srcs: net:_093_ net:_111_ net:_127_ net:_370_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_048_ net:_136_ net:_385_ + srcs: net:_160_ net:_193_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_171_ net:_189_ net:_297_ + srcs: net:_142_ net:_158_ net:_329_ net:_409_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_092_ net:_159_ net:_351_ net:_353_ + srcs: net:_114_ net:_252_ net:_408_ net:_409_ comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 68.4000) - (71.2500, 71.2500) on Layer - + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ net:net47 + srcs: net:_092_ net:_159_ net:_351_ comment: capacity:2 usage:3 overflow:1 - bbox = (79.8000, 37.0500) - (82.6500, 39.9000) on Layer - + bbox = (68.4000, 68.4000) - (71.2500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_352_ net:_401_ + srcs: net:_119_ net:_144_ net:_253_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_385_ net:dpath.a_lt_b$in1\[6\] + srcs: net:req_msg[31] net:req_val net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - + bbox = (82.6500, 88.3500) - (85.5000, 91.2000) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_172_ net:_245_ net:_263_ net:_264_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - + srcs: net:_059_ net:_248_ net:net44 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_037_ net:_381_ net:_397_ net:_405_ - comment: capacity:2 usage:5 overflow:3 - bbox = (25.6500, 37.0500) - (28.5000, 39.9000) on Layer - + srcs: net:_131_ net:_149_ net:_227_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:dpath.a_lt_b$in0\[12\] net:net53 + srcs: net:_136_ net:_160_ net:_277_ net:_415_ + comment: capacity:2 usage:4 overflow:2 + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_105_ net:_139_ net:_253_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_138_ net:_139_ net:_283_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - + bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_237_ net:_298_ + srcs: net:clk net:_248_ net:_370_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - + bbox = (25.6500, 31.3500) - (28.5000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ + srcs: net:_091_ net:_125_ net:_381_ net:_405_ net:dpath.a_lt_b$in0\[9\] comment: capacity:2 usage:5 overflow:3 - bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[22] net:net10 net:net40 - comment: capacity:2 usage:3 overflow:1 - bbox = (85.5000, 11.4000) - (88.3500, 14.2500) on Layer - + srcs: net:_118_ net:_126_ net:_159_ net:_249_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:_391_ net:net30 + srcs: net:_092_ net:_126_ net:_159_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_077_ net:_248_ net:_370_ comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - + bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_389_ + srcs: net:clk net:_119_ net:dpath.a_lt_b$in0\[3\] comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - + bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_128_ net:_130_ net:_401_ + srcs: net:_097_ net:_142_ net:_244_ net:_352_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - + bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_391_ net:net13 - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - + srcs: net:_159_ net:_249_ net:_257_ net:_404_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_149_ net:_208_ net:_352_ + srcs: net:_008_ net:_159_ net:_249_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - + bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_348_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - + srcs: net:_205_ net:_244_ net:_353_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_013_ net:_051_ net:_123_ net:_245_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - violation type: Horizontal congestion srcs: net:_142_ net:_253_ net:_353_ comment: capacity:2 usage:3 overflow:1 bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_298_ net:_352_ + srcs: net:_123_ net:_138_ net:_171_ net:_297_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_237_ net:_250_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_371_ net:_401_ + srcs: net:_050_ net:_122_ net:_165_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_174_ net:_199_ net:_250_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - + srcs: net:_220_ net:_253_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_031_ net:_085_ net:_126_ net:_159_ net:_353_ + srcs: net:_141_ net:_219_ net:_310_ net:_311_ net:_381_ comment: capacity:2 usage:5 overflow:3 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_200_ net:_252_ net:_312_ + srcs: net:_171_ net:_189_ net:_297_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[31] net:req_val net:net45 + srcs: net:clk net:_121_ net:net49 comment: capacity:2 usage:3 overflow:1 - bbox = (85.5000, 88.3500) - (88.3500, 91.2000) on Layer - + bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - +violation type: Horizontal congestion + srcs: net:_175_ net:_185_ net:_186_ net:_353_ net:_377_ + comment: capacity:2 usage:5 overflow:3 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_145_ net:_147_ net:_174_ net:_236_ net:_271_ net:_287_ + comment: capacity:2 usage:6 overflow:4 + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_120_ net:_415_ + srcs: net:_371_ net:net39 net:net43 comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - + bbox = (54.1500, 11.4000) - (57.0000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ net:net47 + srcs: net:_249_ net:_353_ net:_377_ comment: capacity:2 usage:3 overflow:1 - bbox = (82.6500, 37.0500) - (85.5000, 39.9000) on Layer - + bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_245_ net:_385_ + srcs: net:_244_ net:_337_ net:_339_ net:_341_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_124_ net:_399_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - + bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_236_ net:_287_ + srcs: net:_249_ net:_268_ net:_383_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - + bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_420_ net:net50 + srcs: net:_116_ net:_167_ net:_213_ net:_298_ net:_397_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_394_ net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - + bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:_329_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - + srcs: net:_243_ net:_352_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_159_ net:_249_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - + srcs: net:_159_ net:_236_ net:_238_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_205_ net:_245_ net:_353_ net:_401_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_159_ net:_249_ + srcs: net:_171_ net:_195_ net:_388_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - + bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_139_ net:_143_ net:_245_ net:_253_ + srcs: net:_062_ net:_159_ net:_245_ net:_249_ comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - + bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ net:_268_ net:_383_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - + srcs: net:_159_ net:_237_ net:_377_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_252_ net:_253_ net:_385_ + srcs: net:_159_ net:_229_ net:_230_ net:_235_ net:_241_ comment: capacity:2 usage:5 overflow:3 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_132_ net:_221_ net:_347_ net:_381_ net:_397_ - comment: capacity:2 usage:6 overflow:4 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - + bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_248_ net:_252_ net:_327_ net:net53 + srcs: net:_128_ net:_132_ net:_221_ net:_347_ net:_381_ comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_221_ net:_249_ net:_316_ net:_381_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - + srcs: net:_249_ net:_253_ net:_349_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_215_ net:_298_ + srcs: net:_248_ net:_392_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - + bbox = (22.8000, 22.8000) - (25.6500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_105_ net:_353_ net:_360_ net:dpath.a_lt_b$in1\[7\] - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - + srcs: net:_248_ net:_374_ net:_389_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 17.1000) - (34.2000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_221_ net:_381_ net:_397_ + srcs: net:_244_ net:_248_ net:_337_ net:_339_ net:net53 comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_019_ net:_114_ net:_409_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - + srcs: net:_059_ net:_109_ net:_142_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_272_ net:_284_ net:_377_ + srcs: net:_158_ net:_218_ net:_381_ net:_405_ comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_244_ net:_252_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_139_ net:_245_ net:_253_ + srcs: net:_158_ net:_244_ net:_294_ comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_070_ net:_421_ + srcs: net:_169_ net:_190_ net:_385_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_185_ net:_186_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - + srcs: net:_169_ net:_177_ net:_272_ net:_289_ net:_377_ + comment: capacity:2 usage:5 overflow:3 + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_243_ net:_352_ net:_353_ + srcs: net:resp_msg[14] net:net38 net:net39 comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - + bbox = (62.7000, 11.4000) - (65.5500, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_203_ net:_306_ + srcs: net:_184_ net:_198_ net:_385_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_298_ net:_375_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - + srcs: net:_060_ net:_110_ net:_236_ net:_246_ net:_249_ net:_413_ + comment: capacity:2 usage:6 overflow:4 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:net1 net:net13 net:net33 + srcs: net:_202_ net:_252_ net:_419_ comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 88.3500) - (65.5500, 91.2000) on Layer - + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_353_ + srcs: net:_126_ net:_133_ net:_258_ comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_145_ net:_147_ net:_236_ net:_287_ + srcs: net:_142_ net:_244_ net:_343_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - + bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_119_ net:_135_ net:_172_ net:_245_ net:_265_ - comment: capacity:2 usage:6 overflow:4 - bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - + srcs: net:_160_ net:_177_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_122_ net:_159_ net:_249_ net:_416_ - comment: capacity:2 usage:5 overflow:3 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - + srcs: net:_112_ net:_371_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_143_ net:_144_ net:_236_ net:_287_ + srcs: net:_076_ net:_110_ net:_398_ net:_413_ + comment: capacity:2 usage:4 overflow:2 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_172_ net:_245_ net:_263_ net:_264_ comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ net:net47 + srcs: net:_090_ net:_124_ net:_248_ comment: capacity:2 usage:3 overflow:1 - bbox = (85.5000, 37.0500) - (88.3500, 39.9000) on Layer - + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_193_ net:_353_ + srcs: net:clk net:_048_ net:_136_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_111_ net:_313_ net:_370_ net:_401_ + srcs: net:_127_ net:_352_ net:_363_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_372_ net:_414_ net:net41 - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_084_ net:_118_ net:_160_ + srcs: net:clk net:_160_ net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 71.2500) - (51.3000, 74.1000) on Layer - + bbox = (57.0000, 76.9500) - (59.8500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_109_ net:_142_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - + srcs: net:_112_ net:_128_ net:_130_ net:_352_ net:_401_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_272_ net:_297_ net:_377_ + srcs: net:_066_ net:_245_ net:_253_ net:_381_ comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_005_ net:_401_ net:net44 + srcs: net:_125_ net:_141_ net:_307_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_275_ net:_353_ + srcs: net:_248_ net:net46 net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - + bbox = (59.8500, 22.8000) - (62.7000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_227_ net:_352_ + srcs: net:_154_ net:_380_ net:_402_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - + bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - violation type: Horizontal congestion srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ comment: capacity:2 usage:5 overflow:3 bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_138_ net:_177_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - + srcs: net:_147_ net:_180_ net:_236_ net:_287_ + comment: capacity:2 usage:4 overflow:2 + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_119_ net:_391_ + srcs: net:_129_ net:_130_ net:_207_ net:_352_ net:_401_ + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_409_ net:net19 net:net40 comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - + bbox = (59.8500, 17.1000) - (62.7000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_069_ net:_375_ net:_386_ + srcs: net:_122_ net:_165_ net:_397_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_177_ net:_272_ net:_297_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - violation type: Horizontal congestion srcs: net:req_msg[14] net:net18 net:net37 comment: capacity:2 usage:3 overflow:1 bbox = (19.9500, 11.4000) - (22.8000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_154_ net:_380_ net:_402_ + srcs: net:req_msg[26] net:_380_ net:net37 comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - + bbox = (28.5000, 11.4000) - (31.3500, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_139_ net:_189_ net:_283_ + srcs: net:_149_ net:_206_ net:_207_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Horizontal congestion + srcs: net:_141_ net:_203_ net:_306_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_028_ net:_116_ net:_245_ net:_385_ + srcs: net:_165_ net:_245_ net:_253_ net:_412_ comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - + bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_114_ net:_252_ net:_408_ net:_409_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - + srcs: net:clk net:_245_ net:_360_ net:dpath.a_lt_b$in1\[7\] + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_144_ net:_253_ + srcs: net:_100_ net:_118_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - + bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - violation type: Horizontal congestion - srcs: net:_060_ net:_110_ net:_236_ net:_246_ net:_249_ net:_413_ - comment: capacity:2 usage:6 overflow:4 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - + srcs: net:clk net:_037_ net:_381_ net:_405_ + comment: capacity:2 usage:4 overflow:2 + bbox = (25.6500, 37.0500) - (28.5000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_112_ net:_372_ + srcs: net:_242_ net:_252_ net:_352_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_253_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - + srcs: net:_244_ net:_248_ net:_252_ net:_327_ net:net53 + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_119_ net:_135_ net:_172_ net:_245_ net:_265_ + comment: capacity:2 usage:6 overflow:4 + bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_248_ net:_387_ + srcs: net:_132_ net:_319_ net:_320_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_336_ net:_409_ + srcs: net:_067_ net:_123_ net:_143_ net:_245_ comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_216_ net:_244_ net:_375_ + srcs: net:clk net:_420_ net:net50 comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - + bbox = (31.3500, 62.7000) - (34.2000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_236_ net:_238_ + srcs: net:_239_ net:_240_ net:_385_ comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - + bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_297_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - + srcs: net:_171_ net:_177_ net:_195_ net:_199_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_184_ net:_198_ net:_271_ + srcs: net:_069_ net:_375_ net:_397_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_067_ net:_089_ net:_123_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - + srcs: net:_117_ net:_133_ net:_158_ net:_384_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_375_ net:_385_ + srcs: net:_396_ net:net39 net:net40 comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - + bbox = (79.8000, 11.4000) - (82.6500, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_061_ net:_165_ net:_411_ net:_412_ + srcs: net:_205_ net:_298_ net:_375_ net:_397_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_272_ net:_289_ net:_377_ - comment: capacity:2 usage:5 overflow:3 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_248_ net:_327_ net:_332_ net:net53 - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - + bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_272_ net:_284_ net:_377_ - comment: capacity:2 usage:5 overflow:3 + srcs: net:_169_ net:_177_ net:_189_ net:_272_ net:_284_ net:_377_ + comment: capacity:2 usage:6 overflow:4 bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:net1 net:net30 net:net33 - comment: capacity:2 usage:4 overflow:2 - bbox = (74.1000, 88.3500) - (76.9500, 91.2000) on Layer - + srcs: net:_128_ net:_148_ net:_200_ net:_220_ net:_302_ net:_311_ net:_381_ + comment: capacity:2 usage:7 overflow:5 + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_352_ net:_401_ + srcs: net:_015_ net:_375_ net:_397_ comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - + bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_249_ net:_381_ net:_397_ net:dpath.a_lt_b$in1\[11\] - comment: capacity:2 usage:5 overflow:3 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - + srcs: net:_070_ net:_111_ net:_313_ net:_370_ + comment: capacity:2 usage:4 overflow:2 + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_142_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - + srcs: net:_131_ net:_227_ net:_352_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_242_ net:_252_ net:_353_ + srcs: net:clk net:_394_ net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - + bbox = (48.4500, 76.9500) - (51.3000, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[31] net:req_val net:net33 + srcs: net:_160_ net:_382_ net:_417_ comment: capacity:2 usage:3 overflow:1 - bbox = (82.6500, 88.3500) - (85.5000, 91.2000) on Layer - + bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_220_ net:_317_ net:_381_ net:_397_ - comment: capacity:2 usage:6 overflow:4 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - + srcs: net:_203_ net:_204_ net:_298_ net:_375_ net:_397_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_066_ net:_245_ net:_253_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - + srcs: net:net1 net:net13 net:net33 + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 88.3500) - (71.2500, 91.2000) on Layer - violation type: Horizontal congestion - srcs: net:_202_ net:_252_ net:_419_ + srcs: net:_159_ net:net51 net:net52 comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - + bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_124_ net:_399_ + srcs: net:req_msg[20] net:net12 net:net37 comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - + bbox = (14.2500, 11.4000) - (17.1000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:_218_ net:_381_ net:_397_ net:_405_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - + srcs: net:_129_ net:_232_ net:_234_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_248_ net:_339_ net:_410_ net:net53 + srcs: net:clk net:_128_ net:_221_ net:_381_ net:dpath.a_lt_b$in1\[15\] comment: capacity:2 usage:5 overflow:3 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_254_ net:_258_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - + srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_160_ net:_249_ net:net49 + srcs: net:_028_ net:_116_ net:_245_ net:_397_ comment: capacity:2 usage:4 overflow:2 - bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_294_ + srcs: net:_160_ net:_175_ net:_278_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_381_ net:_397_ net:_405_ - comment: capacity:2 usage:4 overflow:2 - bbox = (22.8000, 37.0500) - (25.6500, 39.9000) on Layer - + srcs: net:_160_ net:_372_ net:_391_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 76.9500) - (68.4000, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_230_ + srcs: net:_027_ net:_248_ net:_389_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_397_ net:net42 + srcs: net:req_msg[15] net:req_msg[3] net:resp_rdy comment: capacity:2 usage:3 overflow:1 - bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - + bbox = (5.7000, 88.3500) - (8.5500, 91.2000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_257_ net:_404_ + srcs: net:_203_ net:_304_ net:_375_ net:_397_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_371_ net:net39 net:net43 - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 11.4000) - (54.1500, 14.2500) on Layer - + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ + srcs: net:_171_ net:_189_ net:_272_ net:_284_ net:_377_ comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_129_ net:_352_ + srcs: net:_009_ net:_126_ net:_159_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[3\] + comment: capacity:2 usage:6 overflow:4 + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_112_ net:_371_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - + bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_092_ net:_126_ net:_159_ net:_353_ + srcs: net:_186_ net:_283_ net:_353_ net:_377_ comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_051_ net:_123_ + srcs: net:req_msg[22] net:net39 net:net40 comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_020_ net:_043_ net:_115_ net:_142_ net:_158_ net:_244_ - comment: capacity:2 usage:6 overflow:4 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - + bbox = (82.6500, 11.4000) - (85.5000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[20] net:net12 net:net37 + srcs: net:_399_ net:_401_ net:net36 comment: capacity:2 usage:3 overflow:1 - bbox = (14.2500, 11.4000) - (17.1000, 14.2500) on Layer - + bbox = (22.8000, 48.4500) - (25.6500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_203_ net:_304_ net:_375_ + srcs: net:_160_ net:_298_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - + bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_122_ net:_159_ net:_249_ net:_281_ + srcs: net:_159_ net:_221_ net:_249_ net:_316_ net:_381_ comment: capacity:2 usage:5 overflow:3 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_143_ net:_236_ net:_287_ net:_388_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_100_ net:_118_ net:_160_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_391_ net:net13 + srcs: net:_124_ net:_244_ net:_300_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 76.9500) - (68.4000, 79.8000) on Layer - + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_165_ net:_173_ net:_245_ net:_253_ + comment: capacity:2 usage:5 overflow:3 + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_077_ net:_248_ net:_370_ net:_401_ + srcs: net:_114_ net:_252_ net:_336_ net:_409_ comment: capacity:2 usage:4 overflow:2 - bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_397_ net:net42 + srcs: net:_160_ net:_372_ net:_391_ comment: capacity:2 usage:3 overflow:1 - bbox = (19.9500, 37.0500) - (22.8000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_072_ net:_079_ net:_113_ net:_248_ net:_407_ net:net53 - comment: capacity:2 usage:6 overflow:4 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - + bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net19 net:net40 + srcs: net:_019_ net:_114_ net:_409_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - + bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ net:net44 + srcs: net:_248_ net:_387_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - + bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_178_ net:_180_ net:_183_ + srcs: net:_055_ net:_380_ net:_421_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - + bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_158_ net:_380_ + srcs: net:_160_ net:_369_ net:_376_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - + bbox = (74.1000, 68.4000) - (76.9500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_119_ net:dpath.a_lt_b$in0\[3\] + srcs: net:clk net:_394_ net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - + bbox = (45.6000, 76.9500) - (48.4500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_147_ net:_287_ + srcs: net:_162_ net:_403_ net:_421_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - + bbox = (31.3500, 59.8500) - (34.2000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_091_ net:_125_ net:_248_ net:_381_ net:_397_ net:_405_ net:dpath.a_lt_b$in0\[9\] - comment: capacity:2 usage:7 overflow:5 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:_244_ net:_343_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_420_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 62.7000) - (34.2000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_229_ net:_230_ net:_235_ net:_241_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_027_ net:_248_ net:_389_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - + srcs: net:_072_ net:_079_ net:_113_ net:_248_ net:_407_ net:net53 + comment: capacity:2 usage:6 overflow:4 + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_008_ net:_159_ net:_249_ + srcs: net:clk net:_112_ net:_371_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - + bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_046_ net:_118_ net:_160_ + srcs: net:_138_ net:_165_ net:dpath.a_lt_b$in1\[6\] comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ net:net41 + srcs: net:_138_ net:_160_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 31.3500) - (65.5500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_248_ net:_249_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - violation type: Horizontal congestion srcs: net:_140_ net:_217_ net:_306_ comment: capacity:2 usage:3 overflow:1 bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_076_ net:_110_ net:_249_ net:_398_ net:_413_ - comment: capacity:2 usage:5 overflow:3 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - + srcs: net:_120_ net:_160_ net:_415_ + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_169_ net:_190_ net:_245_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - + srcs: net:_089_ net:_253_ net:_417_ + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_394_ net:net52 + srcs: net:_073_ net:_209_ net:_329_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_124_ net:_353_ net:_386_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_184_ net:_272_ net:_348_ + srcs: net:_072_ net:_114_ net:_130_ net:_244_ net:_328_ comment: capacity:1 usage:5 overflow:4 - bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_154_ net:_157_ net:_160_ net:_402_ - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - + bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_174_ net:_253_ net:_262_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - + srcs: net:clk net:net9 + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 85.5000) - (45.6000, 88.3500) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_225_ net:_228_ net:_352_ + srcs: net:clk net:_159_ net:_384_ net:dpath.a_lt_b$in0\[1\] comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_193_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - + bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ net:net28 + srcs: net:_160_ net:_393_ net:_394_ comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 51.3000) - (91.2000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_376_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 71.2500) - (79.8000, 74.1000) on Layer - + bbox = (57.0000, 74.1000) - (59.8500, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_123_ + srcs: net:_176_ net:_272_ comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_190_ net:_191_ net:_245_ net:_248_ net:_291_ - comment: capacity:1 usage:6 overflow:5 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - + bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_188_ net:_189_ net:_283_ + srcs: net:_142_ net:_244_ net:_343_ net:_387_ comment: capacity:1 usage:4 overflow:3 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - + bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_134_ + srcs: net:_135_ net:dpath.a_lt_b$in1\[3\] comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - + bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net49 + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_197_ net:_262_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - + bbox = (11.4000, 45.6000) - (14.2500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_275_ net:_360_ + srcs: net:_144_ net:_236_ net:_388_ comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_180_ net:_182_ net:_250_ - comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_144_ net:_236_ net:_245_ net:_388_ - comment: capacity:1 usage:4 overflow:3 bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_142_ net:_370_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 39.9000) - (25.6500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_158_ - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 54.1500) - (42.7500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_165_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_392_ net:net51 comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 28.5000) - (14.2500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_072_ net:_371_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - + bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_376_ net:net30 + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 79.8000) - (79.8000, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_337_ net:_338_ net:_341_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_211_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_245_ net:_248_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_160_ net:_378_ net:_384_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - + bbox = (11.4000, 25.6500) - (14.2500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_318_ net:_327_ + srcs: net:req_msg[16] net:req_msg[2] comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - + bbox = (76.9500, 88.3500) - (79.8000, 91.2000) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_352_ + srcs: net:_138_ net:_193_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_147_ net:_150_ net:_153_ net:_161_ - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ + srcs: net:_245_ net:_253_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 37.0500) - (91.2000, 39.9000) on Layer - + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_125_ net:_158_ net:_244_ net:_248_ + srcs: net:clk net:_122_ net:_248_ net:_381_ comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_388_ net:_391_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 74.1000) - (65.5500, 76.9500) on Layer - + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:req_msg[16] net:req_msg[2] - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 91.2000) - (79.8000, 94.0500) on Layer - + srcs: net:_159_ net:_298_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_135_ net:dpath.a_lt_b$in1\[3\] + srcs: net:_165_ net:_414_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - + bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_075_ net:_401_ + srcs: net:_249_ net:_275_ net:_360_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[11] net:net47 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - + srcs: net:req_msg[22] net:req_msg[5] net:resp_msg[12] + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 5.7000) - (91.2000, 8.5500) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_268_ + srcs: net:_372_ net:net25 comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - + bbox = (88.3500, 65.5500) - (91.2000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_376_ net:net30 comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 37.0500) - (14.2500, 39.9000) on Layer - + bbox = (76.9500, 82.6500) - (79.8000, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_182_ net:_250_ net:_258_ + srcs: net:_248_ net:_371_ net:net46 comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_248_ net:_306_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - + bbox = (62.7000, 28.5000) - (65.5500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - + srcs: net:_118_ net:_159_ net:_393_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_053_ net:_401_ + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_221_ net:_224_ net:_318_ net:_327_ - comment: capacity:1 usage:5 overflow:4 - bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - + bbox = (42.7500, 71.2500) - (45.6000, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 48.4500) - (91.2000, 51.3000) on Layer - + srcs: net:_220_ net:_326_ net:_327_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_224_ net:_326_ net:_327_ + srcs: net:_169_ net:_171_ net:_253_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net24 + srcs: net:_370_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 59.8500) - (25.6500, 62.7000) on Layer - + bbox = (22.8000, 42.7500) - (25.6500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_414_ + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_235_ net:_253_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - + bbox = (11.4000, 42.7500) - (14.2500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_128_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 71.2500) - (25.6500, 74.1000) on Layer - + bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net17 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 48.4500) - (14.2500, 51.3000) on Layer - + srcs: net:_116_ net:_222_ net:_228_ net:_317_ net:_410_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net25 + srcs: net:_392_ net:_394_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 65.5500) - (91.2000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:net17 net:net36 - comment: capacity:1 usage:3 overflow:2 - bbox = (11.4000, 42.7500) - (14.2500, 45.6000) on Layer - + bbox = (11.4000, 82.6500) - (14.2500, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:clk net:_075_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 25.6500) - (14.2500, 28.5000) on Layer - + bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_392_ net:_394_ net:net17 + srcs: net:_205_ net:_213_ net:_214_ comment: capacity:1 usage:3 overflow:2 - bbox = (11.4000, 76.9500) - (14.2500, 79.8000) on Layer - + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 28.5000) - (31.3500, 31.3500) on Layer - + bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ net:_384_ + srcs: net:_138_ net:_248_ net:_288_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 65.5500) - (45.6000, 68.4000) on Layer - + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:req_msg[31] net:resp_msg[7] + srcs: net:_229_ net:_235_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 91.2000) - (91.2000, 94.0500) on Layer - -violation type: Vertical congestion - srcs: net:_396_ net:dpath.a_lt_b$in0\[4\] net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 37.0500) - (79.8000, 39.9000) on Layer - + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_270_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 19.9500) - (14.2500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_010_ net:_120_ net:_396_ net:dpath.a_lt_b$in1\[4\] - comment: capacity:1 usage:4 overflow:3 - bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - + bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_017_ net:_221_ net:dpath.a_lt_b$in1\[11\] + srcs: net:resp_msg[4] net:net46 net:net48 comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - + bbox = (11.4000, 8.5500) - (14.2500, 11.4000) on Layer - violation type: Vertical congestion - srcs: net:_141_ net:_353_ net:_362_ + srcs: net:_113_ net:_352_ net:_401_ comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_192_ net:_388_ + srcs: net:net2 net:net24 comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - + bbox = (17.1000, 85.5000) - (19.9500, 88.3500) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_353_ + srcs: net:_146_ net:_348_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_043_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - + srcs: net:_371_ net:net38 net:net48 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 14.2500) - (65.5500, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net24 + srcs: net:_126_ net:_182_ net:_258_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_072_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - + bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_248_ net:_288_ + srcs: net:_248_ net:_307_ net:_362_ comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_160_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - + srcs: net:_159_ net:_245_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_311_ net:net43 + srcs: net:_127_ net:_318_ net:_327_ net:_401_ comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_239_ net:_404_ + srcs: net:_159_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - + bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:net47 net:net49 + srcs: net:clk net:ctrl.state.out\[1\] comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_143_ net:_245_ net:_248_ net:_417_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - + srcs: net:_130_ net:_231_ net:_233_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_096_ net:_366_ net:_401_ + srcs: net:_165_ net:_249_ net:_411_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - + bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net13 + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 79.8000) - (65.5500, 82.6500) on Layer - + bbox = (11.4000, 31.3500) - (14.2500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_327_ net:_410_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - + srcs: net:_253_ net:_256_ net:_404_ net:_412_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_421_ net:net12 + srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - + bbox = (22.8000, 76.9500) - (25.6500, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_393_ net:net20 comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 22.8000) - (14.2500, 25.6500) on Layer - + bbox = (57.0000, 79.8000) - (59.8500, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_179_ net:_239_ net:_404_ + srcs: net:_150_ net:_202_ net:_252_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - + bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_353_ net:_393_ + srcs: net:_212_ net:_410_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_144_ net:_269_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - + bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_022_ net:_110_ net:_353_ + srcs: net:_370_ net:_397_ net:_401_ comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - + bbox = (22.8000, 34.2000) - (25.6500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_243_ net:_353_ + srcs: net:_332_ net:_339_ net:_410_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_185_ net:_353_ + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_136_ net:_137_ net:_187_ net:_415_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - + bbox = (11.4000, 34.2000) - (14.2500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:net19 net:net46 net:net48 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 14.2500) - (65.5500, 17.1000) on Layer - + srcs: net:_244_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_421_ + srcs: net:_142_ net:_244_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 28.5000) - (25.6500, 31.3500) on Layer - + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_126_ + srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - + bbox = (22.8000, 68.4000) - (25.6500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_203_ net:_304_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - + srcs: net:_145_ net:_174_ net:_197_ net:_262_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ + srcs: net:_160_ net:_165_ comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - + bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_088_ net:dpath.a_lt_b$in0\[6\] - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - + srcs: net:_204_ net:_298_ + comment: capacity:1 usage:2 overflow:1 + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_298_ net:_385_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - + srcs: net:_113_ net:_129_ net:_352_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:req_msg[31] net:resp_msg[7] + srcs: net:_160_ net:_376_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 88.3500) - (91.2000, 91.2000) on Layer - + bbox = (76.9500, 74.1000) - (79.8000, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_244_ + srcs: net:net47 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - + bbox = (88.3500, 34.2000) - (91.2000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:net28 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 48.4500) - (82.6500, 51.3000) on Layer - + srcs: net:_171_ net:_177_ net:_184_ net:_272_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_144_ net:_269_ + srcs: net:_142_ net:_244_ net:_308_ comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - + bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 76.9500) - (25.6500, 79.8000) on Layer - + bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_352_ + srcs: net:_113_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - + bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net49 + srcs: net:req_msg[5] net:net10 comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 14.2500) - (79.8000, 17.1000) on Layer - + bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net17 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 54.1500) - (14.2500, 57.0000) on Layer - + srcs: net:_123_ net:_190_ net:_191_ net:_248_ net:_291_ + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_022_ net:_110_ + comment: capacity:1 usage:3 overflow:2 + bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_330_ net:_352_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_026_ net:_390_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 17.1000) - (14.2500, 19.9500) on Layer - + bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_130_ + srcs: net:_388_ net:net33 comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - + bbox = (62.7000, 79.8000) - (65.5500, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:net19 net:net46 net:net48 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 11.4000) - (65.5500, 14.2500) on Layer - + srcs: net:_192_ net:_388_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_159_ net:_393_ + srcs: net:clk net:_021_ net:_249_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:net46 net:net48 + srcs: net:_302_ net:_419_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 8.5500) - (65.5500, 11.4000) on Layer - + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_071_ net:_159_ net:_397_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - + srcs: net:_059_ net:_142_ net:_150_ net:_385_ + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - violation type: Vertical congestion srcs: net:clk net:_011_ net:_121_ net:_137_ net:_160_ comment: capacity:1 usage:5 overflow:4 bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_270_ net:_388_ + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - + bbox = (11.4000, 28.5000) - (14.2500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_041_ net:_371_ + srcs: net:_043_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_009_ net:_119_ net:_249_ net:_267_ net:_388_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ net:net15 + srcs: net:_160_ net:_249_ net:_396_ comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 39.9000) - (91.2000, 42.7500) on Layer - + bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_392_ + srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_393_ net:net20 + srcs: net:clk net:_007_ net:_159_ net:_384_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 82.6500) - (59.8500, 85.5000) on Layer - + bbox = (42.7500, 79.8000) - (45.6000, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_213_ net:_214_ + srcs: net:_160_ net:_229_ net:_235_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_396_ net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 34.2000) - (79.8000, 37.0500) on Layer - + srcs: net:_370_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 59.8500) - (25.6500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_307_ net:_362_ + srcs: net:_215_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_377_ net:net49 + srcs: net:_372_ net:net11 comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 45.6000) - (82.6500, 48.4500) on Layer - + bbox = (88.3500, 59.8500) - (91.2000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_039_ net:_252_ net:dpath.a_lt_b$in1\[10\] - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - + srcs: net:clk net:net47 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_176_ net:_272_ + srcs: net:net38 net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - + bbox = (62.7000, 11.4000) - (65.5500, 14.2500) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:net15 + srcs: net:_344_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (85.5000, 42.7500) - (88.3500, 45.6000) on Layer - + bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:req_msg[16] net:req_msg[2] + srcs: net:net10 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 88.3500) - (79.8000, 91.2000) on Layer - + bbox = (88.3500, 17.1000) - (91.2000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[2\] + srcs: net:_252_ net:net53 comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - + bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_353_ net:_393_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_386_ + srcs: net:req_msg[31] net:resp_msg[7] comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - + bbox = (88.3500, 88.3500) - (91.2000, 91.2000) on Layer - +violation type: Vertical congestion + srcs: net:_051_ net:_139_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - violation type: Vertical congestion srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 bbox = (22.8000, 85.5000) - (25.6500, 88.3500) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_149_ net:_227_ + srcs: net:_143_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_082_ net:_249_ net:_350_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_392_ net:_394_ + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 76.9500) - (14.2500, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_248_ net:_410_ + srcs: net:_119_ net:_172_ net:_264_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - + bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ net:net8 + srcs: net:_163_ net:_164_ net:_421_ comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 45.6000) - (91.2000, 48.4500) on Layer - + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_249_ net:_268_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 34.2000) - (25.6500, 37.0500) on Layer - + bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_142_ net:_370_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 37.0500) - (25.6500, 39.9000) on Layer - + srcs: net:_117_ net:_133_ net:_147_ net:_165_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_371_ net:_409_ net:net38 net:net48 + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 17.1000) - (65.5500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_215_ net:_298_ net:_353_ + srcs: net:_372_ net:net28 net:net49 comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - + bbox = (88.3500, 51.3000) - (91.2000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_386_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_402_ net:_403_ + comment: capacity:1 usage:2 overflow:1 + bbox = (34.2000, 54.1500) - (37.0500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_047_ net:_101_ net:_356_ + comment: capacity:1 usage:4 overflow:3 + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_050_ net:_104_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_372_ net:_396_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 31.3500) - (79.8000, 34.2000) on Layer - violation type: Vertical congestion srcs: net:_372_ net:net25 net:net45 comment: capacity:1 usage:3 overflow:2 bbox = (88.3500, 71.2500) - (91.2000, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_103_ net:_121_ net:_137_ net:_160_ - comment: capacity:1 usage:5 overflow:4 - bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_313_ net:_314_ + srcs: net:_109_ net:_243_ net:_353_ net:_401_ comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_059_ net:_142_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 39.9000) - (14.2500, 42.7500) on Layer - + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_145_ net:_173_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - + srcs: net:_159_ net:_165_ net:_249_ net:_398_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_163_ net:_164_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - + srcs: net:_070_ net:_142_ net:_244_ net:_313_ net:_314_ + comment: capacity:1 usage:5 overflow:4 + bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - violation type: Vertical congestion srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 65.5500) - (25.6500, 68.4000) on Layer - + bbox = (22.8000, 71.2500) - (25.6500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_367_ + srcs: net:_388_ net:_391_ comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - + bbox = (62.7000, 74.1000) - (65.5500, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_418_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - + srcs: net:_136_ net:_137_ net:_187_ net:_245_ net:_415_ + comment: capacity:1 usage:5 overflow:4 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:net47 net:net49 + srcs: net:resp_msg[14] net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 39.9000) - (82.6500, 42.7500) on Layer - + bbox = (62.7000, 5.7000) - (65.5500, 8.5500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_021_ net:_401_ + srcs: net:_248_ net:_371_ net:net46 comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_020_ net:_131_ net:_252_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - + bbox = (62.7000, 22.8000) - (65.5500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_393_ net:_394_ + srcs: net:_248_ net:_390_ net:_409_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 74.1000) - (59.8500, 76.9500) on Layer - + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_352_ + srcs: net:_388_ net:_391_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - + bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] + srcs: net:_376_ net:net30 comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - + bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 19.9500) - (79.8000, 22.8000) on Layer - + srcs: net:clk net:_159_ net:_384_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 65.5500) - (45.6000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_231_ net:_352_ + srcs: net:_099_ net:_159_ net:_384_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_129_ net:_213_ net:_235_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:_397_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (22.8000, 39.9000) - (25.6500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net36 + srcs: net:_370_ net:_401_ comment: capacity:1 usage:2 overflow:1 bbox = (22.8000, 45.6000) - (25.6500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_133_ net:_165_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_020_ net:_131_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - +violation type: Vertical congestion + srcs: net:_037_ net:_091_ net:_248_ + comment: capacity:1 usage:3 overflow:2 + bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - violation type: Vertical congestion srcs: net:clk net:_121_ net:_160_ comment: capacity:1 usage:3 overflow:2 bbox = (76.9500, 54.1500) - (79.8000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_122_ net:_248_ net:_381_ - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[14] net:net46 + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 8.5500) - (25.6500, 11.4000) on Layer - + bbox = (11.4000, 48.4500) - (14.2500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 42.7500) - (25.6500, 45.6000) on Layer - + srcs: net:_159_ net:_165_ net:_166_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_230_ net:_242_ + srcs: net:_372_ net:net25 net:net45 comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - + bbox = (88.3500, 74.1000) - (91.2000, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:net10 net:net40 + srcs: net:_120_ net:_245_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 14.2500) - (91.2000, 17.1000) on Layer - + bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_248_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_352_ net:net43 + srcs: net:_158_ net:_418_ comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_376_ + srcs: net:_372_ net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - + bbox = (88.3500, 54.1500) - (91.2000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_272_ net:_348_ net:_388_ + srcs: net:_089_ net:_236_ net:_292_ net:_388_ net:_417_ comment: capacity:1 usage:5 overflow:4 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:net2 net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 85.5000) - (19.9500, 88.3500) on Layer - + srcs: net:_145_ net:_173_ net:_348_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net25 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 62.7000) - (91.2000, 65.5500) on Layer - + srcs: net:_002_ net:_004_ net:_160_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net45 + srcs: net:clk net:dpath.a_lt_b$in0\[2\] comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 68.4000) - (79.8000, 71.2500) on Layer - + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_031_ net:_119_ net:_388_ + srcs: net:_174_ net:_199_ net:_238_ comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_042_ net:_371_ + srcs: net:clk net:_160_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 14.2500) - (57.0000, 17.1000) on Layer - + bbox = (76.9500, 57.0000) - (79.8000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_196_ net:_197_ net:_272_ net:_348_ + srcs: net:clk net:_025_ net:_079_ net:_407_ comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - + bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net17 + srcs: net:req_msg[31] net:resp_msg[7] comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 51.3000) - (14.2500, 54.1500) on Layer - + bbox = (88.3500, 91.2000) - (91.2000, 94.0500) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_245_ net:_292_ net:_388_ net:_417_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - + srcs: net:_370_ net:net24 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[4] net:net48 + srcs: net:_160_ net:_376_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 5.7000) - (14.2500, 8.5500) on Layer - + bbox = (76.9500, 71.2500) - (79.8000, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_160_ net:_249_ - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 57.0000) - (79.8000, 59.8500) on Layer - + srcs: net:_150_ net:_158_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 54.1500) - (42.7500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_402_ + srcs: net:_248_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - + bbox = (22.8000, 25.6500) - (25.6500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_376_ + srcs: net:_370_ net:_399_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 74.1000) - (79.8000, 76.9500) on Layer - + bbox = (22.8000, 48.4500) - (25.6500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_133_ net:_165_ net:_384_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - + srcs: net:_073_ net:_252_ net:_408_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_007_ net:_159_ + srcs: net:_148_ net:_150_ net:net43 comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - + bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:net18 net:net46 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 14.2500) - (25.6500, 17.1000) on Layer - + srcs: net:_027_ net:_248_ net:_374_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_112_ net:_132_ net:_207_ net:_213_ net:_235_ - comment: capacity:1 usage:5 overflow:4 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - + srcs: net:clk net:_364_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - violation type: Vertical congestion srcs: net:_159_ net:_165_ net:_414_ comment: capacity:1 usage:3 overflow:2 bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_215_ net:_352_ + srcs: net:_127_ net:_200_ net:_252_ comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_160_ net:net45 + srcs: net:_372_ net:_388_ net:net33 comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 62.7000) - (79.8000, 65.5500) on Layer - + bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:req_msg[5] net:resp_msg[12] + srcs: net:_248_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 2.8500) - (91.2000, 5.7000) on Layer - + bbox = (22.8000, 22.8000) - (25.6500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_384_ + srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 74.1000) - (45.6000, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_166_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_012_ net:_050_ net:_122_ net:_245_ net:_248_ net:dpath.a_lt_b$in1\[6\] - comment: capacity:1 usage:7 overflow:6 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - + bbox = (22.8000, 82.6500) - (25.6500, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ + srcs: net:net16 net:net30 comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 42.7500) - (91.2000, 45.6000) on Layer - + bbox = (76.9500, 85.5000) - (79.8000, 88.3500) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_201_ net:_213_ net:_235_ + srcs: net:_044_ net:_098_ net:_347_ net:_352_ comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_411_ + srcs: net:_412_ net:net33 net:net50 comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - + bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ net:net46 + srcs: net:_372_ net:net15 net:net49 comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 28.5000) - (65.5500, 31.3500) on Layer - + bbox = (88.3500, 42.7500) - (91.2000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_392_ net:net51 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_243_ net:_252_ net:_352_ + srcs: net:_031_ net:_119_ net:_388_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_170_ net:_177_ net:_253_ net:_284_ + srcs: net:resp_msg[2] net:net50 + comment: capacity:1 usage:2 overflow:1 + bbox = (8.5500, 62.7000) - (11.4000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_149_ net:_352_ net:_401_ net:net43 comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_249_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - + srcs: net:_372_ net:net25 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 68.4000) - (91.2000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:req_msg[22] net:resp_msg[12] + srcs: net:net20 net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 8.5500) - (91.2000, 11.4000) on Layer - + bbox = (88.3500, 82.6500) - (91.2000, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_172_ net:_264_ + srcs: net:_160_ net:_393_ net:_394_ comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - + bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - + srcs: net:_118_ net:_145_ net:_174_ + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_240_ net:_404_ + srcs: net:_370_ net:_397_ net:_401_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - + bbox = (22.8000, 31.3500) - (25.6500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_253_ net:_256_ net:_404_ net:_412_ - comment: capacity:1 usage:5 overflow:4 - bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - + srcs: net:_229_ net:_235_ net:_250_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_111_ net:_127_ net:_149_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - + srcs: net:_380_ net:_392_ + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 54.1500) - (14.2500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_169_ net:_171_ net:_253_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - + srcs: net:_117_ net:_165_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_180_ net:_183_ net:_236_ net:_250_ + srcs: net:_206_ net:_327_ net:_341_ net:_346_ comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - + bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:net17 net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - + srcs: net:_138_ net:_189_ net:_248_ net:_289_ net:_290_ net:_296_ + comment: capacity:1 usage:6 overflow:5 + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:net46 net:net48 + srcs: net:resp_msg[14] net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 19.9500) - (65.5500, 22.8000) on Layer - + bbox = (62.7000, 8.5500) - (65.5500, 11.4000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_372_ net:net25 comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 82.6500) - (25.6500, 85.5000) on Layer - + bbox = (88.3500, 62.7000) - (91.2000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_393_ net:_394_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - + srcs: net:_160_ net:net45 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 65.5500) - (79.8000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_131_ net:net43 net:net53 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - + srcs: net:_143_ net:_253_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net10 net:net49 + srcs: net:_240_ net:_250_ net:_404_ comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 25.6500) - (79.8000, 28.5000) on Layer - + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_252_ + srcs: net:_253_ net:_416_ comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_410_ net:dpath.a_lt_b$in0\[13\] comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 34.2000) - (57.0000, 37.0500) on Layer - + bbox = (45.6000, 14.2500) - (48.4500, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_047_ net:_101_ net:_356_ - comment: capacity:1 usage:4 overflow:3 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - + srcs: net:clk net:_160_ net:net45 + comment: capacity:1 usage:3 overflow:2 + bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:net16 net:net30 + srcs: net:_372_ net:_396_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 85.5000) - (79.8000, 88.3500) on Layer - + bbox = (76.9500, 28.5000) - (79.8000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ net:_384_ net:dpath.a_lt_b$in0\[1\] + srcs: net:_174_ net:_198_ net:_348_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_088_ net:dpath.a_lt_b$in0\[6\] + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ net:net41 net:net46 comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - + bbox = (62.7000, 31.3500) - (65.5500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_372_ net:net49 net:net8 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 45.6000) - (91.2000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_259_ net:_404_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 79.8000) - (25.6500, 82.6500) on Layer - + bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_001_ net:net7 + srcs: net:_372_ net:net15 net:net49 + comment: capacity:1 usage:3 overflow:2 + bbox = (88.3500, 39.9000) - (91.2000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[5] net:resp_msg[12] comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - + bbox = (88.3500, 0.0000) - (91.2000, 2.8500) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_410_ + srcs: net:_130_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_082_ net:_249_ net:_350_ + srcs: net:_096_ net:_366_ net:_401_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - + bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_348_ net:_388_ + srcs: net:req_msg[22] net:req_msg[5] net:resp_msg[12] comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - + bbox = (88.3500, 8.5500) - (91.2000, 11.4000) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_401_ + srcs: net:_165_ net:_348_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - + bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[14] net:net48 + srcs: net:_001_ net:net7 comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 5.7000) - (65.5500, 8.5500) on Layer - + bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_421_ net:net12 + srcs: net:_194_ net:_297_ comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_209_ net:_252_ + srcs: net:_109_ net:_150_ net:_385_ + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[5] net:resp_msg[12] comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - + bbox = (88.3500, 2.8500) - (91.2000, 5.7000) on Layer - +violation type: Vertical congestion + srcs: net:_376_ net:net30 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 79.8000) - (79.8000, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_398_ + srcs: net:_174_ net:_180_ net:_348_ comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_228_ net:_317_ net:_410_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - + srcs: net:net47 net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (88.3500, 28.5000) - (91.2000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_385_ net:dpath.a_lt_b$in1\[5\] comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 31.3500) - (25.6500, 34.2000) on Layer - + bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_044_ net:_098_ net:_249_ net:_347_ net:_352_ - comment: capacity:1 usage:5 overflow:4 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - + srcs: net:_114_ net:_334_ net:_336_ net:_410_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_248_ net:_289_ net:_290_ net:_296_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - + srcs: net:clk net:_053_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_124_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_142_ net:_150_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - + srcs: net:_215_ net:_352_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_068_ net:_140_ net:_299_ + srcs: net:_126_ net:_180_ net:_182_ comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_152_ net:_162_ net:_403_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - + srcs: net:_118_ net:_165_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_384_ + srcs: net:clk net:_248_ net:net46 comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - + bbox = (62.7000, 34.2000) - (65.5500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:net10 net:net47 + srcs: net:_371_ net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 19.9500) - (91.2000, 22.8000) on Layer - + bbox = (62.7000, 19.9500) - (65.5500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_416_ + srcs: net:_380_ net:net18 comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - + bbox = (22.8000, 11.4000) - (25.6500, 14.2500) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net46 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 22.8000) - (65.5500, 25.6500) on Layer - + srcs: net:_112_ net:_132_ net:_207_ net:_213_ net:_235_ + comment: capacity:1 usage:5 overflow:4 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_105_ net:_245_ net:dpath.a_lt_b$in1\[7\] + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_388_ net:net13 + srcs: net:_138_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_342_ net:_344_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - + srcs: net:_370_ net:_397_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (22.8000, 37.0500) - (25.6500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_194_ net:_297_ + srcs: net:_178_ net:_236_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_199_ net:_238_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - + srcs: net:clk net:_407_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_410_ net:net3 + srcs: net:_272_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 11.4000) - (45.6000, 14.2500) on Layer - + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_167_ net:_213_ net:_235_ + srcs: net:clk net:_159_ net:_376_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_219_ net:_252_ net:_302_ comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_209_ net:_252_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 14.2500) - (14.2500, 17.1000) on Layer - + bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net49 + srcs: net:_071_ net:_159_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 17.1000) - (79.8000, 19.9500) on Layer - + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net46 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 34.2000) - (65.5500, 37.0500) on Layer - + srcs: net:_139_ net:_169_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_266_ + srcs: net:_421_ net:net12 comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_073_ net:_114_ net:_334_ net:_336_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - + bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_372_ + srcs: net:_281_ net:_416_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 54.1500) - (91.2000, 57.0000) on Layer - + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_092_ net:_165_ net:_261_ + srcs: net:_068_ net:_140_ net:_299_ comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_229_ net:_235_ + srcs: net:_160_ net:_376_ net:net45 comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - + bbox = (76.9500, 68.4000) - (79.8000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_009_ net:_119_ net:_249_ net:_267_ net:_388_ + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 74.1000) - (25.6500, 76.9500) on Layer - + bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_206_ net:_341_ net:_346_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - + srcs: net:_179_ net:_239_ net:_250_ net:_404_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_027_ net:_248_ net:_374_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - + srcs: net:_380_ net:_392_ + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 22.8000) - (14.2500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_396_ net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 31.3500) - (79.8000, 34.2000) on Layer - + srcs: net:_372_ net:_396_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 34.2000) - (79.8000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_178_ net:_198_ + srcs: net:_123_ net:_248_ net:_417_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_129_ net:_401_ + srcs: net:_140_ net:_203_ net:_304_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_392_ net:_394_ net:net17 + srcs: net:resp_msg[11] net:net47 net:net49 comment: capacity:1 usage:3 overflow:2 - bbox = (11.4000, 82.6500) - (14.2500, 85.5000) on Layer - + bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_348_ net:_401_ + srcs: net:_118_ net:_126_ net:_134_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - + bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_099_ net:_159_ + srcs: net:_006_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_002_ net:_004_ net:_160_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_212_ net:_332_ + srcs: net:_239_ net:_250_ net:_404_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ net:net46 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 25.6500) - (65.5500, 28.5000) on Layer - + srcs: net:_370_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 79.8000) - (25.6500, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_210_ net:_233_ + srcs: net:_159_ net:_160_ net:_353_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - + bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:net13 net:net22 + srcs: net:_140_ net:_158_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 85.5000) - (65.5500, 88.3500) on Layer - + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_111_ net:_127_ net:_200_ net:_252_ + srcs: net:_103_ net:_121_ net:_137_ net:_160_ comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - + bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_119_ net:_249_ net:_388_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_271_ + srcs: net:_165_ net:_348_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - + bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_250_ + srcs: net:_400_ net:_421_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - + bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_386_ + srcs: net:_245_ net:_415_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - + bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_386_ + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - + bbox = (42.7500, 82.6500) - (45.6000, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_219_ net:_252_ net:_302_ + srcs: net:_111_ net:_149_ net:net43 + comment: capacity:1 usage:3 overflow:2 + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_201_ net:_213_ net:_235_ comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - + bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_364_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - + srcs: net:clk net:_012_ net:_122_ net:_248_ net:dpath.a_lt_b$in1\[6\] + comment: capacity:1 usage:5 overflow:4 + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_213_ net:_235_ net:_253_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_392_ net:_394_ net:net17 + srcs: net:_170_ net:_253_ net:_416_ comment: capacity:1 usage:3 overflow:2 - bbox = (11.4000, 79.8000) - (14.2500, 82.6500) on Layer - + bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_072_ net:_114_ net:_130_ net:_244_ net:_328_ net:_352_ - comment: capacity:1 usage:6 overflow:5 - bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - + srcs: net:_154_ net:_157_ net:_160_ net:_402_ + comment: capacity:1 usage:4 overflow:3 + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:net10 net:net47 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 17.1000) - (91.2000, 19.9500) on Layer - + srcs: net:_136_ net:_175_ net:_245_ net:_277_ net:_415_ + comment: capacity:1 usage:5 overflow:4 + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_003_ net:_055_ + srcs: net:_110_ net:_126_ net:_245_ comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_220_ net:_222_ net:_225_ net:_228_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - + srcs: net:_125_ net:_142_ net:_158_ net:_244_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net45 + srcs: net:_142_ net:_244_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 65.5500) - (79.8000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_026_ net:_390_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - + bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_102_ net:_120_ net:_396_ - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - + srcs: net:_115_ net:_142_ net:_158_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_212_ net:_327_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - + srcs: net:_159_ net:_348_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net24 + srcs: net:_421_ net:net12 comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 57.0000) - (25.6500, 59.8500) on Layer - + bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_245_ + srcs: net:_128_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_244_ net:_343_ net:_387_ - comment: capacity:1 usage:5 overflow:4 - bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - + srcs: net:_396_ net:net40 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 14.2500) - (79.8000, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_259_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - + srcs: net:_124_ net:_142_ net:_244_ net:_386_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net41 net:net46 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 31.3500) - (65.5500, 34.2000) on Layer - + srcs: net:_160_ net:_165_ net:_230_ net:_242_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_127_ net:_148_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - + srcs: net:net22 net:net33 + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 85.5000) - (65.5500, 88.3500) on Layer - violation type: Vertical congestion - srcs: net:_057_ net:_156_ net:_421_ + srcs: net:_205_ net:_253_ net:_401_ comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 31.3500) - (14.2500, 34.2000) on Layer - + bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net17 + srcs: net:_116_ net:_222_ net:_224_ net:_225_ net:_228_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 45.6000) - (14.2500, 48.4500) on Layer - + bbox = (22.8000, 62.7000) - (25.6500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_150_ + srcs: net:_183_ net:_236_ comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:req_msg[22] net:req_msg[5] net:resp_msg[12] + srcs: net:_142_ net:_248_ net:_386_ comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 5.7000) - (91.2000, 8.5500) on Layer - + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_249_ net:net45 + srcs: net:_114_ net:_130_ net:_211_ comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - + bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_404_ net:_411_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - + srcs: net:_122_ net:_138_ net:_248_ + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_136_ + srcs: net:_389_ net:net43 comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - + bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - +violation type: Vertical congestion + srcs: net:_141_ net:_218_ net:_309_ net:_310_ + comment: capacity:1 usage:4 overflow:3 + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net36 + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 34.2000) - (14.2500, 37.0500) on Layer - + bbox = (11.4000, 37.0500) - (14.2500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_006_ + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - + bbox = (11.4000, 51.3000) - (14.2500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_131_ net:_227_ net:_327_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_228_ net:_410_ comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_092_ net:_165_ net:_261_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:_114_ net:_130_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 68.4000) - (25.6500, 71.2500) on Layer - + bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_402_ net:_403_ + srcs: net:_158_ net:_405_ comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 54.1500) - (37.0500, 57.0000) on Layer - + bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_146_ net:_174_ + srcs: net:_380_ net:_392_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - + bbox = (11.4000, 39.9000) - (14.2500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_207_ net:_327_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - + srcs: net:_126_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_250_ + srcs: net:_152_ net:_403_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - + bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_248_ + srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - + bbox = (22.8000, 74.1000) - (25.6500, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net25 net:net45 + srcs: net:_016_ net:_252_ net:dpath.a_lt_b$in1\[10\] comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 74.1000) - (91.2000, 76.9500) on Layer - + bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_051_ net:_105_ net:_139_ + srcs: net:_008_ net:_134_ net:dpath.a_lt_b$in1\[2\] comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - + bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_225_ net:_228_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net10 net:net49 + srcs: net:_253_ net:_262_ net:_348_ comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 22.8000) - (79.8000, 25.6500) on Layer - + bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_276_ + srcs: net:net27 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - + bbox = (79.8000, 11.4000) - (82.6500, 14.2500) on Layer - violation type: Vertical congestion - srcs: net:net17 net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - + srcs: net:clk net:_158_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:dpath.a_lt_b$in1\[5\] net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - + srcs: net:clk net:_123_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_390_ net:_409_ net:_410_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - + srcs: net:_010_ net:_120_ net:_249_ net:_396_ net:dpath.a_lt_b$in1\[4\] + comment: capacity:1 usage:5 overflow:4 + bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_371_ net:_407_ + srcs: net:_249_ net:_396_ net:dpath.a_lt_b$in0\[4\] comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - + bbox = (76.9500, 37.0500) - (79.8000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_160_ net:_395_ net:_396_ - comment: capacity:1 usage:4 overflow:3 - bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - + srcs: net:_392_ net:_394_ + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 79.8000) - (14.2500, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_408_ + srcs: net:net10 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - + bbox = (88.3500, 19.9500) - (91.2000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_308_ + srcs: net:_243_ net:_252_ net:_353_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_365_ net:_372_ comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - + bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_204_ net:_298_ + srcs: net:_160_ net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - + bbox = (76.9500, 62.7000) - (79.8000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_129_ net:_210_ comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_136_ net:_175_ net:_277_ net:_415_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - + bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_142_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - + srcs: net:_142_ net:_248_ net:_386_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_142_ net:_158_ net:net43 + srcs: net:_115_ net:_131_ net:_352_ net:net43 comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - + bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_141_ net:_218_ net:_309_ net:_310_ + srcs: net:_141_ net:_248_ net:_353_ net:_362_ comment: capacity:1 usage:4 overflow:3 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_365_ net:_371_ + srcs: net:_245_ net:_276_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_248_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - + bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_133_ net:_165_ + srcs: net:_158_ net:_313_ comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_353_ + srcs: net:_150_ net:_252_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_229_ net:_235_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - + bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_213_ net:_235_ + srcs: net:_252_ net:_342_ net:_367_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - + bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:net36 + srcs: net:_370_ net:net24 comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - + bbox = (22.8000, 57.0000) - (25.6500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[4] net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 8.5500) - (14.2500, 11.4000) on Layer - + srcs: net:_122_ net:_159_ net:_160_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_302_ net:_419_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - + srcs: net:_057_ net:_156_ net:_162_ net:_421_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_165_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_089_ net:_253_ + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - + bbox = (42.7500, 74.1000) - (45.6000, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_150_ net:_253_ + srcs: net:_250_ net:_404_ net:_411_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_388_ net:_391_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - + srcs: net:_132_ net:_167_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[2] net:net50 + srcs: net:_248_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (8.5500, 62.7000) - (11.4000, 65.5500) on Layer - + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_384_ + srcs: net:resp_msg[4] net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 71.2500) - (45.6000, 74.1000) on Layer - + bbox = (11.4000, 5.7000) - (14.2500, 8.5500) on Layer - violation type: Vertical congestion - srcs: net:_008_ net:_134_ net:dpath.a_lt_b$in1\[2\] - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - + srcs: net:_115_ net:_158_ net:_352_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:net10 net:net40 + srcs: net:_245_ net:_266_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - + srcs: net:_338_ net:_341_ net:net53 + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:resp_val net:net47 + srcs: net:_388_ net:net33 comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 22.8000) - (91.2000, 25.6500) on Layer - + bbox = (62.7000, 82.6500) - (65.5500, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net25 + srcs: net:net17 net:net36 comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 68.4000) - (91.2000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:net43 net:net53 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - + bbox = (5.7000, 45.6000) - (8.5500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_412_ net:net33 net:net50 + srcs: net:_327_ net:_337_ net:_410_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_175_ net:_353_ + srcs: net:clk net:_041_ comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - + bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net35 + srcs: net:_372_ net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 62.7000) - (25.6500, 65.5500) on Layer - + bbox = (88.3500, 37.0500) - (91.2000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_281_ net:_416_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - + srcs: net:_127_ net:_200_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_200_ net:net43 + srcs: net:_372_ net:net28 net:net49 comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - + bbox = (88.3500, 48.4500) - (91.2000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_352_ + srcs: net:_175_ net:_249_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - + bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_275_ net:_280_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - + srcs: net:_142_ net:_150_ net:_253_ net:_385_ + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 65.5500) - (76.9500, 68.4000) on Layer - + srcs: net:_128_ net:_221_ net:_224_ net:_318_ net:_327_ net:_401_ + comment: capacity:1 usage:6 overflow:5 + bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_332_ net:_339_ + srcs: net:net47 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - + bbox = (88.3500, 25.6500) - (91.2000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:clk net:ctrl.state.out\[1\] + srcs: net:_370_ net:net35 comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - + bbox = (22.8000, 65.5500) - (25.6500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - + srcs: net:_170_ net:_177_ net:_253_ net:_284_ + comment: capacity:1 usage:4 overflow:3 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_139_ net:_169_ net:_253_ + srcs: net:_150_ net:_153_ net:_161_ comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - + bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_249_ net:_411_ + srcs: net:_213_ net:_245_ net:_298_ comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_185_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_413_ + srcs: net:_396_ net:net40 comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - + bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:_399_ + srcs: net:_207_ net:_410_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 48.4500) - (25.6500, 51.3000) on Layer - + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_159_ net:_165_ net:_388_ + srcs: net:_142_ net:_158_ net:_244_ net:_306_ comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net11 + srcs: net:_039_ net:_158_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 59.8500) - (91.2000, 62.7000) on Layer - + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_272_ + srcs: net:_245_ net:_253_ comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - + bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_245_ net:_397_ + srcs: net:_210_ net:_212_ net:_332_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_376_ net:net30 + srcs: net:_249_ net:_275_ net:_280_ comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - + bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net49 + srcs: net:_370_ net:net24 comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 28.5000) - (79.8000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_037_ net:_091_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - + bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_409_ net:net38 net:net46 net:net48 + srcs: net:_196_ net:_197_ net:_271_ net:_272_ comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 17.1000) - (65.5500, 19.9500) on Layer - + bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_389_ net:net43 + srcs: net:net20 net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - + bbox = (88.3500, 79.8000) - (91.2000, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_025_ net:_079_ net:_371_ net:_407_ - comment: capacity:1 usage:5 overflow:4 - bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - + srcs: net:_188_ net:_283_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:net18 net:net46 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 11.4000) - (25.6500, 14.2500) on Layer - + srcs: net:_171_ net:_177_ net:_272_ net:_388_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:req_msg[5] net:resp_msg[12] + srcs: net:req_msg[16] net:req_msg[2] comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 0.0000) - (91.2000, 2.8500) on Layer - + bbox = (76.9500, 91.2000) - (79.8000, 94.0500) on Layer - +violation type: Vertical congestion + srcs: net:_102_ net:_120_ net:_249_ net:_396_ + comment: capacity:1 usage:4 overflow:3 + bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_016_ net:_070_ net:_401_ + srcs: net:clk net:_003_ net:_055_ comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - + bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_142_ net:_158_ net:_248_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - + srcs: net:_248_ net:_371_ net:net46 + comment: capacity:1 usage:3 overflow:2 + bbox = (62.7000, 25.6500) - (65.5500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_170_ net:_253_ net:_416_ + srcs: net:_150_ net:_202_ net:_311_ net:net43 comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:_221_ net:dpath.a_lt_b$in1\[11\] + comment: capacity:1 usage:3 overflow:2 + bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_401_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (22.8000, 28.5000) - (25.6500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_330_ net:_401_ + srcs: net:net47 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - + bbox = (88.3500, 22.8000) - (91.2000, 25.6500) on Layer - diff --git a/src/grt/test/congestion7_snapshot_batched.guideok b/src/grt/test/congestion7_snapshot_batched.guideok new file mode 100644 index 00000000000..51f9b0ff5de --- /dev/null +++ b/src/grt/test/congestion7_snapshot_batched.guideok @@ -0,0 +1,5971 @@ +_000_ +( +51300 102600 57000 108300 metal1 +51300 102600 57000 114000 metal2 +51300 108300 57000 114000 metal2 +51300 108300 62700 114000 metal3 +57000 108300 62700 114000 metal2 +57000 108300 62700 114000 metal1 +) +_001_ +( +51300 114000 57000 119700 metal1 +51300 114000 57000 125400 metal2 +51300 119700 57000 125400 metal2 +51300 119700 62700 125400 metal3 +57000 119700 62700 125400 metal2 +57000 119700 62700 125400 metal1 +) +_002_ +( +74100 114000 79800 119700 metal1 +74100 108300 79800 119700 metal2 +74100 108300 79800 114000 metal1 +) +_003_ +( +57000 114000 62700 119700 metal1 +57000 114000 62700 125400 metal2 +57000 119700 62700 125400 metal1 +) +_004_ +( +74100 108300 79800 114000 metal1 +74100 108300 79800 119700 metal2 +74100 114000 79800 119700 metal1 +) +_005_ +( +57000 102600 62700 108300 metal1 +57000 102600 62700 108300 metal2 +57000 102600 68400 108300 metal3 +62700 102600 68400 108300 metal2 +62700 102600 68400 108300 metal1 +) +_006_ +( +136800 131100 142500 136800 metal1 +136800 125400 142500 136800 metal2 +136800 125400 142500 131100 metal1 +) +_007_ +( +85500 119700 91200 125400 metal1 +85500 119700 91200 131100 metal2 +85500 125400 91200 131100 metal2 +85500 125400 96900 131100 metal3 +91200 125400 96900 131100 metal2 +91200 125400 96900 131100 metal1 +) +_008_ +( +102600 136800 108300 142500 metal1 +102600 136800 108300 148200 metal2 +102600 142500 108300 148200 metal2 +102600 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_009_ +( +119700 136800 125400 142500 metal1 +119700 131100 125400 142500 metal2 +119700 131100 125400 136800 metal2 +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 131100 131100 136800 metal1 +) +_010_ +( +148200 79800 153900 85500 metal1 +148200 79800 153900 85500 metal2 +148200 79800 159600 85500 metal3 +153900 79800 159600 85500 metal2 +153900 79800 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_011_ +( +153900 108300 159600 114000 metal1 +153900 108300 159600 114000 metal2 +153900 108300 165300 114000 metal3 +159600 108300 165300 114000 metal2 +159600 102600 165300 114000 metal2 +159600 102600 165300 108300 metal1 +) +_012_ +( +125400 85500 131100 91200 metal1 +125400 79800 131100 91200 metal2 +125400 79800 131100 85500 metal1 +) +_013_ +( +131100 114000 136800 119700 metal1 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal1 +) +_014_ +( +62700 96900 68400 102600 metal1 +62700 96900 68400 102600 metal2 +62700 96900 74100 102600 metal3 +68400 96900 74100 102600 metal2 +68400 96900 74100 102600 metal1 +) +_015_ +( +51300 85500 57000 91200 metal1 +51300 85500 57000 91200 metal2 +51300 85500 62700 91200 metal3 +57000 85500 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_016_ +( +68400 62700 74100 68400 metal1 +68400 57000 74100 68400 metal2 +68400 57000 74100 62700 metal2 +68400 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 +74100 57000 79800 62700 metal1 +) +_017_ +( +114000 68400 119700 74100 metal1 +114000 68400 119700 79800 metal2 +114000 74100 119700 79800 metal1 +) +_018_ +( +114000 51300 119700 57000 metal1 +114000 51300 119700 57000 metal2 +) +_019_ +( +96900 34200 102600 39900 metal1 +96900 34200 102600 39900 metal2 +96900 34200 108300 39900 metal3 +102600 34200 108300 39900 metal2 +102600 28500 108300 39900 metal2 +102600 28500 108300 34200 metal1 +) +_020_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 57000 metal2 +68400 51300 74100 57000 metal2 +68400 51300 79800 57000 metal3 +74100 51300 79800 57000 metal2 +74100 51300 79800 57000 metal1 +) +_021_ +( +108300 74100 114000 79800 metal1 +108300 74100 114000 85500 metal2 +108300 79800 114000 85500 metal1 +) +_022_ +( +148200 125400 153900 131100 metal1 +148200 125400 153900 136800 metal2 +148200 131100 153900 136800 metal1 +) +_023_ +( +57000 62700 62700 68400 metal1 +57000 62700 62700 68400 metal2 +) +_024_ +( +119700 68400 125400 74100 metal1 +119700 62700 125400 74100 metal2 +119700 62700 125400 68400 metal1 +) +_025_ +( +114000 39900 119700 45600 metal1 +114000 39900 119700 51300 metal2 +114000 45600 119700 51300 metal1 +) +_026_ +( +85500 34200 91200 39900 metal1 +85500 28500 91200 39900 metal2 +85500 28500 91200 34200 metal1 +) +_027_ +( +68400 39900 74100 45600 metal1 +68400 34200 74100 45600 metal2 +68400 34200 74100 39900 metal2 +68400 34200 79800 39900 metal3 +74100 34200 79800 39900 metal2 +74100 34200 79800 39900 metal1 +) +_028_ +( +102600 85500 108300 91200 metal1 +102600 85500 108300 91200 metal2 +102600 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +) +_029_ +( +85500 131100 91200 136800 metal1 +85500 131100 91200 136800 metal2 +) +_030_ +( +96900 142500 102600 148200 metal1 +96900 142500 102600 153900 metal2 +96900 148200 102600 153900 metal1 +) +_031_ +( +125400 142500 131100 148200 metal1 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 136800 136800 148200 metal2 +131100 136800 136800 142500 metal1 +) +_032_ +( +148200 74100 153900 79800 metal1 +148200 74100 153900 79800 metal2 +) +_033_ +( +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +) +_034_ +( +131100 68400 136800 74100 metal1 +131100 68400 136800 74100 metal2 +) +_035_ +( +131100 119700 136800 125400 metal1 +131100 119700 136800 125400 metal2 +) +_036_ +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +) +_037_ +( +51300 74100 57000 79800 metal1 +51300 68400 57000 79800 metal2 +51300 68400 57000 74100 metal2 +51300 68400 62700 74100 metal3 +57000 68400 62700 74100 metal2 +57000 68400 62700 74100 metal1 +) +_038_ +( +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +) +_039_ +( +68400 57000 74100 62700 metal1 +68400 57000 74100 62700 metal2 +68400 57000 79800 62700 metal3 +74100 57000 79800 62700 metal2 +74100 57000 79800 68400 metal2 +74100 62700 79800 68400 metal1 +) +_040_ +( +108300 68400 114000 74100 metal1 +108300 68400 114000 74100 metal2 +) +_041_ +( +114000 57000 119700 62700 metal1 +114000 51300 119700 62700 metal2 +114000 51300 119700 57000 metal1 +) +_042_ +( +96900 28500 102600 34200 metal1 +96900 28500 102600 34200 metal2 +96900 28500 114000 34200 metal3 +108300 28500 114000 34200 metal2 +108300 28500 114000 39900 metal2 +108300 34200 114000 39900 metal1 +) +_043_ +( +68400 51300 74100 57000 metal1 +68400 45600 74100 57000 metal2 +68400 45600 74100 51300 metal2 +68400 45600 79800 51300 metal3 +74100 45600 79800 51300 metal2 +74100 45600 79800 51300 metal1 +) +_044_ +( +102600 79800 108300 85500 metal1 +102600 74100 108300 85500 metal2 +102600 74100 108300 79800 metal1 +) +_045_ +( +85500 119700 91200 125400 metal1 +85500 119700 91200 125400 metal2 +) +_046_ +( +102600 142500 108300 148200 metal1 +102600 142500 108300 148200 metal2 +102600 142500 114000 148200 metal3 +108300 142500 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_047_ +( +119700 142500 125400 148200 metal1 +119700 136800 125400 148200 metal2 +119700 136800 125400 142500 metal1 +) +_048_ +( +148200 85500 153900 91200 metal1 +148200 85500 153900 91200 metal2 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_049_ +( +153900 102600 159600 108300 metal1 +153900 102600 159600 108300 metal2 +) +_050_ +( +119700 79800 125400 85500 metal1 +119700 79800 125400 91200 metal2 +119700 85500 125400 91200 metal2 +119700 85500 131100 91200 metal3 +125400 85500 131100 91200 metal2 +125400 85500 131100 91200 metal1 +) +_051_ +( +131100 114000 136800 119700 metal1 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 108300 142500 119700 metal2 +136800 108300 142500 114000 metal1 +) +_052_ +( +62700 96900 68400 102600 metal1 +62700 96900 68400 102600 metal2 +) +_053_ +( +51300 79800 57000 85500 metal1 +51300 79800 57000 91200 metal2 +51300 85500 57000 91200 metal1 +) +_054_ +( +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +) +_055_ +( +57000 119700 62700 125400 metal1 +57000 114000 62700 125400 metal2 +57000 114000 62700 119700 metal2 +57000 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_056_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +) +_057_ +( +57000 119700 62700 125400 metal1 +57000 119700 62700 125400 metal2 +57000 119700 68400 125400 metal3 +62700 119700 68400 125400 metal2 +62700 119700 68400 125400 metal1 +62700 114000 68400 125400 metal2 +62700 114000 68400 119700 metal1 +) +_058_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +74100 114000 85500 119700 metal3 +79800 114000 85500 119700 metal2 +79800 114000 85500 119700 metal1 +) +_059_ +( +62700 102600 68400 114000 metal2 +62700 108300 68400 114000 metal1 +62700 102600 68400 108300 metal1 +62700 102600 68400 108300 metal2 +62700 102600 74100 108300 metal3 +68400 102600 74100 108300 metal2 +68400 102600 74100 108300 metal1 +68400 102600 74100 114000 metal2 +68400 108300 74100 114000 metal1 +79800 102600 85500 108300 metal2 +79800 102600 91200 108300 metal3 +85500 102600 91200 108300 metal2 +85500 102600 91200 108300 metal1 +79800 96900 85500 108300 metal2 +79800 96900 85500 102600 metal1 +68400 102600 85500 108300 metal3 +) +_060_ +( +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_061_ +( +91200 125400 96900 131100 metal1 +91200 125400 96900 131100 metal2 +91200 125400 102600 131100 metal3 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal1 +) +_062_ +( +96900 136800 102600 142500 metal1 +96900 136800 102600 142500 metal2 +96900 136800 108300 142500 metal3 +102600 136800 108300 142500 metal2 +102600 136800 108300 142500 metal1 +) +_063_ +( +125400 131100 131100 136800 metal1 +125400 131100 131100 136800 metal2 +) +_064_ +( +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 153900 85500 metal3 +148200 79800 153900 85500 metal2 +148200 79800 153900 85500 metal1 +) +_065_ +( +142500 108300 148200 114000 metal1 +142500 108300 148200 114000 metal2 +142500 108300 159600 114000 metal3 +153900 108300 159600 114000 metal2 +153900 108300 159600 114000 metal1 +) +_066_ +( +125400 79800 131100 85500 metal1 +125400 79800 131100 85500 metal2 +125400 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +) +_067_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +131100 114000 136800 119700 metal1 +) +_068_ +( +68400 96900 74100 102600 metal1 +68400 91200 74100 102600 metal2 +68400 91200 74100 96900 metal1 +) +_069_ +( +57000 85500 62700 91200 metal1 +57000 85500 62700 91200 metal2 +57000 85500 68400 91200 metal3 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal1 +) +_070_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 62700 metal2 +62700 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 68400 metal2 +68400 62700 74100 68400 metal1 +) +_071_ +( +114000 74100 119700 79800 metal1 +114000 74100 119700 85500 metal2 +114000 79800 119700 85500 metal1 +) +_072_ +( +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 119700 45600 metal3 +114000 39900 119700 45600 metal2 +114000 39900 119700 57000 metal2 +114000 51300 119700 57000 metal1 +) +_073_ +( +91200 39900 96900 45600 metal1 +91200 39900 96900 45600 metal2 +91200 39900 102600 45600 metal3 +96900 39900 102600 45600 metal2 +96900 34200 102600 45600 metal2 +96900 34200 102600 39900 metal1 +) +_074_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +) +_075_ +( +108300 79800 114000 85500 metal1 +108300 79800 114000 91200 metal2 +108300 85500 114000 91200 metal1 +) +_076_ +( +142500 125400 148200 131100 metal1 +142500 125400 148200 131100 metal2 +142500 125400 153900 131100 metal3 +148200 125400 153900 131100 metal2 +148200 125400 153900 131100 metal1 +) +_077_ +( +57000 62700 62700 68400 metal1 +57000 62700 62700 68400 metal2 +57000 62700 68400 68400 metal3 +62700 62700 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_078_ +( +119700 68400 125400 74100 metal1 +119700 68400 125400 74100 metal2 +) +_079_ +( +108300 45600 114000 51300 metal1 +108300 45600 114000 51300 metal2 +108300 45600 119700 51300 metal3 +114000 45600 119700 51300 metal2 +114000 39900 119700 51300 metal2 +114000 39900 119700 45600 metal1 +) +_080_ +( +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +) +_081_ +( +68400 39900 74100 45600 metal1 +68400 39900 74100 45600 metal2 +) +_082_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_083_ +( +85500 131100 91200 136800 metal1 +85500 131100 91200 136800 metal2 +85500 131100 102600 136800 metal3 +96900 131100 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_084_ +( +96900 142500 102600 148200 metal1 +96900 142500 102600 148200 metal2 +96900 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 136800 108300 148200 metal2 +102600 136800 108300 142500 metal1 +) +_085_ +( +125400 136800 131100 142500 metal1 +125400 136800 131100 142500 metal2 +125400 136800 136800 142500 metal3 +131100 136800 136800 142500 metal2 +131100 136800 136800 142500 metal1 +) +_086_ +( +148200 74100 153900 79800 metal1 +148200 74100 153900 79800 metal2 +) +_087_ +( +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +) +_088_ +( +131100 74100 136800 79800 metal1 +131100 68400 136800 79800 metal2 +131100 68400 136800 74100 metal1 +) +_089_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +131100 114000 136800 125400 metal2 +131100 119700 136800 125400 metal1 +) +_090_ +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +51300 91200 68400 96900 metal3 +62700 91200 68400 96900 metal2 +62700 91200 68400 96900 metal1 +) +_091_ +( +57000 68400 62700 74100 metal1 +57000 68400 62700 74100 metal2 +57000 68400 68400 74100 metal3 +62700 68400 68400 74100 metal2 +62700 68400 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +_092_ +( +131100 131100 136800 136800 metal1 +131100 131100 136800 136800 metal2 +131100 131100 148200 136800 metal3 +142500 131100 148200 136800 metal2 +142500 131100 148200 142500 metal2 +142500 136800 148200 142500 metal1 +) +_093_ +( +74100 62700 79800 68400 metal1 +74100 62700 79800 68400 metal2 +74100 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +) +_094_ +( +108300 68400 114000 74100 metal1 +108300 68400 114000 74100 metal2 +) +_095_ +( +114000 57000 119700 62700 metal1 +114000 57000 119700 62700 metal2 +) +_096_ +( +108300 39900 114000 45600 metal1 +108300 34200 114000 45600 metal2 +108300 34200 114000 39900 metal1 +) +_097_ +( +74100 45600 79800 51300 metal1 +74100 45600 79800 51300 metal2 +74100 45600 85500 51300 metal3 +79800 45600 85500 51300 metal2 +79800 45600 85500 51300 metal1 +) +_098_ +( +102600 74100 108300 79800 metal1 +102600 74100 108300 85500 metal2 +102600 79800 108300 85500 metal1 +) +_099_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 125400 metal2 +85500 119700 91200 125400 metal1 +) +_100_ +( +108300 142500 114000 148200 metal1 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +) +_101_ +( +119700 136800 125400 142500 metal1 +119700 136800 125400 148200 metal2 +119700 142500 125400 148200 metal1 +) +_102_ +( +153900 91200 159600 96900 metal1 +153900 85500 159600 96900 metal2 +153900 85500 159600 91200 metal1 +) +_103_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 108300 metal2 +153900 102600 159600 108300 metal1 +) +_104_ +( +119700 85500 125400 91200 metal1 +119700 79800 125400 91200 metal2 +119700 79800 125400 85500 metal1 +) +_105_ +( +136800 108300 142500 114000 metal1 +136800 108300 142500 114000 metal2 +136800 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 119700 metal2 +142500 114000 148200 119700 metal1 +) +_106_ +( +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 68400 102600 metal3 +62700 96900 68400 102600 metal2 +62700 96900 68400 102600 metal1 +) +_107_ +( +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 62700 85500 metal3 +57000 79800 62700 85500 metal2 +57000 79800 62700 85500 metal1 +) +_108_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +) +_109_ +( +79800 108300 85500 114000 metal1 +79800 102600 85500 114000 metal2 +79800 102600 85500 108300 metal1 +79800 102600 85500 108300 metal2 +79800 102600 91200 108300 metal3 +85500 102600 91200 108300 metal2 +85500 102600 91200 108300 metal1 +85500 96900 91200 108300 metal2 +85500 96900 91200 102600 metal1 +) +_110_ +( +102600 125400 108300 136800 metal2 +102600 131100 108300 136800 metal1 +102600 125400 108300 131100 metal1 +102600 125400 108300 131100 metal2 +102600 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +148200 131100 153900 136800 metal1 +148200 125400 153900 136800 metal2 +148200 125400 153900 131100 metal2 +142500 125400 153900 131100 metal3 +148200 131100 153900 142500 metal2 +148200 136800 153900 142500 metal1 +) +_111_ +( +74100 68400 79800 74100 metal1 +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal1 +79800 62700 85500 68400 metal1 +79800 62700 85500 74100 metal2 +62700 62700 68400 68400 metal1 +62700 62700 68400 74100 metal2 +62700 68400 68400 74100 metal2 +62700 68400 79800 74100 metal3 +) +_112_ +( +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 62700 108300 74100 metal2 +114000 62700 119700 74100 metal2 +114000 68400 119700 74100 metal1 +102600 62700 108300 68400 metal1 +102600 62700 108300 68400 metal2 +102600 62700 119700 68400 metal3 +114000 62700 119700 68400 metal2 +114000 62700 125400 68400 metal3 +119700 62700 125400 68400 metal2 +119700 62700 125400 68400 metal1 +) +_113_ +( +108300 45600 114000 57000 metal2 +108300 51300 114000 57000 metal1 +102600 57000 108300 62700 metal1 +102600 57000 108300 62700 metal2 +102600 57000 114000 62700 metal3 +108300 57000 114000 62700 metal2 +108300 45600 114000 51300 metal1 +108300 45600 114000 51300 metal2 +108300 45600 119700 51300 metal3 +114000 45600 119700 51300 metal2 +114000 45600 119700 51300 metal1 +108300 57000 114000 68400 metal2 +108300 62700 114000 68400 metal1 +108300 51300 114000 62700 metal2 +) +_114_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 108300 39900 metal3 +102600 34200 108300 39900 metal2 +102600 39900 108300 45600 metal1 +102600 34200 108300 45600 metal2 +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 96900 39900 metal3 +102600 51300 108300 57000 metal1 +102600 39900 108300 57000 metal2 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +102600 34200 114000 39900 metal3 +108300 34200 114000 39900 metal2 +108300 34200 114000 39900 metal1 +) +_115_ +( +79800 39900 85500 57000 metal2 +79800 51300 85500 57000 metal1 +79800 51300 85500 62700 metal2 +79800 57000 85500 62700 metal1 +68400 39900 74100 45600 metal1 +68400 39900 74100 45600 metal2 +68400 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +) +_116_ +( +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 114000 91200 metal3 +108300 85500 114000 91200 metal2 +108300 85500 114000 91200 metal1 +91200 68400 96900 91200 metal2 +91200 68400 96900 74100 metal1 +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +) +_117_ +( +91200 114000 96900 119700 metal1 +91200 114000 96900 119700 metal2 +91200 114000 102600 119700 metal3 +96900 114000 102600 119700 metal2 +96900 114000 102600 119700 metal1 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +91200 125400 96900 131100 metal1 +91200 114000 96900 131100 metal2 +91200 125400 96900 136800 metal2 +91200 131100 96900 136800 metal1 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 96900 119700 metal3 +) +_118_ +( +108300 131100 114000 148200 metal2 +114000 125400 119700 131100 metal1 +114000 119700 119700 131100 metal2 +114000 119700 119700 125400 metal1 +96900 136800 102600 142500 metal1 +96900 136800 102600 148200 metal2 +96900 142500 102600 148200 metal2 +96900 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal1 +108300 131100 114000 136800 metal1 +108300 131100 114000 136800 metal2 +108300 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 125400 119700 136800 metal2 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +102600 142500 114000 148200 metal3 +) +_119_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 136800 metal2 +119700 131100 125400 136800 metal2 +119700 131100 131100 136800 metal3 +125400 131100 131100 136800 metal2 +125400 131100 131100 142500 metal2 +125400 136800 131100 142500 metal1 +119700 114000 125400 125400 metal2 +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 125400 119700 metal3 +119700 114000 125400 119700 metal2 +119700 114000 125400 119700 metal1 +125400 136800 131100 148200 metal2 +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 125400 125400 metal3 +119700 119700 125400 125400 metal2 +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +114000 142500 131100 148200 metal3 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal1 +119700 119700 125400 131100 metal2 +) +_120_ +( +142500 85500 148200 91200 metal1 +142500 85500 148200 91200 metal2 +142500 85500 153900 91200 metal3 +148200 85500 153900 91200 metal2 +148200 85500 153900 96900 metal2 +148200 91200 153900 96900 metal1 +148200 91200 153900 96900 metal2 +148200 91200 159600 96900 metal3 +153900 91200 159600 96900 metal2 +153900 91200 159600 96900 metal1 +142500 79800 148200 91200 metal2 +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +142500 79800 159600 85500 metal3 +153900 79800 159600 85500 metal2 +153900 79800 159600 85500 metal1 +) +_121_ +( +153900 102600 159600 119700 metal2 +148200 102600 153900 108300 metal1 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +142500 102600 148200 108300 metal1 +142500 102600 148200 108300 metal2 +142500 102600 153900 108300 metal3 +148200 114000 153900 119700 metal1 +148200 114000 153900 119700 metal2 +148200 114000 159600 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal1 +153900 96900 159600 102600 metal1 +153900 96900 159600 108300 metal2 +) +_122_ +( +125400 74100 131100 96900 metal2 +114000 91200 119700 96900 metal1 +114000 91200 119700 96900 metal2 +114000 91200 131100 96900 metal3 +125400 91200 131100 96900 metal2 +114000 85500 119700 96900 metal2 +114000 85500 119700 91200 metal1 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +125400 91200 136800 96900 metal3 +131100 91200 136800 96900 metal2 +131100 91200 136800 96900 metal1 +) +_123_ +( +131100 102600 136800 119700 metal2 +131100 114000 136800 119700 metal2 +131100 114000 142500 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 125400 metal2 +136800 119700 142500 125400 metal1 +125400 102600 131100 108300 metal1 +125400 102600 131100 108300 metal2 +125400 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +) +_124_ +( +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +62700 85500 68400 96900 metal2 +62700 85500 68400 91200 metal1 +57000 91200 62700 96900 metal1 +57000 91200 62700 96900 metal2 +57000 91200 68400 96900 metal3 +51300 96900 57000 102600 metal1 +51300 91200 57000 102600 metal2 +51300 91200 57000 96900 metal2 +51300 91200 62700 96900 metal3 +) +_125_ +( +57000 74100 62700 85500 metal2 +51300 79800 57000 85500 metal1 +51300 79800 57000 85500 metal2 +51300 79800 62700 85500 metal3 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +57000 74100 62700 79800 metal1 +57000 74100 62700 79800 metal2 +57000 74100 68400 79800 metal3 +62700 74100 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +_126_ +( +102600 131100 108300 136800 metal1 +102600 131100 108300 136800 metal2 +102600 131100 142500 136800 metal3 +136800 131100 142500 136800 metal2 +136800 131100 142500 136800 metal1 +102600 119700 108300 125400 metal1 +102600 119700 108300 125400 metal2 +102600 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal1 +102600 119700 108300 136800 metal2 +136800 131100 142500 142500 metal2 +136800 136800 142500 142500 metal1 +) +_127_ +( +74100 62700 79800 68400 metal1 +74100 62700 79800 68400 metal2 +74100 62700 85500 68400 metal3 +79800 62700 85500 68400 metal2 +79800 62700 85500 68400 metal1 +74100 68400 79800 74100 metal2 +74100 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +74100 74100 79800 79800 metal1 +74100 68400 79800 79800 metal2 +74100 62700 79800 74100 metal2 +) +_128_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 79800 metal2 +74100 74100 91200 79800 metal3 +85500 74100 91200 79800 metal2 +96900 62700 102600 68400 metal1 +96900 62700 102600 68400 metal2 +96900 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +102600 62700 108300 74100 metal2 +102600 68400 108300 74100 metal1 +91200 74100 96900 79800 metal1 +91200 74100 96900 79800 metal2 +91200 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +85500 68400 91200 79800 metal2 +85500 68400 91200 74100 metal1 +102600 68400 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +108300 74100 114000 79800 metal1 +85500 74100 96900 79800 metal3 +) +_129_ +( +91200 62700 96900 68400 metal1 +91200 57000 96900 68400 metal2 +91200 57000 96900 62700 metal2 +91200 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +108300 51300 114000 62700 metal2 +108300 51300 114000 57000 metal1 +102600 57000 108300 62700 metal1 +102600 57000 108300 62700 metal2 +102600 57000 114000 62700 metal3 +108300 57000 114000 62700 metal2 +108300 57000 114000 62700 metal1 +96900 51300 102600 62700 metal2 +96900 51300 102600 57000 metal1 +108300 57000 119700 62700 metal3 +114000 57000 119700 62700 metal2 +114000 57000 119700 62700 metal1 +96900 57000 108300 62700 metal3 +) +_130_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +102600 57000 108300 68400 metal2 +102600 57000 108300 62700 metal1 +102600 34200 108300 39900 metal1 +102600 34200 108300 45600 metal2 +102600 39900 108300 45600 metal1 +102600 39900 108300 62700 metal2 +) +_131_ +( +85500 57000 91200 62700 metal1 +85500 57000 91200 68400 metal2 +85500 62700 91200 68400 metal2 +85500 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal1 +74100 51300 79800 57000 metal1 +74100 51300 79800 57000 metal2 +74100 51300 85500 57000 metal3 +79800 51300 85500 57000 metal2 +79800 51300 85500 57000 metal1 +79800 51300 91200 57000 metal3 +85500 51300 91200 57000 metal2 +85500 51300 91200 62700 metal2 +74100 45600 79800 57000 metal2 +74100 45600 79800 51300 metal1 +) +_132_ +( +96900 62700 102600 74100 metal2 +96900 62700 102600 68400 metal1 +96900 79800 102600 85500 metal1 +96900 79800 102600 91200 metal2 +96900 85500 102600 91200 metal1 +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 74100 102600 85500 metal2 +96900 74100 102600 79800 metal2 +96900 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +102600 74100 108300 79800 metal1 +96900 68400 102600 79800 metal2 +) +_133_ +( +91200 119700 96900 125400 metal1 +91200 119700 96900 125400 metal2 +91200 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +91200 108300 96900 119700 metal2 +91200 108300 96900 114000 metal1 +91200 114000 96900 125400 metal2 +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +85500 114000 96900 119700 metal3 +91200 114000 96900 119700 metal2 +91200 114000 96900 119700 metal1 +) +_134_ +( +108300 136800 114000 142500 metal1 +108300 131100 114000 142500 metal2 +108300 131100 114000 136800 metal1 +108300 136800 114000 148200 metal2 +108300 142500 114000 148200 metal1 +) +_135_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 131100 metal2 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +119700 131100 125400 136800 metal1 +119700 125400 125400 136800 metal2 +119700 131100 125400 142500 metal2 +119700 136800 125400 142500 metal1 +) +_136_ +( +136800 102600 142500 108300 metal1 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 96900 148200 108300 metal2 +142500 85500 148200 91200 metal1 +142500 85500 148200 91200 metal2 +142500 85500 153900 91200 metal3 +148200 85500 153900 91200 metal2 +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 91200 153900 102600 metal2 +148200 91200 153900 96900 metal1 +148200 85500 153900 96900 metal2 +148200 85500 159600 91200 metal3 +153900 85500 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +_137_ +( +136800 102600 142500 108300 metal1 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 108300 metal1 +148200 102600 153900 108300 metal1 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +142500 102600 153900 108300 metal3 +142500 96900 148200 108300 metal2 +142500 96900 148200 102600 metal1 +153900 96900 159600 108300 metal2 +153900 96900 159600 102600 metal1 +153900 108300 159600 114000 metal1 +153900 102600 159600 114000 metal2 +) +_138_ +( +131100 85500 136800 91200 metal1 +131100 85500 136800 91200 metal2 +131100 85500 142500 91200 metal3 +136800 85500 142500 91200 metal2 +136800 85500 142500 108300 metal2 +136800 102600 142500 108300 metal1 +119700 91200 125400 96900 metal1 +119700 91200 125400 102600 metal2 +119700 96900 125400 102600 metal1 +119700 85500 125400 96900 metal2 +119700 85500 125400 91200 metal1 +119700 85500 125400 91200 metal2 +119700 85500 136800 91200 metal3 +) +_139_ +( +136800 102600 142500 114000 metal2 +136800 108300 142500 119700 metal2 +136800 114000 142500 119700 metal1 +136800 108300 142500 114000 metal2 +136800 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +131100 108300 136800 114000 metal1 +131100 108300 136800 114000 metal2 +131100 108300 142500 114000 metal3 +131100 102600 136800 108300 metal1 +131100 102600 136800 108300 metal2 +131100 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 102600 142500 108300 metal1 +) +_140_ +( +68400 85500 74100 91200 metal1 +68400 74100 74100 91200 metal2 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +68400 91200 74100 102600 metal2 +68400 91200 74100 96900 metal1 +68400 85500 74100 96900 metal2 +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 74100 102600 metal3 +68400 96900 74100 102600 metal2 +68400 96900 74100 102600 metal1 +) +_141_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +57000 79800 62700 85500 metal1 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +62700 79800 74100 85500 metal3 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal1 +68400 74100 74100 85500 metal2 +57000 79800 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_142_ +( +62700 108300 68400 114000 metal1 +62700 102600 68400 114000 metal2 +62700 85500 68400 108300 metal2 +62700 85500 68400 91200 metal1 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +79800 102600 91200 108300 metal3 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal1 +62700 51300 68400 91200 metal2 +62700 51300 68400 57000 metal1 +62700 51300 68400 57000 metal2 +62700 51300 85500 57000 metal3 +79800 51300 85500 57000 metal2 +79800 39900 85500 57000 metal2 +79800 39900 85500 45600 metal1 +79800 39900 85500 45600 metal2 +79800 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +62700 102600 68400 108300 metal2 +62700 102600 85500 108300 metal3 +79800 91200 85500 108300 metal2 +79800 91200 85500 96900 metal1 +) +_143_ +( +114000 114000 119700 119700 metal1 +114000 108300 119700 119700 metal2 +114000 108300 119700 114000 metal2 +114000 108300 142500 114000 metal3 +136800 108300 142500 114000 metal2 +136800 102600 142500 114000 metal2 +136800 102600 142500 108300 metal1 +) +_144_ +( +119700 114000 125400 125400 metal2 +119700 119700 125400 125400 metal2 +119700 119700 131100 125400 metal3 +125400 119700 131100 125400 metal2 +125400 119700 131100 131100 metal2 +125400 125400 131100 131100 metal1 +114000 119700 119700 125400 metal1 +114000 119700 119700 125400 metal2 +114000 119700 125400 125400 metal3 +114000 114000 119700 119700 metal1 +114000 114000 119700 119700 metal2 +114000 114000 125400 119700 metal3 +119700 114000 125400 119700 metal2 +119700 114000 125400 119700 metal1 +) +_145_ +( +108300 114000 114000 119700 metal1 +108300 114000 114000 125400 metal2 +108300 125400 114000 131100 metal2 +108300 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +108300 131100 114000 136800 metal1 +108300 125400 114000 136800 metal2 +108300 119700 114000 125400 metal2 +108300 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 119700 119700 125400 metal1 +108300 119700 114000 131100 metal2 +) +_146_ +( +108300 119700 114000 125400 metal1 +108300 114000 114000 125400 metal2 +108300 114000 114000 119700 metal1 +) +_147_ +( +79800 119700 85500 125400 metal1 +79800 119700 85500 125400 metal2 +79800 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal2 +102600 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 119700 metal1 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +) +_148_ +( +74100 74100 79800 79800 metal1 +74100 68400 79800 79800 metal2 +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 74100 metal1 +) +_149_ +( +79800 68400 85500 74100 metal1 +79800 57000 85500 74100 metal2 +79800 57000 85500 62700 metal2 +79800 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +) +_150_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 125400 metal2 +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_151_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_152_ +( +68400 119700 74100 125400 metal1 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +68400 114000 74100 119700 metal1 +68400 114000 74100 125400 metal2 +) +_153_ +( +74100 119700 79800 125400 metal1 +74100 119700 79800 125400 metal2 +74100 119700 85500 125400 metal3 +79800 119700 85500 125400 metal2 +79800 119700 85500 125400 metal1 +79800 114000 85500 119700 metal1 +79800 114000 85500 125400 metal2 +) +_154_ +( +68400 114000 74100 119700 metal1 +68400 114000 74100 125400 metal2 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +) +_155_ +( +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +) +_156_ +( +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 114000 74100 125400 metal2 +68400 114000 74100 119700 metal1 +) +_157_ +( +74100 119700 79800 125400 metal1 +74100 114000 79800 125400 metal2 +74100 114000 79800 119700 metal1 +) +_158_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 96900 metal2 +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 91200 91200 96900 metal1 +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +79800 108300 96900 114000 metal3 +91200 108300 96900 114000 metal2 +91200 108300 96900 119700 metal2 +91200 114000 96900 119700 metal1 +68400 91200 74100 96900 metal2 +68400 91200 85500 96900 metal3 +68400 102600 74100 108300 metal1 +68400 102600 74100 114000 metal2 +68400 108300 74100 114000 metal2 +68400 108300 85500 114000 metal3 +62700 51300 68400 91200 metal2 +62700 51300 68400 57000 metal1 +62700 39900 68400 57000 metal2 +62700 39900 68400 45600 metal2 +62700 39900 85500 45600 metal3 +79800 39900 85500 45600 metal2 +79800 39900 85500 45600 metal1 +79800 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +68400 91200 74100 108300 metal2 +) +_159_ +( +131100 136800 136800 142500 metal1 +131100 136800 136800 142500 metal2 +131100 136800 148200 142500 metal3 +142500 136800 148200 142500 metal2 +142500 131100 148200 142500 metal2 +142500 131100 148200 136800 metal1 +85500 108300 91200 114000 metal1 +85500 108300 91200 114000 metal2 +85500 108300 102600 114000 metal3 +96900 108300 102600 114000 metal2 +96900 102600 102600 114000 metal2 +96900 102600 102600 108300 metal2 +96900 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 96900 114000 108300 metal2 +114000 85500 119700 91200 metal1 +114000 79800 119700 91200 metal2 +114000 79800 119700 85500 metal2 +114000 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +142500 119700 148200 136800 metal2 +142500 119700 148200 125400 metal1 +136800 74100 142500 85500 metal2 +136800 74100 142500 79800 metal1 +108300 96900 114000 102600 metal1 +108300 96900 114000 102600 metal2 +108300 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 85500 119700 102600 metal2 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 119700 142500 metal3 +114000 136800 119700 142500 metal2 +114000 136800 136800 142500 metal3 +79800 119700 85500 142500 metal2 +79800 136800 85500 142500 metal2 +79800 136800 96900 142500 metal3 +79800 119700 85500 125400 metal1 +79800 119700 85500 125400 metal2 +79800 119700 91200 125400 metal3 +85500 119700 91200 125400 metal2 +85500 108300 91200 125400 metal2 +114000 131100 119700 142500 metal2 +114000 131100 119700 136800 metal1 +) +_160_ +( +153900 91200 159600 96900 metal1 +153900 85500 159600 96900 metal2 +153900 85500 159600 91200 metal2 +114000 85500 159600 91200 metal3 +114000 85500 119700 91200 metal2 +114000 85500 119700 91200 metal1 +68400 108300 74100 114000 metal1 +68400 108300 74100 119700 metal2 +68400 114000 74100 119700 metal2 +68400 114000 79800 119700 metal3 +74100 114000 79800 119700 metal2 +74100 119700 79800 125400 metal1 +74100 119700 79800 131100 metal2 +74100 125400 79800 131100 metal2 +68400 125400 79800 131100 metal3 +68400 125400 74100 131100 metal2 +68400 125400 74100 159600 metal2 +68400 153900 74100 159600 metal2 +68400 153900 119700 159600 metal3 +114000 153900 119700 159600 metal2 +74100 114000 79800 125400 metal2 +148200 136800 153900 142500 metal1 +148200 136800 153900 142500 metal2 +148200 136800 159600 142500 metal3 +153900 136800 159600 142500 metal2 +114000 153900 159600 159600 metal3 +153900 153900 159600 159600 metal2 +153900 136800 159600 159600 metal2 +153900 119700 159600 142500 metal2 +74100 114000 91200 119700 metal3 +85500 114000 91200 119700 metal2 +85500 114000 91200 119700 metal1 +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +153900 96900 165300 102600 metal3 +159600 96900 165300 102600 metal2 +159600 96900 165300 119700 metal2 +159600 114000 165300 119700 metal2 +153900 114000 165300 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 125400 metal2 +136800 119700 142500 125400 metal1 +136800 119700 142500 125400 metal2 +136800 119700 159600 125400 metal3 +153900 119700 159600 125400 metal2 +153900 91200 159600 102600 metal2 +114000 142500 119700 148200 metal1 +114000 142500 119700 159600 metal2 +108300 91200 114000 96900 metal1 +108300 85500 114000 96900 metal2 +108300 85500 114000 91200 metal2 +108300 85500 119700 91200 metal3 +) +_161_ +( +74100 114000 79800 119700 metal1 +74100 114000 79800 119700 metal2 +74100 114000 85500 119700 metal3 +79800 114000 85500 119700 metal2 +79800 114000 85500 125400 metal2 +79800 119700 85500 125400 metal1 +) +_162_ +( +62700 114000 68400 119700 metal1 +62700 114000 68400 125400 metal2 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 119700 74100 125400 metal1 +) +_163_ +( +62700 114000 68400 119700 metal1 +62700 108300 68400 119700 metal2 +62700 108300 68400 114000 metal1 +) +_164_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 114000 metal2 +62700 108300 74100 114000 metal3 +68400 108300 74100 114000 metal2 +68400 108300 74100 119700 metal2 +68400 114000 74100 119700 metal1 +) +_165_ +( +131100 131100 136800 136800 metal2 +131100 131100 148200 136800 metal3 +142500 131100 148200 136800 metal2 +142500 131100 148200 136800 metal1 +91200 96900 96900 108300 metal2 +91200 96900 96900 102600 metal2 +91200 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 102600 metal1 +91200 136800 96900 142500 metal1 +91200 131100 96900 142500 metal2 +131100 131100 136800 142500 metal2 +131100 136800 136800 142500 metal1 +114000 85500 119700 91200 metal1 +114000 85500 119700 91200 metal2 +114000 85500 142500 91200 metal3 +136800 85500 142500 91200 metal2 +136800 79800 142500 91200 metal2 +136800 79800 142500 85500 metal1 +142500 119700 148200 136800 metal2 +142500 119700 148200 125400 metal1 +136800 74100 142500 85500 metal2 +136800 74100 142500 79800 metal1 +91200 102600 96900 119700 metal2 +91200 114000 96900 119700 metal1 +108300 85500 114000 102600 metal2 +108300 85500 114000 91200 metal2 +108300 85500 119700 91200 metal3 +91200 131100 96900 136800 metal2 +91200 131100 119700 136800 metal3 +114000 131100 119700 136800 metal2 +114000 131100 119700 136800 metal1 +114000 131100 136800 136800 metal3 +91200 114000 96900 136800 metal2 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 96900 108300 metal3 +91200 102600 96900 108300 metal2 +) +_166_ +( +142500 131100 148200 136800 metal1 +142500 125400 148200 136800 metal2 +142500 125400 148200 131100 metal1 +) +_167_ +( +96900 79800 102600 85500 metal1 +96900 79800 102600 91200 metal2 +96900 85500 102600 91200 metal1 +96900 85500 102600 91200 metal2 +96900 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_168_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +96900 85500 102600 91200 metal2 +96900 85500 102600 91200 metal1 +) +_169_ +( +131100 102600 136800 108300 metal1 +131100 96900 136800 108300 metal2 +119700 96900 125400 102600 metal1 +119700 96900 125400 102600 metal2 +119700 96900 131100 102600 metal3 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal1 +125400 108300 131100 114000 metal1 +125400 108300 131100 114000 metal2 +125400 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 102600 136800 114000 metal2 +125400 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +) +_170_ +( +131100 91200 136800 96900 metal1 +131100 91200 136800 102600 metal2 +131100 96900 136800 102600 metal1 +131100 85500 136800 91200 metal1 +131100 85500 136800 96900 metal2 +) +_171_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +131100 96900 136800 108300 metal2 +114000 102600 119700 114000 metal2 +114000 108300 119700 114000 metal1 +114000 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +131100 96900 142500 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +114000 96900 119700 108300 metal2 +114000 96900 119700 102600 metal1 +) +_172_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +119700 119700 125400 131100 metal2 +119700 119700 125400 125400 metal1 +) +_173_ +( +108300 125400 114000 131100 metal2 +108300 125400 119700 131100 metal3 +114000 125400 119700 131100 metal2 +114000 125400 119700 131100 metal1 +102600 125400 108300 131100 metal1 +102600 125400 108300 131100 metal2 +102600 125400 114000 131100 metal3 +108300 131100 114000 136800 metal1 +108300 125400 114000 136800 metal2 +) +_174_ +( +108300 102600 114000 119700 metal2 +108300 102600 114000 108300 metal1 +102600 96900 108300 102600 metal1 +102600 96900 108300 102600 metal2 +102600 96900 114000 102600 metal3 +108300 96900 114000 102600 metal2 +108300 96900 114000 108300 metal2 +108300 114000 114000 119700 metal1 +108300 114000 114000 119700 metal2 +108300 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 131100 metal2 +114000 125400 119700 131100 metal1 +) +_175_ +( +136800 91200 142500 96900 metal1 +136800 91200 142500 96900 metal2 +136800 91200 148200 96900 metal3 +142500 91200 148200 96900 metal2 +142500 91200 148200 96900 metal1 +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 96900 153900 108300 metal2 +148200 102600 153900 108300 metal1 +142500 91200 148200 102600 metal2 +) +_176_ +( +136800 85500 142500 96900 metal2 +136800 91200 142500 96900 metal1 +136800 85500 142500 91200 metal1 +136800 85500 142500 91200 metal2 +136800 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 91200 metal1 +) +_177_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +114000 102600 119700 114000 metal2 +114000 108300 119700 114000 metal1 +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 136800 102600 metal1 +131100 91200 136800 102600 metal2 +131100 91200 136800 96900 metal2 +131100 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 96900 metal1 +114000 96900 119700 108300 metal2 +) +_178_ +( +102600 108300 108300 114000 metal1 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 102600 114000 114000 metal2 +108300 102600 114000 108300 metal1 +) +_179_ +( +91200 108300 96900 114000 metal1 +91200 108300 96900 114000 metal2 +91200 108300 102600 114000 metal3 +96900 108300 102600 114000 metal2 +96900 108300 102600 119700 metal2 +96900 114000 102600 119700 metal1 +96900 114000 102600 119700 metal2 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +102600 114000 108300 119700 metal1 +) +_180_ +( +102600 108300 108300 119700 metal2 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 108300 114000 114000 metal1 +102600 114000 108300 125400 metal2 +102600 119700 108300 125400 metal1 +96900 114000 102600 119700 metal1 +96900 114000 102600 119700 metal2 +96900 114000 108300 119700 metal3 +102600 114000 108300 119700 metal2 +) +_181_ +( +102600 114000 108300 119700 metal1 +102600 114000 108300 119700 metal2 +) +_182_ +( +102600 119700 108300 125400 metal1 +102600 114000 108300 125400 metal2 +102600 114000 108300 119700 metal1 +102600 125400 108300 131100 metal1 +102600 119700 108300 131100 metal2 +) +_183_ +( +102600 114000 108300 119700 metal1 +102600 108300 108300 119700 metal2 +102600 108300 108300 114000 metal2 +102600 108300 114000 114000 metal3 +108300 108300 114000 114000 metal2 +108300 108300 114000 114000 metal1 +) +_184_ +( +108300 108300 114000 114000 metal1 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 102600 119700 114000 metal2 +114000 102600 119700 108300 metal1 +) +_185_ +( +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +142500 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 91200 153900 102600 metal2 +148200 91200 153900 96900 metal1 +) +_186_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 153900 102600 metal3 +148200 96900 153900 102600 metal2 +148200 96900 153900 102600 metal1 +) +_187_ +( +142500 102600 148200 108300 metal1 +142500 96900 148200 108300 metal2 +142500 96900 148200 102600 metal1 +) +_188_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 108300 metal2 +136800 102600 142500 108300 metal2 +136800 102600 148200 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 108300 metal1 +) +_189_ +( +119700 102600 125400 108300 metal1 +119700 102600 125400 108300 metal2 +119700 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 96900 136800 108300 metal2 +131100 96900 136800 102600 metal2 +131100 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_190_ +( +125400 102600 131100 108300 metal1 +125400 102600 131100 114000 metal2 +125400 108300 131100 114000 metal2 +125400 108300 136800 114000 metal3 +131100 108300 136800 114000 metal2 +131100 108300 136800 114000 metal1 +) +_191_ +( +119700 108300 125400 114000 metal1 +119700 102600 125400 114000 metal2 +119700 102600 125400 108300 metal2 +119700 102600 131100 108300 metal3 +125400 102600 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_192_ +( +119700 108300 125400 114000 metal1 +119700 102600 125400 114000 metal2 +119700 102600 125400 108300 metal1 +) +_193_ +( +119700 91200 125400 102600 metal2 +119700 96900 125400 102600 metal1 +114000 91200 119700 96900 metal1 +114000 91200 119700 96900 metal2 +114000 91200 125400 96900 metal3 +119700 91200 125400 96900 metal2 +119700 91200 125400 96900 metal1 +) +_194_ +( +119700 96900 125400 102600 metal1 +119700 96900 125400 108300 metal2 +119700 102600 125400 108300 metal1 +) +_195_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 108300 metal2 +108300 102600 125400 108300 metal3 +119700 102600 125400 108300 metal2 +119700 102600 125400 108300 metal1 +) +_196_ +( +114000 114000 119700 119700 metal1 +114000 108300 119700 119700 metal2 +114000 108300 119700 114000 metal1 +) +_197_ +( +114000 119700 119700 125400 metal1 +114000 108300 119700 125400 metal2 +114000 108300 119700 114000 metal1 +) +_198_ +( +108300 102600 114000 108300 metal1 +108300 102600 114000 114000 metal2 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_199_ +( +102600 96900 108300 102600 metal1 +102600 96900 108300 108300 metal2 +102600 102600 108300 108300 metal2 +102600 102600 119700 108300 metal3 +114000 102600 119700 108300 metal2 +114000 102600 119700 108300 metal1 +) +_200_ +( +74100 68400 79800 74100 metal2 +74100 68400 85500 74100 metal3 +79800 68400 85500 74100 metal2 +79800 68400 85500 79800 metal2 +79800 74100 85500 79800 metal1 +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 62700 79800 68400 metal1 +74100 62700 79800 74100 metal2 +) +_201_ +( +79800 74100 85500 79800 metal1 +79800 74100 85500 79800 metal2 +79800 74100 91200 79800 metal3 +85500 74100 91200 79800 metal2 +85500 74100 91200 79800 metal1 +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 108300 74100 metal3 +102600 68400 108300 74100 metal2 +102600 68400 108300 74100 metal1 +85500 74100 102600 79800 metal3 +96900 74100 102600 79800 metal2 +96900 68400 102600 79800 metal2 +) +_202_ +( +79800 79800 85500 91200 metal2 +79800 85500 85500 91200 metal1 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal1 +79800 74100 85500 79800 metal1 +79800 74100 85500 85500 metal2 +) +_203_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 85500 91200 metal3 +79800 85500 85500 91200 metal2 +79800 85500 85500 91200 metal1 +68400 79800 74100 91200 metal2 +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 79800 91200 metal3 +62700 79800 68400 85500 metal1 +62700 79800 68400 85500 metal2 +62700 79800 74100 85500 metal3 +68400 79800 74100 85500 metal2 +68400 79800 74100 85500 metal1 +) +_204_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 85500 91200 metal3 +79800 85500 85500 91200 metal2 +79800 85500 85500 91200 metal1 +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +74100 91200 79800 96900 metal1 +74100 85500 79800 96900 metal2 +) +_205_ +( +85500 85500 91200 91200 metal1 +85500 85500 91200 91200 metal2 +85500 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 96900 metal2 +102600 91200 108300 96900 metal1 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +79800 85500 85500 91200 metal1 +79800 85500 85500 91200 metal2 +79800 85500 91200 91200 metal3 +) +_206_ +( +85500 51300 91200 57000 metal1 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 +91200 51300 96900 62700 metal2 +91200 57000 96900 62700 metal1 +79800 51300 85500 57000 metal1 +79800 51300 85500 57000 metal2 +79800 51300 91200 57000 metal3 +) +_207_ +( +91200 57000 96900 68400 metal2 +91200 62700 96900 68400 metal1 +91200 62700 96900 68400 metal2 +91200 62700 102600 68400 metal3 +96900 62700 102600 68400 metal2 +96900 62700 102600 74100 metal2 +96900 68400 102600 74100 metal1 +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +85500 57000 96900 62700 metal3 +91200 57000 96900 62700 metal2 +91200 57000 96900 62700 metal1 +) +_208_ +( +91200 57000 96900 62700 metal1 +91200 57000 96900 62700 metal2 +91200 57000 102600 62700 metal3 +96900 57000 102600 62700 metal2 +96900 57000 102600 62700 metal1 +) +_209_ +( +96900 39900 102600 51300 metal2 +96900 45600 102600 51300 metal1 +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +96900 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +91200 39900 96900 45600 metal1 +91200 39900 96900 45600 metal2 +91200 39900 102600 45600 metal3 +) +_210_ +( +96900 51300 102600 62700 metal2 +96900 57000 102600 62700 metal1 +91200 51300 96900 57000 metal1 +91200 51300 96900 57000 metal2 +91200 51300 102600 57000 metal3 +96900 51300 102600 57000 metal2 +96900 45600 102600 51300 metal1 +96900 45600 102600 57000 metal2 +) +_211_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 108300 57000 metal3 +102600 51300 108300 57000 metal2 +102600 45600 108300 57000 metal2 +102600 45600 108300 51300 metal1 +102600 51300 114000 57000 metal3 +108300 51300 114000 57000 metal2 +108300 51300 114000 57000 metal1 +) +_212_ +( +91200 51300 96900 62700 metal2 +91200 57000 96900 62700 metal1 +96900 45600 102600 57000 metal2 +96900 45600 102600 51300 metal1 +91200 51300 96900 57000 metal1 +91200 51300 96900 57000 metal2 +91200 51300 102600 57000 metal3 +96900 51300 102600 57000 metal2 +96900 51300 102600 57000 metal1 +) +_213_ +( +96900 85500 102600 91200 metal2 +96900 85500 108300 91200 metal3 +102600 85500 108300 91200 metal2 +102600 85500 108300 96900 metal2 +102600 91200 108300 96900 metal1 +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +91200 85500 102600 91200 metal3 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +96900 57000 102600 62700 metal1 +96900 57000 102600 91200 metal2 +) +_214_ +( +102600 91200 108300 96900 metal1 +102600 91200 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_215_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 102600 metal2 +91200 96900 96900 102600 metal2 +91200 96900 108300 102600 metal3 +102600 96900 108300 102600 metal2 +102600 96900 108300 102600 metal1 +) +_216_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 91200 metal1 +) +_217_ +( +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_218_ +( +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal1 +62700 74100 68400 79800 metal1 +62700 74100 68400 79800 metal2 +62700 74100 74100 79800 metal3 +68400 74100 74100 79800 metal2 +68400 74100 74100 79800 metal1 +) +_219_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 79800 79800 85500 metal1 +) +_220_ +( +74100 74100 79800 79800 metal1 +74100 74100 79800 85500 metal2 +74100 79800 79800 85500 metal2 +74100 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_221_ +( +91200 68400 96900 74100 metal2 +91200 68400 119700 74100 metal3 +114000 68400 119700 74100 metal2 +114000 68400 119700 74100 metal1 +85500 68400 91200 74100 metal1 +85500 68400 91200 74100 metal2 +85500 68400 96900 74100 metal3 +114000 68400 125400 74100 metal3 +119700 68400 125400 74100 metal2 +119700 68400 125400 79800 metal2 +119700 74100 125400 79800 metal1 +91200 68400 96900 79800 metal2 +91200 74100 96900 79800 metal1 +) +_222_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 85500 metal2 +91200 79800 96900 85500 metal1 +91200 68400 96900 74100 metal1 +91200 68400 96900 79800 metal2 +) +_223_ +( +79800 68400 85500 74100 metal1 +79800 68400 85500 74100 metal2 +79800 68400 91200 74100 metal3 +85500 68400 91200 74100 metal2 +85500 68400 91200 74100 metal1 +) +_224_ +( +85500 68400 91200 74100 metal1 +85500 68400 91200 85500 metal2 +85500 79800 91200 85500 metal2 +85500 79800 96900 85500 metal3 +91200 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +) +_225_ +( +91200 74100 96900 79800 metal1 +91200 74100 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_226_ +( +91200 85500 96900 91200 metal1 +91200 85500 96900 91200 metal2 +) +_227_ +( +85500 57000 91200 68400 metal2 +85500 62700 91200 68400 metal2 +85500 62700 96900 68400 metal3 +91200 62700 96900 68400 metal2 +91200 62700 96900 68400 metal1 +79800 57000 85500 62700 metal1 +79800 57000 85500 62700 metal2 +79800 57000 91200 62700 metal3 +85500 57000 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_228_ +( +91200 62700 96900 68400 metal1 +91200 62700 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_229_ +( +96900 85500 102600 91200 metal1 +96900 85500 102600 108300 metal2 +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_230_ +( +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +91200 96900 96900 108300 metal2 +91200 96900 96900 102600 metal1 +85500 102600 91200 108300 metal1 +85500 102600 91200 108300 metal2 +85500 102600 96900 108300 metal3 +) +_231_ +( +102600 51300 108300 57000 metal1 +102600 51300 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_232_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_233_ +( +96900 51300 102600 57000 metal1 +96900 51300 102600 57000 metal2 +96900 51300 108300 57000 metal3 +102600 51300 108300 57000 metal2 +102600 51300 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_234_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 62700 metal2 +96900 57000 108300 62700 metal3 +102600 57000 108300 62700 metal2 +102600 57000 108300 62700 metal1 +) +_235_ +( +96900 57000 102600 62700 metal1 +96900 57000 102600 108300 metal2 +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_236_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 114000 metal2 +96900 108300 102600 114000 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 108300 108300 119700 metal2 +102600 114000 108300 119700 metal2 +102600 114000 114000 119700 metal3 +108300 114000 114000 119700 metal2 +108300 114000 114000 125400 metal2 +108300 119700 114000 125400 metal2 +108300 119700 148200 125400 metal3 +142500 119700 148200 125400 metal2 +142500 119700 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_237_ +( +102600 96900 108300 102600 metal1 +102600 96900 108300 102600 metal2 +102600 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 96900 119700 102600 metal1 +) +_238_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 108300 metal2 +96900 102600 108300 108300 metal3 +102600 102600 108300 108300 metal2 +102600 96900 108300 108300 metal2 +102600 96900 108300 102600 metal1 +) +_239_ +( +96900 114000 102600 119700 metal1 +96900 108300 102600 119700 metal2 +96900 108300 102600 114000 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 108300 108300 114000 metal1 +96900 114000 102600 125400 metal2 +96900 119700 102600 125400 metal1 +) +_240_ +( +96900 102600 102600 108300 metal1 +96900 102600 102600 108300 metal2 +96900 102600 108300 108300 metal3 +102600 102600 108300 108300 metal2 +102600 102600 108300 114000 metal2 +102600 108300 108300 114000 metal1 +) +_241_ +( +91200 102600 96900 108300 metal1 +91200 102600 96900 108300 metal2 +91200 102600 102600 108300 metal3 +96900 102600 102600 108300 metal2 +96900 102600 102600 108300 metal1 +) +_242_ +( +85500 96900 91200 102600 metal1 +85500 96900 91200 102600 metal2 +85500 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +91200 102600 96900 108300 metal1 +91200 96900 96900 108300 metal2 +) +_243_ +( +85500 91200 91200 102600 metal2 +85500 91200 91200 96900 metal1 +79800 96900 85500 102600 metal1 +79800 96900 85500 102600 metal2 +79800 96900 91200 102600 metal3 +85500 96900 91200 102600 metal2 +85500 102600 91200 108300 metal1 +85500 96900 91200 108300 metal2 +) +_244_ +( +85500 91200 91200 96900 metal1 +85500 91200 91200 96900 metal2 +85500 91200 102600 96900 metal3 +96900 91200 102600 96900 metal2 +96900 91200 102600 96900 metal1 +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 91200 96900 metal3 +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 74100 91200 metal3 +68400 85500 74100 91200 metal2 +68400 85500 74100 96900 metal2 +62700 57000 68400 91200 metal2 +62700 57000 68400 62700 metal1 +85500 39900 91200 45600 metal1 +85500 39900 91200 45600 metal2 +85500 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +68400 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 39900 91200 51300 metal2 +62700 45600 68400 62700 metal2 +62700 45600 68400 51300 metal2 +62700 45600 74100 51300 metal3 +) +_245_ +( +131100 125400 136800 136800 metal2 +131100 79800 136800 114000 metal2 +131100 108300 136800 119700 metal2 +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +96900 85500 114000 91200 metal3 +96900 85500 102600 91200 metal2 +96900 85500 102600 96900 metal2 +96900 91200 102600 96900 metal1 +96900 136800 102600 142500 metal1 +96900 131100 102600 142500 metal2 +114000 79800 119700 85500 metal1 +114000 79800 119700 85500 metal2 +114000 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +125400 114000 136800 119700 metal3 +131100 114000 136800 119700 metal2 +108300 79800 114000 91200 metal2 +108300 79800 114000 85500 metal2 +108300 79800 119700 85500 metal3 +131100 114000 136800 131100 metal2 +96900 131100 102600 136800 metal2 +96900 131100 136800 136800 metal3 +131100 131100 136800 136800 metal2 +131100 131100 136800 136800 metal1 +131100 79800 148200 85500 metal3 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal1 +131100 108300 136800 114000 metal2 +131100 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +96900 125400 102600 136800 metal2 +96900 125400 102600 131100 metal1 +131100 125400 142500 131100 metal2 +136800 125400 142500 131100 metal1 +) +_246_ +( +136800 125400 142500 131100 metal1 +136800 125400 142500 131100 metal2 +136800 125400 148200 131100 metal3 +142500 125400 148200 131100 metal2 +142500 125400 148200 131100 metal1 +) +_247_ +( +74100 102600 79800 108300 metal1 +74100 102600 79800 108300 metal2 +74100 102600 85500 108300 metal3 +79800 102600 85500 108300 metal2 +79800 102600 85500 108300 metal1 +) +_248_ +( +125400 74100 131100 119700 metal2 +125400 114000 131100 119700 metal1 +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +119700 74100 131100 79800 metal3 +125400 74100 131100 79800 metal2 +125400 74100 131100 79800 metal1 +85500 34200 91200 51300 metal2 +85500 45600 91200 51300 metal2 +85500 45600 114000 51300 metal3 +108300 45600 114000 51300 metal2 +108300 45600 114000 51300 metal1 +57000 74100 62700 79800 metal1 +57000 62700 62700 79800 metal2 +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 102600 metal2 +68400 96900 74100 102600 metal2 +68400 96900 79800 102600 metal3 +74100 96900 79800 102600 metal2 +74100 96900 79800 108300 metal2 +74100 102600 79800 108300 metal1 +57000 62700 62700 68400 metal2 +51300 62700 62700 68400 metal3 +51300 62700 57000 68400 metal2 +51300 45600 57000 68400 metal2 +51300 45600 57000 51300 metal2 +51300 45600 68400 51300 metal3 +62700 45600 68400 51300 metal2 +62700 39900 68400 51300 metal2 +62700 39900 68400 45600 metal2 +62700 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 +68400 39900 74100 45600 metal1 +108300 45600 125400 51300 metal3 +119700 45600 125400 51300 metal2 +119700 45600 125400 79800 metal2 +68400 34200 74100 45600 metal2 +68400 34200 74100 39900 metal2 +68400 34200 91200 39900 metal3 +85500 34200 91200 39900 metal2 +85500 34200 91200 39900 metal1 +57000 91200 68400 96900 metal3 +57000 91200 62700 96900 metal2 +57000 74100 62700 96900 metal2 +57000 62700 68400 68400 metal3 +62700 62700 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_249_ +( +142500 125400 148200 131100 metal1 +142500 114000 148200 131100 metal2 +91200 131100 96900 136800 metal1 +91200 131100 96900 142500 metal2 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +96900 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +125400 136800 148200 142500 metal3 +142500 136800 148200 142500 metal2 +142500 125400 148200 142500 metal2 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 74100 148200 85500 metal2 +142500 79800 148200 85500 metal1 +142500 114000 148200 119700 metal2 +142500 114000 153900 119700 metal3 +148200 114000 153900 119700 metal2 +148200 114000 153900 119700 metal1 +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +119700 74100 131100 79800 metal3 +114000 74100 119700 79800 metal1 +114000 74100 119700 79800 metal2 +114000 74100 125400 79800 metal3 +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 119700 85500 metal3 +114000 79800 119700 85500 metal2 +114000 74100 119700 85500 metal2 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +142500 79800 148200 119700 metal2 +) +_250_ +( +96900 125400 102600 131100 metal1 +96900 108300 102600 131100 metal2 +96900 108300 102600 114000 metal2 +96900 108300 108300 114000 metal3 +102600 108300 108300 114000 metal2 +102600 102600 108300 114000 metal2 +102600 102600 108300 108300 metal2 +102600 102600 114000 108300 metal3 +108300 102600 114000 108300 metal2 +108300 96900 114000 108300 metal2 +108300 96900 114000 102600 metal1 +) +_251_ +( +91200 96900 96900 102600 metal1 +91200 96900 96900 102600 metal2 +) +_252_ +( +79800 91200 85500 96900 metal1 +79800 91200 85500 102600 metal2 +79800 96900 85500 102600 metal2 +79800 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 96900 96900 102600 metal1 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 96900 metal2 +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 68400 79800 74100 metal2 +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 102600 39900 metal3 +96900 34200 102600 39900 metal2 +96900 34200 102600 51300 metal2 +96900 45600 102600 51300 metal2 +96900 45600 108300 51300 metal3 +102600 45600 108300 51300 metal2 +102600 45600 108300 51300 metal1 +74100 39900 79800 74100 metal2 +74100 39900 79800 45600 metal1 +74100 34200 79800 45600 metal2 +74100 34200 79800 39900 metal2 +74100 34200 96900 39900 metal3 +74100 68400 79800 85500 metal2 +) +_253_ +( +131100 79800 136800 114000 metal2 +131100 108300 136800 125400 metal2 +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +96900 125400 114000 131100 metal3 +108300 125400 114000 131100 metal2 +108300 119700 114000 131100 metal2 +108300 119700 114000 125400 metal2 +108300 119700 131100 125400 metal3 +125400 119700 131100 125400 metal2 +125400 119700 131100 125400 metal1 +119700 79800 125400 85500 metal1 +119700 79800 125400 85500 metal2 +119700 79800 136800 85500 metal3 +131100 79800 136800 85500 metal2 +131100 79800 136800 85500 metal1 +96900 131100 102600 136800 metal1 +96900 125400 102600 136800 metal2 +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 91200 96900 metal3 +85500 91200 91200 96900 metal2 +85500 79800 91200 96900 metal2 +85500 79800 91200 85500 metal2 +85500 79800 102600 85500 metal3 +96900 79800 102600 85500 metal2 +131100 119700 136800 131100 metal2 +131100 125400 136800 131100 metal1 +74100 96900 79800 102600 metal1 +74100 96900 79800 102600 metal2 +74100 96900 85500 102600 metal3 +79800 96900 85500 102600 metal2 +79800 91200 85500 102600 metal2 +96900 79800 125400 85500 metal3 +96900 74100 102600 85500 metal2 +96900 74100 102600 79800 metal1 +131100 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +131100 108300 136800 114000 metal2 +131100 108300 148200 114000 metal3 +142500 108300 148200 114000 metal2 +142500 108300 148200 114000 metal1 +125400 119700 136800 125400 metal3 +131100 119700 136800 125400 metal2 +) +_254_ +( +96900 119700 102600 125400 metal1 +96900 119700 102600 125400 metal2 +96900 119700 108300 125400 metal3 +102600 119700 108300 125400 metal2 +102600 119700 108300 125400 metal1 +) +_255_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 131100 metal2 +) +_256_ +( +96900 125400 102600 131100 metal1 +96900 125400 102600 136800 metal2 +96900 131100 102600 136800 metal1 +) +_257_ +( +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_258_ +( +102600 119700 108300 131100 metal2 +102600 125400 108300 131100 metal1 +102600 119700 108300 125400 metal2 +102600 119700 114000 125400 metal3 +108300 119700 114000 125400 metal2 +108300 119700 114000 125400 metal1 +96900 119700 102600 125400 metal1 +96900 119700 102600 125400 metal2 +96900 119700 108300 125400 metal3 +) +_259_ +( +96900 131100 102600 136800 metal1 +96900 131100 102600 142500 metal2 +96900 136800 102600 142500 metal1 +) +_260_ +( +96900 136800 102600 142500 metal1 +96900 136800 102600 142500 metal2 +) +_261_ +( +131100 136800 136800 142500 metal1 +131100 131100 136800 142500 metal2 +131100 131100 136800 136800 metal1 +) +_262_ +( +108300 119700 114000 131100 metal2 +108300 125400 114000 131100 metal1 +108300 119700 114000 125400 metal1 +108300 119700 114000 125400 metal2 +108300 119700 119700 125400 metal3 +114000 119700 119700 125400 metal2 +114000 114000 119700 125400 metal2 +114000 114000 119700 119700 metal1 +) +_263_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +) +_264_ +( +114000 125400 119700 131100 metal1 +114000 125400 119700 131100 metal2 +114000 125400 125400 131100 metal3 +119700 125400 125400 131100 metal2 +119700 125400 125400 131100 metal1 +119700 119700 125400 131100 metal2 +119700 119700 125400 125400 metal1 +) +_265_ +( +119700 125400 125400 131100 metal1 +119700 125400 125400 131100 metal2 +119700 125400 131100 131100 metal3 +125400 125400 131100 131100 metal2 +125400 125400 131100 131100 metal1 +) +_266_ +( +131100 125400 136800 131100 metal1 +131100 125400 136800 136800 metal2 +131100 131100 136800 136800 metal1 +) +_267_ +( +125400 136800 131100 142500 metal1 +125400 131100 131100 142500 metal2 +125400 131100 131100 136800 metal2 +125400 131100 136800 136800 metal3 +131100 131100 136800 136800 metal2 +131100 131100 136800 136800 metal1 +) +_268_ +( +136800 74100 142500 79800 metal1 +136800 74100 142500 79800 metal2 +136800 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 74100 148200 85500 metal2 +142500 79800 148200 85500 metal1 +) +_269_ +( +119700 119700 125400 125400 metal1 +119700 114000 125400 125400 metal2 +119700 114000 125400 119700 metal1 +) +_270_ +( +114000 108300 119700 114000 metal1 +114000 108300 119700 114000 metal2 +114000 108300 125400 114000 metal3 +119700 108300 125400 114000 metal2 +119700 108300 125400 119700 metal2 +119700 114000 125400 119700 metal1 +) +_271_ +( +108300 114000 114000 119700 metal1 +108300 108300 114000 119700 metal2 +108300 108300 114000 114000 metal2 +108300 108300 119700 114000 metal3 +114000 108300 119700 114000 metal2 +114000 108300 119700 114000 metal1 +) +_272_ +( +136800 91200 142500 96900 metal1 +136800 85500 142500 96900 metal2 +136800 85500 142500 91200 metal1 +136800 91200 142500 102600 metal2 +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 +114000 114000 119700 119700 metal1 +114000 96900 119700 119700 metal2 +) +_273_ +( +136800 79800 142500 85500 metal1 +136800 79800 142500 85500 metal2 +136800 79800 148200 85500 metal3 +142500 79800 148200 85500 metal2 +142500 79800 148200 85500 metal1 +) +_274_ +( +142500 79800 148200 85500 metal1 +142500 79800 148200 85500 metal2 +) +_275_ +( +142500 119700 148200 125400 metal1 +142500 114000 148200 125400 metal2 +142500 114000 148200 119700 metal2 +142500 114000 153900 119700 metal3 +148200 114000 153900 119700 metal2 +148200 108300 153900 119700 metal2 +148200 108300 153900 114000 metal1 +) +_276_ +( +136800 85500 142500 91200 metal1 +136800 85500 142500 91200 metal2 +136800 85500 148200 91200 metal3 +142500 85500 148200 91200 metal2 +142500 85500 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_277_ +( +142500 91200 148200 96900 metal1 +142500 91200 148200 96900 metal2 +142500 91200 153900 96900 metal3 +148200 91200 153900 96900 metal2 +148200 91200 153900 96900 metal1 +142500 91200 148200 102600 metal2 +142500 96900 148200 102600 metal1 +) +_278_ +( +136800 91200 142500 96900 metal1 +136800 91200 142500 96900 metal2 +136800 91200 148200 96900 metal3 +142500 91200 148200 96900 metal2 +142500 91200 148200 96900 metal1 +) +_279_ +( +142500 108300 148200 114000 metal1 +142500 108300 148200 114000 metal2 +142500 108300 153900 114000 metal3 +148200 108300 153900 114000 metal2 +148200 108300 153900 114000 metal1 +) +_280_ +( +148200 108300 153900 114000 metal1 +148200 108300 153900 119700 metal2 +148200 114000 153900 119700 metal1 +) +_281_ +( +131100 79800 136800 85500 metal1 +131100 74100 136800 85500 metal2 +131100 74100 136800 79800 metal2 +131100 74100 142500 79800 metal3 +136800 74100 142500 79800 metal2 +136800 74100 142500 79800 metal1 +) +_282_ +( +142500 96900 148200 102600 metal1 +142500 96900 148200 102600 metal2 +) +_283_ +( +136800 96900 142500 102600 metal1 +136800 96900 142500 102600 metal2 +136800 96900 148200 102600 metal3 +142500 96900 148200 102600 metal2 +142500 96900 148200 102600 metal1 +131100 102600 136800 108300 metal1 +131100 102600 136800 108300 metal2 +131100 102600 142500 108300 metal3 +136800 102600 142500 108300 metal2 +136800 96900 142500 108300 metal2 +) +_284_ +( +131100 91200 136800 102600 metal2 +131100 91200 136800 96900 metal1 +125400 96900 131100 102600 metal1 +125400 96900 131100 102600 metal2 +125400 96900 136800 102600 metal3 +131100 96900 136800 102600 metal2 +131100 96900 142500 102600 metal3 +136800 96900 142500 102600 metal2 +136800 96900 142500 102600 metal1 +) +_285_ +( +131100 79800 136800 85500 metal1 +131100 79800 136800 85500 metal2 +) +_286_ +( +131100 74100 136800 79800 metal1 +131100 74100 136800 79800 metal2 +) +_287_ +( +91200 114000 96900 119700 metal1 +91200 114000 96900 119700 metal2 +91200 114000 131100 119700 metal3 +125400 114000 131100 119700 metal2 +125400 114000 131100 119700 metal1 +) +_288_ +( +125400 91200 131100 96900 metal1 +125400 91200 131100 102600 metal2 +125400 96900 131100 102600 metal1 +) +_289_ +( +119700 96900 125400 102600 metal1 +119700 96900 125400 102600 metal2 +119700 96900 131100 102600 metal3 +125400 96900 131100 102600 metal2 +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_290_ +( +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_291_ +( +125400 102600 131100 108300 metal1 +125400 102600 131100 114000 metal2 +125400 108300 131100 114000 metal1 +) +_292_ +( +125400 119700 131100 125400 metal1 +125400 114000 131100 125400 metal2 +125400 114000 131100 119700 metal1 +) +_293_ +( +125400 114000 131100 119700 metal1 +125400 114000 131100 119700 metal2 +) +_294_ +( +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 85500 96900 metal3 +79800 91200 85500 96900 metal2 +79800 91200 85500 96900 metal1 +) +_295_ +( +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +) +_296_ +( +125400 96900 131100 102600 metal1 +125400 96900 131100 108300 metal2 +125400 102600 131100 108300 metal1 +) +_297_ +( +114000 96900 119700 102600 metal1 +114000 96900 119700 102600 metal2 +114000 96900 125400 102600 metal3 +119700 96900 125400 102600 metal2 +119700 96900 125400 108300 metal2 +119700 102600 125400 108300 metal2 +119700 102600 136800 108300 metal3 +131100 102600 136800 108300 metal2 +131100 102600 136800 108300 metal1 +) +_298_ +( +74100 85500 79800 96900 metal2 +74100 91200 79800 96900 metal1 +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +74100 85500 91200 91200 metal3 +85500 85500 91200 91200 metal2 +85500 85500 91200 91200 metal1 +85500 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 102600 metal2 +91200 96900 96900 102600 metal2 +91200 96900 119700 102600 metal3 +114000 96900 119700 102600 metal2 +114000 96900 119700 102600 metal1 +) +_299_ +( +68400 91200 74100 96900 metal1 +68400 91200 74100 96900 metal2 +68400 91200 79800 96900 metal3 +74100 91200 79800 96900 metal2 +74100 91200 79800 102600 metal2 +74100 96900 79800 102600 metal1 +) +_300_ +( +62700 91200 68400 96900 metal1 +62700 91200 68400 96900 metal2 +62700 91200 74100 96900 metal3 +68400 91200 74100 96900 metal2 +68400 91200 74100 96900 metal1 +) +_301_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +) +_302_ +( +74100 85500 79800 91200 metal1 +74100 74100 79800 91200 metal2 +74100 74100 79800 79800 metal1 +74100 74100 79800 79800 metal2 +74100 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +) +_303_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +) +_304_ +( +68400 85500 74100 91200 metal1 +68400 85500 74100 91200 metal2 +68400 85500 79800 91200 metal3 +74100 85500 79800 91200 metal2 +74100 85500 79800 91200 metal1 +68400 79800 74100 91200 metal2 +68400 79800 74100 85500 metal1 +) +_305_ +( +74100 85500 79800 91200 metal1 +74100 85500 79800 91200 metal2 +) +_306_ +( +62700 85500 68400 91200 metal1 +62700 85500 68400 91200 metal2 +62700 85500 79800 91200 metal3 +74100 85500 79800 91200 metal2 +74100 79800 79800 91200 metal2 +74100 79800 79800 85500 metal1 +) +_307_ +( +57000 74100 62700 79800 metal1 +57000 74100 62700 85500 metal2 +57000 79800 62700 85500 metal2 +57000 79800 68400 85500 metal3 +62700 79800 68400 85500 metal2 +62700 79800 68400 85500 metal1 +) +_308_ +( +62700 51300 68400 57000 metal1 +62700 51300 68400 62700 metal2 +62700 57000 68400 62700 metal1 +) +_309_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 85500 metal2 +68400 79800 74100 85500 metal1 +) +_310_ +( +68400 79800 74100 85500 metal1 +68400 79800 74100 85500 metal2 +68400 79800 79800 85500 metal3 +74100 79800 79800 85500 metal2 +74100 74100 79800 85500 metal2 +74100 74100 79800 79800 metal1 +) +_311_ +( +68400 74100 74100 79800 metal1 +68400 74100 74100 79800 metal2 +68400 74100 79800 79800 metal3 +74100 74100 79800 79800 metal2 +74100 74100 79800 79800 metal1 +74100 74100 85500 79800 metal3 +79800 74100 85500 79800 metal2 +79800 74100 85500 79800 metal1 +79800 74100 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_312_ +( +68400 68400 74100 74100 metal1 +68400 68400 74100 74100 metal2 +68400 68400 79800 74100 metal3 +74100 68400 79800 74100 metal2 +74100 68400 79800 74100 metal1 +) +_313_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 62700 metal2 +62700 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 74100 metal2 +68400 68400 74100 74100 metal1 +) +_314_ +( +62700 57000 68400 62700 metal1 +62700 57000 68400 68400 metal2 +62700 62700 68400 68400 metal1 +) +_315_ +( +114000 79800 119700 85500 metal1 +114000 79800 119700 85500 metal2 +) +_316_ +( +114000 74100 119700 79800 metal1 +114000 74100 119700 79800 metal2 +114000 74100 125400 79800 metal3 +119700 74100 125400 79800 metal2 +119700 74100 125400 79800 metal1 +) +_317_ +( +79800 74100 85500 79800 metal1 +79800 68400 85500 79800 metal2 +79800 68400 85500 74100 metal2 +79800 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +) +_318_ +( +85500 68400 91200 74100 metal2 +85500 68400 96900 74100 metal3 +91200 68400 96900 74100 metal2 +91200 68400 96900 74100 metal1 +85500 68400 91200 79800 metal2 +85500 74100 91200 79800 metal1 +85500 62700 91200 68400 metal1 +85500 62700 91200 74100 metal2 +) +_319_ +( +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +) +_320_ +( +91200 68400 96900 74100 metal1 +91200 68400 96900 74100 metal2 +91200 68400 102600 74100 metal3 +96900 68400 102600 74100 metal2 +96900 68400 102600 74100 metal1 +) +_321_ +( +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +) +_322_ +( +119700 74100 125400 79800 metal1 +119700 74100 125400 79800 metal2 +) +_323_ +( +85500 85500 91200 91200 metal1 +85500 85500 91200 91200 metal2 +) +_324_ +( +85500 79800 91200 85500 metal1 +85500 79800 91200 85500 metal2 +) +_325_ +( +79800 79800 85500 85500 metal1 +79800 79800 85500 85500 metal2 +79800 79800 91200 85500 metal3 +85500 79800 91200 85500 metal2 +85500 79800 91200 85500 metal1 +) +_326_ +( +85500 74100 91200 79800 metal1 +85500 74100 91200 85500 metal2 +85500 79800 91200 85500 metal1 +) +_327_ +( +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +96900 45600 108300 51300 metal3 +102600 45600 108300 51300 metal2 +102600 45600 108300 51300 metal1 +91200 45600 96900 57000 metal2 +91200 45600 96900 51300 metal2 +91200 45600 102600 51300 metal3 +85500 79800 91200 85500 metal1 +85500 51300 91200 85500 metal2 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 +91200 51300 96900 57000 metal1 +) +_328_ +( +102600 45600 108300 51300 metal1 +102600 39900 108300 51300 metal2 +102600 39900 108300 45600 metal1 +) +_329_ +( +79800 39900 85500 45600 metal1 +79800 39900 85500 45600 metal2 +79800 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +) +_330_ +( +102600 39900 108300 45600 metal1 +102600 39900 108300 45600 metal2 +102600 39900 114000 45600 metal3 +108300 39900 114000 45600 metal2 +108300 39900 114000 51300 metal2 +108300 45600 114000 51300 metal1 +) +_331_ +( +96900 45600 102600 51300 metal1 +96900 45600 102600 51300 metal2 +) +_332_ +( +96900 51300 102600 57000 metal1 +96900 45600 102600 57000 metal2 +91200 39900 96900 45600 metal1 +91200 39900 96900 51300 metal2 +91200 45600 96900 51300 metal2 +91200 45600 102600 51300 metal3 +96900 45600 102600 51300 metal2 +96900 45600 102600 51300 metal1 +) +_333_ +( +96900 39900 102600 45600 metal1 +96900 39900 102600 45600 metal2 +) +_334_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_335_ +( +85500 39900 91200 45600 metal1 +85500 39900 91200 45600 metal2 +85500 39900 96900 45600 metal3 +91200 39900 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_336_ +( +85500 34200 91200 39900 metal1 +85500 34200 91200 39900 metal2 +85500 34200 96900 39900 metal3 +91200 34200 96900 39900 metal2 +91200 34200 96900 45600 metal2 +91200 39900 96900 45600 metal1 +) +_337_ +( +85500 45600 91200 57000 metal2 +85500 51300 91200 57000 metal2 +85500 51300 96900 57000 metal3 +91200 51300 96900 57000 metal2 +91200 51300 96900 57000 metal1 +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 45600 91200 51300 metal1 +) +_338_ +( +85500 51300 91200 57000 metal1 +85500 45600 91200 57000 metal2 +85500 45600 91200 51300 metal1 +) +_339_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +85500 45600 96900 51300 metal3 +91200 45600 96900 51300 metal2 +91200 39900 96900 51300 metal2 +91200 39900 96900 45600 metal1 +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +) +_340_ +( +85500 45600 91200 51300 metal1 +85500 45600 91200 51300 metal2 +) +_341_ +( +79800 45600 85500 51300 metal1 +79800 45600 85500 51300 metal2 +79800 45600 91200 51300 metal3 +85500 45600 91200 51300 metal2 +85500 45600 91200 51300 metal1 +85500 45600 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_342_ +( +68400 45600 74100 51300 metal1 +68400 45600 74100 51300 metal2 +68400 45600 79800 51300 metal3 +74100 45600 79800 51300 metal2 +74100 39900 79800 51300 metal2 +74100 39900 79800 45600 metal1 +) +_343_ +( +62700 51300 68400 57000 metal1 +62700 45600 68400 57000 metal2 +62700 45600 68400 51300 metal2 +62700 45600 74100 51300 metal3 +68400 45600 74100 51300 metal2 +68400 45600 74100 51300 metal1 +) +_344_ +( +68400 45600 74100 51300 metal1 +68400 39900 74100 51300 metal2 +68400 39900 74100 45600 metal1 +) +_345_ +( +85500 57000 91200 62700 metal1 +85500 57000 91200 62700 metal2 +) +_346_ +( +85500 51300 91200 57000 metal1 +85500 51300 91200 62700 metal2 +85500 57000 91200 62700 metal1 +) +_347_ +( +96900 74100 102600 79800 metal1 +96900 74100 102600 79800 metal2 +96900 74100 108300 79800 metal3 +102600 74100 108300 79800 metal2 +102600 74100 108300 85500 metal2 +102600 79800 108300 85500 metal1 +) +_348_ +( +108300 85500 114000 91200 metal1 +108300 85500 114000 119700 metal2 +108300 114000 114000 119700 metal2 +108300 114000 119700 119700 metal3 +114000 114000 119700 119700 metal2 +114000 114000 119700 136800 metal2 +114000 131100 119700 136800 metal1 +) +_349_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 85500 metal2 +102600 79800 114000 85500 metal3 +108300 79800 114000 85500 metal2 +108300 79800 114000 85500 metal1 +) +_350_ +( +102600 79800 108300 85500 metal1 +102600 79800 108300 91200 metal2 +102600 85500 108300 91200 metal1 +) +_351_ +( +136800 136800 142500 142500 metal1 +136800 136800 142500 142500 metal2 +136800 136800 153900 142500 metal3 +148200 136800 153900 142500 metal2 +148200 136800 153900 142500 metal1 +) +_352_ +( +102600 57000 108300 74100 metal2 +102600 68400 108300 74100 metal1 +108300 57000 114000 62700 metal1 +108300 57000 114000 62700 metal2 +102600 57000 114000 62700 metal3 +102600 57000 108300 62700 metal2 +96900 79800 102600 85500 metal1 +96900 79800 102600 85500 metal2 +96900 79800 108300 85500 metal3 +102600 79800 108300 85500 metal2 +102600 68400 108300 85500 metal2 +96900 57000 108300 62700 metal3 +96900 57000 102600 62700 metal2 +96900 45600 102600 62700 metal2 +96900 45600 102600 51300 metal2 +96900 39900 102600 51300 metal3 +96900 39900 108300 45600 metal3 +102600 39900 108300 45600 metal2 +102600 39900 108300 45600 metal1 +74100 45600 79800 51300 metal1 +74100 45600 79800 62700 metal2 +74100 57000 79800 62700 metal2 +74100 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +91200 91200 96900 96900 metal1 +91200 79800 96900 96900 metal2 +91200 79800 96900 85500 metal2 +91200 79800 102600 85500 metal3 +79800 96900 85500 102600 metal1 +79800 96900 85500 102600 metal2 +79800 96900 96900 102600 metal3 +91200 96900 96900 102600 metal2 +91200 91200 96900 102600 metal2 +79800 57000 102600 62700 metal3 +79800 57000 85500 68400 metal2 +79800 62700 85500 68400 metal1 +) +_353_ +( +136800 114000 142500 142500 metal2 +85500 114000 91200 119700 metal1 +85500 96900 91200 119700 metal2 +108300 142500 114000 148200 metal1 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 136800 119700 148200 metal2 +114000 136800 119700 142500 metal2 +114000 136800 125400 142500 metal3 +119700 136800 125400 142500 metal2 +119700 136800 125400 142500 metal1 +119700 136800 142500 142500 metal3 +136800 136800 142500 142500 metal2 +136800 136800 142500 142500 metal1 +148200 91200 153900 102600 metal2 +148200 91200 153900 96900 metal1 +148200 91200 153900 96900 metal2 +119700 91200 153900 96900 metal3 +119700 91200 125400 96900 metal2 +119700 85500 125400 96900 metal2 +119700 85500 125400 91200 metal1 +148200 96900 153900 108300 metal2 +148200 102600 153900 108300 metal2 +142500 102600 153900 108300 metal3 +142500 102600 148200 108300 metal2 +142500 102600 148200 119700 metal2 +142500 114000 148200 119700 metal2 +136800 114000 148200 119700 metal3 +136800 114000 142500 119700 metal2 +136800 114000 142500 119700 metal1 +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +57000 96900 91200 102600 metal3 +85500 96900 91200 102600 metal2 +57000 79800 62700 102600 metal2 +57000 79800 62700 85500 metal1 +148200 96900 153900 102600 metal2 +148200 96900 159600 102600 metal3 +153900 96900 159600 102600 metal2 +153900 96900 159600 102600 metal1 +85500 91200 91200 102600 metal3 +85500 91200 96900 96900 metal3 +91200 91200 96900 96900 metal2 +91200 91200 96900 96900 metal1 +91200 91200 125400 96900 metal3 +) +_354_ +( +85500 114000 91200 119700 metal1 +85500 114000 91200 119700 metal2 +) +_355_ +( +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +) +_356_ +( +119700 142500 125400 148200 metal1 +119700 136800 125400 148200 metal2 +119700 136800 125400 142500 metal1 +) +_357_ +( +153900 91200 159600 96900 metal1 +153900 91200 159600 96900 metal2 +) +_358_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +) +_359_ +( +119700 85500 125400 91200 metal1 +119700 85500 125400 91200 metal2 +) +_360_ +( +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 148200 119700 metal3 +142500 114000 148200 119700 metal2 +142500 114000 148200 125400 metal2 +142500 119700 148200 125400 metal1 +) +_361_ +( +57000 96900 62700 102600 metal1 +57000 96900 62700 102600 metal2 +) +_362_ +( +57000 74100 62700 79800 metal1 +57000 74100 62700 91200 metal2 +57000 85500 62700 91200 metal1 +) +_363_ +( +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 91200 68400 metal3 +85500 62700 91200 68400 metal2 +85500 62700 91200 68400 metal1 +) +_364_ +( +108300 62700 114000 68400 metal1 +108300 62700 114000 74100 metal2 +108300 68400 114000 74100 metal1 +) +_365_ +( +108300 57000 114000 62700 metal1 +108300 57000 114000 62700 metal2 +108300 57000 119700 62700 metal3 +114000 57000 119700 62700 metal2 +114000 57000 119700 68400 metal2 +114000 62700 119700 68400 metal1 +) +_366_ +( +108300 34200 114000 39900 metal1 +108300 34200 114000 45600 metal2 +108300 39900 114000 45600 metal1 +) +_367_ +( +74100 39900 79800 45600 metal1 +74100 39900 79800 51300 metal2 +74100 45600 79800 51300 metal1 +) +_368_ +( +96900 79800 102600 85500 metal1 +96900 79800 102600 85500 metal2 +) +_369_ +( +148200 136800 153900 142500 metal1 +148200 136800 153900 142500 metal2 +148200 136800 159600 142500 metal3 +153900 136800 159600 142500 metal2 +153900 136800 159600 142500 metal1 +) +_370_ +( +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +28500 62700 85500 68400 metal3 +28500 62700 34200 68400 metal2 +28500 62700 34200 85500 metal2 +28500 79800 34200 85500 metal2 +22800 79800 34200 85500 metal3 +22800 79800 28500 85500 metal2 +22800 79800 28500 159600 metal2 +22800 153900 28500 159600 metal2 +22800 153900 74100 159600 metal3 +68400 153900 74100 159600 metal2 +68400 153900 74100 165300 metal2 +68400 159600 74100 165300 metal2 +68400 159600 125400 165300 metal3 +119700 159600 125400 165300 metal2 +119700 159600 125400 176700 metal2 +119700 171000 125400 176700 metal1 +) +_371_ +( +102600 22800 108300 28500 metal1 +102600 22800 108300 28500 metal2 +102600 22800 114000 28500 metal3 +108300 22800 114000 28500 metal2 +108300 22800 114000 68400 metal2 +108300 62700 114000 68400 metal2 +102600 62700 114000 68400 metal3 +102600 62700 108300 68400 metal2 +102600 62700 108300 68400 metal1 +) +_372_ +( +114000 62700 119700 68400 metal1 +114000 62700 119700 68400 metal2 +114000 62700 153900 68400 metal3 +148200 62700 153900 68400 metal2 +148200 62700 153900 79800 metal2 +148200 74100 153900 79800 metal2 +148200 74100 176700 79800 metal3 +171000 74100 176700 79800 metal2 +171000 74100 176700 159600 metal2 +171000 153900 176700 159600 metal2 +125400 153900 176700 159600 metal3 +125400 153900 131100 159600 metal2 +125400 153900 131100 171000 metal2 +125400 165300 131100 171000 metal2 +119700 165300 131100 171000 metal3 +119700 165300 125400 171000 metal2 +119700 165300 125400 171000 metal1 +) +_373_ +( +108300 34200 114000 39900 metal1 +108300 34200 114000 39900 metal2 +108300 34200 119700 39900 metal3 +114000 34200 119700 39900 metal2 +114000 34200 119700 39900 metal1 +) +_374_ +( +62700 34200 68400 39900 metal1 +62700 34200 68400 45600 metal2 +62700 39900 68400 45600 metal2 +62700 39900 74100 45600 metal3 +68400 39900 74100 45600 metal2 +68400 39900 74100 45600 metal1 +) +_375_ +( +22800 85500 28500 91200 metal1 +22800 85500 28500 91200 metal2 +22800 85500 96900 91200 metal3 +91200 85500 96900 91200 metal2 +91200 85500 96900 91200 metal1 +) +_376_ +( +142500 131100 148200 136800 metal1 +142500 131100 148200 142500 metal2 +142500 136800 148200 142500 metal2 +142500 136800 153900 142500 metal3 +148200 136800 153900 142500 metal2 +148200 136800 153900 176700 metal2 +148200 171000 153900 176700 metal1 +) +_377_ +( +108300 96900 114000 102600 metal1 +108300 96900 114000 102600 metal2 +108300 96900 125400 102600 metal3 +119700 96900 125400 102600 metal2 +119700 91200 125400 102600 metal2 +119700 91200 125400 96900 metal2 +119700 91200 176700 96900 metal3 +171000 91200 176700 96900 metal2 +171000 91200 176700 96900 metal1 +) +_378_ +( +74100 142500 79800 148200 metal1 +74100 142500 79800 148200 metal2 +74100 142500 96900 148200 metal3 +91200 142500 96900 148200 metal2 +91200 136800 96900 148200 metal2 +91200 136800 96900 142500 metal1 +) +_379_ +( +131100 136800 136800 142500 metal1 +131100 136800 136800 148200 metal2 +131100 142500 136800 148200 metal2 +131100 142500 142500 148200 metal3 +136800 142500 142500 148200 metal2 +136800 142500 142500 148200 metal1 +) +_380_ +( +79800 22800 85500 28500 metal1 +79800 22800 85500 28500 metal2 +45600 22800 85500 28500 metal3 +45600 22800 51300 28500 metal2 +45600 22800 51300 119700 metal2 +45600 114000 51300 119700 metal2 +45600 114000 91200 119700 metal3 +85500 114000 91200 119700 metal2 +85500 114000 91200 119700 metal1 +) +_381_ +( +34200 74100 39900 79800 metal1 +34200 74100 39900 79800 metal2 +34200 74100 136800 79800 metal3 +131100 74100 136800 79800 metal2 +131100 74100 136800 85500 metal2 +131100 79800 136800 85500 metal2 +131100 79800 142500 85500 metal3 +136800 79800 142500 85500 metal2 +136800 79800 142500 85500 metal1 +) +_382_ +( +148200 119700 153900 125400 metal1 +148200 119700 153900 125400 metal2 +148200 119700 176700 125400 metal3 +171000 119700 176700 125400 metal2 +171000 119700 176700 125400 metal1 +) +_383_ +( +136800 74100 142500 79800 metal1 +136800 74100 142500 79800 metal2 +136800 74100 148200 79800 metal3 +142500 74100 148200 79800 metal2 +142500 68400 148200 79800 metal2 +142500 68400 148200 74100 metal1 +) +_384_ +( +85500 171000 91200 176700 metal1 +85500 125400 91200 176700 metal2 +85500 125400 91200 131100 metal2 +85500 125400 96900 131100 metal3 +91200 125400 96900 131100 metal2 +91200 114000 96900 131100 metal2 +91200 114000 96900 119700 metal1 +) +_385_ +( +79800 91200 85500 96900 metal1 +79800 91200 85500 96900 metal2 +79800 91200 142500 96900 metal3 +136800 91200 142500 96900 metal2 +136800 91200 142500 102600 metal2 +136800 96900 142500 102600 metal2 +136800 96900 176700 102600 metal3 +171000 96900 176700 102600 metal2 +171000 96900 176700 102600 metal1 +) +_386_ +( +51300 108300 57000 114000 metal1 +51300 85500 57000 114000 metal2 +51300 85500 57000 91200 metal2 +51300 85500 68400 91200 metal3 +62700 85500 68400 91200 metal2 +62700 85500 68400 91200 metal1 +) +_387_ +( +57000 45600 62700 51300 metal1 +57000 45600 62700 57000 metal2 +57000 51300 62700 57000 metal2 +57000 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +) +_388_ +( +108300 171000 114000 176700 metal1 +108300 171000 114000 176700 metal2 +108300 171000 131100 176700 metal3 +125400 171000 131100 176700 metal2 +125400 114000 131100 176700 metal2 +125400 114000 131100 119700 metal2 +119700 114000 131100 119700 metal3 +119700 114000 125400 119700 metal2 +119700 102600 125400 119700 metal2 +119700 102600 125400 108300 metal2 +114000 102600 125400 108300 metal3 +114000 102600 119700 108300 metal2 +114000 85500 119700 108300 metal2 +114000 85500 119700 91200 metal1 +) +_389_ +( +22800 34200 28500 39900 metal1 +22800 34200 28500 39900 metal2 +22800 34200 85500 39900 metal3 +79800 34200 85500 39900 metal2 +79800 34200 85500 45600 metal2 +79800 39900 85500 45600 metal1 +) +_390_ +( +85500 28500 91200 34200 metal1 +85500 28500 91200 45600 metal2 +85500 39900 91200 45600 metal1 +) +_391_ +( +114000 142500 119700 148200 metal1 +114000 142500 119700 148200 metal2 +114000 142500 125400 148200 metal3 +119700 142500 125400 148200 metal2 +119700 142500 125400 153900 metal2 +119700 148200 125400 153900 metal2 +119700 148200 171000 153900 metal3 +165300 148200 171000 153900 metal2 +165300 148200 171000 153900 metal1 +) +_392_ +( +39900 171000 45600 176700 metal1 +39900 171000 45600 176700 metal2 +34200 171000 45600 176700 metal3 +34200 171000 39900 176700 metal2 +34200 57000 39900 176700 metal2 +34200 57000 39900 62700 metal2 +34200 57000 62700 62700 metal3 +57000 57000 62700 62700 metal2 +57000 51300 62700 62700 metal2 +57000 51300 62700 57000 metal2 +57000 51300 68400 57000 metal3 +62700 51300 68400 57000 metal2 +62700 51300 68400 57000 metal1 +) +_393_ +( +114000 171000 119700 176700 metal1 +114000 131100 119700 176700 metal2 +114000 131100 119700 136800 metal1 +) +_394_ +( +22800 171000 28500 176700 metal1 +22800 171000 28500 176700 metal2 +22800 171000 51300 176700 metal3 +45600 171000 51300 176700 metal2 +45600 171000 51300 182400 metal2 +45600 176700 51300 182400 metal2 +45600 176700 108300 182400 metal3 +102600 176700 108300 182400 metal2 +102600 171000 108300 182400 metal2 +102600 171000 108300 176700 metal2 +102600 171000 114000 176700 metal3 +108300 171000 114000 176700 metal2 +108300 142500 114000 176700 metal2 +108300 142500 114000 148200 metal2 +108300 142500 119700 148200 metal3 +114000 142500 119700 148200 metal2 +114000 142500 119700 148200 metal1 +) +_395_ +( +153900 91200 159600 96900 metal1 +153900 91200 159600 96900 metal2 +153900 91200 171000 96900 metal3 +165300 91200 171000 96900 metal2 +165300 91200 171000 102600 metal2 +165300 96900 171000 102600 metal1 +) +_396_ +( +153900 96900 159600 102600 metal1 +153900 96900 159600 102600 metal2 +153900 96900 165300 102600 metal3 +159600 96900 165300 102600 metal2 +159600 74100 165300 102600 metal2 +159600 74100 165300 79800 metal2 +153900 74100 165300 79800 metal3 +153900 74100 159600 79800 metal2 +153900 28500 159600 79800 metal2 +153900 28500 159600 34200 metal2 +153900 28500 171000 34200 metal3 +165300 28500 171000 34200 metal2 +165300 22800 171000 34200 metal2 +165300 22800 171000 28500 metal1 +) +_397_ +( +22800 62700 28500 68400 metal1 +22800 62700 28500 68400 metal2 +22800 62700 114000 68400 metal3 +108300 62700 114000 68400 metal2 +108300 62700 114000 79800 metal2 +108300 74100 114000 79800 metal2 +108300 74100 119700 79800 metal3 +114000 74100 119700 79800 metal2 +114000 74100 119700 91200 metal2 +114000 85500 119700 91200 metal2 +114000 85500 125400 91200 metal3 +119700 85500 125400 91200 metal2 +119700 85500 125400 91200 metal1 +) +_398_ +( +142500 119700 148200 125400 metal1 +142500 119700 148200 125400 metal2 +142500 119700 153900 125400 metal3 +148200 119700 153900 125400 metal2 +148200 119700 153900 131100 metal2 +148200 125400 153900 131100 metal2 +148200 125400 176700 131100 metal3 +171000 125400 176700 131100 metal2 +171000 125400 176700 131100 metal1 +) +_399_ +( +45600 102600 51300 108300 metal1 +45600 102600 51300 108300 metal2 +45600 102600 62700 108300 metal3 +57000 102600 62700 108300 metal2 +57000 96900 62700 108300 metal2 +57000 96900 62700 102600 metal1 +) +_400_ +( +22800 74100 28500 79800 metal1 +22800 74100 28500 79800 metal2 +22800 74100 39900 79800 metal3 +34200 74100 39900 79800 metal2 +34200 74100 39900 85500 metal2 +34200 79800 39900 85500 metal2 +34200 79800 57000 85500 metal3 +51300 79800 57000 85500 metal2 +51300 79800 57000 85500 metal1 +) +_401_ +( +79800 102600 85500 108300 metal1 +79800 96900 85500 108300 metal2 +51300 96900 57000 102600 metal1 +51300 96900 57000 102600 metal2 +51300 96900 85500 102600 metal3 +79800 96900 85500 102600 metal2 +45600 96900 57000 102600 metal3 +45600 96900 51300 102600 metal2 +45600 79800 51300 102600 metal2 +45600 79800 51300 85500 metal2 +45600 79800 57000 85500 metal3 +51300 79800 57000 85500 metal2 +51300 79800 57000 85500 metal1 +85500 62700 91200 85500 metal2 +85500 62700 91200 68400 metal2 +85500 62700 108300 68400 metal3 +102600 62700 108300 68400 metal2 +102600 62700 108300 68400 metal1 +102600 62700 114000 68400 metal3 +108300 62700 114000 68400 metal2 +108300 62700 114000 68400 metal1 +85500 91200 91200 96900 metal2 +85500 91200 114000 96900 metal3 +108300 91200 114000 96900 metal2 +108300 91200 114000 96900 metal1 +85500 79800 91200 96900 metal2 +79800 96900 91200 102600 metal3 +85500 96900 91200 102600 metal2 +85500 91200 91200 102600 metal2 +85500 79800 96900 85500 metal2 +91200 79800 96900 85500 metal1 +68400 39900 74100 45600 metal1 +68400 39900 74100 62700 metal2 +68400 57000 74100 62700 metal2 +68400 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +79800 57000 85500 68400 metal2 +108300 34200 114000 68400 metal2 +108300 34200 114000 39900 metal1 +79800 62700 85500 68400 metal1 +79800 62700 85500 68400 metal2 +79800 62700 91200 68400 metal3 +) +_402_ +( +74100 119700 79800 131100 metal2 +74100 125400 79800 131100 metal2 +74100 125400 85500 131100 metal3 +79800 125400 85500 131100 metal2 +79800 125400 85500 131100 metal1 +68400 108300 74100 114000 metal1 +68400 108300 74100 125400 metal2 +68400 119700 74100 125400 metal2 +68400 119700 79800 125400 metal3 +74100 119700 79800 125400 metal2 +74100 119700 79800 125400 metal1 +) +_403_ +( +62700 119700 68400 125400 metal1 +62700 114000 68400 125400 metal2 +62700 108300 68400 119700 metal2 +57000 108300 62700 114000 metal1 +57000 108300 62700 114000 metal2 +57000 108300 68400 114000 metal3 +62700 108300 68400 114000 metal2 +62700 108300 68400 114000 metal1 +62700 114000 68400 119700 metal2 +62700 114000 74100 119700 metal3 +68400 114000 74100 119700 metal2 +68400 114000 74100 119700 metal1 +62700 108300 74100 114000 metal3 +68400 108300 74100 114000 metal2 +68400 108300 74100 114000 metal1 +) +_404_ +( +96900 102600 102600 136800 metal2 +96900 102600 102600 108300 metal1 +91200 136800 96900 142500 metal1 +91200 136800 96900 142500 metal2 +91200 136800 102600 142500 metal3 +96900 136800 102600 142500 metal2 +96900 131100 102600 142500 metal2 +96900 131100 102600 136800 metal2 +96900 131100 108300 136800 metal3 +102600 131100 108300 136800 metal2 +102600 131100 108300 136800 metal1 +) +_405_ +( +45600 74100 51300 79800 metal1 +45600 74100 51300 79800 metal2 +45600 74100 57000 79800 metal3 +51300 74100 57000 79800 metal2 +51300 68400 57000 79800 metal2 +51300 68400 57000 74100 metal2 +51300 68400 74100 74100 metal3 +68400 68400 74100 74100 metal2 +68400 68400 74100 74100 metal1 +) +_406_ +( +119700 68400 125400 85500 metal2 +119700 79800 125400 85500 metal1 +119700 68400 125400 74100 metal2 +119700 68400 131100 74100 metal3 +125400 68400 131100 74100 metal2 +125400 68400 131100 74100 metal1 +96900 68400 102600 74100 metal1 +96900 68400 102600 74100 metal2 +96900 68400 125400 74100 metal3 +) +_407_ +( +102600 45600 108300 51300 metal1 +102600 45600 108300 51300 metal2 +102600 45600 114000 51300 metal3 +108300 45600 114000 51300 metal2 +108300 39900 114000 51300 metal2 +108300 39900 114000 45600 metal2 +108300 39900 119700 45600 metal3 +114000 39900 119700 45600 metal2 +114000 34200 119700 45600 metal2 +114000 34200 119700 39900 metal1 +) +_408_ +( +91200 34200 96900 39900 metal1 +91200 34200 96900 39900 metal2 +91200 34200 102600 39900 metal3 +96900 34200 102600 39900 metal2 +96900 22800 102600 39900 metal2 +96900 22800 102600 28500 metal1 +96900 39900 102600 45600 metal1 +96900 34200 102600 45600 metal2 +) +_409_ +( +74100 39900 79800 45600 metal1 +74100 39900 79800 45600 metal2 +74100 39900 91200 45600 metal3 +85500 39900 91200 45600 metal2 +85500 39900 91200 45600 metal1 +85500 39900 131100 45600 metal3 +125400 39900 131100 45600 metal2 +125400 39900 131100 45600 metal1 +) +_410_ +( +91200 57000 96900 62700 metal1 +91200 57000 96900 79800 metal2 +91200 74100 96900 79800 metal1 +85500 22800 91200 28500 metal1 +85500 22800 91200 28500 metal2 +85500 22800 96900 28500 metal3 +91200 22800 96900 28500 metal2 +91200 22800 96900 62700 metal2 +) +_411_ +( +96900 119700 102600 125400 metal1 +96900 119700 102600 131100 metal2 +91200 136800 96900 142500 metal1 +91200 125400 96900 142500 metal2 +91200 125400 96900 131100 metal2 +91200 125400 102600 131100 metal3 +96900 125400 102600 131100 metal2 +96900 125400 102600 131100 metal1 +) +_412_ +( +96900 131100 102600 136800 metal1 +96900 131100 102600 136800 metal2 +96900 131100 108300 136800 metal3 +102600 131100 108300 136800 metal2 +102600 125400 108300 136800 metal2 +102600 125400 108300 131100 metal1 +79800 131100 85500 136800 metal1 +79800 131100 85500 136800 metal2 +79800 131100 102600 136800 metal3 +) +_413_ +( +125400 125400 131100 131100 metal1 +125400 125400 131100 131100 metal2 +125400 125400 136800 131100 metal3 +131100 125400 136800 131100 metal2 +131100 125400 136800 131100 metal1 +131100 125400 153900 131100 metal3 +148200 125400 153900 131100 metal2 +148200 119700 153900 131100 metal2 +148200 119700 153900 125400 metal1 +) +_414_ +( +136800 85500 142500 91200 metal1 +136800 79800 142500 91200 metal2 +136800 79800 142500 85500 metal1 +131100 62700 136800 68400 metal1 +131100 62700 136800 68400 metal2 +131100 62700 142500 68400 metal3 +136800 62700 142500 68400 metal2 +136800 62700 142500 85500 metal2 +) +_415_ +( +142500 91200 148200 114000 metal2 +142500 108300 148200 114000 metal1 +142500 91200 148200 96900 metal1 +142500 91200 148200 96900 metal2 +142500 91200 165300 96900 metal3 +159600 91200 165300 96900 metal2 +159600 91200 165300 96900 metal1 +) +_416_ +( +131100 91200 136800 96900 metal1 +131100 79800 136800 96900 metal2 +131100 79800 136800 85500 metal1 +125400 74100 131100 79800 metal1 +125400 74100 131100 79800 metal2 +125400 74100 136800 79800 metal3 +131100 74100 136800 79800 metal2 +131100 74100 136800 85500 metal2 +) +_417_ +( +125400 108300 131100 114000 metal1 +125400 108300 131100 125400 metal2 +125400 119700 131100 125400 metal1 +125400 119700 131100 125400 metal2 +125400 119700 159600 125400 metal3 +153900 119700 159600 125400 metal2 +153900 119700 159600 125400 metal1 +) +_418_ +( +74100 91200 79800 96900 metal1 +74100 91200 79800 102600 metal2 +74100 96900 79800 102600 metal1 +68400 102600 74100 108300 metal1 +68400 102600 74100 108300 metal2 +68400 102600 79800 108300 metal3 +74100 102600 79800 108300 metal2 +74100 96900 79800 108300 metal2 +) +_419_ +( +74100 85500 79800 91200 metal1 +74100 79800 79800 91200 metal2 +74100 79800 79800 85500 metal1 +74100 79800 79800 85500 metal2 +74100 79800 85500 85500 metal3 +79800 79800 85500 85500 metal2 +79800 79800 85500 85500 metal1 +) +_420_ +( +57000 125400 62700 131100 metal1 +57000 125400 62700 131100 metal2 +57000 125400 68400 131100 metal3 +62700 125400 68400 131100 metal2 +62700 125400 74100 131100 metal3 +68400 125400 74100 131100 metal2 +68400 119700 74100 131100 metal2 +68400 119700 74100 125400 metal1 +62700 119700 68400 131100 metal2 +62700 119700 68400 125400 metal1 +) +_421_ +( +62700 108300 68400 114000 metal1 +62700 108300 68400 125400 metal2 +62700 119700 68400 125400 metal1 +62700 119700 68400 125400 metal2 +62700 119700 74100 125400 metal3 +68400 119700 74100 125400 metal2 +68400 119700 74100 125400 metal1 +62700 74100 68400 114000 metal2 +62700 74100 68400 79800 metal2 +62700 74100 74100 79800 metal3 +68400 74100 74100 79800 metal2 +68400 62700 74100 79800 metal2 +68400 62700 74100 68400 metal2 +68400 62700 79800 68400 metal3 +74100 62700 79800 68400 metal2 +74100 57000 79800 68400 metal2 +74100 57000 79800 62700 metal1 +) +clk +( +57000 102600 62700 114000 metal2 +57000 102600 62700 108300 metal1 +57000 108300 62700 114000 metal2 +57000 108300 79800 114000 metal3 +74100 108300 79800 114000 metal2 +74100 108300 79800 114000 metal1 +57000 114000 62700 119700 metal1 +57000 114000 62700 131100 metal2 +57000 125400 62700 131100 metal2 +57000 125400 91200 131100 metal3 +85500 125400 91200 131100 metal2 +136800 119700 142500 136800 metal2 +91200 193800 96900 201600 metal2 +91200 193800 96900 201600 metal3 +91200 193800 96900 201600 metal4 +91200 193800 96900 201600 metal5 +91200 193800 96900 201600 metal6 +91200 153900 96900 201600 metal2 +91200 153900 96900 159600 metal2 +91200 153900 108300 159600 metal3 +102600 153900 108300 159600 metal2 +85500 131100 91200 136800 metal1 +85500 131100 91200 148200 metal2 +85500 142500 91200 148200 metal2 +85500 142500 108300 148200 metal3 +102600 142500 108300 148200 metal2 +102600 142500 108300 148200 metal1 +119700 136800 125400 159600 metal2 +119700 136800 125400 142500 metal1 +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 153900 119700 metal3 +148200 114000 153900 119700 metal2 +108300 74100 114000 91200 metal2 +51300 91200 57000 96900 metal1 +51300 91200 57000 102600 metal2 +51300 96900 57000 102600 metal2 +51300 96900 62700 102600 metal3 +57000 96900 62700 102600 metal2 +51300 85500 57000 91200 metal1 +51300 74100 57000 91200 metal2 +51300 74100 57000 79800 metal2 +51300 74100 62700 79800 metal3 +57000 74100 62700 79800 metal2 +57000 74100 62700 79800 metal1 +57000 62700 62700 79800 metal2 +57000 62700 62700 68400 metal1 +119700 62700 125400 68400 metal1 +119700 62700 125400 68400 metal2 +119700 62700 136800 68400 metal3 +131100 62700 136800 68400 metal2 +131100 62700 136800 74100 metal2 +68400 51300 74100 62700 metal2 +68400 51300 74100 57000 metal1 +85500 28500 91200 34200 metal1 +85500 28500 91200 34200 metal2 +85500 28500 108300 34200 metal3 +102600 28500 108300 34200 metal2 +102600 28500 108300 34200 metal1 +114000 45600 119700 51300 metal1 +114000 28500 119700 51300 metal2 +114000 28500 119700 34200 metal2 +102600 28500 119700 34200 metal3 +108300 68400 114000 74100 metal1 +108300 62700 114000 74100 metal2 +108300 62700 114000 68400 metal2 +108300 62700 119700 68400 metal3 +114000 62700 119700 68400 metal2 +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +136800 131100 153900 136800 metal3 +148200 131100 153900 136800 metal2 +148200 131100 153900 136800 metal1 +85500 125400 91200 136800 metal2 +102600 148200 108300 153900 metal1 +102600 142500 108300 153900 metal2 +131100 142500 136800 148200 metal1 +131100 142500 136800 148200 metal2 +131100 142500 142500 148200 metal3 +136800 142500 142500 148200 metal2 +136800 131100 142500 148200 metal2 +148200 85500 153900 91200 metal1 +148200 85500 153900 108300 metal2 +148200 102600 153900 119700 metal2 +114000 51300 119700 57000 metal1 +114000 51300 119700 68400 metal2 +148200 74100 153900 91200 metal2 +57000 96900 68400 102600 metal3 +62700 96900 68400 102600 metal2 +62700 96900 68400 102600 metal1 +51300 85500 57000 96900 metal2 +57000 57000 62700 68400 metal2 +57000 57000 62700 62700 metal2 +57000 57000 74100 62700 metal3 +68400 57000 74100 62700 metal2 +68400 57000 74100 62700 metal1 +131100 68400 136800 74100 metal1 +131100 68400 136800 74100 metal2 +131100 68400 148200 74100 metal3 +142500 68400 148200 74100 metal2 +142500 68400 148200 79800 metal2 +142500 74100 148200 79800 metal2 +142500 74100 153900 79800 metal3 +148200 74100 153900 79800 metal2 +148200 74100 153900 79800 metal1 +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +108300 85500 131100 91200 metal3 +125400 85500 131100 91200 metal2 +125400 85500 131100 91200 metal1 +74100 28500 91200 34200 metal3 +74100 28500 79800 34200 metal2 +74100 28500 79800 39900 metal2 +74100 34200 79800 39900 metal1 +114000 45600 119700 57000 metal2 +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +102600 153900 125400 159600 metal3 +119700 153900 125400 159600 metal2 +119700 153900 136800 159600 metal3 +131100 153900 136800 159600 metal2 +131100 142500 136800 159600 metal2 +108300 68400 114000 79800 metal2 +102600 148200 108300 159600 metal2 +57000 96900 62700 108300 metal2 +57000 108300 62700 119700 metal2 +136800 114000 142500 125400 metal2 +114000 62700 125400 68400 metal3 +131100 119700 136800 125400 metal1 +131100 119700 136800 125400 metal2 +131100 119700 142500 125400 metal3 +136800 119700 142500 125400 metal2 +148200 102600 153900 108300 metal2 +148200 102600 159600 108300 metal3 +153900 102600 159600 108300 metal2 +153900 102600 159600 108300 metal1 +85500 119700 91200 131100 metal2 +85500 119700 91200 125400 metal1 +148200 114000 159600 119700 metal3 +153900 114000 159600 119700 metal2 +153900 114000 159600 119700 metal1 +) +ctrl.state.out\[1\] +( +57000 114000 62700 119700 metal1 +57000 108300 62700 119700 metal2 +57000 108300 62700 114000 metal1 +) +ctrl.state.out\[2\] +( +79800 108300 85500 114000 metal1 +79800 108300 85500 114000 metal2 +) +dpath.a_lt_b$in0\[0\] +( +148200 131100 153900 136800 metal1 +148200 131100 153900 136800 metal2 +148200 131100 159600 136800 metal3 +153900 131100 159600 136800 metal2 +153900 131100 159600 136800 metal1 +) +dpath.a_lt_b$in0\[10\] +( +62700 62700 68400 68400 metal1 +62700 62700 68400 68400 metal2 +) +dpath.a_lt_b$in0\[11\] +( +119700 62700 125400 68400 metal1 +119700 62700 125400 68400 metal2 +119700 62700 131100 68400 metal3 +125400 62700 131100 68400 metal2 +125400 62700 131100 68400 metal1 +) +dpath.a_lt_b$in0\[12\] +( +114000 45600 119700 51300 metal1 +114000 45600 119700 51300 metal2 +114000 45600 125400 51300 metal3 +119700 45600 125400 51300 metal2 +119700 45600 125400 51300 metal1 +) +dpath.a_lt_b$in0\[13\] +( +91200 28500 96900 34200 metal1 +91200 28500 96900 39900 metal2 +91200 34200 96900 39900 metal1 +) +dpath.a_lt_b$in0\[14\] +( +74100 34200 79800 39900 metal1 +74100 34200 79800 45600 metal2 +74100 39900 79800 45600 metal1 +) +dpath.a_lt_b$in0\[15\] +( +108300 85500 114000 91200 metal1 +108300 85500 114000 91200 metal2 +) +dpath.a_lt_b$in0\[1\] +( +85500 131100 91200 136800 metal1 +85500 125400 91200 136800 metal2 +85500 125400 91200 131100 metal1 +) +dpath.a_lt_b$in0\[2\] +( +102600 148200 108300 153900 metal1 +102600 142500 108300 153900 metal2 +102600 142500 108300 148200 metal1 +) +dpath.a_lt_b$in0\[3\] +( +125400 142500 131100 148200 metal1 +125400 142500 131100 148200 metal2 +125400 142500 136800 148200 metal3 +131100 142500 136800 148200 metal2 +131100 142500 136800 148200 metal1 +) +dpath.a_lt_b$in0\[4\] +( +153900 74100 159600 79800 metal1 +153900 74100 159600 85500 metal2 +153900 79800 159600 85500 metal1 +) +dpath.a_lt_b$in0\[5\] +( +153900 114000 159600 119700 metal1 +153900 114000 159600 119700 metal2 +) +dpath.a_lt_b$in0\[6\] +( +131100 74100 136800 79800 metal1 +131100 68400 136800 79800 metal2 +131100 68400 136800 74100 metal2 +131100 68400 142500 74100 metal3 +136800 68400 142500 74100 metal2 +136800 68400 142500 74100 metal1 +) +dpath.a_lt_b$in0\[7\] +( +136800 119700 142500 125400 metal1 +136800 119700 142500 125400 metal2 +) +dpath.a_lt_b$in0\[8\] +( +51300 91200 57000 96900 metal1 +51300 91200 57000 96900 metal2 +51300 91200 62700 96900 metal3 +57000 91200 62700 96900 metal2 +57000 91200 62700 96900 metal1 +) +dpath.a_lt_b$in0\[9\] +( +57000 74100 62700 79800 metal1 +57000 74100 62700 79800 metal2 +57000 74100 68400 79800 metal3 +62700 74100 68400 79800 metal2 +62700 74100 68400 79800 metal1 +) +dpath.a_lt_b$in1\[0\] +( +136800 131100 142500 136800 metal1 +136800 131100 142500 136800 metal2 +) +dpath.a_lt_b$in1\[10\] +( +74100 57000 79800 62700 metal1 +74100 57000 79800 68400 metal2 +74100 62700 79800 68400 metal1 +) +dpath.a_lt_b$in1\[11\] +( +108300 74100 114000 79800 metal1 +108300 74100 114000 79800 metal2 +108300 74100 119700 79800 metal3 +114000 74100 119700 79800 metal2 +114000 68400 119700 79800 metal2 +114000 68400 119700 74100 metal1 +) +dpath.a_lt_b$in1\[12\] +( +114000 57000 119700 62700 metal1 +114000 57000 119700 62700 metal2 +114000 57000 125400 62700 metal3 +119700 57000 125400 62700 metal2 +119700 51300 125400 62700 metal2 +119700 51300 125400 57000 metal1 +) +dpath.a_lt_b$in1\[13\] +( +102600 28500 108300 34200 metal1 +102600 28500 108300 39900 metal2 +102600 34200 108300 39900 metal1 +) +dpath.a_lt_b$in1\[14\] +( +74100 51300 79800 57000 metal1 +74100 51300 79800 57000 metal2 +) +dpath.a_lt_b$in1\[15\] +( +102600 74100 108300 79800 metal1 +102600 74100 108300 79800 metal2 +102600 74100 114000 79800 metal3 +108300 74100 114000 79800 metal2 +108300 74100 114000 79800 metal1 +) +dpath.a_lt_b$in1\[1\] +( +91200 119700 96900 125400 metal1 +91200 119700 96900 125400 metal2 +) +dpath.a_lt_b$in1\[2\] +( +108300 142500 114000 148200 metal1 +108300 136800 114000 148200 metal2 +108300 136800 114000 142500 metal1 +) +dpath.a_lt_b$in1\[3\] +( +119700 131100 125400 136800 metal1 +119700 131100 125400 142500 metal2 +119700 136800 125400 142500 metal2 +119700 136800 131100 142500 metal3 +125400 136800 131100 142500 metal2 +125400 136800 131100 142500 metal1 +) +dpath.a_lt_b$in1\[4\] +( +153900 79800 159600 85500 metal1 +153900 79800 159600 91200 metal2 +153900 85500 159600 91200 metal1 +) +dpath.a_lt_b$in1\[5\] +( +153900 108300 159600 114000 metal1 +153900 108300 159600 114000 metal2 +153900 108300 165300 114000 metal3 +159600 108300 165300 114000 metal2 +159600 102600 165300 114000 metal2 +159600 102600 165300 108300 metal1 +) +dpath.a_lt_b$in1\[6\] +( +125400 79800 131100 85500 metal1 +125400 79800 131100 91200 metal2 +125400 85500 131100 91200 metal2 +125400 85500 136800 91200 metal3 +131100 85500 136800 91200 metal2 +131100 85500 136800 91200 metal1 +) +dpath.a_lt_b$in1\[7\] +( +136800 114000 142500 119700 metal1 +136800 114000 142500 119700 metal2 +136800 114000 148200 119700 metal3 +142500 114000 148200 119700 metal2 +142500 108300 148200 119700 metal2 +142500 108300 148200 114000 metal1 +) +dpath.a_lt_b$in1\[8\] +( +68400 96900 74100 102600 metal1 +68400 96900 74100 102600 metal2 +) +dpath.a_lt_b$in1\[9\] +( +57000 79800 62700 85500 metal1 +57000 79800 62700 85500 metal2 +) +net1 +( +114000 171000 119700 176700 metal1 +114000 171000 119700 182400 metal2 +114000 176700 119700 182400 metal2 +114000 176700 171000 182400 metal3 +165300 176700 171000 182400 metal2 +165300 176700 171000 182400 metal1 +) +net10 +( +142500 68400 148200 74100 metal1 +142500 45600 148200 74100 metal2 +142500 45600 148200 51300 metal2 +142500 45600 182400 51300 metal3 +176700 45600 182400 51300 metal2 +176700 22800 182400 51300 metal2 +176700 22800 182400 28500 metal2 +171000 22800 182400 28500 metal3 +171000 22800 176700 28500 metal2 +171000 22800 176700 28500 metal1 +) +net11 +( +171000 119700 176700 125400 metal1 +171000 119700 176700 125400 metal2 +171000 119700 182400 125400 metal3 +176700 119700 182400 125400 metal2 +176700 119700 182400 131100 metal2 +176700 125400 182400 131100 metal1 +) +net12 +( +28500 22800 34200 28500 metal1 +28500 22800 34200 34200 metal2 +28500 28500 34200 34200 metal2 +28500 28500 39900 34200 metal3 +34200 28500 39900 34200 metal2 +34200 28500 39900 79800 metal2 +34200 74100 39900 79800 metal1 +) +net13 +( +136800 176700 142500 182400 metal1 +136800 142500 142500 182400 metal2 +136800 142500 142500 148200 metal1 +) +net14 +( +62700 176700 68400 182400 metal1 +62700 142500 68400 182400 metal2 +62700 142500 68400 148200 metal2 +62700 142500 74100 148200 metal3 +68400 142500 74100 148200 metal2 +68400 142500 74100 148200 metal1 +) +net15 +( +171000 91200 176700 96900 metal1 +171000 85500 176700 96900 metal2 +171000 85500 176700 91200 metal2 +171000 85500 182400 91200 metal3 +176700 85500 182400 91200 metal2 +176700 79800 182400 91200 metal2 +176700 79800 182400 85500 metal1 +) +net16 +( +148200 171000 153900 176700 metal1 +148200 171000 153900 176700 metal2 +148200 171000 159600 176700 metal3 +153900 171000 159600 176700 metal2 +153900 171000 159600 182400 metal2 +153900 176700 159600 182400 metal1 +) +net17 +( +17100 85500 22800 91200 metal1 +17100 85500 22800 91200 metal2 +11400 85500 22800 91200 metal3 +11400 85500 17100 91200 metal2 +11400 85500 17100 176700 metal2 +11400 171000 17100 176700 metal2 +11400 171000 28500 176700 metal3 +22800 171000 28500 176700 metal2 +22800 171000 28500 182400 metal2 +22800 176700 28500 182400 metal1 +) +net18 +( +39900 22800 45600 28500 metal1 +39900 22800 45600 34200 metal2 +39900 28500 45600 34200 metal2 +39900 28500 68400 34200 metal3 +62700 28500 68400 34200 metal2 +62700 28500 68400 39900 metal2 +62700 34200 68400 39900 metal1 +) +net19 +( +114000 34200 119700 39900 metal1 +114000 28500 119700 39900 metal2 +114000 28500 119700 34200 metal2 +114000 28500 153900 34200 metal3 +148200 28500 153900 34200 metal2 +148200 22800 153900 34200 metal2 +148200 22800 153900 28500 metal1 +) +net2 +( +34200 176700 39900 182400 metal1 +34200 176700 39900 182400 metal2 +34200 176700 45600 182400 metal3 +39900 176700 45600 182400 metal2 +39900 171000 45600 182400 metal2 +39900 171000 45600 176700 metal1 +) +net20 +( +114000 165300 119700 171000 metal1 +114000 159600 119700 171000 metal2 +114000 159600 119700 165300 metal2 +114000 159600 182400 165300 metal3 +176700 159600 182400 165300 metal2 +176700 159600 182400 176700 metal2 +176700 171000 182400 176700 metal1 +) +net21 +( +102600 22800 108300 28500 metal1 +102600 22800 108300 28500 metal2 +) +net22 +( +119700 171000 125400 176700 metal1 +119700 171000 125400 176700 metal2 +119700 171000 131100 176700 metal3 +125400 171000 131100 176700 metal2 +125400 171000 131100 182400 metal2 +125400 176700 131100 182400 metal1 +) +net23 +( +17100 74100 22800 79800 metal1 +17100 74100 22800 79800 metal2 +) +net24 +( +28500 176700 34200 182400 metal1 +28500 125400 34200 182400 metal2 +28500 125400 34200 131100 metal2 +28500 125400 51300 131100 metal3 +45600 125400 51300 131100 metal2 +45600 102600 51300 131100 metal2 +45600 102600 51300 108300 metal1 +) +net25 +( +171000 125400 176700 131100 metal1 +171000 125400 176700 131100 metal2 +171000 125400 182400 131100 metal3 +176700 125400 182400 131100 metal2 +176700 125400 182400 159600 metal2 +176700 153900 182400 159600 metal1 +) +net26 +( +17100 57000 22800 62700 metal1 +17100 57000 22800 68400 metal2 +17100 62700 22800 68400 metal2 +17100 62700 28500 68400 metal3 +22800 62700 28500 68400 metal2 +22800 62700 28500 68400 metal1 +) +net27 +( +159600 22800 165300 28500 metal1 +159600 22800 165300 28500 metal2 +159600 22800 182400 28500 metal3 +176700 22800 182400 28500 metal2 +176700 22800 182400 34200 metal2 +176700 28500 182400 34200 metal1 +) +net28 +( +159600 96900 165300 102600 metal1 +159600 96900 165300 108300 metal2 +159600 102600 165300 108300 metal2 +159600 102600 182400 108300 metal3 +176700 102600 182400 108300 metal2 +176700 102600 182400 114000 metal2 +176700 108300 182400 114000 metal1 +) +net29 +( +17100 171000 22800 176700 metal1 +17100 171000 22800 176700 metal2 +) +net3 +( +85500 22800 91200 28500 metal1 +85500 22800 91200 34200 metal2 +85500 28500 91200 34200 metal1 +) +net30 +( +148200 176700 153900 182400 metal1 +148200 171000 153900 182400 metal2 +148200 171000 153900 176700 metal2 +148200 171000 159600 176700 metal3 +153900 171000 159600 176700 metal2 +153900 153900 159600 176700 metal2 +153900 153900 159600 159600 metal2 +153900 153900 171000 159600 metal3 +165300 153900 171000 159600 metal2 +165300 148200 171000 159600 metal2 +165300 148200 171000 153900 metal1 +) +net31 +( +74100 22800 79800 28500 metal1 +74100 22800 79800 28500 metal2 +74100 22800 85500 28500 metal3 +79800 22800 85500 28500 metal2 +79800 22800 85500 28500 metal1 +) +net32 +( +153900 136800 159600 142500 metal1 +153900 136800 159600 142500 metal2 +153900 136800 182400 142500 metal3 +176700 136800 182400 142500 metal2 +176700 136800 182400 142500 metal1 +) +net33 +( +79800 125400 85500 131100 metal1 +79800 125400 85500 182400 metal2 +79800 176700 85500 182400 metal2 +79800 176700 176700 182400 metal3 +171000 176700 176700 182400 metal2 +171000 176700 176700 182400 metal1 +) +net34 +( +17100 102600 22800 108300 metal1 +17100 102600 22800 114000 metal2 +17100 108300 22800 114000 metal2 +17100 108300 57000 114000 metal3 +51300 108300 57000 114000 metal2 +51300 108300 57000 114000 metal1 +) +net35 +( +17100 176700 22800 182400 metal1 +17100 176700 22800 182400 metal2 +17100 176700 51300 182400 metal3 +45600 176700 51300 182400 metal2 +45600 125400 51300 182400 metal2 +45600 125400 51300 131100 metal2 +45600 125400 62700 131100 metal3 +57000 125400 62700 131100 metal2 +57000 125400 62700 131100 metal1 +) +net36 +( +51300 96900 57000 108300 metal2 +51300 102600 57000 108300 metal2 +51300 102600 62700 108300 metal3 +57000 102600 62700 108300 metal2 +57000 102600 62700 108300 metal1 +17100 22800 22800 28500 metal1 +17100 22800 22800 28500 metal2 +17100 22800 28500 28500 metal3 +22800 22800 28500 28500 metal2 +22800 22800 28500 96900 metal2 +22800 91200 28500 96900 metal2 +22800 91200 34200 96900 metal3 +28500 91200 34200 96900 metal2 +28500 91200 34200 102600 metal2 +28500 96900 34200 102600 metal2 +28500 96900 57000 102600 metal3 +51300 96900 57000 102600 metal2 +51300 96900 57000 102600 metal1 +) +net37 +( +17100 22800 22800 28500 metal1 +17100 22800 22800 28500 metal2 +17100 22800 91200 28500 metal3 +85500 22800 91200 28500 metal2 +85500 22800 91200 28500 metal1 +) +net38 +( +125400 39900 131100 45600 metal1 +125400 39900 131100 45600 metal2 +125400 39900 136800 45600 metal3 +131100 39900 136800 45600 metal2 +131100 22800 136800 45600 metal2 +131100 22800 136800 28500 metal1 +) +net39 +( +96900 22800 102600 28500 metal1 +96900 22800 102600 28500 metal2 +96900 22800 176700 28500 metal3 +171000 22800 176700 28500 metal2 +171000 22800 176700 28500 metal1 +) +net4 +( +17100 28500 22800 34200 metal1 +17100 28500 22800 39900 metal2 +17100 34200 22800 39900 metal1 +) +net40 +( +114000 34200 119700 39900 metal1 +114000 34200 119700 39900 metal2 +114000 34200 176700 39900 metal3 +171000 34200 176700 39900 metal2 +171000 22800 176700 39900 metal2 +171000 22800 176700 28500 metal1 +) +net41 +( +125400 68400 131100 74100 metal1 +125400 68400 131100 74100 metal2 +125400 68400 142500 74100 metal3 +136800 68400 142500 74100 metal2 +136800 62700 142500 74100 metal2 +136800 62700 142500 68400 metal2 +136800 62700 176700 68400 metal3 +171000 62700 176700 68400 metal2 +171000 62700 176700 74100 metal2 +171000 68400 176700 74100 metal1 +) +net42 +( +17100 85500 22800 91200 metal1 +17100 74100 22800 91200 metal2 +17100 74100 22800 79800 metal2 +17100 74100 51300 79800 metal3 +45600 74100 51300 79800 metal2 +45600 74100 51300 79800 metal1 +) +net43 +( +79800 79800 85500 85500 metal1 +79800 22800 85500 85500 metal2 +79800 22800 85500 28500 metal2 +79800 22800 119700 28500 metal3 +114000 22800 119700 28500 metal2 +114000 22800 119700 28500 metal1 +) +net44 +( +17100 114000 22800 119700 metal1 +17100 114000 22800 119700 metal2 +17100 114000 57000 119700 metal3 +51300 114000 57000 119700 metal2 +51300 108300 57000 119700 metal2 +51300 108300 57000 114000 metal2 +51300 108300 62700 114000 metal3 +57000 108300 62700 114000 metal2 +57000 102600 62700 114000 metal2 +57000 102600 62700 108300 metal2 +57000 102600 74100 108300 metal3 +68400 102600 74100 108300 metal2 +68400 102600 74100 108300 metal1 +) +net45 +( +153900 119700 159600 125400 metal1 +153900 119700 159600 176700 metal2 +153900 171000 159600 176700 metal2 +153900 171000 176700 176700 metal3 +171000 171000 176700 176700 metal2 +171000 171000 176700 182400 metal2 +171000 176700 176700 182400 metal1 +) +net46 +( +17100 45600 22800 51300 metal1 +17100 45600 22800 51300 metal2 +17100 45600 57000 51300 metal3 +51300 45600 57000 51300 metal2 +51300 34200 57000 51300 metal2 +51300 34200 57000 39900 metal2 +51300 34200 74100 39900 metal3 +68400 34200 74100 39900 metal2 +68400 28500 74100 39900 metal2 +68400 28500 74100 34200 metal2 +68400 28500 125400 34200 metal3 +119700 28500 125400 34200 metal2 +119700 28500 125400 39900 metal2 +119700 34200 125400 39900 metal2 +119700 34200 131100 39900 metal3 +125400 34200 131100 39900 metal2 +125400 34200 131100 79800 metal2 +125400 74100 131100 79800 metal1 +) +net47 +( +159600 91200 165300 96900 metal1 +159600 85500 165300 96900 metal2 +159600 85500 165300 91200 metal2 +159600 85500 171000 91200 metal3 +165300 85500 171000 91200 metal2 +165300 74100 171000 91200 metal2 +165300 74100 171000 79800 metal2 +165300 74100 182400 79800 metal3 +176700 74100 182400 79800 metal2 +176700 45600 182400 79800 metal2 +176700 45600 182400 51300 metal2 +171000 45600 182400 51300 metal3 +171000 45600 176700 51300 metal2 +171000 34200 176700 51300 metal2 +171000 34200 176700 39900 metal1 +) +net48 +( +22800 22800 28500 28500 metal1 +22800 22800 28500 28500 metal2 +22800 22800 39900 28500 metal3 +34200 22800 39900 28500 metal2 +34200 11400 39900 28500 metal2 +34200 11400 39900 17100 metal2 +34200 11400 131100 17100 metal3 +125400 11400 131100 17100 metal2 +125400 11400 131100 51300 metal2 +125400 45600 131100 51300 metal2 +125400 45600 136800 51300 metal3 +131100 45600 136800 51300 metal2 +131100 45600 136800 68400 metal2 +131100 62700 136800 68400 metal1 +) +net49 +( +148200 119700 153900 125400 metal1 +148200 114000 153900 125400 metal2 +148200 114000 153900 119700 metal2 +148200 114000 171000 119700 metal3 +165300 114000 171000 119700 metal2 +165300 74100 171000 119700 metal2 +165300 74100 171000 79800 metal2 +159600 74100 171000 79800 metal3 +159600 74100 165300 79800 metal2 +159600 22800 165300 79800 metal2 +159600 22800 165300 28500 metal1 +) +net5 +( +108300 176700 114000 182400 metal1 +108300 171000 114000 182400 metal2 +108300 171000 114000 176700 metal1 +) +net50 +( +17100 131100 22800 136800 metal1 +17100 125400 22800 136800 metal2 +17100 125400 22800 131100 metal2 +17100 125400 79800 131100 metal3 +74100 125400 79800 131100 metal2 +74100 125400 79800 136800 metal2 +74100 131100 79800 136800 metal2 +74100 131100 85500 136800 metal3 +79800 131100 85500 136800 metal2 +79800 131100 85500 136800 metal1 +) +net51 +( +17100 148200 22800 153900 metal1 +17100 148200 22800 153900 metal2 +17100 148200 28500 153900 metal3 +22800 148200 28500 153900 metal2 +22800 136800 28500 153900 metal2 +22800 136800 28500 142500 metal2 +22800 136800 96900 142500 metal3 +91200 136800 96900 142500 metal2 +91200 136800 96900 142500 metal1 +) +net52 +( +17100 159600 22800 165300 metal1 +17100 153900 22800 165300 metal2 +17100 153900 22800 159600 metal2 +17100 153900 96900 159600 metal3 +91200 153900 96900 159600 metal2 +91200 136800 96900 159600 metal2 +91200 136800 96900 142500 metal1 +) +net53 +( +74100 57000 79800 62700 metal1 +74100 57000 79800 62700 metal2 +74100 57000 85500 62700 metal3 +79800 57000 85500 62700 metal2 +79800 51300 85500 62700 metal2 +79800 51300 85500 57000 metal2 +79800 51300 125400 57000 metal3 +119700 51300 125400 57000 metal2 +119700 45600 125400 57000 metal2 +119700 45600 125400 51300 metal2 +119700 45600 176700 51300 metal3 +171000 45600 176700 51300 metal2 +171000 45600 176700 57000 metal2 +171000 51300 176700 57000 metal1 +) +net6 +( +57000 22800 62700 28500 metal1 +57000 22800 62700 51300 metal2 +57000 45600 62700 51300 metal1 +) +net7 +( +51300 176700 57000 182400 metal1 +51300 108300 57000 182400 metal2 +51300 108300 57000 114000 metal1 +) +net8 +( +171000 96900 176700 102600 metal1 +171000 96900 176700 102600 metal2 +171000 96900 182400 102600 metal3 +176700 96900 182400 102600 metal2 +176700 91200 182400 102600 metal2 +176700 91200 182400 96900 metal1 +) +net9 +( +79800 176700 85500 182400 metal1 +79800 171000 85500 182400 metal2 +79800 171000 85500 176700 metal2 +79800 171000 91200 176700 metal3 +85500 171000 91200 176700 metal2 +85500 171000 91200 176700 metal1 +) +req_msg[0] +( +171000 136800 176700 142500 metal1 +171000 136800 176700 142500 metal2 +171000 136800 200260 142500 metal3 +193800 136800 200260 142500 metal3 +193800 136800 200260 142500 metal4 +193800 136800 200260 142500 metal5 +) +req_msg[10] +( +125400 193800 131100 201600 metal2 +125400 193800 131100 201600 metal3 +125400 193800 131100 201600 metal4 +125400 193800 131100 201600 metal5 +125400 193800 131100 201600 metal6 +125400 176700 131100 201600 metal2 +125400 176700 131100 182400 metal1 +) +req_msg[11] +( +102600 0 108300 5700 metal2 +102600 0 108300 5700 metal3 +102600 0 108300 5700 metal4 +102600 0 108300 5700 metal5 +102600 0 108300 5700 metal6 +102600 0 108300 28500 metal2 +102600 22800 108300 28500 metal1 +) +req_msg[12] +( +171000 171000 176700 176700 metal1 +171000 171000 176700 176700 metal2 +171000 171000 200260 176700 metal3 +193800 171000 200260 176700 metal3 +193800 171000 200260 176700 metal4 +193800 171000 200260 176700 metal5 +) +req_msg[13] +( +142500 0 148200 5700 metal2 +142500 0 148200 5700 metal3 +142500 0 148200 5700 metal4 +142500 0 148200 5700 metal5 +142500 0 148200 5700 metal6 +142500 0 148200 28500 metal2 +142500 22800 148200 28500 metal1 +) +req_msg[14] +( +39900 0 45600 5700 metal3 +39900 0 45600 5700 metal4 +39900 0 45600 5700 metal5 +39900 0 45600 5700 metal6 +39900 0 51300 5700 metal3 +45600 0 51300 5700 metal2 +45600 0 51300 28500 metal2 +45600 22800 51300 28500 metal2 +39900 22800 51300 28500 metal3 +39900 22800 45600 28500 metal2 +39900 22800 45600 28500 metal1 +) +req_msg[15] +( +5700 193800 11400 201600 metal2 +5700 193800 11400 201600 metal3 +5700 193800 11400 201600 metal4 +5700 193800 11400 201600 metal5 +5700 193800 11400 201600 metal6 +5700 188100 11400 201600 metal2 +5700 188100 11400 193800 metal2 +5700 188100 28500 193800 metal3 +22800 188100 28500 193800 metal2 +22800 176700 28500 193800 metal2 +22800 176700 28500 182400 metal1 +) +req_msg[16] +( +153900 193800 159600 201600 metal2 +153900 193800 159600 201600 metal3 +153900 193800 159600 201600 metal4 +153900 193800 159600 201600 metal5 +153900 193800 159600 201600 metal6 +153900 176700 159600 201600 metal2 +153900 176700 159600 182400 metal1 +) +req_msg[17] +( +171000 79800 176700 85500 metal1 +171000 79800 176700 85500 metal2 +171000 79800 200260 85500 metal3 +193800 79800 200260 85500 metal3 +193800 79800 200260 85500 metal4 +193800 79800 200260 85500 metal5 +) +req_msg[18] +( +62700 193800 68400 201600 metal2 +62700 193800 68400 201600 metal3 +62700 193800 68400 201600 metal4 +62700 193800 68400 201600 metal5 +62700 193800 68400 201600 metal6 +62700 176700 68400 201600 metal2 +62700 176700 68400 182400 metal1 +) +req_msg[19] +( +136800 193800 142500 201600 metal2 +136800 193800 142500 201600 metal3 +136800 193800 142500 201600 metal4 +136800 193800 142500 201600 metal5 +136800 193800 142500 201600 metal6 +136800 176700 142500 201600 metal2 +136800 176700 142500 182400 metal1 +) +req_msg[1] +( +74100 0 79800 5700 metal2 +74100 0 79800 5700 metal3 +74100 0 79800 5700 metal4 +74100 0 79800 5700 metal5 +74100 0 79800 5700 metal6 +74100 0 79800 28500 metal2 +74100 22800 79800 28500 metal1 +) +req_msg[20] +( +28500 0 34200 5700 metal3 +28500 0 34200 5700 metal4 +28500 0 34200 5700 metal5 +28500 0 34200 5700 metal6 +22800 0 34200 5700 metal3 +22800 0 28500 5700 metal2 +22800 0 28500 17100 metal2 +22800 11400 28500 17100 metal2 +22800 11400 34200 17100 metal3 +28500 11400 34200 17100 metal2 +28500 11400 34200 28500 metal2 +28500 22800 34200 28500 metal1 +) +req_msg[21] +( +171000 125400 176700 131100 metal1 +171000 125400 176700 131100 metal2 +171000 125400 200260 131100 metal3 +193800 125400 200260 131100 metal3 +193800 125400 200260 131100 metal4 +193800 125400 200260 131100 metal5 +) +req_msg[22] +( +165300 22800 171000 28500 metal1 +165300 11400 171000 28500 metal2 +165300 11400 171000 17100 metal2 +165300 11400 200260 17100 metal3 +193800 11400 200260 17100 metal2 +193800 5700 200260 17100 metal2 +193800 5700 200260 11400 metal2 +193800 5700 200260 11400 metal3 +193800 5700 200260 11400 metal4 +193800 5700 200260 11400 metal5 +) +req_msg[23] +( +79800 193800 85500 201600 metal2 +79800 193800 85500 201600 metal3 +79800 193800 85500 201600 metal4 +79800 193800 85500 201600 metal5 +79800 193800 85500 201600 metal6 +79800 176700 85500 201600 metal2 +79800 176700 85500 182400 metal1 +) +req_msg[24] +( +171000 91200 176700 96900 metal1 +171000 91200 176700 96900 metal2 +171000 91200 200260 96900 metal3 +193800 91200 200260 96900 metal3 +193800 91200 200260 96900 metal4 +193800 91200 200260 96900 metal5 +) +req_msg[25] +( +51300 193800 57000 201600 metal2 +51300 193800 57000 201600 metal3 +51300 193800 57000 201600 metal4 +51300 193800 57000 201600 metal5 +51300 193800 57000 201600 metal6 +51300 188100 57000 201600 metal2 +51300 188100 57000 193800 metal2 +45600 188100 57000 193800 metal3 +45600 188100 51300 193800 metal2 +45600 176700 51300 193800 metal2 +45600 176700 51300 182400 metal2 +45600 176700 57000 182400 metal3 +51300 176700 57000 182400 metal2 +51300 176700 57000 182400 metal1 +) +req_msg[26] +( +57000 0 62700 5700 metal2 +57000 0 62700 5700 metal3 +57000 0 62700 5700 metal4 +57000 0 62700 5700 metal5 +57000 0 62700 5700 metal6 +57000 0 62700 28500 metal2 +57000 22800 62700 28500 metal1 +) +req_msg[27] +( +108300 193800 114000 201600 metal2 +108300 193800 114000 201600 metal3 +108300 193800 114000 201600 metal4 +108300 193800 114000 201600 metal5 +108300 193800 114000 201600 metal6 +108300 176700 114000 201600 metal2 +108300 176700 114000 182400 metal1 +) +req_msg[28] +( +0 28500 5700 34200 metal3 +0 28500 5700 34200 metal4 +0 28500 5700 34200 metal5 +0 28500 22800 34200 metal3 +17100 28500 22800 34200 metal2 +17100 28500 22800 34200 metal1 +) +req_msg[29] +( +85500 0 91200 5700 metal2 +85500 0 91200 5700 metal3 +85500 0 91200 5700 metal4 +85500 0 91200 5700 metal5 +85500 0 91200 5700 metal6 +85500 0 91200 28500 metal2 +85500 22800 91200 28500 metal1 +) +req_msg[2] +( +148200 176700 153900 182400 metal1 +148200 176700 153900 193800 metal2 +148200 188100 153900 193800 metal2 +148200 188100 171000 193800 metal3 +165300 188100 171000 193800 metal2 +165300 188100 171000 201600 metal2 +165300 193800 171000 201600 metal2 +165300 193800 171000 201600 metal3 +165300 193800 171000 201600 metal4 +165300 193800 171000 201600 metal5 +165300 193800 171000 201600 metal6 +) +req_msg[30] +( +34200 193800 39900 201600 metal2 +34200 193800 39900 201600 metal3 +34200 193800 39900 201600 metal4 +34200 193800 39900 201600 metal5 +34200 193800 39900 201600 metal6 +34200 176700 39900 201600 metal2 +34200 176700 39900 182400 metal1 +) +req_msg[31] +( +165300 176700 171000 182400 metal1 +165300 176700 171000 182400 metal2 +165300 176700 188100 182400 metal3 +182400 176700 188100 182400 metal2 +182400 176700 188100 201600 metal2 +182400 193800 188100 201600 metal2 +182400 193800 188100 201600 metal3 +182400 193800 188100 201600 metal4 +182400 193800 188100 201600 metal5 +182400 193800 188100 201600 metal6 +) +req_msg[3] +( +0 176700 5700 182400 metal3 +0 176700 5700 182400 metal4 +0 176700 5700 182400 metal5 +0 176700 17100 182400 metal3 +11400 176700 17100 182400 metal2 +11400 171000 17100 182400 metal2 +11400 171000 17100 176700 metal2 +11400 171000 22800 176700 metal3 +17100 171000 22800 176700 metal2 +17100 171000 22800 176700 metal1 +) +req_msg[4] +( +171000 108300 176700 114000 metal1 +171000 108300 176700 114000 metal2 +171000 108300 200260 114000 metal3 +193800 108300 200260 114000 metal3 +193800 108300 200260 114000 metal4 +193800 108300 200260 114000 metal5 +) +req_msg[5] +( +171000 28500 176700 34200 metal1 +171000 28500 176700 34200 metal2 +171000 28500 182400 34200 metal3 +176700 28500 182400 34200 metal2 +176700 0 182400 34200 metal2 +176700 0 182400 5700 metal2 +176700 0 182400 5700 metal3 +176700 0 182400 5700 metal4 +176700 0 182400 5700 metal5 +176700 0 182400 5700 metal6 +) +req_msg[6] +( +0 57000 5700 62700 metal3 +0 57000 5700 62700 metal4 +0 57000 5700 62700 metal5 +0 57000 22800 62700 metal3 +17100 57000 22800 62700 metal2 +17100 57000 22800 62700 metal1 +) +req_msg[7] +( +171000 153900 176700 159600 metal1 +171000 153900 176700 159600 metal2 +171000 153900 200260 159600 metal3 +193800 153900 200260 159600 metal3 +193800 153900 200260 159600 metal4 +193800 153900 200260 159600 metal5 +) +req_msg[8] +( +17100 193800 22800 201600 metal2 +17100 193800 22800 201600 metal3 +17100 193800 22800 201600 metal4 +17100 193800 22800 201600 metal5 +17100 193800 22800 201600 metal6 +17100 188100 22800 201600 metal2 +17100 188100 22800 193800 metal2 +17100 188100 28500 193800 metal3 +22800 188100 28500 193800 metal2 +22800 176700 28500 193800 metal2 +22800 176700 28500 182400 metal2 +22800 176700 34200 182400 metal3 +28500 176700 34200 182400 metal2 +28500 176700 34200 182400 metal1 +) +req_msg[9] +( +0 68400 5700 74100 metal2 +0 68400 5700 74100 metal3 +0 68400 5700 74100 metal4 +0 68400 5700 74100 metal5 +0 68400 5700 79800 metal2 +0 74100 5700 79800 metal2 +0 74100 22800 79800 metal3 +17100 74100 22800 79800 metal2 +17100 74100 22800 79800 metal1 +) +req_rdy +( +0 0 5700 5700 metal2 +0 0 5700 5700 metal3 +0 0 5700 5700 metal4 +0 0 5700 5700 metal5 +0 0 5700 5700 metal6 +0 0 5700 28500 metal2 +0 22800 5700 28500 metal2 +0 22800 22800 28500 metal3 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal1 +) +req_val +( +165300 176700 171000 182400 metal1 +165300 176700 171000 182400 metal2 +165300 176700 193800 182400 metal3 +188100 176700 193800 182400 metal2 +188100 176700 193800 188100 metal2 +188100 182400 193800 188100 metal2 +188100 182400 200260 188100 metal3 +193800 182400 200260 188100 metal3 +193800 182400 200260 188100 metal4 +193800 182400 200260 188100 metal5 +) +reset +( +0 102600 5700 108300 metal3 +0 102600 5700 108300 metal4 +0 102600 5700 108300 metal5 +0 102600 22800 108300 metal3 +17100 102600 22800 108300 metal2 +17100 102600 22800 108300 metal1 +) +resp_msg[0] +( +0 159600 5700 165300 metal3 +0 159600 5700 165300 metal4 +0 159600 5700 165300 metal5 +0 159600 22800 165300 metal3 +17100 159600 22800 165300 metal2 +17100 159600 22800 165300 metal1 +) +resp_msg[10] +( +0 85500 5700 91200 metal3 +0 85500 5700 91200 metal4 +0 85500 5700 91200 metal5 +0 85500 22800 91200 metal3 +17100 85500 22800 91200 metal2 +17100 85500 22800 91200 metal1 +) +resp_msg[11] +( +176700 68400 182400 74100 metal1 +176700 62700 182400 74100 metal2 +176700 62700 182400 68400 metal2 +176700 62700 200260 68400 metal3 +193800 62700 200260 68400 metal3 +193800 62700 200260 68400 metal4 +193800 62700 200260 68400 metal5 +) +resp_msg[12] +( +176700 22800 182400 28500 metal1 +176700 22800 182400 28500 metal2 +176700 22800 188100 28500 metal3 +182400 22800 188100 28500 metal2 +182400 17100 188100 28500 metal2 +182400 17100 188100 22800 metal2 +182400 17100 193800 22800 metal3 +188100 17100 193800 22800 metal2 +188100 0 193800 22800 metal2 +188100 0 193800 5700 metal2 +188100 0 193800 5700 metal3 +188100 0 193800 5700 metal4 +188100 0 193800 5700 metal5 +188100 0 193800 5700 metal6 +) +resp_msg[13] +( +176700 22800 182400 28500 metal1 +176700 22800 182400 28500 metal2 +176700 22800 193800 28500 metal3 +188100 22800 193800 28500 metal2 +188100 17100 193800 28500 metal2 +188100 17100 193800 22800 metal2 +188100 17100 200260 22800 metal3 +193800 17100 200260 22800 metal3 +193800 17100 200260 22800 metal4 +193800 17100 200260 22800 metal5 +) +resp_msg[14] +( +131100 22800 136800 28500 metal1 +131100 11400 136800 28500 metal2 +131100 11400 136800 17100 metal2 +125400 11400 136800 17100 metal3 +125400 11400 131100 17100 metal2 +125400 0 131100 17100 metal2 +125400 0 131100 5700 metal2 +125400 0 136800 5700 metal3 +131100 0 136800 5700 metal3 +131100 0 136800 5700 metal4 +131100 0 136800 5700 metal5 +131100 0 136800 5700 metal6 +) +resp_msg[15] +( +11400 0 17100 5700 metal2 +11400 0 17100 5700 metal3 +11400 0 17100 5700 metal4 +11400 0 17100 5700 metal5 +11400 0 17100 5700 metal6 +11400 0 17100 28500 metal2 +11400 22800 17100 28500 metal2 +11400 22800 22800 28500 metal3 +17100 22800 22800 28500 metal2 +17100 22800 22800 28500 metal1 +) +resp_msg[1] +( +0 142500 5700 148200 metal3 +0 142500 5700 148200 metal4 +0 142500 5700 148200 metal5 +0 142500 22800 148200 metal3 +17100 142500 22800 148200 metal2 +17100 142500 22800 153900 metal2 +17100 148200 22800 153900 metal1 +) +resp_msg[2] +( +0 131100 5700 136800 metal2 +0 131100 5700 136800 metal3 +0 131100 5700 136800 metal4 +0 131100 5700 136800 metal5 +0 131100 5700 142500 metal2 +0 136800 5700 142500 metal2 +0 136800 22800 142500 metal3 +17100 136800 22800 142500 metal2 +17100 131100 22800 142500 metal2 +17100 131100 22800 136800 metal1 +) +resp_msg[3] +( +159600 22800 165300 28500 metal1 +159600 22800 165300 28500 metal2 +153900 22800 165300 28500 metal3 +153900 22800 159600 28500 metal2 +153900 0 159600 28500 metal2 +153900 0 159600 5700 metal2 +153900 0 165300 5700 metal3 +159600 0 165300 5700 metal3 +159600 0 165300 5700 metal4 +159600 0 165300 5700 metal5 +159600 0 165300 5700 metal6 +) +resp_msg[4] +( +0 11400 5700 17100 metal3 +0 11400 5700 17100 metal4 +0 11400 5700 17100 metal5 +0 11400 28500 17100 metal3 +22800 11400 28500 17100 metal2 +22800 11400 28500 28500 metal2 +22800 22800 28500 28500 metal1 +) +resp_msg[5] +( +176700 34200 182400 39900 metal1 +176700 34200 182400 39900 metal2 +176700 34200 200260 39900 metal3 +193800 34200 200260 39900 metal3 +193800 34200 200260 39900 metal4 +193800 34200 200260 39900 metal5 +) +resp_msg[6] +( +0 39900 5700 45600 metal2 +0 39900 5700 45600 metal3 +0 39900 5700 45600 metal4 +0 39900 5700 45600 metal5 +0 39900 5700 51300 metal2 +0 45600 5700 51300 metal2 +0 45600 22800 51300 metal3 +17100 45600 22800 51300 metal2 +17100 45600 22800 51300 metal1 +) +resp_msg[7] +( +176700 176700 182400 182400 metal1 +176700 176700 182400 193800 metal2 +176700 188100 182400 193800 metal2 +176700 188100 200260 193800 metal3 +193800 188100 200260 193800 metal2 +193800 188100 200260 201600 metal2 +193800 193800 200260 201600 metal2 +193800 193800 200260 201600 metal3 +193800 193800 200260 201600 metal4 +193800 193800 200260 201600 metal5 +193800 193800 200260 201600 metal6 +) +resp_msg[8] +( +0 114000 5700 119700 metal3 +0 114000 5700 119700 metal4 +0 114000 5700 119700 metal5 +0 114000 22800 119700 metal3 +17100 114000 22800 119700 metal2 +17100 114000 22800 119700 metal1 +) +resp_msg[9] +( +114000 0 119700 5700 metal2 +114000 0 119700 5700 metal3 +114000 0 119700 5700 metal4 +114000 0 119700 5700 metal5 +114000 0 119700 5700 metal6 +114000 0 119700 28500 metal2 +114000 22800 119700 28500 metal2 +114000 22800 125400 28500 metal3 +119700 22800 125400 28500 metal2 +119700 22800 125400 28500 metal1 +) +resp_rdy +( +0 188100 5700 193800 metal2 +0 188100 5700 193800 metal3 +0 188100 5700 193800 metal4 +0 188100 5700 193800 metal5 +0 176700 5700 193800 metal2 +0 176700 5700 182400 metal2 +0 176700 22800 182400 metal3 +17100 176700 22800 182400 metal2 +17100 176700 22800 182400 metal1 +) +resp_val +( +176700 51300 182400 57000 metal1 +176700 51300 182400 57000 metal2 +176700 51300 200260 57000 metal3 +193800 51300 200260 57000 metal3 +193800 51300 200260 57000 metal4 +193800 51300 200260 57000 metal5 +) diff --git a/src/grt/test/congestion7_multicore.ok b/src/grt/test/congestion7_snapshot_batched.ok similarity index 91% rename from src/grt/test/congestion7_multicore.ok rename to src/grt/test/congestion7_snapshot_batched.ok index b6c89349fc4..c514d3c94d5 100644 --- a/src/grt/test/congestion7_multicore.ok +++ b/src/grt/test/congestion7_snapshot_batched.ok @@ -66,18 +66,18 @@ metal10 Vertical 2142 0 100.00% [INFO GRT-0102] Start extra iteration 23/50 [INFO GRT-0102] Start extra iteration 24/50 [INFO GRT-0102] Start extra iteration 25/50 -[INFO GRT-0197] Via related to pin nodes: 2851 -[INFO GRT-0198] Via related Steiner nodes: 34 +[INFO GRT-0197] Via related to pin nodes: 2837 +[INFO GRT-0198] Via related Steiner nodes: 35 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 3850 -[INFO GRT-0112] Final usage 3D: 14185 +[INFO GRT-0111] Final number of vias: 3820 +[INFO GRT-0112] Final usage 3D: 14109 [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- metal1 0 0 0.00% 0 / 0 / 0 -metal2 1190 1263 106.13% 1 / 5 / 524 -metal3 2380 1372 57.65% 4 / 1 / 298 +metal2 1190 1258 105.71% 1 / 4 / 527 +metal3 2380 1391 58.45% 3 / 1 / 300 metal4 0 0 0.00% 0 / 0 / 0 metal5 0 0 0.00% 0 / 0 / 0 metal6 0 0 0.00% 0 / 0 / 0 @@ -86,9 +86,9 @@ metal8 0 0 0.00% 0 / 0 / 0 metal9 0 0 0.00% 0 / 0 / 0 metal10 0 0 0.00% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 3570 2635 73.81% 5 / 6 / 822 +Total 3570 2649 74.20% 4 / 5 / 827 -[INFO GRT-0018] Total wirelength: 11451 um +[INFO GRT-0018] Total wirelength: 11502 um [INFO GRT-0014] Routed nets: 563 [WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. No differences found. diff --git a/src/grt/test/congestion7_multicore.rptok b/src/grt/test/congestion7_snapshot_batched.rptok similarity index 76% rename from src/grt/test/congestion7_multicore.rptok rename to src/grt/test/congestion7_snapshot_batched.rptok index 359debe941f..f08b6d747d0 100644 --- a/src/grt/test/congestion7_multicore.rptok +++ b/src/grt/test/congestion7_snapshot_batched.rptok @@ -1,1956 +1,2056 @@ violation type: Horizontal congestion - srcs: net:clk net:_138_ net:_165_ + srcs: net:_160_ net:_385_ net:_396_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - + bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_077_ net:_248_ net:_370_ + srcs: net:_205_ net:_298_ net:_375_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_120_ net:_353_ net:_385_ net:_415_ - comment: capacity:2 usage:4 overflow:2 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - + srcs: net:_209_ net:_244_ net:_329_ net:_352_ net:_409_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_249_ net:_381_ net:_416_ + srcs: net:_120_ net:_136_ net:_160_ + comment: capacity:2 usage:3 overflow:1 + bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_353_ net:_385_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_060_ net:_110_ net:_236_ net:_246_ net:_249_ net:_413_ - comment: capacity:2 usage:6 overflow:4 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - + srcs: net:clk net:_092_ net:_165_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:_329_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - + srcs: net:clk net:_121_ net:net49 + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_203_ net:_204_ net:_298_ net:_375_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - + srcs: net:_159_ net:_238_ net:_240_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_245_ net:_413_ + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_249_ net:_351_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 68.4000) - (71.2500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_042_ net:net46 + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 14.2500) - (51.3000, 17.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_176_ net:_276_ + comment: capacity:2 usage:3 overflow:1 + bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_144_ net:_236_ net:_253_ + comment: capacity:2 usage:3 overflow:1 + bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_173_ net:_174_ net:_245_ + srcs: net:_220_ net:_224_ net:_253_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - + bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_253_ net:_349_ + srcs: net:_126_ net:_133_ net:_258_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_079_ net:_409_ + srcs: net:_119_ net:_144_ net:_287_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_330_ net:_352_ net:_409_ + srcs: net:_159_ net:_237_ net:_298_ net:_377_ comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_133_ net:_160_ + srcs: net:_165_ net:_215_ net:_298_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_371_ net:net39 net:net43 + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 11.4000) - (54.1500, 14.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_031_ net:_119_ net:dpath.a_lt_b$in0\[3\] + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - violation type: Horizontal congestion - srcs: net:_089_ net:_160_ net:_253_ net:_417_ + srcs: net:_145_ net:_236_ net:_253_ net:_262_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - + bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_317_ net:_318_ net:_397_ + srcs: net:_169_ net:_177_ net:_272_ net:_284_ comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_062_ net:_159_ net:_245_ net:_249_ + srcs: net:_014_ net:_140_ net:_353_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_204_ net:_244_ net:_294_ net:_299_ - comment: capacity:2 usage:5 overflow:3 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - + srcs: net:_370_ net:_397_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_193_ net:_353_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:net35 net:net50 + srcs: net:_131_ net:_206_ net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (22.8000, 62.7000) - (25.6500, 65.5500) on Layer - + bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - violation type: Horizontal congestion srcs: net:_380_ net:net31 net:net37 comment: capacity:2 usage:3 overflow:1 bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - violation type: Horizontal congestion - srcs: net:net16 net:net20 net:net30 + srcs: net:_139_ net:_143_ net:_245_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - +violation type: Horizontal congestion + srcs: net:_377_ net:_395_ net:_415_ comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 85.5000) - (76.9500, 88.3500) on Layer - + bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_210_ net:_212_ net:net53 + srcs: net:_128_ net:_201_ net:_381_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_142_ net:net44 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - violation type: Horizontal congestion srcs: net:_205_ net:_298_ net:_375_ comment: capacity:2 usage:3 overflow:1 bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_297_ net:_377_ + srcs: net:_126_ net:_165_ net:_245_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - + bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_316_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - + srcs: net:_130_ net:_207_ net:_397_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_401_ net:net53 + srcs: net:_072_ net:_330_ net:_409_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - + bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_039_ net:_401_ net:_421_ + srcs: net:_249_ net:_268_ net:_383_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - + bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_216_ net:_375_ + srcs: net:clk net:_372_ net:dpath.a_lt_b$in0\[11\] comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - + bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_370_ net:_388_ + srcs: net:_059_ net:_142_ net:_247_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 76.9500) - (57.0000, 79.8000) on Layer - + bbox = (37.0500, 51.3000) - (39.9000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ + srcs: net:_085_ net:_159_ net:_249_ net:_353_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - +violation type: Horizontal congestion + srcs: net:_114_ net:_252_ net:_336_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ - comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - + srcs: net:_184_ net:_198_ net:_271_ + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_106_ net:_140_ net:_353_ + srcs: net:_119_ net:_144_ net:_236_ net:_253_ comment: capacity:2 usage:4 overflow:2 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_298_ net:_353_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - + srcs: net:_062_ net:_159_ net:_249_ + comment: capacity:2 usage:3 overflow:1 + bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_244_ net:_353_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - + srcs: net:_143_ net:_169_ net:_190_ + comment: capacity:2 usage:3 overflow:1 + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_363_ net:_401_ + srcs: net:_013_ net:_051_ net:_123_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_160_ net:_287_ + srcs: net:_217_ net:_219_ net:_310_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_093_ net:_127_ net:_370_ net:_397_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_160_ net:_179_ net:_180_ net:_287_ + srcs: net:_243_ net:_252_ net:_352_ net:_353_ net:_401_ comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:_414_ net:net41 + srcs: net:_158_ net:_244_ net:_294_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_217_ net:_219_ net:_306_ net:_310_ + srcs: net:_117_ net:_179_ net:_180_ net:_287_ comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_394_ net:net52 + srcs: net:_353_ net:_385_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - + bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_287_ net:_348_ + srcs: net:_248_ net:_249_ net:_381_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - + bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:dpath.a_lt_b$in0\[6\] net:net41 + comment: capacity:2 usage:3 overflow:1 + bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - violation type: Horizontal congestion srcs: net:clk net:_128_ net:_381_ net:dpath.a_lt_b$in1\[15\] comment: capacity:2 usage:4 overflow:2 bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_160_ net:_287_ + srcs: net:_152_ net:_154_ net:_402_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - + bbox = (34.2000, 59.8500) - (37.0500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_145_ net:_160_ net:_253_ net:_262_ + srcs: net:_203_ net:_204_ net:_298_ net:_375_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_215_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - + srcs: net:_159_ net:_249_ net:_257_ net:_404_ + comment: capacity:2 usage:4 overflow:2 + bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_043_ net:_244_ net:_342_ + srcs: net:_248_ net:_327_ net:_332_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_245_ net:_417_ + srcs: net:_171_ net:_195_ net:_388_ comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - + bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_171_ net:_177_ net:_195_ net:_199_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_353_ net:_377_ net:_385_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_337_ net:_339_ net:_341_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_149_ net:_207_ net:_327_ + srcs: net:_079_ net:_113_ net:_248_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_083_ net:_165_ net:_412_ + srcs: net:_136_ net:_137_ net:_188_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - + bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_051_ net:_123_ + srcs: net:_065_ net:_245_ net:_279_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_076_ net:_110_ net:_413_ + srcs: net:_186_ net:_283_ net:_385_ comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_329_ net:_335_ net:_409_ + srcs: net:_111_ net:_200_ net:_252_ net:_312_ comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - + bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_171_ net:_189_ net:_297_ + srcs: net:clk net:_160_ net:_165_ net:_397_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_193_ net:_272_ net:_353_ net:_385_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - + srcs: net:_165_ net:_215_ net:_298_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_243_ net:_352_ net:_353_ + srcs: net:_083_ net:_165_ net:_412_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - + bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_172_ net:_263_ net:_264_ + comment: capacity:2 usage:4 overflow:2 + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_313_ net:_397_ net:_405_ + srcs: net:_125_ net:_141_ net:_307_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ net:_380_ + srcs: net:clk net:_070_ net:_313_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - + bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_055_ net:_164_ net:_380_ net:_403_ + srcs: net:_133_ net:_147_ net:_254_ net:_258_ comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_404_ net:_412_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - + srcs: net:_175_ net:_278_ net:_353_ net:_377_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - +violation type: Horizontal congestion + srcs: net:_105_ net:_139_ net:_245_ net:_253_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_394_ net:net52 + srcs: net:_126_ net:_165_ net:_245_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 76.9500) - (34.2000, 79.8000) on Layer - + bbox = (51.3000, 65.5500) - (54.1500, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_252_ net:_253_ net:_385_ - comment: capacity:2 usage:5 overflow:3 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - + srcs: net:_202_ net:_220_ net:_252_ net:_419_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ net:_417_ + srcs: net:_171_ net:_189_ net:_272_ net:_284_ + comment: capacity:2 usage:4 overflow:2 + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_027_ net:_248_ net:_389_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:net35 net:net50 + srcs: net:_110_ net:_173_ net:_253_ comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 62.7000) - (28.5000, 65.5500) on Layer - + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_092_ net:_165_ + srcs: net:_159_ net:_245_ net:_253_ comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - + bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_132_ net:_347_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_353_ net:_385_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_165_ net:_267_ + srcs: net:_253_ net:_353_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - + bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_244_ net:_329_ net:_409_ + srcs: net:_165_ net:_174_ net:_237_ net:_298_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ - comment: capacity:2 usage:5 overflow:3 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - + srcs: net:_159_ net:_249_ net:_353_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_167_ net:_298_ + srcs: net:clk net:_160_ net:net50 comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - + bbox = (34.2000, 62.7000) - (37.0500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_244_ net:_329_ net:_409_ + srcs: net:_129_ net:_149_ net:_208_ net:_352_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_093_ net:_111_ net:_127_ net:_370_ + srcs: net:_203_ net:_304_ net:_306_ net:_375_ comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - + bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_352_ net:_401_ + srcs: net:_248_ net:_252_ net:_327_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_144_ net:_160_ net:_253_ + srcs: net:_160_ net:_236_ net:_417_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - + bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_327_ net:_332_ + srcs: net:_178_ net:_180_ net:_183_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_249_ net:_381_ + srcs: net:clk net:_164_ net:_403_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_112_ net:_372_ + srcs: net:_127_ net:_223_ net:_317_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - + bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_115_ net:_142_ net:_409_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - + srcs: net:clk net:_106_ net:_140_ net:_353_ net:_401_ + comment: capacity:2 usage:5 overflow:3 + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_142_ net:net44 + srcs: net:_048_ net:_136_ net:_160_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_213_ net:_245_ net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:6 overflow:4 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - + srcs: net:_113_ net:_129_ net:_352_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_277_ net:_353_ net:_385_ net:_415_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - + srcs: net:_114_ net:_252_ net:_408_ + comment: capacity:2 usage:3 overflow:1 + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_048_ net:_136_ + srcs: net:_159_ net:_199_ net:_250_ comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_186_ net:_283_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - + srcs: net:_116_ net:_167_ net:_205_ net:_213_ net:_245_ + comment: capacity:2 usage:5 overflow:3 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_114_ net:_252_ net:_408_ + srcs: net:_177_ net:_353_ net:_377_ net:_385_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_132_ net:_347_ net:_381_ + srcs: net:_111_ net:_127_ net:_148_ net:_200_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_211_ net:_233_ net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - + bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_203_ net:_306_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - + srcs: net:_122_ net:_249_ net:_381_ net:_416_ + comment: capacity:2 usage:4 overflow:2 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_142_ net:_247_ + srcs: net:_120_ net:_377_ net:_415_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 51.3000) - (39.9000, 54.1500) on Layer - + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_009_ net:_126_ net:_165_ net:dpath.a_lt_b$in1\[3\] + srcs: net:_229_ net:_230_ net:_235_ net:_241_ comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - + bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_105_ net:_139_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - + srcs: net:_118_ net:_126_ net:_165_ net:_245_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_130_ net:_352_ net:_401_ + srcs: net:_066_ net:_159_ net:_245_ net:_253_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_336_ + srcs: net:_122_ net:_249_ net:_281_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_175_ net:_278_ net:_353_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_165_ net:_388_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - + srcs: net:_156_ net:_162_ net:_421_ + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 59.8500) - (34.2000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_352_ net:_401_ + srcs: net:_149_ net:_207_ net:_352_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_272_ net:_353_ net:_385_ + srcs: net:_244_ net:_329_ net:_335_ net:_409_ comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - + bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_229_ net:_230_ net:_235_ net:_241_ + srcs: net:_126_ net:_165_ net:_245_ net:_267_ comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - + bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:_111_ net:_127_ net:_148_ net:_200_ net:_397_ + srcs: net:_009_ net:_119_ net:_126_ net:_165_ net:_245_ comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - + bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_084_ net:_118_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 71.2500) - (51.3000, 74.1000) on Layer - + srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ + comment: capacity:2 usage:5 overflow:3 + bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_065_ net:_275_ net:_279_ + srcs: net:_248_ net:_252_ net:_389_ comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - violation type: Horizontal congestion - srcs: net:_298_ net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - + srcs: net:clk net:_050_ net:_138_ net:_160_ net:_165_ + comment: capacity:2 usage:5 overflow:3 + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_382_ net:_417_ net:net49 + srcs: net:_177_ net:_272_ net:_297_ net:_377_ comment: capacity:2 usage:4 overflow:2 - bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_245_ net:_398_ net:_417_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - + srcs: net:_381_ net:_397_ net:dpath.a_lt_b$in1\[11\] + comment: capacity:2 usage:3 overflow:1 + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_370_ net:_388_ + srcs: net:_110_ net:_145_ net:_173_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 76.9500) - (59.8500, 79.8000) on Layer - + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_159_ net:_249_ net:_353_ + srcs: net:_067_ net:_089_ net:_123_ net:_245_ comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_149_ net:_227_ + srcs: net:_028_ net:_116_ net:_245_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_135_ net:_172_ net:_245_ net:_265_ - comment: capacity:2 usage:5 overflow:3 - bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - + srcs: net:clk net:_420_ net:net50 + comment: capacity:2 usage:3 overflow:1 + bbox = (31.3500, 62.7000) - (34.2000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_203_ net:_304_ net:_375_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - + srcs: net:_125_ net:_381_ net:dpath.a_lt_b$in0\[9\] + comment: capacity:2 usage:3 overflow:1 + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_133_ net:_258_ + srcs: net:clk net:_042_ net:net46 comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - + bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - violation type: Horizontal congestion - srcs: net:_050_ net:_159_ net:_245_ net:_253_ + srcs: net:_206_ net:_327_ net:_337_ net:net53 comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - + bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - violation type: Horizontal congestion - srcs: net:_028_ net:_116_ net:_245_ + srcs: net:req_msg[31] net:req_val net:net33 comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - + bbox = (82.6500, 88.3500) - (85.5000, 91.2000) on Layer - violation type: Horizontal congestion - srcs: net:_008_ net:_046_ net:_118_ + srcs: net:_124_ net:_248_ net:_300_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_302_ net:_311_ net:_381_ + srcs: net:_277_ net:_353_ net:_377_ net:_415_ comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_245_ net:_249_ net:_413_ + srcs: net:_158_ net:_244_ net:_253_ net:_385_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_014_ net:_140_ net:_248_ net:_353_ + srcs: net:_159_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[3\] comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_284_ net:_377_ + srcs: net:_171_ net:_189_ net:_191_ net:_297_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_232_ net:_234_ + srcs: net:clk net:_249_ net:_275_ comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_381_ + srcs: net:_218_ net:_381_ net:_421_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_224_ net:_253_ + srcs: net:_090_ net:_124_ net:dpath.a_lt_b$in0\[8\] comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - + bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_070_ net:_111_ net:_370_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - + srcs: net:_128_ net:_302_ net:_311_ net:_381_ + comment: capacity:2 usage:4 overflow:2 + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_149_ net:_208_ + srcs: net:_149_ net:_227_ net:_352_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_337_ net:_339_ net:_341_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - + srcs: net:_353_ net:_385_ net:_401_ + comment: capacity:2 usage:3 overflow:1 + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_248_ net:_407_ + srcs: net:_128_ net:_201_ net:_381_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_138_ net:_165_ net:dpath.a_lt_b$in1\[6\] + srcs: net:_159_ net:_245_ net:_253_ comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - + bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - +violation type: Horizontal congestion + srcs: net:_100_ net:_118_ net:_353_ net:_394_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - +violation type: Horizontal congestion + srcs: net:_060_ net:_110_ net:_246_ net:_413_ + comment: capacity:2 usage:4 overflow:2 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_139_ net:_143_ net:_253_ + srcs: net:_138_ net:_160_ net:_165_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - + bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - violation type: Horizontal congestion srcs: net:clk net:_054_ net:_403_ comment: capacity:2 usage:3 overflow:1 bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_100_ net:_118_ net:_353_ + srcs: net:_221_ net:_317_ net:_318_ comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - + bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_389_ + srcs: net:_016_ net:_039_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_058_ net:_160_ net:_161_ net:_380_ + srcs: net:_165_ net:_245_ net:_404_ net:_412_ comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - + bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - +violation type: Horizontal congestion + srcs: net:_136_ net:_175_ net:_185_ net:_186_ net:_385_ + comment: capacity:2 usage:5 overflow:3 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_174_ net:_287_ net:_348_ + comment: capacity:2 usage:4 overflow:2 + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_085_ net:_159_ net:_353_ + srcs: net:_069_ net:_375_ net:_386_ comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - violation type: Horizontal congestion srcs: net:_242_ net:_252_ net:_352_ comment: capacity:2 usage:3 overflow:1 bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_126_ net:_145_ net:_165_ + srcs: net:_128_ net:_130_ net:_397_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_381_ net:_397_ net:dpath.a_lt_b$in1\[11\] + srcs: net:_169_ net:_177_ net:_272_ net:_289_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_237_ net:_377_ + srcs: net:_116_ net:_168_ net:_205_ net:_213_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_283_ net:_284_ net:_377_ + srcs: net:_123_ net:_171_ net:_189_ net:_297_ comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_125_ net:_141_ net:_307_ + srcs: net:_076_ net:_110_ net:_413_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_360_ net:dpath.a_lt_b$in1\[7\] + srcs: net:_236_ net:_239_ net:_250_ comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - + bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - violation type: Horizontal congestion - srcs: net:_156_ net:_162_ net:_421_ + srcs: net:clk net:_160_ net:_165_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 59.8500) - (34.2000, 62.7000) on Layer - + bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_327_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - + srcs: net:_158_ net:_216_ net:_244_ net:_306_ net:_375_ + comment: capacity:2 usage:5 overflow:3 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_144_ net:_160_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - + srcs: net:_073_ net:_209_ net:_244_ net:_329_ net:_409_ + comment: capacity:2 usage:5 overflow:3 + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_173_ net:_245_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - + srcs: net:_160_ net:_382_ net:_417_ + comment: capacity:2 usage:3 overflow:1 + bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_091_ net:_397_ net:_405_ + srcs: net:_059_ net:_109_ net:_142_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_337_ net:_339_ + srcs: net:clk net:_121_ net:_137_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - + bbox = (74.1000, 51.3000) - (76.9500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_185_ net:_186_ net:_377_ + srcs: net:_058_ net:_160_ net:_161_ net:_380_ comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_236_ net:_270_ + srcs: net:_090_ net:_124_ net:_248_ comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - + bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_385_ net:_395_ net:_415_ + srcs: net:_043_ net:_244_ net:_342_ comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_191_ net:_297_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - violation type: Horizontal congestion - srcs: net:_016_ net:_111_ net:_370_ + srcs: net:_128_ net:_201_ net:_381_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_257_ net:_404_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ net:_379_ + srcs: net:clk net:_084_ net:_118_ comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 71.2500) - (68.4000, 74.1000) on Layer - + bbox = (48.4500, 71.2500) - (51.3000, 74.1000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_420_ net:net50 + srcs: net:_160_ net:_398_ net:_417_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - + bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_158_ net:_329_ net:_409_ + comment: capacity:2 usage:4 overflow:2 + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_227_ net:_352_ net:_401_ + srcs: net:clk net:_353_ net:_360_ net:dpath.a_lt_b$in1\[7\] comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_353_ net:_418_ + srcs: net:_210_ net:_212_ net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - + bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - violation type: Horizontal congestion - srcs: net:_127_ net:_223_ net:_317_ net:_397_ + srcs: net:_015_ net:_375_ net:_386_ + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - +violation type: Horizontal congestion + srcs: net:_112_ net:_201_ net:_221_ net:_406_ comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - + bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_272_ net:_353_ net:_385_ + srcs: net:_112_ net:_371_ net:_397_ net:_401_ comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_202_ net:_220_ net:_419_ + srcs: net:_363_ net:_397_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_125_ net:_381_ net:dpath.a_lt_b$in0\[9\] - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_403_ net:_421_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_394_ net:net52 + srcs: net:_249_ net:_253_ net:_349_ comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 76.9500) - (42.7500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_201_ net:_221_ net:_397_ net:_406_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_132_ net:_207_ net:_221_ net:_319_ net:_320_ net:_397_ - comment: capacity:2 usage:6 overflow:4 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_252_ net:_294_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - violation type: Horizontal congestion srcs: net:_092_ net:_126_ net:_165_ comment: capacity:2 usage:3 overflow:1 bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_381_ + srcs: net:clk net:_236_ net:_417_ comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - + bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:net24 net:net50 + srcs: net:_059_ net:_142_ net:_418_ comment: capacity:2 usage:3 overflow:1 - bbox = (19.9500, 62.7000) - (22.8000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_205_ net:_244_ net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - + bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_215_ net:_238_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - + srcs: net:_248_ net:_370_ net:_397_ + comment: capacity:2 usage:3 overflow:1 + bbox = (25.6500, 31.3500) - (28.5000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_394_ net:net52 + srcs: net:_352_ net:_401_ net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 76.9500) - (39.9000, 79.8000) on Layer - + bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_147_ net:_254_ net:_258_ + srcs: net:_159_ net:_245_ net:_253_ net:_381_ comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_249_ net:_281_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_031_ net:_119_ net:_160_ net:dpath.a_lt_b$in0\[3\] + srcs: net:_110_ net:_135_ net:_172_ net:_265_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - + bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_311_ net:_381_ + srcs: net:clk net:_112_ net:_372_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - + bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:net24 net:net50 + srcs: net:_159_ net:_249_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (17.1000, 62.7000) - (19.9500, 65.5500) on Layer - + bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_394_ net:net52 + srcs: net:clk net:_420_ net:net50 comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 76.9500) - (37.0500, 79.8000) on Layer - + bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_169_ net:_190_ net:_236_ + srcs: net:_077_ net:_248_ net:_370_ net:_397_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - + bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ net:dpath.a_lt_b$in0\[11\] + srcs: net:_245_ net:_249_ net:_253_ comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - + bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_177_ net:_195_ net:_199_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - + srcs: net:_249_ net:_316_ net:_381_ + comment: capacity:2 usage:3 overflow:1 + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ net:_381_ + srcs: net:_140_ net:_141_ net:_311_ net:_381_ comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - violation type: Horizontal congestion - srcs: net:_069_ net:_375_ net:_386_ + srcs: net:_147_ net:_236_ net:_287_ comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_124_ net:_399_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - + srcs: net:_131_ net:_227_ net:_397_ net:_401_ + comment: capacity:2 usage:4 overflow:2 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - violation type: Horizontal congestion - srcs: net:_180_ net:_183_ net:_236_ + srcs: net:clk net:_160_ net:_372_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - + bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - violation type: Horizontal congestion - srcs: net:_184_ net:_198_ net:_236_ net:_271_ + srcs: net:_129_ net:_232_ net:_234_ net:_352_ comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - violation type: Horizontal congestion - srcs: net:_027_ net:_248_ net:_389_ + srcs: net:_158_ net:_248_ net:_374_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - + bbox = (31.3500, 19.9500) - (34.2000, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_397_ net:_406_ + srcs: net:_055_ net:_380_ net:_403_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_109_ net:_142_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_272_ net:_353_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_168_ net:_213_ net:_298_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - + srcs: net:_158_ net:_204_ net:_244_ net:_294_ net:_299_ + comment: capacity:2 usage:5 overflow:3 + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_248_ + srcs: net:_211_ net:_233_ net:net53 comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - + bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - violation type: Horizontal congestion - srcs: net:_124_ net:_244_ net:_300_ + srcs: net:_248_ net:_353_ net:_401_ comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - + bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_137_ net:_175_ + srcs: net:_008_ net:_046_ net:_118_ comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_381_ + srcs: net:_072_ net:_407_ net:_409_ comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - + bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_200_ net:_252_ net:_312_ net:_397_ + srcs: net:_138_ net:_160_ net:_165_ net:dpath.a_lt_b$in1\[6\] comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_237_ net:_250_ + srcs: net:_122_ net:_353_ net:_377_ net:_385_ comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - violation type: Horizontal congestion - srcs: net:_174_ net:_178_ net:_199_ + srcs: net:_115_ net:_158_ net:_409_ comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_289_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_172_ net:_245_ net:_263_ net:_264_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - + bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_142_ net:_158_ + srcs: net:_121_ net:_137_ net:_353_ comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - + bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - violation type: Horizontal congestion - srcs: net:_064_ net:_120_ net:_245_ + srcs: net:_236_ net:_253_ net:_417_ comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - + bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - violation type: Horizontal congestion - srcs: net:_066_ net:_159_ net:_245_ net:_253_ + srcs: net:_132_ net:_221_ net:_319_ net:_320_ comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_230_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_145_ net:_146_ net:_160_ net:_174_ + srcs: net:req_msg[15] net:req_msg[8] + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 91.2000) - (14.2500, 94.0500) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_289_ net:_290_ net:_296_ comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - + bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_353_ + srcs: net:_245_ net:_253_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - + bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_371_ + srcs: net:_209_ net:_252_ net:_352_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - + bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_352_ + srcs: net:_131_ net:_227_ net:_327_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_203_ net:_304_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_318_ net:_327_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - + bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net45 + srcs: net:_205_ net:_213_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - + bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:_400_ + srcs: net:_380_ net:net24 comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - + bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_071_ net:_397_ + srcs: net:req_msg[15] net:req_msg[8] comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - + bbox = (11.4000, 88.3500) - (14.2500, 91.2000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_006_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - + srcs: net:_149_ net:_352_ net:_401_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_344_ net:_401_ + srcs: net:_370_ net:net51 comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - + bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_096_ net:_366_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - + srcs: net:clk net:dpath.a_lt_b$in0\[2\] + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_135_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - + srcs: net:_210_ net:_212_ net:_332_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_158_ net:net43 + srcs: net:_071_ net:_249_ net:_397_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - + bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_051_ net:_139_ net:_353_ + srcs: net:_118_ net:_134_ net:dpath.a_lt_b$in1\[2\] comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - + bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_154_ net:_157_ net:_160_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - + srcs: net:_142_ net:_421_ + comment: capacity:1 usage:2 overflow:1 + bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_136_ net:_245_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - + srcs: net:_159_ net:_393_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_245_ + srcs: net:_165_ net:_261_ comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - + bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net24 + srcs: net:_160_ net:_393_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - + bbox = (57.0000, 74.1000) - (59.8500, 76.9500) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:net45 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 74.1000) - (79.8000, 76.9500) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_199_ net:_250_ + srcs: net:_112_ net:_128_ net:_352_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - + bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[11] net:net47 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - + srcs: net:_163_ net:_403_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net12 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - + srcs: net:_091_ net:_142_ net:_158_ net:_244_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:dpath.a_lt_b$in1\[12\] - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 25.6500) - (62.7000, 28.5000) on Layer - + srcs: net:_150_ net:_202_ net:_311_ net:net43 + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_248_ + srcs: net:_160_ net:_393_ comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - + bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_160_ net:_353_ + srcs: net:req_msg[5] net:net10 net:net27 comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - + bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_386_ + srcs: net:_117_ net:_165_ net:_384_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_121_ net:_137_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - + bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:clk net:net41 + srcs: net:_204_ net:_298_ comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - + bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_235_ net:_253_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - + srcs: net:clk net:_072_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_245_ net:_353_ + srcs: net:_011_ net:_160_ net:dpath.a_lt_b$in1\[5\] comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_141_ net:_248_ net:_353_ net:_362_ - comment: capacity:1 usage:4 overflow:3 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - + bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_053_ net:_401_ + srcs: net:_160_ net:_165_ net:_348_ comment: capacity:1 usage:3 overflow:2 - bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - + bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net49 + srcs: net:net46 net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 57.0000) - (79.8000, 59.8500) on Layer - + bbox = (62.7000, 17.1000) - (65.5500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_388_ + srcs: net:_398_ net:_413_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - + bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - violation type: Vertical congestion srcs: net:_229_ net:_235_ comment: capacity:1 usage:2 overflow:1 bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_001_ net:net7 + srcs: net:_123_ net:_245_ net:_253_ + comment: capacity:1 usage:3 overflow:2 + bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_221_ net:_222_ net:_228_ net:_410_ + comment: capacity:1 usage:5 overflow:4 + bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_229_ net:_235_ net:_245_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_193_ net:_377_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_386_ net:net36 comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - + bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_421_ + srcs: net:_114_ net:_130_ comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - + bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:net28 + srcs: net:clk net:_407_ comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 48.4500) - (82.6500, 51.3000) on Layer - + bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_044_ net:_098_ net:_347_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_390_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_281_ net:_381_ net:_416_ + srcs: net:_138_ net:_272_ net:_385_ comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - + bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_191_ net:_192_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - + srcs: net:_142_ net:_158_ net:_244_ net:_421_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_092_ net:_159_ net:_376_ + srcs: net:_122_ net:_159_ net:_388_ comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_169_ net:_171_ net:_253_ net:_283_ - comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - + bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_399_ net:net36 + srcs: net:_118_ net:_348_ comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - + bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_075_ net:_245_ + srcs: net:_110_ net:_126_ net:_412_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - + bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net12 + srcs: net:_248_ net:dpath.a_lt_b$in1\[12\] comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - + bbox = (59.8500, 25.6500) - (62.7000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ net:_238_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - + srcs: net:clk net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_235_ + srcs: net:clk net:_386_ comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - + bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_025_ net:_072_ net:_407_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - + srcs: net:_245_ net:_266_ + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:req_msg[5] net:net27 + srcs: net:clk net:_007_ comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - + bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_091_ net:_142_ net:_244_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - + srcs: net:net30 net:net45 + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 82.6500) - (79.8000, 85.5000) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_207_ net:_410_ + srcs: net:_395_ net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (82.6500, 45.6000) - (85.5000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_142_ net:net43 comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - + bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_318_ net:_327_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - + srcs: net:_132_ net:_167_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_253_ + srcs: net:_372_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - + bbox = (62.7000, 79.8000) - (65.5500, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_211_ net:_371_ + srcs: net:_175_ net:_249_ net:_277_ net:_415_ comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - + bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_397_ + srcs: net:_270_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 34.2000) - (57.0000, 37.0500) on Layer - + bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_159_ net:_160_ net:_165_ + srcs: net:_142_ net:_158_ net:_244_ net:_314_ comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - + bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 28.5000) - (31.3500, 31.3500) on Layer - + srcs: net:_215_ net:_298_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_158_ net:net43 + srcs: net:_145_ net:_253_ net:_262_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - + bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_103_ net:_137_ net:_160_ - comment: capacity:1 usage:4 overflow:3 - bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - + srcs: net:clk net:_384_ net:dpath.a_lt_b$in0\[1\] + comment: capacity:1 usage:3 overflow:2 + bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_416_ + srcs: net:_249_ net:_268_ comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - + bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_245_ + srcs: net:_229_ net:_235_ comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 39.9000) - (76.9500, 42.7500) on Layer - + bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_133_ net:_165_ net:_384_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - + srcs: net:clk net:_075_ net:_245_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_392_ net:net12 + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 28.5000) - (19.9500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_150_ net:_253_ + srcs: net:_248_ net:_417_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_082_ net:_249_ net:_350_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - + bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_398_ net:_413_ + srcs: net:net30 net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - + bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_365_ + srcs: net:_344_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - + bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_012_ net:_050_ net:_122_ net:_248_ net:dpath.a_lt_b$in1\[6\] + srcs: net:_140_ net:_141_ net:_218_ net:_219_ net:_309_ comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - + bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_253_ + srcs: net:_130_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_250_ net:_404_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - + bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_306_ + srcs: net:_089_ net:_245_ net:_253_ comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - + bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_307_ net:_362_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - + srcs: net:_248_ net:net53 + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 22.8000) - (62.7000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_248_ net:_390_ comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 37.0500) - (28.5000, 39.9000) on Layer - + bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_215_ net:_352_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - + srcs: net:_105_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[7\] + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_088_ net:dpath.a_lt_b$in0\[6\] + srcs: net:_380_ net:net24 comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_170_ net:_253_ net:_416_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - + bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_239_ net:_250_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - + srcs: net:_125_ net:_248_ net:_307_ net:_362_ + comment: capacity:1 usage:4 overflow:3 + bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_134_ + srcs: net:_327_ net:_410_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - + bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_150_ + srcs: net:_119_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - + bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_144_ net:_245_ + srcs: net:_165_ net:_414_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - + bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_236_ net:_253_ + srcs: net:_145_ net:_146_ net:_236_ comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - + bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_224_ net:_318_ net:_327_ net:_401_ + comment: capacity:1 usage:5 overflow:4 + bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_027_ net:_248_ net:_374_ + srcs: net:clk net:_124_ net:_386_ comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - + bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_102_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - + srcs: net:_096_ net:_366_ net:_371_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_266_ + srcs: net:_010_ net:dpath.a_lt_b$in1\[4\] comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - + bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_396_ - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 37.0500) - (82.6500, 39.9000) on Layer - + srcs: net:_142_ net:_158_ net:_244_ net:_421_ + comment: capacity:1 usage:4 overflow:3 + bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_415_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - + srcs: net:_131_ net:_252_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_250_ net:_404_ + srcs: net:_059_ net:_142_ net:_421_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - + bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_371_ + srcs: net:_016_ net:_070_ net:_313_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - +violation type: Vertical congestion + srcs: net:net46 net:net48 comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - + bbox = (62.7000, 19.9500) - (65.5500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - + srcs: net:_126_ net:_147_ net:_180_ net:_182_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_123_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - + srcs: net:_174_ net:_178_ net:_198_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_393_ + srcs: net:clk net:_384_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - + bbox = (42.7500, 65.5500) - (45.6000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_248_ + srcs: net:clk net:_397_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - + bbox = (54.1500, 34.2000) - (57.0000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_127_ net:_200_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_388_ net:_391_ + srcs: net:_017_ net:dpath.a_lt_b$in1\[11\] comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 74.1000) - (62.7000, 76.9500) on Layer - + bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_248_ + srcs: net:_380_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - + bbox = (22.8000, 39.9000) - (25.6500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_239_ net:_250_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_173_ + srcs: net:_051_ net:_139_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - + bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_272_ net:_298_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - + srcs: net:_170_ net:_177_ net:_245_ net:_253_ net:_284_ + comment: capacity:1 usage:5 overflow:4 + bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_133_ net:_158_ net:_165_ + srcs: net:_205_ net:_213_ net:_214_ comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - + bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_139_ net:_143_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - + srcs: net:clk net:_041_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_137_ net:_160_ + srcs: net:_119_ net:_267_ net:_388_ comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - + bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_252_ net:_302_ net:_419_ - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - + srcs: net:_102_ net:_160_ + comment: capacity:1 usage:2 overflow:1 + bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_313_ + srcs: net:_114_ net:_130_ net:_328_ comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - + bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_348_ + srcs: net:_253_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_070_ net:_142_ net:_244_ net:_313_ net:_314_ - comment: capacity:1 usage:5 overflow:4 - bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - + bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ net:_397_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - + srcs: net:_392_ net:_400_ + comment: capacity:1 usage:2 overflow:1 + bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_127_ net:_200_ net:_252_ + srcs: net:_337_ net:_338_ net:_341_ comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_179_ net:_239_ net:_250_ net:_404_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - + bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_180_ net:_183_ + srcs: net:_378_ net:net52 comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - + bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_178_ net:_240_ + srcs: net:resp_msg[11] net:net47 comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - + bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_267_ net:dpath.a_lt_b$in1\[3\] - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - + srcs: net:_194_ net:_297_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net53 + srcs: net:_159_ net:_397_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 22.8000) - (62.7000, 25.6500) on Layer - + bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_037_ net:_401_ net:_405_ + srcs: net:clk net:_364_ net:_397_ comment: capacity:1 usage:3 overflow:2 - bbox = (25.6500, 34.2000) - (28.5000, 37.0500) on Layer - + bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_332_ net:_339_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - + srcs: net:clk net:net19 + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 14.2500) - (59.8500, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_249_ net:_411_ + srcs: net:_126_ net:_182_ net:_258_ comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - + bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_082_ net:_249_ net:_350_ + srcs: net:_250_ net:_404_ net:_411_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - + bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] + srcs: net:_109_ net:_150_ comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - + bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:net10 net:net40 + srcs: net:_160_ net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (85.5000, 11.4000) - (88.3500, 14.2500) on Layer - + bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_021_ net:_249_ + srcs: net:_133_ net:_158_ net:_165_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - + bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_047_ net:_101_ net:_356_ net:_388_ - comment: capacity:1 usage:5 overflow:4 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - + srcs: net:_158_ net:_244_ net:_343_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_341_ net:_346_ + srcs: net:_160_ net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - + bbox = (76.9500, 62.7000) - (79.8000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_245_ + srcs: net:_001_ net:net7 comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 51.3000) - (76.9500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_275_ net:_360_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - + bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_137_ net:_175_ net:_187_ net:_249_ net:_415_ - comment: capacity:1 usage:5 overflow:4 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - + srcs: net:_044_ net:_098_ net:_347_ net:_352_ + comment: capacity:1 usage:4 overflow:3 + bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_272_ net:_353_ + srcs: net:_118_ net:_174_ net:_348_ comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - + bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_142_ net:_150_ + srcs: net:_129_ net:_207_ net:_410_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - + bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_073_ net:_114_ net:_334_ net:_336_ net:_410_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - + srcs: net:_132_ net:_201_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_220_ net:_252_ net:_302_ net:_310_ - comment: capacity:1 usage:5 overflow:4 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - + srcs: net:_113_ net:_129_ net:_371_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_225_ net:_228_ net:_401_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - + srcs: net:_117_ net:_165_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_407_ + srcs: net:_380_ net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - + bbox = (22.8000, 45.6000) - (25.6500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_396_ + srcs: net:_372_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 39.9000) - (82.6500, 42.7500) on Layer - + bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_129_ net:_352_ net:_401_ + srcs: net:_179_ net:_239_ net:_250_ net:_404_ comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - + bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_174_ net:_253_ net:_262_ + srcs: net:_142_ net:_158_ net:_244_ net:_308_ comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - + bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_414_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - + srcs: net:clk net:_126_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_387_ + srcs: net:_248_ net:_418_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - + bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_327_ net:_337_ net:_410_ + srcs: net:_115_ net:_142_ net:net43 comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - + bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_352_ net:_401_ + srcs: net:_249_ net:_275_ net:_360_ comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - + bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_092_ net:_159_ net:_249_ net:_376_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_244_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_204_ net:_252_ net:_298_ + srcs: net:clk net:_003_ net:_055_ comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - + bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - +violation type: Vertical congestion + srcs: net:_008_ net:_084_ + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_393_ + comment: capacity:1 usage:2 overflow:1 + bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_245_ net:_280_ + srcs: net:clk net:_275_ net:_280_ comment: capacity:1 usage:3 overflow:2 bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_194_ net:_297_ net:_388_ + srcs: net:_111_ net:_149_ net:net43 comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - + bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_213_ net:_235_ net:_253_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_338_ net:_341_ + srcs: net:clk net:ctrl.state.out\[1\] comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - + bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_212_ net:_332_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - + srcs: net:clk net:_053_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_012_ net:_122_ net:_248_ net:dpath.a_lt_b$in1\[6\] + comment: capacity:1 usage:4 overflow:3 + bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_353_ net:_386_ + srcs: net:_088_ net:dpath.a_lt_b$in0\[6\] + comment: capacity:1 usage:2 overflow:1 + bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_109_ net:_243_ net:_353_ comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - + bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_270_ net:_388_ + srcs: net:_000_ net:_386_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - + bbox = (25.6500, 51.3000) - (28.5000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_026_ net:_390_ + srcs: net:_414_ net:net41 comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - + bbox = (68.4000, 31.3500) - (71.2500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_421_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - + srcs: net:_245_ net:_259_ net:_404_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_328_ net:_371_ + srcs: net:_150_ net:_200_ net:_317_ net:net43 comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_225_ net:_228_ net:_352_ net:_401_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - + bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_384_ net:net50 + srcs: net:net30 net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 62.7000) - (39.9000, 65.5500) on Layer - + bbox = (76.9500, 79.8000) - (79.8000, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[2\] + srcs: net:_252_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - + bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:net17 net:net51 + srcs: net:_410_ net:dpath.a_lt_b$in0\[13\] comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - + bbox = (45.6000, 14.2500) - (48.4500, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_308_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - + srcs: net:net47 net:net49 + comment: capacity:1 usage:2 overflow:1 + bbox = (82.6500, 39.9000) - (85.5000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_243_ net:_252_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - + srcs: net:_248_ net:_353_ + comment: capacity:1 usage:2 overflow:1 + bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_158_ net:_401_ + srcs: net:_292_ net:_388_ net:_417_ comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - + bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:net33 + srcs: net:_099_ net:_159_ comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - + bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_210_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - + srcs: net:_170_ net:_245_ net:_253_ net:_416_ + comment: capacity:1 usage:4 overflow:3 + bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_371_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - violation type: Vertical congestion srcs: net:_171_ net:_177_ net:_184_ net:_272_ comment: capacity:1 usage:4 overflow:3 bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_410_ net:dpath.a_lt_b$in0\[13\] + srcs: net:_144_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 14.2500) - (48.4500, 17.1000) on Layer - + bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_025_ net:_072_ net:_079_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_003_ net:_055_ + srcs: net:_370_ net:net51 comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - + bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_079_ net:_330_ net:_352_ net:_401_ + srcs: net:_111_ net:_142_ net:_158_ net:_244_ comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - + bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - +violation type: Vertical congestion + srcs: net:_228_ net:_410_ + comment: capacity:1 usage:2 overflow:1 + bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_089_ net:_245_ net:_292_ net:_417_ + srcs: net:_068_ net:_140_ net:_158_ net:_248_ comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - + bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_353_ net:_386_ + srcs: net:_243_ net:_353_ net:_401_ comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - + bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_182_ net:_258_ + srcs: net:_145_ net:_173_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - + bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_408_ + srcs: net:_138_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - + bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_348_ + srcs: net:net47 net:net49 comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - + bbox = (82.6500, 37.0500) - (85.5000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_235_ + srcs: net:clk net:_175_ net:_353_ comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_172_ net:_264_ net:_388_ - comment: capacity:1 usage:4 overflow:3 - bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_017_ net:dpath.a_lt_b$in1\[11\] - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - + bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_099_ net:_159_ + srcs: net:_138_ net:_188_ net:_283_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - + bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_008_ net:_084_ + srcs: net:_122_ net:_248_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_174_ net:_198_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - + bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_149_ net:_352_ net:_401_ net:net43 + srcs: net:_141_ net:_248_ net:_353_ net:_362_ comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_131_ net:_252_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - + bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_385_ net:_396_ + srcs: net:_130_ net:_231_ net:_233_ comment: capacity:1 usage:3 overflow:2 - bbox = (79.8000, 45.6000) - (82.6500, 48.4500) on Layer - + bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - + srcs: net:_245_ net:_253_ net:_256_ net:_404_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_163_ net:_164_ net:_403_ net:_421_ + srcs: net:_171_ net:_177_ net:_272_ net:_388_ comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - + bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_142_ + srcs: net:_159_ net:_388_ comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_016_ net:_039_ net:_252_ net:dpath.a_lt_b$in1\[10\] - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - + bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_201_ net:_213_ net:_235_ + srcs: net:_224_ net:_326_ net:_327_ net:_401_ comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - + bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_041_ + srcs: net:_160_ net:_402_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - + bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_007_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - + srcs: net:_143_ net:_196_ net:_197_ net:_272_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net14 + srcs: net:_118_ net:_134_ comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 71.2500) - (34.2000, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_224_ net:_326_ net:_327_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_174_ net:_271_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - + bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_311_ net:net43 + srcs: net:_116_ net:_225_ net:_228_ net:_352_ comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - + bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_396_ + srcs: net:_159_ net:net33 comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_169_ net:_253_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_190_ net:_248_ net:_291_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - + bbox = (39.9000, 65.5500) - (42.7500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_378_ net:net52 + srcs: net:_299_ net:_418_ comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - + bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net14 + srcs: net:_128_ net:_352_ comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 74.1000) - (34.2000, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_230_ net:_242_ net:_401_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - + bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_364_ + srcs: net:_393_ net:net20 comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - + bbox = (57.0000, 79.8000) - (59.8500, 82.6500) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_261_ + srcs: net:_027_ net:_248_ comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_197_ net:_262_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - + bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net44 + srcs: net:_160_ net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 51.3000) - (19.9500, 54.1500) on Layer - + bbox = (76.9500, 65.5500) - (79.8000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_377_ net:_395_ + srcs: net:_139_ net:_143_ comment: capacity:1 usage:2 overflow:1 - bbox = (82.6500, 45.6000) - (85.5000, 48.4500) on Layer - + bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_111_ net:_149_ net:net43 + srcs: net:_114_ net:_130_ net:_211_ comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - + bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_224_ net:_318_ net:_327_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - + srcs: net:_037_ net:_405_ + comment: capacity:1 usage:2 overflow:1 + bbox = (25.6500, 34.2000) - (28.5000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_397_ + srcs: net:_031_ net:_379_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - + bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_009_ net:_119_ net:_135_ net:_388_ + srcs: net:_116_ net:_222_ net:_225_ net:_228_ comment: capacity:1 usage:4 overflow:3 - bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_141_ net:_158_ net:_218_ net:_219_ net:_309_ net:_421_ - comment: capacity:1 usage:6 overflow:5 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - + bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:net49 net:net8 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 45.6000) - (91.2000, 48.4500) on Layer - + srcs: net:_020_ net:_043_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_348_ + srcs: net:clk net:_123_ net:_353_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - + bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_418_ net:_421_ + srcs: net:_160_ net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - + bbox = (76.9500, 68.4000) - (79.8000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:net18 net:net46 + srcs: net:_026_ net:_390_ comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 14.2500) - (34.2000, 17.1000) on Layer - + bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_289_ net:_290_ net:_296_ - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - + srcs: net:_253_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_019_ net:_371_ net:dpath.a_lt_b$in1\[13\] + srcs: net:_191_ net:_192_ net:_388_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - + bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_253_ + srcs: net:clk net:net44 comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_256_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - + bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_353_ net:_388_ + srcs: net:_159_ net:_236_ net:_404_ comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - + bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_421_ + srcs: net:clk net:_401_ comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_136_ net:_138_ net:_188_ net:_189_ net:_353_ - comment: capacity:1 usage:5 overflow:4 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - + bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_383_ net:_414_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 34.2000) - (71.2500, 37.0500) on Layer - + srcs: net:_249_ net:_353_ net:_415_ + comment: capacity:1 usage:3 overflow:2 + bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_024_ net:_248_ + srcs: net:clk net:_365_ comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - + bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_157_ net:_160_ comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - + bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_414_ + srcs: net:_119_ net:_172_ net:_264_ comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - + bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_150_ + srcs: net:_392_ net:net12 comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 54.1500) - (42.7500, 57.0000) on Layer - + bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_112_ net:_128_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - + srcs: net:_380_ net:_401_ + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 42.7500) - (25.6500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ + srcs: net:_159_ net:net33 comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - + bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_207_ net:_228_ net:_401_ net:_410_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - + srcs: net:clk net:_384_ + comment: capacity:1 usage:2 overflow:1 + bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_126_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - + srcs: net:_050_ net:_104_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_248_ + srcs: net:_213_ net:_235_ comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - + bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_125_ net:_142_ net:_244_ + srcs: net:_190_ net:_248_ net:_291_ comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - + bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_010_ net:dpath.a_lt_b$in1\[4\] + srcs: net:_392_ net:net12 comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - + bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_009_ net:_135_ net:dpath.a_lt_b$in1\[3\] + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_203_ net:_304_ net:_421_ + srcs: net:_039_ net:_252_ net:_421_ net:dpath.a_lt_b$in1\[10\] comment: capacity:1 usage:4 overflow:3 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - + bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_389_ net:net43 - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - + srcs: net:_136_ net:_137_ net:_187_ net:_249_ net:_415_ + comment: capacity:1 usage:5 overflow:4 + bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:_302_ net:_306_ net:_419_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_180_ net:_183_ net:_236_ + comment: capacity:1 usage:3 overflow:2 + bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_342_ net:_367_ + srcs: net:_332_ net:_339_ net:_410_ comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - + bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_031_ net:_379_ + srcs: net:_199_ net:_238_ comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - + bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_213_ net:_214_ + srcs: net:_160_ net:_164_ net:_402_ comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - + bbox = (34.2000, 54.1500) - (37.0500, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_421_ + srcs: net:_059_ net:_158_ comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - + bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_206_ net:_212_ net:_327_ net:_410_ + srcs: net:clk net:_047_ net:_101_ net:_356_ comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - + bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_227_ net:_327_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - + srcs: net:_152_ net:_154_ net:_156_ net:_402_ + comment: capacity:1 usage:4 overflow:3 + bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_384_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - + srcs: net:_122_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - +violation type: Vertical congestion + srcs: net:_394_ net:net35 + comment: capacity:1 usage:2 overflow:1 + bbox = (22.8000, 85.5000) - (25.6500, 88.3500) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_142_ net:_150_ net:_401_ + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - violation type: Vertical congestion srcs: net:_249_ net:_276_ comment: capacity:1 usage:2 overflow:1 bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_160_ + srcs: net:_042_ net:_371_ comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 54.1500) - (79.8000, 57.0000) on Layer - + bbox = (54.1500, 14.2500) - (57.0000, 17.1000) on Layer - violation type: Vertical congestion - srcs: net:net17 net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - + srcs: net:_129_ net:_210_ net:_352_ + comment: capacity:1 usage:3 overflow:2 + bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_133_ net:_165_ net:_384_ + comment: capacity:1 usage:4 overflow:3 + bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_002_ net:_004_ net:_160_ + srcs: net:clk net:_120_ net:_136_ comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - + bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_391_ net:_393_ net:_394_ + srcs: net:_138_ net:_176_ net:_272_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - + bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_202_ - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - + srcs: net:_124_ net:_142_ net:_421_ + comment: capacity:1 usage:3 overflow:2 + bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_272_ + srcs: net:_103_ net:_121_ net:_137_ comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - + bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:net17 net:net34 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 51.3000) - (14.2500, 54.1500) on Layer - + srcs: net:clk net:_006_ net:_353_ + comment: capacity:1 usage:3 overflow:2 + bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_243_ net:_353_ + srcs: net:_150_ net:_202_ net:_252_ comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - + bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - +violation type: Vertical congestion + srcs: net:_127_ net:_148_ net:_252_ + comment: capacity:1 usage:3 overflow:2 + bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_298_ + srcs: net:clk net:_383_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - + bbox = (71.2500, 34.2000) - (74.1000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_371_ net:_401_ + comment: capacity:1 usage:3 overflow:2 + bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_158_ net:_421_ + srcs: net:_140_ net:_158_ net:_244_ comment: capacity:1 usage:3 overflow:2 bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_127_ net:_148_ net:_252_ + srcs: net:_215_ net:_298_ net:_352_ comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - + bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:clk net:_386_ + srcs: net:_159_ net:_353_ comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - + bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_207_ net:_213_ net:_235_ + comment: capacity:1 usage:4 overflow:3 + bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_166_ + srcs: net:_073_ net:_252_ net:_408_ comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - + bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_105_ net:_249_ net:_275_ net:dpath.a_lt_b$in1\[7\] - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - + srcs: net:_372_ net:net15 + comment: capacity:1 usage:2 overflow:1 + bbox = (85.5000, 42.7500) - (88.3500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_153_ net:_161_ + srcs: net:_370_ net:net36 + comment: capacity:1 usage:2 overflow:1 + bbox = (11.4000, 42.7500) - (14.2500, 45.6000) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:net43 net:net53 comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - + bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_248_ + srcs: net:_119_ net:_135_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - + bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_248_ + srcs: net:net33 net:net9 comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 19.9500) - (34.2000, 22.8000) on Layer - + bbox = (39.9000, 85.5000) - (42.7500, 88.3500) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_393_ + srcs: net:_221_ net:_248_ net:_406_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 34.2000) - (62.7000, 37.0500) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net36 comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - + bbox = (11.4000, 39.9000) - (14.2500, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_200_ net:_317_ net:net43 + srcs: net:_114_ net:_334_ net:_336_ net:_410_ comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - + bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_167_ net:_213_ net:_235_ + srcs: net:_330_ net:_371_ net:_401_ net:_407_ comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - + bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_288_ + srcs: net:_396_ net:net47 comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_011_ net:_372_ net:dpath.a_lt_b$in1\[5\] - comment: capacity:1 usage:3 overflow:2 - bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - + bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[1\] + srcs: net:_002_ net:_004_ comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_020_ net:_043_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - + bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - violation type: Vertical congestion srcs: net:_022_ net:_110_ comment: capacity:1 usage:2 overflow:1 bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - violation type: Vertical congestion - srcs: net:_221_ net:_248_ net:_406_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 34.2000) - (62.7000, 37.0500) on Layer - + srcs: net:_159_ net:_165_ net:_236_ net:_249_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_150_ net:_252_ net:_253_ + comment: capacity:1 usage:4 overflow:3 + bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_131_ net:_327_ net:_341_ net:_346_ + comment: capacity:1 usage:4 overflow:3 + bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:_215_ net:_352_ net:_401_ + srcs: net:_281_ net:_381_ net:_416_ comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - + bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_417_ + srcs: net:_158_ net:_248_ comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - + bbox = (31.3500, 19.9500) - (34.2000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:clk net:ctrl.state.out\[1\] - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - + srcs: net:_119_ net:_144_ net:_269_ + comment: capacity:1 usage:3 overflow:2 + bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_249_ + srcs: net:_150_ net:_153_ net:_161_ comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - + bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_185_ net:_245_ + srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] + comment: capacity:1 usage:2 overflow:1 + bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_253_ net:_416_ comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - + bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_144_ net:_269_ net:_388_ + srcs: net:_123_ net:_169_ net:_245_ net:_253_ comment: capacity:1 usage:4 overflow:3 - bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - + bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - +violation type: Vertical congestion + srcs: net:_206_ net:_212_ net:_410_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_394_ + srcs: net:_313_ net:_421_ comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 74.1000) - (54.1500, 76.9500) on Layer - + bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_176_ net:_272_ + srcs: net:_252_ net:_342_ net:_367_ comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - + bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - violation type: Vertical congestion - srcs: net:_170_ net:_177_ net:_253_ net:_284_ - comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - + srcs: net:_160_ net:net28 + comment: capacity:1 usage:2 overflow:1 + bbox = (79.8000, 48.4500) - (82.6500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_057_ net:_162_ net:_403_ net:_421_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - + srcs: net:_165_ net:_249_ net:_411_ + comment: capacity:1 usage:3 overflow:2 + bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_072_ + srcs: net:_169_ net:_171_ net:_189_ net:_245_ net:_253_ + comment: capacity:1 usage:5 overflow:4 + bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_399_ comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - + bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_131_ net:net43 net:net53 + srcs: net:_159_ net:_174_ net:_250_ net:_348_ comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_110_ net:_245_ net:_412_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - + bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_160_ net:net45 comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - + bbox = (76.9500, 71.2500) - (79.8000, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_249_ + srcs: net:_248_ net:_288_ comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - + bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_352_ + srcs: net:_165_ net:_348_ comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - + bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_068_ net:_140_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - + srcs: net:_120_ net:_249_ + comment: capacity:1 usage:2 overflow:1 + bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_193_ net:_388_ + srcs: net:_159_ net:_165_ net:_414_ comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - + bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_231_ net:_233_ net:_371_ + srcs: net:_057_ net:_162_ net:_403_ net:_421_ comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_221_ net:_222_ net:_228_ net:_401_ net:_410_ - comment: capacity:1 usage:6 overflow:5 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - + bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_352_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - + srcs: net:_174_ net:_197_ net:_262_ net:_348_ + comment: capacity:1 usage:4 overflow:3 + bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_299_ net:_418_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - + srcs: net:_150_ net:_252_ + comment: capacity:1 usage:2 overflow:1 + bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_142_ net:_244_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - + srcs: net:clk net:_021_ + comment: capacity:1 usage:2 overflow:1 + bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_268_ + srcs: net:net44 net:net7 comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - + bbox = (25.6500, 54.1500) - (28.5000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_143_ net:_196_ net:_197_ net:_272_ + srcs: net:clk net:_136_ net:_185_ net:_353_ comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_259_ net:_404_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - + bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_147_ net:_180_ net:_182_ + srcs: net:_220_ net:_252_ net:_302_ net:_310_ comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - + bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:net33 + srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 65.5500) - (42.7500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_213_ net:_229_ net:_235_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_134_ net:dpath.a_lt_b$in1\[2\] - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - + bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_175_ net:_249_ net:_277_ net:_415_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - + srcs: net:clk net:_391_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net24 + srcs: net:_240_ net:_250_ comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - + bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - violation type: Vertical congestion - srcs: net:_152_ net:_156_ net:_402_ + srcs: net:_165_ net:_230_ net:_242_ comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - + bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_343_ + srcs: net:_174_ net:_271_ net:_348_ comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - + bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - violation type: Vertical congestion - srcs: net:_209_ net:_252_ + srcs: net:_389_ net:net43 comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - + bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net44 + srcs: net:_142_ net:_421_ comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 54.1500) - (19.9500, 57.0000) on Layer - + bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_166_ net:_249_ + comment: capacity:1 usage:4 overflow:3 + bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - +violation type: Vertical congestion + srcs: net:_024_ net:_248_ + comment: capacity:1 usage:2 overflow:1 + bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - diff --git a/src/grt/test/congestion7_snapshot_batched.tcl b/src/grt/test/congestion7_snapshot_batched.tcl new file mode 100644 index 00000000000..2d65b8aad12 --- /dev/null +++ b/src/grt/test/congestion7_snapshot_batched.tcl @@ -0,0 +1,26 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 16 + +set guide_file [make_result_file congestion7_snapshot_batched.guide] +set rpt_file [make_result_file congestion7_snapshot_batched.rpt] + +set_global_routing_layer_adjustment metal2 0.9 +set_global_routing_layer_adjustment metal3 0.9 +set_global_routing_layer_adjustment metal4-metal10 1 + +set_routing_layers -signal metal2-metal10 + +global_route -allow_congestion -snapshot_batched_width 16 -verbose -congestion_report_file $rpt_file \ + -congestion_report_iter_step 20 + +write_guides $guide_file + +diff_file congestion7_snapshot_batched.guideok $guide_file +diff_file congestion7_snapshot_batched.rptok $rpt_file + +set rpt_folder [file dirname $rpt_file] +diff_file congestion7_snapshot_batched-20.rptok \ + [file join $rpt_folder congestion7_snapshot_batched-tcl-20.rpt] diff --git a/src/grt/test/multicore_incremental_state.tcl b/src/grt/test/multicore_incremental_state.tcl deleted file mode 100644 index c93011ab95c..00000000000 --- a/src/grt/test/multicore_incremental_state.tcl +++ /dev/null @@ -1,35 +0,0 @@ -source "helpers.tcl" -read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" - -set_thread_count 2 - -if {[grt::is_multicore]} { - utl::error GRT 707 "FastRoute should start with multicore routing disabled." -} - -global_route -verbose - -if {[grt::is_multicore]} { - utl::error GRT 708 \ - "Serial global_route unexpectedly left multicore routing enabled." -} - -global_route -start_incremental -global_route -end_incremental -multicore - -if {![grt::is_multicore]} { - utl::error GRT 709 \ - "Incremental global_route -multicore did not reach FastRoute." -} - -global_route -start_incremental -global_route -end_incremental - -if {[grt::is_multicore]} { - utl::error GRT 710 \ - "Incremental global_route without -multicore did not disable FastRoute multicore routing." -} - -puts "pass" -exit 0 diff --git a/src/grt/test/multicore_bus_route.tcl b/src/grt/test/snapshot_batched_bus_route.tcl similarity index 64% rename from src/grt/test/multicore_bus_route.tcl rename to src/grt/test/snapshot_batched_bus_route.tcl index 01207db2bf0..08fee0315f0 100644 --- a/src/grt/test/multicore_bus_route.tcl +++ b/src/grt/test/snapshot_batched_bus_route.tcl @@ -2,7 +2,7 @@ set_thread_count 16 rename global_route global_route_serial proc global_route {args} { - uplevel 1 [list global_route_serial {*}$args -multicore] + uplevel 1 [list global_route_serial {*}$args -snapshot_batched_width 16] } source "bus_route.tcl" diff --git a/src/grt/test/snapshot_batched_incremental_state.tcl b/src/grt/test/snapshot_batched_incremental_state.tcl new file mode 100644 index 00000000000..062d6969384 --- /dev/null +++ b/src/grt/test/snapshot_batched_incremental_state.tcl @@ -0,0 +1,36 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 16 + +if {[grt::get_snapshot_batched_width] != 0} { + utl::error GRT 707 \ + "FastRoute should start with snapshot_batched_width set to 0." +} + +global_route -verbose + +if {[grt::get_snapshot_batched_width] != 0} { + utl::error GRT 708 \ + "Default global_route should leave snapshot_batched_width at 0." +} + +global_route -start_incremental +global_route -end_incremental -snapshot_batched_width 16 + +if {[grt::get_snapshot_batched_width] != 16} { + utl::error GRT 709 \ + "Incremental global_route -snapshot_batched_width 16 did not reach FastRoute." +} + +global_route -start_incremental +global_route -end_incremental -snapshot_batched_width 0 + +if {[grt::get_snapshot_batched_width] != 0} { + utl::error GRT 710 \ + "Incremental global_route -snapshot_batched_width 0 did not disable snapshot-batched routing." +} + +puts "pass" +exit 0 diff --git a/src/grt/test/snapshot_batched_single_thread_smoke.tcl b/src/grt/test/snapshot_batched_single_thread_smoke.tcl new file mode 100644 index 00000000000..e55a12e7282 --- /dev/null +++ b/src/grt/test/snapshot_batched_single_thread_smoke.tcl @@ -0,0 +1,36 @@ +source "helpers.tcl" +read_lef "Nangate45/Nangate45.lef" +read_def "gcd.def" + +set_thread_count 1 + +set output "" +tee -variable output -quiet { + global_route \ + -snapshot_batched_width 16 \ + -verbose +} + +if {[grt::get_snapshot_batched_width] != 16} { + utl::error GRT 711 \ + "global_route -snapshot_batched_width 16 should keep snapshot-batched routing enabled even with one requested thread." +} + +set wirelength -1 +set vias -1 + +foreach line [split $output "\n"] { + if { [regexp {Total wirelength:\s+([0-9]+)\s+um} $line -> value] } { + set wirelength $value + } elseif { [regexp {Final number of vias:\s+([0-9]+)} $line -> value] } { + set vias $value + } +} + +if { $wirelength <= 0 || $vias < 0 } { + utl::error GRT 712 \ + "Failed to capture single-thread snapshot-batched global-route summary output." +} + +puts "pass" +exit 0 diff --git a/src/grt/test/multicore_smoke.tcl b/src/grt/test/snapshot_batched_smoke.tcl similarity index 73% rename from src/grt/test/multicore_smoke.tcl rename to src/grt/test/snapshot_batched_smoke.tcl index fe134b7b41d..84df2041c5d 100644 --- a/src/grt/test/multicore_smoke.tcl +++ b/src/grt/test/snapshot_batched_smoke.tcl @@ -2,16 +2,16 @@ source "helpers.tcl" read_lef "Nangate45/Nangate45.lef" read_def "gcd.def" -set_thread_count 2 +set_thread_count 16 set output "" tee -variable output -quiet { global_route \ - -multicore \ + -snapshot_batched_width 16 \ -verbose } -set report_file [make_result_file "multicore_smoke.rpt"] +set report_file [make_result_file "snapshot_batched_smoke.rpt"] set stream [open $report_file w] puts -nonewline $stream $output close $stream @@ -28,7 +28,7 @@ foreach line [split $output "\n"] { } if { $wirelength <= 0 || $vias < 0 } { - utl::error GRT 706 "Failed to capture multicore global-route summary output." + utl::error GRT 706 "Failed to capture snapshot-batched global-route summary output." } puts "pass" From c8e8f5082ec93dde0acb7b6e598377f04765d63f Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Tue, 3 Mar 2026 12:01:49 -0800 Subject: [PATCH 07/25] Restore abc submodule gitlink Reset the third-party/abc gitlink to the commit recorded on origin/master so the parent repo no longer points at the divergent submodule hash. Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- third-party/abc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/abc b/third-party/abc index 17cadca080b..a68b23c77d4 160000 --- a/third-party/abc +++ b/third-party/abc @@ -1 +1 @@ -Subproject commit 17cadca080b33edc5a13c8e6e8e8092f8c350b25 +Subproject commit a68b23c77d4c9b3947fcff9cdb7d509cad7fe46a From c7ac47f2148af124131da46a2091fce976aa2176 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Tue, 3 Mar 2026 12:10:10 -0800 Subject: [PATCH 08/25] Align abc submodule with origin/master Update the parent-repo gitlink for third-party/abc so it matches the current origin/master submodule commit exactly. Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- third-party/abc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/abc b/third-party/abc index a68b23c77d4..17cadca080b 160000 --- a/third-party/abc +++ b/third-party/abc @@ -1 +1 @@ -Subproject commit a68b23c77d4c9b3947fcff9cdb7d509cad7fe46a +Subproject commit 17cadca080b33edc5a13c8e6e8e8092f8c350b25 From f2e1f9b276bec9f501aaec6dea9f54eda53fff32 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Wed, 4 Mar 2026 09:43:29 -0800 Subject: [PATCH 09/25] grt: default snapshot-batched width to 16 Make snapshot-batched width 16 the default surface for global_route while keeping the current internal fallback gates that protect legacy regressions. Retarget explicit snapshot-batched coverage to a real high-overflow stress case, remove the old gcd-based snapshot_batched goldens that no longer batch, and add the tracked shuffle_stress DEF needed by the new smoke tests. Validation: - dev-cpu-fluorine rebuild of /root/openroad-builds/build-linux-tests - focused width16-default slice: 11/11 passed - full grt suite on fluorine: 119/119 passed Signed-off-by: Eugene Brevdo Co-authored-by: Codex --- src/grt/README.md | 2 +- src/grt/include/grt/GlobalRouter.h | 3 +- src/grt/src/GlobalRouter.cpp | 5 + src/grt/src/GlobalRouter.i | 6 + src/grt/src/GlobalRouter.tcl | 2 +- src/grt/src/fastroute/include/FastRoute.h | 2 + src/grt/src/fastroute/src/FastRoute.cpp | 17 +- src/grt/test/BUILD | 3 - src/grt/test/CMakeLists.txt | 3 - .../test/congestion1_snapshot_batched.guideok | 5971 -------------- src/grt/test/congestion1_snapshot_batched.ok | 94 - src/grt/test/congestion1_snapshot_batched.tcl | 19 - .../test/congestion2_snapshot_batched.guideok | 7185 ----------------- src/grt/test/congestion2_snapshot_batched.ok | 97 - src/grt/test/congestion2_snapshot_batched.tcl | 20 - .../congestion7_snapshot_batched-20.rptok | 2344 ------ .../test/congestion7_snapshot_batched.guideok | 5971 -------------- src/grt/test/congestion7_snapshot_batched.ok | 96 - .../test/congestion7_snapshot_batched.rptok | 2056 ----- src/grt/test/congestion7_snapshot_batched.tcl | 26 - src/grt/test/shuffle_stress.def | 2153 +++++ .../snapshot_batched_incremental_state.tcl | 8 +- .../snapshot_batched_single_thread_smoke.tcl | 17 +- src/grt/test/snapshot_batched_smoke.tcl | 17 +- test/helpers.tcl | 7 + 25 files changed, 2222 insertions(+), 23902 deletions(-) delete mode 100644 src/grt/test/congestion1_snapshot_batched.guideok delete mode 100644 src/grt/test/congestion1_snapshot_batched.ok delete mode 100644 src/grt/test/congestion1_snapshot_batched.tcl delete mode 100644 src/grt/test/congestion2_snapshot_batched.guideok delete mode 100644 src/grt/test/congestion2_snapshot_batched.ok delete mode 100644 src/grt/test/congestion2_snapshot_batched.tcl delete mode 100644 src/grt/test/congestion7_snapshot_batched-20.rptok delete mode 100644 src/grt/test/congestion7_snapshot_batched.guideok delete mode 100644 src/grt/test/congestion7_snapshot_batched.ok delete mode 100644 src/grt/test/congestion7_snapshot_batched.rptok delete mode 100644 src/grt/test/congestion7_snapshot_batched.tcl create mode 100644 src/grt/test/shuffle_stress.def diff --git a/src/grt/README.md b/src/grt/README.md index 3b0c9ea5a58..a8cac0002f3 100644 --- a/src/grt/README.md +++ b/src/grt/README.md @@ -47,7 +47,7 @@ global_route | `-critical_nets_percentage` | Set the percentage of nets with the worst slack value that are considered timing critical, having preference over other nets during congestion iterations (e.g. `-critical_nets_percentage 30`). The default value is `0`, and the allowed values are integers `[0, MAX_INT]`. | | `-skip_large_fanout_nets` | Skips routing for nets with a fanout higher than the specified limit. Nets above this pin count threshold are ignored by the global router and will not have routing guides, meaning they will also be skipped during detailed routing. This option is useful in debugging or estimation flows where high-fanout nets (such as pre-CTS clock nets) can be ignored. The default value is 0, indicating no fanout limit. The default value is `MAX_INT`. The allowed values are integers `[0, MAX_INT]`. | | `-allow_congestion` | Allow global routing results to be generated with remaining congestion. The default is false. | -| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing. The default is `0`. Use `0` for non-batched behavior. Execution width still follows `set_thread_count`. | +| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing. The default is `16`. Use `0` for non-batched behavior. Execution width still follows `set_thread_count`. | | `-verbose` | This flag enables the full reporting of the global routing. | | `-start_incremental` | This flag initializes the GRT listener to get the net modified. The default is false. | | `-end_incremental` | This flag run incremental GRT with the nets modified. The default is false. | diff --git a/src/grt/include/grt/GlobalRouter.h b/src/grt/include/grt/GlobalRouter.h index 21aa3c316b5..2455f248f4e 100644 --- a/src/grt/include/grt/GlobalRouter.h +++ b/src/grt/include/grt/GlobalRouter.h @@ -155,6 +155,7 @@ class GlobalRouter void setResistanceAware(bool resistance_aware); void setSnapshotBatchedWidth(int snapshot_batched_width); int getSnapshotBatchedWidth() const; + int getSnapshotBatchCount() const; void setMacroExtension(int macro_extension); void setUseCUGR(bool use_cugr) { use_cugr_ = use_cugr; }; void setSkipLargeFanoutNets(int skip_large_fanout) @@ -526,7 +527,7 @@ class GlobalRouter int congestion_report_iter_step_; bool allow_congestion_; bool resistance_aware_{false}; - int snapshot_batched_width_{0}; + int snapshot_batched_width_{16}; int num_threads_; std::vector vertical_capacities_; std::vector horizontal_capacities_; diff --git a/src/grt/src/GlobalRouter.cpp b/src/grt/src/GlobalRouter.cpp index 82c543d92c7..0e06e0ac6bd 100644 --- a/src/grt/src/GlobalRouter.cpp +++ b/src/grt/src/GlobalRouter.cpp @@ -127,6 +127,11 @@ int GlobalRouter::getSnapshotBatchedWidth() const return fastroute_->getSnapshotBatchedWidth(); } +int GlobalRouter::getSnapshotBatchCount() const +{ + return fastroute_->getSnapshotBatchCount(); +} + void GlobalRouter::initGui(std::unique_ptr routing_congestion_data_source, std::unique_ptr diff --git a/src/grt/src/GlobalRouter.i b/src/grt/src/GlobalRouter.i index f16cfe02ed4..80210bf6196 100644 --- a/src/grt/src/GlobalRouter.i +++ b/src/grt/src/GlobalRouter.i @@ -122,6 +122,12 @@ get_snapshot_batched_width() return getGlobalRouter()->getSnapshotBatchedWidth(); } +int +get_snapshot_batch_count() +{ + return getGlobalRouter()->getSnapshotBatchCount(); +} + void set_critical_nets_percentage(float criticalNetsPercentage) { diff --git a/src/grt/src/GlobalRouter.tcl b/src/grt/src/GlobalRouter.tcl index 38d6732f56d..915fb09bcc0 100644 --- a/src/grt/src/GlobalRouter.tcl +++ b/src/grt/src/GlobalRouter.tcl @@ -235,7 +235,7 @@ proc global_route { args } { sta::check_positive_integer "-snapshot_batched_width" \ $snapshot_batched_width } else { - set snapshot_batched_width 0 + set snapshot_batched_width 16 } grt::set_snapshot_batched_width $snapshot_batched_width diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 0eb5bcc79d5..3dac026cca1 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -165,6 +165,7 @@ class FastRouteCore NetRouteMap run(); int totalOverflow() const { return total_overflow_; } bool has2Doverflow() const { return has_2D_overflow_; } + int getSnapshotBatchCount() const { return snapshot_batch_count_; } void getBlockage(odb::dbTechLayer* layer, int x, int y, @@ -779,6 +780,7 @@ class FastRouteCore int snapshot_batch_count_ = 0; int snapshot_batch_net_count_ = 0; int snapshot_batch_wave_count_ = 0; + bool snapshot_batch_disabled_for_run_ = false; int detour_penalty_; }; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index eb46bf08b5d..716831d3899 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -33,6 +33,9 @@ namespace { // benchmarked best, while letting execution width follow the user-requested // thread count. constexpr int kSnapshotSemanticWidth = 16; +constexpr int kSnapshotLowOverflowForSerialCleanup = 1500; +constexpr int kSnapshotLowMaxOverflowForSerialCleanup = 32; +constexpr int kSnapshotOverflowContinuationThreshold = 5000; } @@ -47,7 +50,7 @@ FastRouteCore::FastRouteCore(odb::dbDatabase* db, congestion_report_iter_step_(0), num_threads_(1), owns_nets_(true), - snapshot_batched_width_(0), + snapshot_batched_width_(16), x_range_(0), y_range_(0), num_adjust_(0), @@ -151,6 +154,7 @@ void FastRouteCore::clear() snapshot_batch_count_ = 0; snapshot_batch_net_count_ = 0; snapshot_batch_wave_count_ = 0; + snapshot_batch_disabled_for_run_ = false; } void FastRouteCore::clearNets() @@ -934,7 +938,8 @@ int FastRouteCore::resolveSnapshotBaseBatchSize(const int net_count) const bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const { - return snapshot_batched_width_ > 0 && !debug_->isOn() + return snapshot_batched_width_ > 0 && !snapshot_batch_disabled_for_run_ + && !debug_->isOn() && net_count > resolveSnapshotBaseBatchSize(net_count) && !hasNonSoftNdrNets(); } @@ -1592,6 +1597,7 @@ NetRouteMap FastRouteCore::run() snapshot_batch_count_ = 0; snapshot_batch_net_count_ = 0; snapshot_batch_wave_count_ = 0; + snapshot_batch_disabled_for_run_ = false; double total_run_time = 0.0; double initial_rsmt_time = 0.0; @@ -1775,6 +1781,13 @@ NetRouteMap FastRouteCore::run() logger_->info(GRT, 101, "Running extra iterations to remove overflow."); } + if (useSnapshotBatchRouting(net_ids_.size()) + && ((total_overflow_ < kSnapshotLowOverflowForSerialCleanup + && maxOverflow < kSnapshotLowMaxOverflowForSerialCleanup) + || total_overflow_ < net_ids_.size())) { + snapshot_batch_disabled_for_run_ = true; + } + // debug mode Rectilinear Steiner Tree before overflow iterations if (debug_->isOn() && debug_->rectilinearSTree) { for (const int& netID : net_ids_) { diff --git a/src/grt/test/BUILD b/src/grt/test/BUILD index 4d80d0a8cb6..b23d93a3f75 100644 --- a/src/grt/test/BUILD +++ b/src/grt/test/BUILD @@ -11,15 +11,12 @@ TESTS = [ "clock_route_error1", "clock_route_error2", "congestion1", - "congestion1_snapshot_batched", "congestion2", - "congestion2_snapshot_batched", "congestion3", "congestion4", "congestion5", "congestion6", "congestion7", - "congestion7_snapshot_batched", "critical_nets_percentage", "critical_nets_percentage_cugr", "cugr_adjustment1", diff --git a/src/grt/test/CMakeLists.txt b/src/grt/test/CMakeLists.txt index cf9b94f568e..7af575cb189 100644 --- a/src/grt/test/CMakeLists.txt +++ b/src/grt/test/CMakeLists.txt @@ -9,15 +9,12 @@ or_integration_tests( clock_route_error1 clock_route_error2 congestion1 - congestion1_snapshot_batched congestion2 - congestion2_snapshot_batched congestion3 congestion4 congestion5 congestion6 congestion7 - congestion7_snapshot_batched critical_nets_percentage critical_nets_percentage_cugr cugr_adjustment1 diff --git a/src/grt/test/congestion1_snapshot_batched.guideok b/src/grt/test/congestion1_snapshot_batched.guideok deleted file mode 100644 index 51f9b0ff5de..00000000000 --- a/src/grt/test/congestion1_snapshot_batched.guideok +++ /dev/null @@ -1,5971 +0,0 @@ -_000_ -( -51300 102600 57000 108300 metal1 -51300 102600 57000 114000 metal2 -51300 108300 57000 114000 metal2 -51300 108300 62700 114000 metal3 -57000 108300 62700 114000 metal2 -57000 108300 62700 114000 metal1 -) -_001_ -( -51300 114000 57000 119700 metal1 -51300 114000 57000 125400 metal2 -51300 119700 57000 125400 metal2 -51300 119700 62700 125400 metal3 -57000 119700 62700 125400 metal2 -57000 119700 62700 125400 metal1 -) -_002_ -( -74100 114000 79800 119700 metal1 -74100 108300 79800 119700 metal2 -74100 108300 79800 114000 metal1 -) -_003_ -( -57000 114000 62700 119700 metal1 -57000 114000 62700 125400 metal2 -57000 119700 62700 125400 metal1 -) -_004_ -( -74100 108300 79800 114000 metal1 -74100 108300 79800 119700 metal2 -74100 114000 79800 119700 metal1 -) -_005_ -( -57000 102600 62700 108300 metal1 -57000 102600 62700 108300 metal2 -57000 102600 68400 108300 metal3 -62700 102600 68400 108300 metal2 -62700 102600 68400 108300 metal1 -) -_006_ -( -136800 131100 142500 136800 metal1 -136800 125400 142500 136800 metal2 -136800 125400 142500 131100 metal1 -) -_007_ -( -85500 119700 91200 125400 metal1 -85500 119700 91200 131100 metal2 -85500 125400 91200 131100 metal2 -85500 125400 96900 131100 metal3 -91200 125400 96900 131100 metal2 -91200 125400 96900 131100 metal1 -) -_008_ -( -102600 136800 108300 142500 metal1 -102600 136800 108300 148200 metal2 -102600 142500 108300 148200 metal2 -102600 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_009_ -( -119700 136800 125400 142500 metal1 -119700 131100 125400 142500 metal2 -119700 131100 125400 136800 metal2 -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 131100 131100 136800 metal1 -) -_010_ -( -148200 79800 153900 85500 metal1 -148200 79800 153900 85500 metal2 -148200 79800 159600 85500 metal3 -153900 79800 159600 85500 metal2 -153900 79800 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_011_ -( -153900 108300 159600 114000 metal1 -153900 108300 159600 114000 metal2 -153900 108300 165300 114000 metal3 -159600 108300 165300 114000 metal2 -159600 102600 165300 114000 metal2 -159600 102600 165300 108300 metal1 -) -_012_ -( -125400 85500 131100 91200 metal1 -125400 79800 131100 91200 metal2 -125400 79800 131100 85500 metal1 -) -_013_ -( -131100 114000 136800 119700 metal1 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal1 -) -_014_ -( -62700 96900 68400 102600 metal1 -62700 96900 68400 102600 metal2 -62700 96900 74100 102600 metal3 -68400 96900 74100 102600 metal2 -68400 96900 74100 102600 metal1 -) -_015_ -( -51300 85500 57000 91200 metal1 -51300 85500 57000 91200 metal2 -51300 85500 62700 91200 metal3 -57000 85500 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_016_ -( -68400 62700 74100 68400 metal1 -68400 57000 74100 68400 metal2 -68400 57000 74100 62700 metal2 -68400 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 -74100 57000 79800 62700 metal1 -) -_017_ -( -114000 68400 119700 74100 metal1 -114000 68400 119700 79800 metal2 -114000 74100 119700 79800 metal1 -) -_018_ -( -114000 51300 119700 57000 metal1 -114000 51300 119700 57000 metal2 -) -_019_ -( -96900 34200 102600 39900 metal1 -96900 34200 102600 39900 metal2 -96900 34200 108300 39900 metal3 -102600 34200 108300 39900 metal2 -102600 28500 108300 39900 metal2 -102600 28500 108300 34200 metal1 -) -_020_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 57000 metal2 -68400 51300 74100 57000 metal2 -68400 51300 79800 57000 metal3 -74100 51300 79800 57000 metal2 -74100 51300 79800 57000 metal1 -) -_021_ -( -108300 74100 114000 79800 metal1 -108300 74100 114000 85500 metal2 -108300 79800 114000 85500 metal1 -) -_022_ -( -148200 125400 153900 131100 metal1 -148200 125400 153900 136800 metal2 -148200 131100 153900 136800 metal1 -) -_023_ -( -57000 62700 62700 68400 metal1 -57000 62700 62700 68400 metal2 -) -_024_ -( -119700 68400 125400 74100 metal1 -119700 62700 125400 74100 metal2 -119700 62700 125400 68400 metal1 -) -_025_ -( -114000 39900 119700 45600 metal1 -114000 39900 119700 51300 metal2 -114000 45600 119700 51300 metal1 -) -_026_ -( -85500 34200 91200 39900 metal1 -85500 28500 91200 39900 metal2 -85500 28500 91200 34200 metal1 -) -_027_ -( -68400 39900 74100 45600 metal1 -68400 34200 74100 45600 metal2 -68400 34200 74100 39900 metal2 -68400 34200 79800 39900 metal3 -74100 34200 79800 39900 metal2 -74100 34200 79800 39900 metal1 -) -_028_ -( -102600 85500 108300 91200 metal1 -102600 85500 108300 91200 metal2 -102600 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -) -_029_ -( -85500 131100 91200 136800 metal1 -85500 131100 91200 136800 metal2 -) -_030_ -( -96900 142500 102600 148200 metal1 -96900 142500 102600 153900 metal2 -96900 148200 102600 153900 metal1 -) -_031_ -( -125400 142500 131100 148200 metal1 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 136800 136800 148200 metal2 -131100 136800 136800 142500 metal1 -) -_032_ -( -148200 74100 153900 79800 metal1 -148200 74100 153900 79800 metal2 -) -_033_ -( -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -) -_034_ -( -131100 68400 136800 74100 metal1 -131100 68400 136800 74100 metal2 -) -_035_ -( -131100 119700 136800 125400 metal1 -131100 119700 136800 125400 metal2 -) -_036_ -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -) -_037_ -( -51300 74100 57000 79800 metal1 -51300 68400 57000 79800 metal2 -51300 68400 57000 74100 metal2 -51300 68400 62700 74100 metal3 -57000 68400 62700 74100 metal2 -57000 68400 62700 74100 metal1 -) -_038_ -( -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -) -_039_ -( -68400 57000 74100 62700 metal1 -68400 57000 74100 62700 metal2 -68400 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 -74100 57000 79800 68400 metal2 -74100 62700 79800 68400 metal1 -) -_040_ -( -108300 68400 114000 74100 metal1 -108300 68400 114000 74100 metal2 -) -_041_ -( -114000 57000 119700 62700 metal1 -114000 51300 119700 62700 metal2 -114000 51300 119700 57000 metal1 -) -_042_ -( -96900 28500 102600 34200 metal1 -96900 28500 102600 34200 metal2 -96900 28500 114000 34200 metal3 -108300 28500 114000 34200 metal2 -108300 28500 114000 39900 metal2 -108300 34200 114000 39900 metal1 -) -_043_ -( -68400 51300 74100 57000 metal1 -68400 45600 74100 57000 metal2 -68400 45600 74100 51300 metal2 -68400 45600 79800 51300 metal3 -74100 45600 79800 51300 metal2 -74100 45600 79800 51300 metal1 -) -_044_ -( -102600 79800 108300 85500 metal1 -102600 74100 108300 85500 metal2 -102600 74100 108300 79800 metal1 -) -_045_ -( -85500 119700 91200 125400 metal1 -85500 119700 91200 125400 metal2 -) -_046_ -( -102600 142500 108300 148200 metal1 -102600 142500 108300 148200 metal2 -102600 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_047_ -( -119700 142500 125400 148200 metal1 -119700 136800 125400 148200 metal2 -119700 136800 125400 142500 metal1 -) -_048_ -( -148200 85500 153900 91200 metal1 -148200 85500 153900 91200 metal2 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_049_ -( -153900 102600 159600 108300 metal1 -153900 102600 159600 108300 metal2 -) -_050_ -( -119700 79800 125400 85500 metal1 -119700 79800 125400 91200 metal2 -119700 85500 125400 91200 metal2 -119700 85500 131100 91200 metal3 -125400 85500 131100 91200 metal2 -125400 85500 131100 91200 metal1 -) -_051_ -( -131100 114000 136800 119700 metal1 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 108300 142500 119700 metal2 -136800 108300 142500 114000 metal1 -) -_052_ -( -62700 96900 68400 102600 metal1 -62700 96900 68400 102600 metal2 -) -_053_ -( -51300 79800 57000 85500 metal1 -51300 79800 57000 91200 metal2 -51300 85500 57000 91200 metal1 -) -_054_ -( -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -) -_055_ -( -57000 119700 62700 125400 metal1 -57000 114000 62700 125400 metal2 -57000 114000 62700 119700 metal2 -57000 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_056_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -) -_057_ -( -57000 119700 62700 125400 metal1 -57000 119700 62700 125400 metal2 -57000 119700 68400 125400 metal3 -62700 119700 68400 125400 metal2 -62700 119700 68400 125400 metal1 -62700 114000 68400 125400 metal2 -62700 114000 68400 119700 metal1 -) -_058_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -74100 114000 85500 119700 metal3 -79800 114000 85500 119700 metal2 -79800 114000 85500 119700 metal1 -) -_059_ -( -62700 102600 68400 114000 metal2 -62700 108300 68400 114000 metal1 -62700 102600 68400 108300 metal1 -62700 102600 68400 108300 metal2 -62700 102600 74100 108300 metal3 -68400 102600 74100 108300 metal2 -68400 102600 74100 108300 metal1 -68400 102600 74100 114000 metal2 -68400 108300 74100 114000 metal1 -79800 102600 85500 108300 metal2 -79800 102600 91200 108300 metal3 -85500 102600 91200 108300 metal2 -85500 102600 91200 108300 metal1 -79800 96900 85500 108300 metal2 -79800 96900 85500 102600 metal1 -68400 102600 85500 108300 metal3 -) -_060_ -( -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_061_ -( -91200 125400 96900 131100 metal1 -91200 125400 96900 131100 metal2 -91200 125400 102600 131100 metal3 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal1 -) -_062_ -( -96900 136800 102600 142500 metal1 -96900 136800 102600 142500 metal2 -96900 136800 108300 142500 metal3 -102600 136800 108300 142500 metal2 -102600 136800 108300 142500 metal1 -) -_063_ -( -125400 131100 131100 136800 metal1 -125400 131100 131100 136800 metal2 -) -_064_ -( -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 153900 85500 metal3 -148200 79800 153900 85500 metal2 -148200 79800 153900 85500 metal1 -) -_065_ -( -142500 108300 148200 114000 metal1 -142500 108300 148200 114000 metal2 -142500 108300 159600 114000 metal3 -153900 108300 159600 114000 metal2 -153900 108300 159600 114000 metal1 -) -_066_ -( -125400 79800 131100 85500 metal1 -125400 79800 131100 85500 metal2 -125400 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -) -_067_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -131100 114000 136800 119700 metal1 -) -_068_ -( -68400 96900 74100 102600 metal1 -68400 91200 74100 102600 metal2 -68400 91200 74100 96900 metal1 -) -_069_ -( -57000 85500 62700 91200 metal1 -57000 85500 62700 91200 metal2 -57000 85500 68400 91200 metal3 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal1 -) -_070_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 62700 metal2 -62700 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 68400 metal2 -68400 62700 74100 68400 metal1 -) -_071_ -( -114000 74100 119700 79800 metal1 -114000 74100 119700 85500 metal2 -114000 79800 119700 85500 metal1 -) -_072_ -( -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 119700 45600 metal3 -114000 39900 119700 45600 metal2 -114000 39900 119700 57000 metal2 -114000 51300 119700 57000 metal1 -) -_073_ -( -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 102600 45600 metal3 -96900 39900 102600 45600 metal2 -96900 34200 102600 45600 metal2 -96900 34200 102600 39900 metal1 -) -_074_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -) -_075_ -( -108300 79800 114000 85500 metal1 -108300 79800 114000 91200 metal2 -108300 85500 114000 91200 metal1 -) -_076_ -( -142500 125400 148200 131100 metal1 -142500 125400 148200 131100 metal2 -142500 125400 153900 131100 metal3 -148200 125400 153900 131100 metal2 -148200 125400 153900 131100 metal1 -) -_077_ -( -57000 62700 62700 68400 metal1 -57000 62700 62700 68400 metal2 -57000 62700 68400 68400 metal3 -62700 62700 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_078_ -( -119700 68400 125400 74100 metal1 -119700 68400 125400 74100 metal2 -) -_079_ -( -108300 45600 114000 51300 metal1 -108300 45600 114000 51300 metal2 -108300 45600 119700 51300 metal3 -114000 45600 119700 51300 metal2 -114000 39900 119700 51300 metal2 -114000 39900 119700 45600 metal1 -) -_080_ -( -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -) -_081_ -( -68400 39900 74100 45600 metal1 -68400 39900 74100 45600 metal2 -) -_082_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_083_ -( -85500 131100 91200 136800 metal1 -85500 131100 91200 136800 metal2 -85500 131100 102600 136800 metal3 -96900 131100 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_084_ -( -96900 142500 102600 148200 metal1 -96900 142500 102600 148200 metal2 -96900 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 136800 108300 148200 metal2 -102600 136800 108300 142500 metal1 -) -_085_ -( -125400 136800 131100 142500 metal1 -125400 136800 131100 142500 metal2 -125400 136800 136800 142500 metal3 -131100 136800 136800 142500 metal2 -131100 136800 136800 142500 metal1 -) -_086_ -( -148200 74100 153900 79800 metal1 -148200 74100 153900 79800 metal2 -) -_087_ -( -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -) -_088_ -( -131100 74100 136800 79800 metal1 -131100 68400 136800 79800 metal2 -131100 68400 136800 74100 metal1 -) -_089_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -131100 114000 136800 125400 metal2 -131100 119700 136800 125400 metal1 -) -_090_ -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -51300 91200 68400 96900 metal3 -62700 91200 68400 96900 metal2 -62700 91200 68400 96900 metal1 -) -_091_ -( -57000 68400 62700 74100 metal1 -57000 68400 62700 74100 metal2 -57000 68400 68400 74100 metal3 -62700 68400 68400 74100 metal2 -62700 68400 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -_092_ -( -131100 131100 136800 136800 metal1 -131100 131100 136800 136800 metal2 -131100 131100 148200 136800 metal3 -142500 131100 148200 136800 metal2 -142500 131100 148200 142500 metal2 -142500 136800 148200 142500 metal1 -) -_093_ -( -74100 62700 79800 68400 metal1 -74100 62700 79800 68400 metal2 -74100 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -) -_094_ -( -108300 68400 114000 74100 metal1 -108300 68400 114000 74100 metal2 -) -_095_ -( -114000 57000 119700 62700 metal1 -114000 57000 119700 62700 metal2 -) -_096_ -( -108300 39900 114000 45600 metal1 -108300 34200 114000 45600 metal2 -108300 34200 114000 39900 metal1 -) -_097_ -( -74100 45600 79800 51300 metal1 -74100 45600 79800 51300 metal2 -74100 45600 85500 51300 metal3 -79800 45600 85500 51300 metal2 -79800 45600 85500 51300 metal1 -) -_098_ -( -102600 74100 108300 79800 metal1 -102600 74100 108300 85500 metal2 -102600 79800 108300 85500 metal1 -) -_099_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 125400 metal2 -85500 119700 91200 125400 metal1 -) -_100_ -( -108300 142500 114000 148200 metal1 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -) -_101_ -( -119700 136800 125400 142500 metal1 -119700 136800 125400 148200 metal2 -119700 142500 125400 148200 metal1 -) -_102_ -( -153900 91200 159600 96900 metal1 -153900 85500 159600 96900 metal2 -153900 85500 159600 91200 metal1 -) -_103_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 108300 metal2 -153900 102600 159600 108300 metal1 -) -_104_ -( -119700 85500 125400 91200 metal1 -119700 79800 125400 91200 metal2 -119700 79800 125400 85500 metal1 -) -_105_ -( -136800 108300 142500 114000 metal1 -136800 108300 142500 114000 metal2 -136800 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 119700 metal2 -142500 114000 148200 119700 metal1 -) -_106_ -( -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 68400 102600 metal3 -62700 96900 68400 102600 metal2 -62700 96900 68400 102600 metal1 -) -_107_ -( -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 62700 85500 metal3 -57000 79800 62700 85500 metal2 -57000 79800 62700 85500 metal1 -) -_108_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -) -_109_ -( -79800 108300 85500 114000 metal1 -79800 102600 85500 114000 metal2 -79800 102600 85500 108300 metal1 -79800 102600 85500 108300 metal2 -79800 102600 91200 108300 metal3 -85500 102600 91200 108300 metal2 -85500 102600 91200 108300 metal1 -85500 96900 91200 108300 metal2 -85500 96900 91200 102600 metal1 -) -_110_ -( -102600 125400 108300 136800 metal2 -102600 131100 108300 136800 metal1 -102600 125400 108300 131100 metal1 -102600 125400 108300 131100 metal2 -102600 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -148200 131100 153900 136800 metal1 -148200 125400 153900 136800 metal2 -148200 125400 153900 131100 metal2 -142500 125400 153900 131100 metal3 -148200 131100 153900 142500 metal2 -148200 136800 153900 142500 metal1 -) -_111_ -( -74100 68400 79800 74100 metal1 -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal1 -79800 62700 85500 68400 metal1 -79800 62700 85500 74100 metal2 -62700 62700 68400 68400 metal1 -62700 62700 68400 74100 metal2 -62700 68400 68400 74100 metal2 -62700 68400 79800 74100 metal3 -) -_112_ -( -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 62700 108300 74100 metal2 -114000 62700 119700 74100 metal2 -114000 68400 119700 74100 metal1 -102600 62700 108300 68400 metal1 -102600 62700 108300 68400 metal2 -102600 62700 119700 68400 metal3 -114000 62700 119700 68400 metal2 -114000 62700 125400 68400 metal3 -119700 62700 125400 68400 metal2 -119700 62700 125400 68400 metal1 -) -_113_ -( -108300 45600 114000 57000 metal2 -108300 51300 114000 57000 metal1 -102600 57000 108300 62700 metal1 -102600 57000 108300 62700 metal2 -102600 57000 114000 62700 metal3 -108300 57000 114000 62700 metal2 -108300 45600 114000 51300 metal1 -108300 45600 114000 51300 metal2 -108300 45600 119700 51300 metal3 -114000 45600 119700 51300 metal2 -114000 45600 119700 51300 metal1 -108300 57000 114000 68400 metal2 -108300 62700 114000 68400 metal1 -108300 51300 114000 62700 metal2 -) -_114_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 108300 39900 metal3 -102600 34200 108300 39900 metal2 -102600 39900 108300 45600 metal1 -102600 34200 108300 45600 metal2 -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 96900 39900 metal3 -102600 51300 108300 57000 metal1 -102600 39900 108300 57000 metal2 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -102600 34200 114000 39900 metal3 -108300 34200 114000 39900 metal2 -108300 34200 114000 39900 metal1 -) -_115_ -( -79800 39900 85500 57000 metal2 -79800 51300 85500 57000 metal1 -79800 51300 85500 62700 metal2 -79800 57000 85500 62700 metal1 -68400 39900 74100 45600 metal1 -68400 39900 74100 45600 metal2 -68400 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -) -_116_ -( -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -91200 68400 96900 91200 metal2 -91200 68400 96900 74100 metal1 -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -) -_117_ -( -91200 114000 96900 119700 metal1 -91200 114000 96900 119700 metal2 -91200 114000 102600 119700 metal3 -96900 114000 102600 119700 metal2 -96900 114000 102600 119700 metal1 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -91200 125400 96900 131100 metal1 -91200 114000 96900 131100 metal2 -91200 125400 96900 136800 metal2 -91200 131100 96900 136800 metal1 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 96900 119700 metal3 -) -_118_ -( -108300 131100 114000 148200 metal2 -114000 125400 119700 131100 metal1 -114000 119700 119700 131100 metal2 -114000 119700 119700 125400 metal1 -96900 136800 102600 142500 metal1 -96900 136800 102600 148200 metal2 -96900 142500 102600 148200 metal2 -96900 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal1 -108300 131100 114000 136800 metal1 -108300 131100 114000 136800 metal2 -108300 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 125400 119700 136800 metal2 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -102600 142500 114000 148200 metal3 -) -_119_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 136800 metal2 -119700 131100 125400 136800 metal2 -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 131100 131100 142500 metal2 -125400 136800 131100 142500 metal1 -119700 114000 125400 125400 metal2 -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 125400 119700 metal3 -119700 114000 125400 119700 metal2 -119700 114000 125400 119700 metal1 -125400 136800 131100 148200 metal2 -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 125400 125400 metal3 -119700 119700 125400 125400 metal2 -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 131100 148200 metal3 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal1 -119700 119700 125400 131100 metal2 -) -_120_ -( -142500 85500 148200 91200 metal1 -142500 85500 148200 91200 metal2 -142500 85500 153900 91200 metal3 -148200 85500 153900 91200 metal2 -148200 85500 153900 96900 metal2 -148200 91200 153900 96900 metal1 -148200 91200 153900 96900 metal2 -148200 91200 159600 96900 metal3 -153900 91200 159600 96900 metal2 -153900 91200 159600 96900 metal1 -142500 79800 148200 91200 metal2 -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 159600 85500 metal3 -153900 79800 159600 85500 metal2 -153900 79800 159600 85500 metal1 -) -_121_ -( -153900 102600 159600 119700 metal2 -148200 102600 153900 108300 metal1 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -142500 102600 148200 108300 metal1 -142500 102600 148200 108300 metal2 -142500 102600 153900 108300 metal3 -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -148200 114000 159600 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal1 -153900 96900 159600 102600 metal1 -153900 96900 159600 108300 metal2 -) -_122_ -( -125400 74100 131100 96900 metal2 -114000 91200 119700 96900 metal1 -114000 91200 119700 96900 metal2 -114000 91200 131100 96900 metal3 -125400 91200 131100 96900 metal2 -114000 85500 119700 96900 metal2 -114000 85500 119700 91200 metal1 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -125400 91200 136800 96900 metal3 -131100 91200 136800 96900 metal2 -131100 91200 136800 96900 metal1 -) -_123_ -( -131100 102600 136800 119700 metal2 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 125400 metal2 -136800 119700 142500 125400 metal1 -125400 102600 131100 108300 metal1 -125400 102600 131100 108300 metal2 -125400 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -) -_124_ -( -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -62700 85500 68400 96900 metal2 -62700 85500 68400 91200 metal1 -57000 91200 62700 96900 metal1 -57000 91200 62700 96900 metal2 -57000 91200 68400 96900 metal3 -51300 96900 57000 102600 metal1 -51300 91200 57000 102600 metal2 -51300 91200 57000 96900 metal2 -51300 91200 62700 96900 metal3 -) -_125_ -( -57000 74100 62700 85500 metal2 -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 62700 85500 metal3 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -57000 74100 62700 79800 metal1 -57000 74100 62700 79800 metal2 -57000 74100 68400 79800 metal3 -62700 74100 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -_126_ -( -102600 131100 108300 136800 metal1 -102600 131100 108300 136800 metal2 -102600 131100 142500 136800 metal3 -136800 131100 142500 136800 metal2 -136800 131100 142500 136800 metal1 -102600 119700 108300 125400 metal1 -102600 119700 108300 125400 metal2 -102600 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal1 -102600 119700 108300 136800 metal2 -136800 131100 142500 142500 metal2 -136800 136800 142500 142500 metal1 -) -_127_ -( -74100 62700 79800 68400 metal1 -74100 62700 79800 68400 metal2 -74100 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -74100 68400 79800 74100 metal2 -74100 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -74100 74100 79800 79800 metal1 -74100 68400 79800 79800 metal2 -74100 62700 79800 74100 metal2 -) -_128_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 79800 metal2 -74100 74100 91200 79800 metal3 -85500 74100 91200 79800 metal2 -96900 62700 102600 68400 metal1 -96900 62700 102600 68400 metal2 -96900 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 74100 metal2 -102600 68400 108300 74100 metal1 -91200 74100 96900 79800 metal1 -91200 74100 96900 79800 metal2 -91200 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -85500 68400 91200 79800 metal2 -85500 68400 91200 74100 metal1 -102600 68400 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -108300 74100 114000 79800 metal1 -85500 74100 96900 79800 metal3 -) -_129_ -( -91200 62700 96900 68400 metal1 -91200 57000 96900 68400 metal2 -91200 57000 96900 62700 metal2 -91200 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -108300 51300 114000 62700 metal2 -108300 51300 114000 57000 metal1 -102600 57000 108300 62700 metal1 -102600 57000 108300 62700 metal2 -102600 57000 114000 62700 metal3 -108300 57000 114000 62700 metal2 -108300 57000 114000 62700 metal1 -96900 51300 102600 62700 metal2 -96900 51300 102600 57000 metal1 -108300 57000 119700 62700 metal3 -114000 57000 119700 62700 metal2 -114000 57000 119700 62700 metal1 -96900 57000 108300 62700 metal3 -) -_130_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 57000 108300 68400 metal2 -102600 57000 108300 62700 metal1 -102600 34200 108300 39900 metal1 -102600 34200 108300 45600 metal2 -102600 39900 108300 45600 metal1 -102600 39900 108300 62700 metal2 -) -_131_ -( -85500 57000 91200 62700 metal1 -85500 57000 91200 68400 metal2 -85500 62700 91200 68400 metal2 -85500 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal1 -74100 51300 79800 57000 metal1 -74100 51300 79800 57000 metal2 -74100 51300 85500 57000 metal3 -79800 51300 85500 57000 metal2 -79800 51300 85500 57000 metal1 -79800 51300 91200 57000 metal3 -85500 51300 91200 57000 metal2 -85500 51300 91200 62700 metal2 -74100 45600 79800 57000 metal2 -74100 45600 79800 51300 metal1 -) -_132_ -( -96900 62700 102600 74100 metal2 -96900 62700 102600 68400 metal1 -96900 79800 102600 85500 metal1 -96900 79800 102600 91200 metal2 -96900 85500 102600 91200 metal1 -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 74100 102600 85500 metal2 -96900 74100 102600 79800 metal2 -96900 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -102600 74100 108300 79800 metal1 -96900 68400 102600 79800 metal2 -) -_133_ -( -91200 119700 96900 125400 metal1 -91200 119700 96900 125400 metal2 -91200 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -91200 108300 96900 119700 metal2 -91200 108300 96900 114000 metal1 -91200 114000 96900 125400 metal2 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 96900 119700 metal3 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal1 -) -_134_ -( -108300 136800 114000 142500 metal1 -108300 131100 114000 142500 metal2 -108300 131100 114000 136800 metal1 -108300 136800 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_135_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 131100 metal2 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -119700 131100 125400 136800 metal1 -119700 125400 125400 136800 metal2 -119700 131100 125400 142500 metal2 -119700 136800 125400 142500 metal1 -) -_136_ -( -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 96900 148200 108300 metal2 -142500 85500 148200 91200 metal1 -142500 85500 148200 91200 metal2 -142500 85500 153900 91200 metal3 -148200 85500 153900 91200 metal2 -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 91200 153900 102600 metal2 -148200 91200 153900 96900 metal1 -148200 85500 153900 96900 metal2 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_137_ -( -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 108300 metal1 -148200 102600 153900 108300 metal1 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -142500 102600 153900 108300 metal3 -142500 96900 148200 108300 metal2 -142500 96900 148200 102600 metal1 -153900 96900 159600 108300 metal2 -153900 96900 159600 102600 metal1 -153900 108300 159600 114000 metal1 -153900 102600 159600 114000 metal2 -) -_138_ -( -131100 85500 136800 91200 metal1 -131100 85500 136800 91200 metal2 -131100 85500 142500 91200 metal3 -136800 85500 142500 91200 metal2 -136800 85500 142500 108300 metal2 -136800 102600 142500 108300 metal1 -119700 91200 125400 96900 metal1 -119700 91200 125400 102600 metal2 -119700 96900 125400 102600 metal1 -119700 85500 125400 96900 metal2 -119700 85500 125400 91200 metal1 -119700 85500 125400 91200 metal2 -119700 85500 136800 91200 metal3 -) -_139_ -( -136800 102600 142500 114000 metal2 -136800 108300 142500 119700 metal2 -136800 114000 142500 119700 metal1 -136800 108300 142500 114000 metal2 -136800 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -131100 108300 136800 114000 metal1 -131100 108300 136800 114000 metal2 -131100 108300 142500 114000 metal3 -131100 102600 136800 108300 metal1 -131100 102600 136800 108300 metal2 -131100 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 102600 142500 108300 metal1 -) -_140_ -( -68400 85500 74100 91200 metal1 -68400 74100 74100 91200 metal2 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -68400 91200 74100 102600 metal2 -68400 91200 74100 96900 metal1 -68400 85500 74100 96900 metal2 -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 74100 102600 metal3 -68400 96900 74100 102600 metal2 -68400 96900 74100 102600 metal1 -) -_141_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -57000 79800 62700 85500 metal1 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -62700 79800 74100 85500 metal3 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal1 -68400 74100 74100 85500 metal2 -57000 79800 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_142_ -( -62700 108300 68400 114000 metal1 -62700 102600 68400 114000 metal2 -62700 85500 68400 108300 metal2 -62700 85500 68400 91200 metal1 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -79800 102600 91200 108300 metal3 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal1 -62700 51300 68400 91200 metal2 -62700 51300 68400 57000 metal1 -62700 51300 68400 57000 metal2 -62700 51300 85500 57000 metal3 -79800 51300 85500 57000 metal2 -79800 39900 85500 57000 metal2 -79800 39900 85500 45600 metal1 -79800 39900 85500 45600 metal2 -79800 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -62700 102600 68400 108300 metal2 -62700 102600 85500 108300 metal3 -79800 91200 85500 108300 metal2 -79800 91200 85500 96900 metal1 -) -_143_ -( -114000 114000 119700 119700 metal1 -114000 108300 119700 119700 metal2 -114000 108300 119700 114000 metal2 -114000 108300 142500 114000 metal3 -136800 108300 142500 114000 metal2 -136800 102600 142500 114000 metal2 -136800 102600 142500 108300 metal1 -) -_144_ -( -119700 114000 125400 125400 metal2 -119700 119700 125400 125400 metal2 -119700 119700 131100 125400 metal3 -125400 119700 131100 125400 metal2 -125400 119700 131100 131100 metal2 -125400 125400 131100 131100 metal1 -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 125400 125400 metal3 -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 125400 119700 metal3 -119700 114000 125400 119700 metal2 -119700 114000 125400 119700 metal1 -) -_145_ -( -108300 114000 114000 119700 metal1 -108300 114000 114000 125400 metal2 -108300 125400 114000 131100 metal2 -108300 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal1 -108300 131100 114000 136800 metal1 -108300 125400 114000 136800 metal2 -108300 119700 114000 125400 metal2 -108300 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 119700 119700 125400 metal1 -108300 119700 114000 131100 metal2 -) -_146_ -( -108300 119700 114000 125400 metal1 -108300 114000 114000 125400 metal2 -108300 114000 114000 119700 metal1 -) -_147_ -( -79800 119700 85500 125400 metal1 -79800 119700 85500 125400 metal2 -79800 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal2 -102600 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 119700 metal1 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -) -_148_ -( -74100 74100 79800 79800 metal1 -74100 68400 79800 79800 metal2 -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal1 -) -_149_ -( -79800 68400 85500 74100 metal1 -79800 57000 85500 74100 metal2 -79800 57000 85500 62700 metal2 -79800 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -) -_150_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 125400 metal2 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_151_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_152_ -( -68400 119700 74100 125400 metal1 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -68400 114000 74100 119700 metal1 -68400 114000 74100 125400 metal2 -) -_153_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -79800 114000 85500 119700 metal1 -79800 114000 85500 125400 metal2 -) -_154_ -( -68400 114000 74100 119700 metal1 -68400 114000 74100 125400 metal2 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -) -_155_ -( -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -) -_156_ -( -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 114000 74100 125400 metal2 -68400 114000 74100 119700 metal1 -) -_157_ -( -74100 119700 79800 125400 metal1 -74100 114000 79800 125400 metal2 -74100 114000 79800 119700 metal1 -) -_158_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 96900 metal2 -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 91200 91200 96900 metal1 -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -79800 108300 96900 114000 metal3 -91200 108300 96900 114000 metal2 -91200 108300 96900 119700 metal2 -91200 114000 96900 119700 metal1 -68400 91200 74100 96900 metal2 -68400 91200 85500 96900 metal3 -68400 102600 74100 108300 metal1 -68400 102600 74100 114000 metal2 -68400 108300 74100 114000 metal2 -68400 108300 85500 114000 metal3 -62700 51300 68400 91200 metal2 -62700 51300 68400 57000 metal1 -62700 39900 68400 57000 metal2 -62700 39900 68400 45600 metal2 -62700 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -79800 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -68400 91200 74100 108300 metal2 -) -_159_ -( -131100 136800 136800 142500 metal1 -131100 136800 136800 142500 metal2 -131100 136800 148200 142500 metal3 -142500 136800 148200 142500 metal2 -142500 131100 148200 142500 metal2 -142500 131100 148200 136800 metal1 -85500 108300 91200 114000 metal1 -85500 108300 91200 114000 metal2 -85500 108300 102600 114000 metal3 -96900 108300 102600 114000 metal2 -96900 102600 102600 114000 metal2 -96900 102600 102600 108300 metal2 -96900 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 96900 114000 108300 metal2 -114000 85500 119700 91200 metal1 -114000 79800 119700 91200 metal2 -114000 79800 119700 85500 metal2 -114000 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -142500 119700 148200 136800 metal2 -142500 119700 148200 125400 metal1 -136800 74100 142500 85500 metal2 -136800 74100 142500 79800 metal1 -108300 96900 114000 102600 metal1 -108300 96900 114000 102600 metal2 -108300 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 85500 119700 102600 metal2 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 119700 142500 metal3 -114000 136800 119700 142500 metal2 -114000 136800 136800 142500 metal3 -79800 119700 85500 142500 metal2 -79800 136800 85500 142500 metal2 -79800 136800 96900 142500 metal3 -79800 119700 85500 125400 metal1 -79800 119700 85500 125400 metal2 -79800 119700 91200 125400 metal3 -85500 119700 91200 125400 metal2 -85500 108300 91200 125400 metal2 -114000 131100 119700 142500 metal2 -114000 131100 119700 136800 metal1 -) -_160_ -( -153900 91200 159600 96900 metal1 -153900 85500 159600 96900 metal2 -153900 85500 159600 91200 metal2 -114000 85500 159600 91200 metal3 -114000 85500 119700 91200 metal2 -114000 85500 119700 91200 metal1 -68400 108300 74100 114000 metal1 -68400 108300 74100 119700 metal2 -68400 114000 74100 119700 metal2 -68400 114000 79800 119700 metal3 -74100 114000 79800 119700 metal2 -74100 119700 79800 125400 metal1 -74100 119700 79800 131100 metal2 -74100 125400 79800 131100 metal2 -68400 125400 79800 131100 metal3 -68400 125400 74100 131100 metal2 -68400 125400 74100 159600 metal2 -68400 153900 74100 159600 metal2 -68400 153900 119700 159600 metal3 -114000 153900 119700 159600 metal2 -74100 114000 79800 125400 metal2 -148200 136800 153900 142500 metal1 -148200 136800 153900 142500 metal2 -148200 136800 159600 142500 metal3 -153900 136800 159600 142500 metal2 -114000 153900 159600 159600 metal3 -153900 153900 159600 159600 metal2 -153900 136800 159600 159600 metal2 -153900 119700 159600 142500 metal2 -74100 114000 91200 119700 metal3 -85500 114000 91200 119700 metal2 -85500 114000 91200 119700 metal1 -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -153900 96900 165300 102600 metal3 -159600 96900 165300 102600 metal2 -159600 96900 165300 119700 metal2 -159600 114000 165300 119700 metal2 -153900 114000 165300 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 125400 metal2 -136800 119700 142500 125400 metal1 -136800 119700 142500 125400 metal2 -136800 119700 159600 125400 metal3 -153900 119700 159600 125400 metal2 -153900 91200 159600 102600 metal2 -114000 142500 119700 148200 metal1 -114000 142500 119700 159600 metal2 -108300 91200 114000 96900 metal1 -108300 85500 114000 96900 metal2 -108300 85500 114000 91200 metal2 -108300 85500 119700 91200 metal3 -) -_161_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -74100 114000 85500 119700 metal3 -79800 114000 85500 119700 metal2 -79800 114000 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_162_ -( -62700 114000 68400 119700 metal1 -62700 114000 68400 125400 metal2 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 119700 74100 125400 metal1 -) -_163_ -( -62700 114000 68400 119700 metal1 -62700 108300 68400 119700 metal2 -62700 108300 68400 114000 metal1 -) -_164_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -62700 108300 74100 114000 metal3 -68400 108300 74100 114000 metal2 -68400 108300 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_165_ -( -131100 131100 136800 136800 metal2 -131100 131100 148200 136800 metal3 -142500 131100 148200 136800 metal2 -142500 131100 148200 136800 metal1 -91200 96900 96900 108300 metal2 -91200 96900 96900 102600 metal2 -91200 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 102600 metal1 -91200 136800 96900 142500 metal1 -91200 131100 96900 142500 metal2 -131100 131100 136800 142500 metal2 -131100 136800 136800 142500 metal1 -114000 85500 119700 91200 metal1 -114000 85500 119700 91200 metal2 -114000 85500 142500 91200 metal3 -136800 85500 142500 91200 metal2 -136800 79800 142500 91200 metal2 -136800 79800 142500 85500 metal1 -142500 119700 148200 136800 metal2 -142500 119700 148200 125400 metal1 -136800 74100 142500 85500 metal2 -136800 74100 142500 79800 metal1 -91200 102600 96900 119700 metal2 -91200 114000 96900 119700 metal1 -108300 85500 114000 102600 metal2 -108300 85500 114000 91200 metal2 -108300 85500 119700 91200 metal3 -91200 131100 96900 136800 metal2 -91200 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 131100 119700 136800 metal1 -114000 131100 136800 136800 metal3 -91200 114000 96900 136800 metal2 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 96900 108300 metal3 -91200 102600 96900 108300 metal2 -) -_166_ -( -142500 131100 148200 136800 metal1 -142500 125400 148200 136800 metal2 -142500 125400 148200 131100 metal1 -) -_167_ -( -96900 79800 102600 85500 metal1 -96900 79800 102600 91200 metal2 -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_168_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -96900 85500 102600 91200 metal2 -96900 85500 102600 91200 metal1 -) -_169_ -( -131100 102600 136800 108300 metal1 -131100 96900 136800 108300 metal2 -119700 96900 125400 102600 metal1 -119700 96900 125400 102600 metal2 -119700 96900 131100 102600 metal3 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal1 -125400 108300 131100 114000 metal1 -125400 108300 131100 114000 metal2 -125400 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 102600 136800 114000 metal2 -125400 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -) -_170_ -( -131100 91200 136800 96900 metal1 -131100 91200 136800 102600 metal2 -131100 96900 136800 102600 metal1 -131100 85500 136800 91200 metal1 -131100 85500 136800 96900 metal2 -) -_171_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -131100 96900 136800 108300 metal2 -114000 102600 119700 114000 metal2 -114000 108300 119700 114000 metal1 -114000 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -131100 96900 142500 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -114000 96900 119700 108300 metal2 -114000 96900 119700 102600 metal1 -) -_172_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -119700 119700 125400 131100 metal2 -119700 119700 125400 125400 metal1 -) -_173_ -( -108300 125400 114000 131100 metal2 -108300 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal1 -102600 125400 108300 131100 metal1 -102600 125400 108300 131100 metal2 -102600 125400 114000 131100 metal3 -108300 131100 114000 136800 metal1 -108300 125400 114000 136800 metal2 -) -_174_ -( -108300 102600 114000 119700 metal2 -108300 102600 114000 108300 metal1 -102600 96900 108300 102600 metal1 -102600 96900 108300 102600 metal2 -102600 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 108300 metal2 -108300 114000 114000 119700 metal1 -108300 114000 114000 119700 metal2 -108300 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 131100 metal2 -114000 125400 119700 131100 metal1 -) -_175_ -( -136800 91200 142500 96900 metal1 -136800 91200 142500 96900 metal2 -136800 91200 148200 96900 metal3 -142500 91200 148200 96900 metal2 -142500 91200 148200 96900 metal1 -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 96900 153900 108300 metal2 -148200 102600 153900 108300 metal1 -142500 91200 148200 102600 metal2 -) -_176_ -( -136800 85500 142500 96900 metal2 -136800 91200 142500 96900 metal1 -136800 85500 142500 91200 metal1 -136800 85500 142500 91200 metal2 -136800 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 91200 metal1 -) -_177_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -114000 102600 119700 114000 metal2 -114000 108300 119700 114000 metal1 -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -131100 91200 136800 102600 metal2 -131100 91200 136800 96900 metal2 -131100 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 96900 metal1 -114000 96900 119700 108300 metal2 -) -_178_ -( -102600 108300 108300 114000 metal1 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 102600 114000 114000 metal2 -108300 102600 114000 108300 metal1 -) -_179_ -( -91200 108300 96900 114000 metal1 -91200 108300 96900 114000 metal2 -91200 108300 102600 114000 metal3 -96900 108300 102600 114000 metal2 -96900 108300 102600 119700 metal2 -96900 114000 102600 119700 metal1 -96900 114000 102600 119700 metal2 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -) -_180_ -( -102600 108300 108300 119700 metal2 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 108300 114000 114000 metal1 -102600 114000 108300 125400 metal2 -102600 119700 108300 125400 metal1 -96900 114000 102600 119700 metal1 -96900 114000 102600 119700 metal2 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -) -_181_ -( -102600 114000 108300 119700 metal1 -102600 114000 108300 119700 metal2 -) -_182_ -( -102600 119700 108300 125400 metal1 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal1 -102600 125400 108300 131100 metal1 -102600 119700 108300 131100 metal2 -) -_183_ -( -102600 114000 108300 119700 metal1 -102600 108300 108300 119700 metal2 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 108300 114000 114000 metal1 -) -_184_ -( -108300 108300 114000 114000 metal1 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 102600 119700 114000 metal2 -114000 102600 119700 108300 metal1 -) -_185_ -( -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 91200 153900 102600 metal2 -148200 91200 153900 96900 metal1 -) -_186_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 96900 153900 102600 metal1 -) -_187_ -( -142500 102600 148200 108300 metal1 -142500 96900 148200 108300 metal2 -142500 96900 148200 102600 metal1 -) -_188_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 108300 metal2 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 108300 metal1 -) -_189_ -( -119700 102600 125400 108300 metal1 -119700 102600 125400 108300 metal2 -119700 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 96900 136800 108300 metal2 -131100 96900 136800 102600 metal2 -131100 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_190_ -( -125400 102600 131100 108300 metal1 -125400 102600 131100 114000 metal2 -125400 108300 131100 114000 metal2 -125400 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 108300 136800 114000 metal1 -) -_191_ -( -119700 108300 125400 114000 metal1 -119700 102600 125400 114000 metal2 -119700 102600 125400 108300 metal2 -119700 102600 131100 108300 metal3 -125400 102600 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_192_ -( -119700 108300 125400 114000 metal1 -119700 102600 125400 114000 metal2 -119700 102600 125400 108300 metal1 -) -_193_ -( -119700 91200 125400 102600 metal2 -119700 96900 125400 102600 metal1 -114000 91200 119700 96900 metal1 -114000 91200 119700 96900 metal2 -114000 91200 125400 96900 metal3 -119700 91200 125400 96900 metal2 -119700 91200 125400 96900 metal1 -) -_194_ -( -119700 96900 125400 102600 metal1 -119700 96900 125400 108300 metal2 -119700 102600 125400 108300 metal1 -) -_195_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 125400 108300 metal3 -119700 102600 125400 108300 metal2 -119700 102600 125400 108300 metal1 -) -_196_ -( -114000 114000 119700 119700 metal1 -114000 108300 119700 119700 metal2 -114000 108300 119700 114000 metal1 -) -_197_ -( -114000 119700 119700 125400 metal1 -114000 108300 119700 125400 metal2 -114000 108300 119700 114000 metal1 -) -_198_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 114000 metal2 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_199_ -( -102600 96900 108300 102600 metal1 -102600 96900 108300 108300 metal2 -102600 102600 108300 108300 metal2 -102600 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -114000 102600 119700 108300 metal1 -) -_200_ -( -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 79800 metal2 -79800 74100 85500 79800 metal1 -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 62700 79800 68400 metal1 -74100 62700 79800 74100 metal2 -) -_201_ -( -79800 74100 85500 79800 metal1 -79800 74100 85500 79800 metal2 -79800 74100 91200 79800 metal3 -85500 74100 91200 79800 metal2 -85500 74100 91200 79800 metal1 -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 68400 108300 74100 metal1 -85500 74100 102600 79800 metal3 -96900 74100 102600 79800 metal2 -96900 68400 102600 79800 metal2 -) -_202_ -( -79800 79800 85500 91200 metal2 -79800 85500 85500 91200 metal1 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal1 -79800 74100 85500 79800 metal1 -79800 74100 85500 85500 metal2 -) -_203_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 85500 91200 metal3 -79800 85500 85500 91200 metal2 -79800 85500 85500 91200 metal1 -68400 79800 74100 91200 metal2 -68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 79800 91200 metal3 -62700 79800 68400 85500 metal1 -62700 79800 68400 85500 metal2 -62700 79800 74100 85500 metal3 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal1 -) -_204_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 85500 91200 metal3 -79800 85500 85500 91200 metal2 -79800 85500 85500 91200 metal1 -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 -74100 91200 79800 96900 metal1 -74100 85500 79800 96900 metal2 -) -_205_ -( -85500 85500 91200 91200 metal1 -85500 85500 91200 91200 metal2 -85500 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 96900 metal2 -102600 91200 108300 96900 metal1 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -79800 85500 85500 91200 metal1 -79800 85500 85500 91200 metal2 -79800 85500 91200 91200 metal3 -) -_206_ -( -85500 51300 91200 57000 metal1 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 62700 metal2 -91200 57000 96900 62700 metal1 -79800 51300 85500 57000 metal1 -79800 51300 85500 57000 metal2 -79800 51300 91200 57000 metal3 -) -_207_ -( -91200 57000 96900 68400 metal2 -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 102600 68400 metal3 -96900 62700 102600 68400 metal2 -96900 62700 102600 74100 metal2 -96900 68400 102600 74100 metal1 -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -85500 57000 96900 62700 metal3 -91200 57000 96900 62700 metal2 -91200 57000 96900 62700 metal1 -) -_208_ -( -91200 57000 96900 62700 metal1 -91200 57000 96900 62700 metal2 -91200 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -) -_209_ -( -96900 39900 102600 51300 metal2 -96900 45600 102600 51300 metal1 -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -96900 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 102600 45600 metal3 -) -_210_ -( -96900 51300 102600 62700 metal2 -96900 57000 102600 62700 metal1 -91200 51300 96900 57000 metal1 -91200 51300 96900 57000 metal2 -91200 51300 102600 57000 metal3 -96900 51300 102600 57000 metal2 -96900 45600 102600 51300 metal1 -96900 45600 102600 57000 metal2 -) -_211_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 108300 57000 metal3 -102600 51300 108300 57000 metal2 -102600 45600 108300 57000 metal2 -102600 45600 108300 51300 metal1 -102600 51300 114000 57000 metal3 -108300 51300 114000 57000 metal2 -108300 51300 114000 57000 metal1 -) -_212_ -( -91200 51300 96900 62700 metal2 -91200 57000 96900 62700 metal1 -96900 45600 102600 57000 metal2 -96900 45600 102600 51300 metal1 -91200 51300 96900 57000 metal1 -91200 51300 96900 57000 metal2 -91200 51300 102600 57000 metal3 -96900 51300 102600 57000 metal2 -96900 51300 102600 57000 metal1 -) -_213_ -( -96900 85500 102600 91200 metal2 -96900 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 96900 metal2 -102600 91200 108300 96900 metal1 -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -96900 57000 102600 62700 metal1 -96900 57000 102600 91200 metal2 -) -_214_ -( -102600 91200 108300 96900 metal1 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_215_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 102600 metal2 -91200 96900 96900 102600 metal2 -91200 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_216_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 91200 metal1 -) -_217_ -( -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_218_ -( -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal1 -62700 74100 68400 79800 metal1 -62700 74100 68400 79800 metal2 -62700 74100 74100 79800 metal3 -68400 74100 74100 79800 metal2 -68400 74100 74100 79800 metal1 -) -_219_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_220_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 85500 metal2 -74100 79800 79800 85500 metal2 -74100 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_221_ -( -91200 68400 96900 74100 metal2 -91200 68400 119700 74100 metal3 -114000 68400 119700 74100 metal2 -114000 68400 119700 74100 metal1 -85500 68400 91200 74100 metal1 -85500 68400 91200 74100 metal2 -85500 68400 96900 74100 metal3 -114000 68400 125400 74100 metal3 -119700 68400 125400 74100 metal2 -119700 68400 125400 79800 metal2 -119700 74100 125400 79800 metal1 -91200 68400 96900 79800 metal2 -91200 74100 96900 79800 metal1 -) -_222_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 85500 metal2 -91200 79800 96900 85500 metal1 -91200 68400 96900 74100 metal1 -91200 68400 96900 79800 metal2 -) -_223_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 74100 metal2 -79800 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -) -_224_ -( -85500 68400 91200 74100 metal1 -85500 68400 91200 85500 metal2 -85500 79800 91200 85500 metal2 -85500 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_225_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_226_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -) -_227_ -( -85500 57000 91200 68400 metal2 -85500 62700 91200 68400 metal2 -85500 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal1 -79800 57000 85500 62700 metal1 -79800 57000 85500 62700 metal2 -79800 57000 91200 62700 metal3 -85500 57000 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_228_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_229_ -( -96900 85500 102600 91200 metal1 -96900 85500 102600 108300 metal2 -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_230_ -( -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -91200 96900 96900 108300 metal2 -91200 96900 96900 102600 metal1 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 96900 108300 metal3 -) -_231_ -( -102600 51300 108300 57000 metal1 -102600 51300 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_232_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_233_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 108300 57000 metal3 -102600 51300 108300 57000 metal2 -102600 51300 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_234_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_235_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 108300 metal2 -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_236_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 114000 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 108300 108300 119700 metal2 -102600 114000 108300 119700 metal2 -102600 114000 114000 119700 metal3 -108300 114000 114000 119700 metal2 -108300 114000 114000 125400 metal2 -108300 119700 114000 125400 metal2 -108300 119700 148200 125400 metal3 -142500 119700 148200 125400 metal2 -142500 119700 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_237_ -( -102600 96900 108300 102600 metal1 -102600 96900 108300 102600 metal2 -102600 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal1 -) -_238_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 108300 metal2 -96900 102600 108300 108300 metal3 -102600 102600 108300 108300 metal2 -102600 96900 108300 108300 metal2 -102600 96900 108300 102600 metal1 -) -_239_ -( -96900 114000 102600 119700 metal1 -96900 108300 102600 119700 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 108300 108300 114000 metal1 -96900 114000 102600 125400 metal2 -96900 119700 102600 125400 metal1 -) -_240_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 108300 metal2 -96900 102600 108300 108300 metal3 -102600 102600 108300 108300 metal2 -102600 102600 108300 114000 metal2 -102600 108300 108300 114000 metal1 -) -_241_ -( -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_242_ -( -85500 96900 91200 102600 metal1 -85500 96900 91200 102600 metal2 -85500 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -91200 102600 96900 108300 metal1 -91200 96900 96900 108300 metal2 -) -_243_ -( -85500 91200 91200 102600 metal2 -85500 91200 91200 96900 metal1 -79800 96900 85500 102600 metal1 -79800 96900 85500 102600 metal2 -79800 96900 91200 102600 metal3 -85500 96900 91200 102600 metal2 -85500 102600 91200 108300 metal1 -85500 96900 91200 108300 metal2 -) -_244_ -( -85500 91200 91200 96900 metal1 -85500 91200 91200 96900 metal2 -85500 91200 102600 96900 metal3 -96900 91200 102600 96900 metal2 -96900 91200 102600 96900 metal1 -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 91200 96900 metal3 -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 96900 metal2 -62700 57000 68400 91200 metal2 -62700 57000 68400 62700 metal1 -85500 39900 91200 45600 metal1 -85500 39900 91200 45600 metal2 -85500 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -68400 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 39900 91200 51300 metal2 -62700 45600 68400 62700 metal2 -62700 45600 68400 51300 metal2 -62700 45600 74100 51300 metal3 -) -_245_ -( -131100 125400 136800 136800 metal2 -131100 79800 136800 114000 metal2 -131100 108300 136800 119700 metal2 -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -96900 85500 114000 91200 metal3 -96900 85500 102600 91200 metal2 -96900 85500 102600 96900 metal2 -96900 91200 102600 96900 metal1 -96900 136800 102600 142500 metal1 -96900 131100 102600 142500 metal2 -114000 79800 119700 85500 metal1 -114000 79800 119700 85500 metal2 -114000 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -108300 79800 114000 91200 metal2 -108300 79800 114000 85500 metal2 -108300 79800 119700 85500 metal3 -131100 114000 136800 131100 metal2 -96900 131100 102600 136800 metal2 -96900 131100 136800 136800 metal3 -131100 131100 136800 136800 metal2 -131100 131100 136800 136800 metal1 -131100 79800 148200 85500 metal3 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal1 -131100 108300 136800 114000 metal2 -131100 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -96900 125400 102600 136800 metal2 -96900 125400 102600 131100 metal1 -131100 125400 142500 131100 metal2 -136800 125400 142500 131100 metal1 -) -_246_ -( -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_247_ -( -74100 102600 79800 108300 metal1 -74100 102600 79800 108300 metal2 -74100 102600 85500 108300 metal3 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal1 -) -_248_ -( -125400 74100 131100 119700 metal2 -125400 114000 131100 119700 metal1 -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -119700 74100 131100 79800 metal3 -125400 74100 131100 79800 metal2 -125400 74100 131100 79800 metal1 -85500 34200 91200 51300 metal2 -85500 45600 91200 51300 metal2 -85500 45600 114000 51300 metal3 -108300 45600 114000 51300 metal2 -108300 45600 114000 51300 metal1 -57000 74100 62700 79800 metal1 -57000 62700 62700 79800 metal2 -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 102600 metal2 -68400 96900 74100 102600 metal2 -68400 96900 79800 102600 metal3 -74100 96900 79800 102600 metal2 -74100 96900 79800 108300 metal2 -74100 102600 79800 108300 metal1 -57000 62700 62700 68400 metal2 -51300 62700 62700 68400 metal3 -51300 62700 57000 68400 metal2 -51300 45600 57000 68400 metal2 -51300 45600 57000 51300 metal2 -51300 45600 68400 51300 metal3 -62700 45600 68400 51300 metal2 -62700 39900 68400 51300 metal2 -62700 39900 68400 45600 metal2 -62700 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -108300 45600 125400 51300 metal3 -119700 45600 125400 51300 metal2 -119700 45600 125400 79800 metal2 -68400 34200 74100 45600 metal2 -68400 34200 74100 39900 metal2 -68400 34200 91200 39900 metal3 -85500 34200 91200 39900 metal2 -85500 34200 91200 39900 metal1 -57000 91200 68400 96900 metal3 -57000 91200 62700 96900 metal2 -57000 74100 62700 96900 metal2 -57000 62700 68400 68400 metal3 -62700 62700 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_249_ -( -142500 125400 148200 131100 metal1 -142500 114000 148200 131100 metal2 -91200 131100 96900 136800 metal1 -91200 131100 96900 142500 metal2 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -96900 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -125400 136800 148200 142500 metal3 -142500 136800 148200 142500 metal2 -142500 125400 148200 142500 metal2 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 74100 148200 85500 metal2 -142500 79800 148200 85500 metal1 -142500 114000 148200 119700 metal2 -142500 114000 153900 119700 metal3 -148200 114000 153900 119700 metal2 -148200 114000 153900 119700 metal1 -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -119700 74100 131100 79800 metal3 -114000 74100 119700 79800 metal1 -114000 74100 119700 79800 metal2 -114000 74100 125400 79800 metal3 -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 119700 85500 metal3 -114000 79800 119700 85500 metal2 -114000 74100 119700 85500 metal2 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -142500 79800 148200 119700 metal2 -) -_250_ -( -96900 125400 102600 131100 metal1 -96900 108300 102600 131100 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 102600 108300 114000 metal2 -102600 102600 108300 108300 metal2 -102600 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 96900 114000 108300 metal2 -108300 96900 114000 102600 metal1 -) -_251_ -( -91200 96900 96900 102600 metal1 -91200 96900 96900 102600 metal2 -) -_252_ -( -79800 91200 85500 96900 metal1 -79800 91200 85500 102600 metal2 -79800 96900 85500 102600 metal2 -79800 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 96900 metal2 -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 68400 79800 74100 metal2 -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 102600 39900 metal3 -96900 34200 102600 39900 metal2 -96900 34200 102600 51300 metal2 -96900 45600 102600 51300 metal2 -96900 45600 108300 51300 metal3 -102600 45600 108300 51300 metal2 -102600 45600 108300 51300 metal1 -74100 39900 79800 74100 metal2 -74100 39900 79800 45600 metal1 -74100 34200 79800 45600 metal2 -74100 34200 79800 39900 metal2 -74100 34200 96900 39900 metal3 -74100 68400 79800 85500 metal2 -) -_253_ -( -131100 79800 136800 114000 metal2 -131100 108300 136800 125400 metal2 -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -96900 125400 114000 131100 metal3 -108300 125400 114000 131100 metal2 -108300 119700 114000 131100 metal2 -108300 119700 114000 125400 metal2 -108300 119700 131100 125400 metal3 -125400 119700 131100 125400 metal2 -125400 119700 131100 125400 metal1 -119700 79800 125400 85500 metal1 -119700 79800 125400 85500 metal2 -119700 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -96900 131100 102600 136800 metal1 -96900 125400 102600 136800 metal2 -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 79800 91200 96900 metal2 -85500 79800 91200 85500 metal2 -85500 79800 102600 85500 metal3 -96900 79800 102600 85500 metal2 -131100 119700 136800 131100 metal2 -131100 125400 136800 131100 metal1 -74100 96900 79800 102600 metal1 -74100 96900 79800 102600 metal2 -74100 96900 85500 102600 metal3 -79800 96900 85500 102600 metal2 -79800 91200 85500 102600 metal2 -96900 79800 125400 85500 metal3 -96900 74100 102600 85500 metal2 -96900 74100 102600 79800 metal1 -131100 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -131100 108300 136800 114000 metal2 -131100 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -125400 119700 136800 125400 metal3 -131100 119700 136800 125400 metal2 -) -_254_ -( -96900 119700 102600 125400 metal1 -96900 119700 102600 125400 metal2 -96900 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 119700 108300 125400 metal1 -) -_255_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -) -_256_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_257_ -( -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_258_ -( -102600 119700 108300 131100 metal2 -102600 125400 108300 131100 metal1 -102600 119700 108300 125400 metal2 -102600 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -96900 119700 102600 125400 metal1 -96900 119700 102600 125400 metal2 -96900 119700 108300 125400 metal3 -) -_259_ -( -96900 131100 102600 136800 metal1 -96900 131100 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_260_ -( -96900 136800 102600 142500 metal1 -96900 136800 102600 142500 metal2 -) -_261_ -( -131100 136800 136800 142500 metal1 -131100 131100 136800 142500 metal2 -131100 131100 136800 136800 metal1 -) -_262_ -( -108300 119700 114000 131100 metal2 -108300 125400 114000 131100 metal1 -108300 119700 114000 125400 metal1 -108300 119700 114000 125400 metal2 -108300 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 114000 119700 125400 metal2 -114000 114000 119700 119700 metal1 -) -_263_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -) -_264_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -119700 119700 125400 131100 metal2 -119700 119700 125400 125400 metal1 -) -_265_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 131100 metal2 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -) -_266_ -( -131100 125400 136800 131100 metal1 -131100 125400 136800 136800 metal2 -131100 131100 136800 136800 metal1 -) -_267_ -( -125400 136800 131100 142500 metal1 -125400 131100 131100 142500 metal2 -125400 131100 131100 136800 metal2 -125400 131100 136800 136800 metal3 -131100 131100 136800 136800 metal2 -131100 131100 136800 136800 metal1 -) -_268_ -( -136800 74100 142500 79800 metal1 -136800 74100 142500 79800 metal2 -136800 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 74100 148200 85500 metal2 -142500 79800 148200 85500 metal1 -) -_269_ -( -119700 119700 125400 125400 metal1 -119700 114000 125400 125400 metal2 -119700 114000 125400 119700 metal1 -) -_270_ -( -114000 108300 119700 114000 metal1 -114000 108300 119700 114000 metal2 -114000 108300 125400 114000 metal3 -119700 108300 125400 114000 metal2 -119700 108300 125400 119700 metal2 -119700 114000 125400 119700 metal1 -) -_271_ -( -108300 114000 114000 119700 metal1 -108300 108300 114000 119700 metal2 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_272_ -( -136800 91200 142500 96900 metal1 -136800 85500 142500 96900 metal2 -136800 85500 142500 91200 metal1 -136800 91200 142500 102600 metal2 -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -114000 114000 119700 119700 metal1 -114000 96900 119700 119700 metal2 -) -_273_ -( -136800 79800 142500 85500 metal1 -136800 79800 142500 85500 metal2 -136800 79800 148200 85500 metal3 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal1 -) -_274_ -( -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -) -_275_ -( -142500 119700 148200 125400 metal1 -142500 114000 148200 125400 metal2 -142500 114000 148200 119700 metal2 -142500 114000 153900 119700 metal3 -148200 114000 153900 119700 metal2 -148200 108300 153900 119700 metal2 -148200 108300 153900 114000 metal1 -) -_276_ -( -136800 85500 142500 91200 metal1 -136800 85500 142500 91200 metal2 -136800 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_277_ -( -142500 91200 148200 96900 metal1 -142500 91200 148200 96900 metal2 -142500 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 96900 metal1 -142500 91200 148200 102600 metal2 -142500 96900 148200 102600 metal1 -) -_278_ -( -136800 91200 142500 96900 metal1 -136800 91200 142500 96900 metal2 -136800 91200 148200 96900 metal3 -142500 91200 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_279_ -( -142500 108300 148200 114000 metal1 -142500 108300 148200 114000 metal2 -142500 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -) -_280_ -( -148200 108300 153900 114000 metal1 -148200 108300 153900 119700 metal2 -148200 114000 153900 119700 metal1 -) -_281_ -( -131100 79800 136800 85500 metal1 -131100 74100 136800 85500 metal2 -131100 74100 136800 79800 metal2 -131100 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -) -_282_ -( -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -) -_283_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 148200 102600 metal3 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal1 -131100 102600 136800 108300 metal1 -131100 102600 136800 108300 metal2 -131100 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 96900 142500 108300 metal2 -) -_284_ -( -131100 91200 136800 102600 metal2 -131100 91200 136800 96900 metal1 -125400 96900 131100 102600 metal1 -125400 96900 131100 102600 metal2 -125400 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_285_ -( -131100 79800 136800 85500 metal1 -131100 79800 136800 85500 metal2 -) -_286_ -( -131100 74100 136800 79800 metal1 -131100 74100 136800 79800 metal2 -) -_287_ -( -91200 114000 96900 119700 metal1 -91200 114000 96900 119700 metal2 -91200 114000 131100 119700 metal3 -125400 114000 131100 119700 metal2 -125400 114000 131100 119700 metal1 -) -_288_ -( -125400 91200 131100 96900 metal1 -125400 91200 131100 102600 metal2 -125400 96900 131100 102600 metal1 -) -_289_ -( -119700 96900 125400 102600 metal1 -119700 96900 125400 102600 metal2 -119700 96900 131100 102600 metal3 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_290_ -( -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_291_ -( -125400 102600 131100 108300 metal1 -125400 102600 131100 114000 metal2 -125400 108300 131100 114000 metal1 -) -_292_ -( -125400 119700 131100 125400 metal1 -125400 114000 131100 125400 metal2 -125400 114000 131100 119700 metal1 -) -_293_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -) -_294_ -( -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 85500 96900 metal3 -79800 91200 85500 96900 metal2 -79800 91200 85500 96900 metal1 -) -_295_ -( -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -) -_296_ -( -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_297_ -( -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 125400 102600 metal3 -119700 96900 125400 102600 metal2 -119700 96900 125400 108300 metal2 -119700 102600 125400 108300 metal2 -119700 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -) -_298_ -( -74100 85500 79800 96900 metal2 -74100 91200 79800 96900 metal1 -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 91200 91200 metal3 -85500 85500 91200 91200 metal2 -85500 85500 91200 91200 metal1 -85500 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 102600 metal2 -91200 96900 96900 102600 metal2 -91200 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal1 -) -_299_ -( -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 -74100 91200 79800 102600 metal2 -74100 96900 79800 102600 metal1 -) -_300_ -( -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -) -_301_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -) -_302_ -( -74100 85500 79800 91200 metal1 -74100 74100 79800 91200 metal2 -74100 74100 79800 79800 metal1 -74100 74100 79800 79800 metal2 -74100 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -) -_303_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -) -_304_ -( -68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 79800 91200 metal3 -74100 85500 79800 91200 metal2 -74100 85500 79800 91200 metal1 -68400 79800 74100 91200 metal2 -68400 79800 74100 85500 metal1 -) -_305_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -) -_306_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 79800 91200 metal3 -74100 85500 79800 91200 metal2 -74100 79800 79800 91200 metal2 -74100 79800 79800 85500 metal1 -) -_307_ -( -57000 74100 62700 79800 metal1 -57000 74100 62700 85500 metal2 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -) -_308_ -( -62700 51300 68400 57000 metal1 -62700 51300 68400 62700 metal2 -62700 57000 68400 62700 metal1 -) -_309_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal1 -) -_310_ -( -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 74100 79800 85500 metal2 -74100 74100 79800 79800 metal1 -) -_311_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -74100 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -79800 74100 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_312_ -( -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 68400 79800 74100 metal2 -74100 68400 79800 74100 metal1 -) -_313_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 62700 metal2 -62700 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 74100 metal2 -68400 68400 74100 74100 metal1 -) -_314_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_315_ -( -114000 79800 119700 85500 metal1 -114000 79800 119700 85500 metal2 -) -_316_ -( -114000 74100 119700 79800 metal1 -114000 74100 119700 79800 metal2 -114000 74100 125400 79800 metal3 -119700 74100 125400 79800 metal2 -119700 74100 125400 79800 metal1 -) -_317_ -( -79800 74100 85500 79800 metal1 -79800 68400 85500 79800 metal2 -79800 68400 85500 74100 metal2 -79800 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -) -_318_ -( -85500 68400 91200 74100 metal2 -85500 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -85500 68400 91200 79800 metal2 -85500 74100 91200 79800 metal1 -85500 62700 91200 68400 metal1 -85500 62700 91200 74100 metal2 -) -_319_ -( -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal1 -) -_320_ -( -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal1 -) -_321_ -( -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -) -_322_ -( -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -) -_323_ -( -85500 85500 91200 91200 metal1 -85500 85500 91200 91200 metal2 -) -_324_ -( -85500 79800 91200 85500 metal1 -85500 79800 91200 85500 metal2 -) -_325_ -( -79800 79800 85500 85500 metal1 -79800 79800 85500 85500 metal2 -79800 79800 91200 85500 metal3 -85500 79800 91200 85500 metal2 -85500 79800 91200 85500 metal1 -) -_326_ -( -85500 74100 91200 79800 metal1 -85500 74100 91200 85500 metal2 -85500 79800 91200 85500 metal1 -) -_327_ -( -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -96900 45600 108300 51300 metal3 -102600 45600 108300 51300 metal2 -102600 45600 108300 51300 metal1 -91200 45600 96900 57000 metal2 -91200 45600 96900 51300 metal2 -91200 45600 102600 51300 metal3 -85500 79800 91200 85500 metal1 -85500 51300 91200 85500 metal2 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 57000 metal1 -) -_328_ -( -102600 45600 108300 51300 metal1 -102600 39900 108300 51300 metal2 -102600 39900 108300 45600 metal1 -) -_329_ -( -79800 39900 85500 45600 metal1 -79800 39900 85500 45600 metal2 -79800 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -) -_330_ -( -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 114000 45600 metal3 -108300 39900 114000 45600 metal2 -108300 39900 114000 51300 metal2 -108300 45600 114000 51300 metal1 -) -_331_ -( -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -) -_332_ -( -96900 51300 102600 57000 metal1 -96900 45600 102600 57000 metal2 -91200 39900 96900 45600 metal1 -91200 39900 96900 51300 metal2 -91200 45600 96900 51300 metal2 -91200 45600 102600 51300 metal3 -96900 45600 102600 51300 metal2 -96900 45600 102600 51300 metal1 -) -_333_ -( -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -) -_334_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_335_ -( -85500 39900 91200 45600 metal1 -85500 39900 91200 45600 metal2 -85500 39900 96900 45600 metal3 -91200 39900 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_336_ -( -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 96900 39900 metal3 -91200 34200 96900 39900 metal2 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_337_ -( -85500 45600 91200 57000 metal2 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 57000 metal1 -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 45600 91200 51300 metal1 -) -_338_ -( -85500 51300 91200 57000 metal1 -85500 45600 91200 57000 metal2 -85500 45600 91200 51300 metal1 -) -_339_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -85500 45600 96900 51300 metal3 -91200 45600 96900 51300 metal2 -91200 39900 96900 51300 metal2 -91200 39900 96900 45600 metal1 -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -) -_340_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -) -_341_ -( -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 45600 91200 51300 metal1 -85500 45600 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_342_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -68400 45600 79800 51300 metal3 -74100 45600 79800 51300 metal2 -74100 39900 79800 51300 metal2 -74100 39900 79800 45600 metal1 -) -_343_ -( -62700 51300 68400 57000 metal1 -62700 45600 68400 57000 metal2 -62700 45600 68400 51300 metal2 -62700 45600 74100 51300 metal3 -68400 45600 74100 51300 metal2 -68400 45600 74100 51300 metal1 -) -_344_ -( -68400 45600 74100 51300 metal1 -68400 39900 74100 51300 metal2 -68400 39900 74100 45600 metal1 -) -_345_ -( -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -) -_346_ -( -85500 51300 91200 57000 metal1 -85500 51300 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_347_ -( -96900 74100 102600 79800 metal1 -96900 74100 102600 79800 metal2 -96900 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -102600 74100 108300 85500 metal2 -102600 79800 108300 85500 metal1 -) -_348_ -( -108300 85500 114000 91200 metal1 -108300 85500 114000 119700 metal2 -108300 114000 114000 119700 metal2 -108300 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 136800 metal2 -114000 131100 119700 136800 metal1 -) -_349_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 114000 85500 metal3 -108300 79800 114000 85500 metal2 -108300 79800 114000 85500 metal1 -) -_350_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_351_ -( -136800 136800 142500 142500 metal1 -136800 136800 142500 142500 metal2 -136800 136800 153900 142500 metal3 -148200 136800 153900 142500 metal2 -148200 136800 153900 142500 metal1 -) -_352_ -( -102600 57000 108300 74100 metal2 -102600 68400 108300 74100 metal1 -108300 57000 114000 62700 metal1 -108300 57000 114000 62700 metal2 -102600 57000 114000 62700 metal3 -102600 57000 108300 62700 metal2 -96900 79800 102600 85500 metal1 -96900 79800 102600 85500 metal2 -96900 79800 108300 85500 metal3 -102600 79800 108300 85500 metal2 -102600 68400 108300 85500 metal2 -96900 57000 108300 62700 metal3 -96900 57000 102600 62700 metal2 -96900 45600 102600 62700 metal2 -96900 45600 102600 51300 metal2 -96900 39900 102600 51300 metal3 -96900 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -74100 45600 79800 51300 metal1 -74100 45600 79800 62700 metal2 -74100 57000 79800 62700 metal2 -74100 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -91200 91200 96900 96900 metal1 -91200 79800 96900 96900 metal2 -91200 79800 96900 85500 metal2 -91200 79800 102600 85500 metal3 -79800 96900 85500 102600 metal1 -79800 96900 85500 102600 metal2 -79800 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 91200 96900 102600 metal2 -79800 57000 102600 62700 metal3 -79800 57000 85500 68400 metal2 -79800 62700 85500 68400 metal1 -) -_353_ -( -136800 114000 142500 142500 metal2 -85500 114000 91200 119700 metal1 -85500 96900 91200 119700 metal2 -108300 142500 114000 148200 metal1 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 136800 119700 148200 metal2 -114000 136800 119700 142500 metal2 -114000 136800 125400 142500 metal3 -119700 136800 125400 142500 metal2 -119700 136800 125400 142500 metal1 -119700 136800 142500 142500 metal3 -136800 136800 142500 142500 metal2 -136800 136800 142500 142500 metal1 -148200 91200 153900 102600 metal2 -148200 91200 153900 96900 metal1 -148200 91200 153900 96900 metal2 -119700 91200 153900 96900 metal3 -119700 91200 125400 96900 metal2 -119700 85500 125400 96900 metal2 -119700 85500 125400 91200 metal1 -148200 96900 153900 108300 metal2 -148200 102600 153900 108300 metal2 -142500 102600 153900 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 119700 metal2 -142500 114000 148200 119700 metal2 -136800 114000 148200 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal1 -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 91200 102600 metal3 -85500 96900 91200 102600 metal2 -57000 79800 62700 102600 metal2 -57000 79800 62700 85500 metal1 -148200 96900 153900 102600 metal2 -148200 96900 159600 102600 metal3 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal1 -85500 91200 91200 102600 metal3 -85500 91200 96900 96900 metal3 -91200 91200 96900 96900 metal2 -91200 91200 96900 96900 metal1 -91200 91200 125400 96900 metal3 -) -_354_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -) -_355_ -( -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -) -_356_ -( -119700 142500 125400 148200 metal1 -119700 136800 125400 148200 metal2 -119700 136800 125400 142500 metal1 -) -_357_ -( -153900 91200 159600 96900 metal1 -153900 91200 159600 96900 metal2 -) -_358_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -) -_359_ -( -119700 85500 125400 91200 metal1 -119700 85500 125400 91200 metal2 -) -_360_ -( -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 148200 119700 metal3 -142500 114000 148200 119700 metal2 -142500 114000 148200 125400 metal2 -142500 119700 148200 125400 metal1 -) -_361_ -( -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -) -_362_ -( -57000 74100 62700 79800 metal1 -57000 74100 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_363_ -( -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 91200 68400 metal3 -85500 62700 91200 68400 metal2 -85500 62700 91200 68400 metal1 -) -_364_ -( -108300 62700 114000 68400 metal1 -108300 62700 114000 74100 metal2 -108300 68400 114000 74100 metal1 -) -_365_ -( -108300 57000 114000 62700 metal1 -108300 57000 114000 62700 metal2 -108300 57000 119700 62700 metal3 -114000 57000 119700 62700 metal2 -114000 57000 119700 68400 metal2 -114000 62700 119700 68400 metal1 -) -_366_ -( -108300 34200 114000 39900 metal1 -108300 34200 114000 45600 metal2 -108300 39900 114000 45600 metal1 -) -_367_ -( -74100 39900 79800 45600 metal1 -74100 39900 79800 51300 metal2 -74100 45600 79800 51300 metal1 -) -_368_ -( -96900 79800 102600 85500 metal1 -96900 79800 102600 85500 metal2 -) -_369_ -( -148200 136800 153900 142500 metal1 -148200 136800 153900 142500 metal2 -148200 136800 159600 142500 metal3 -153900 136800 159600 142500 metal2 -153900 136800 159600 142500 metal1 -) -_370_ -( -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -28500 62700 85500 68400 metal3 -28500 62700 34200 68400 metal2 -28500 62700 34200 85500 metal2 -28500 79800 34200 85500 metal2 -22800 79800 34200 85500 metal3 -22800 79800 28500 85500 metal2 -22800 79800 28500 159600 metal2 -22800 153900 28500 159600 metal2 -22800 153900 74100 159600 metal3 -68400 153900 74100 159600 metal2 -68400 153900 74100 165300 metal2 -68400 159600 74100 165300 metal2 -68400 159600 125400 165300 metal3 -119700 159600 125400 165300 metal2 -119700 159600 125400 176700 metal2 -119700 171000 125400 176700 metal1 -) -_371_ -( -102600 22800 108300 28500 metal1 -102600 22800 108300 28500 metal2 -102600 22800 114000 28500 metal3 -108300 22800 114000 28500 metal2 -108300 22800 114000 68400 metal2 -108300 62700 114000 68400 metal2 -102600 62700 114000 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 68400 metal1 -) -_372_ -( -114000 62700 119700 68400 metal1 -114000 62700 119700 68400 metal2 -114000 62700 153900 68400 metal3 -148200 62700 153900 68400 metal2 -148200 62700 153900 79800 metal2 -148200 74100 153900 79800 metal2 -148200 74100 176700 79800 metal3 -171000 74100 176700 79800 metal2 -171000 74100 176700 159600 metal2 -171000 153900 176700 159600 metal2 -125400 153900 176700 159600 metal3 -125400 153900 131100 159600 metal2 -125400 153900 131100 171000 metal2 -125400 165300 131100 171000 metal2 -119700 165300 131100 171000 metal3 -119700 165300 125400 171000 metal2 -119700 165300 125400 171000 metal1 -) -_373_ -( -108300 34200 114000 39900 metal1 -108300 34200 114000 39900 metal2 -108300 34200 119700 39900 metal3 -114000 34200 119700 39900 metal2 -114000 34200 119700 39900 metal1 -) -_374_ -( -62700 34200 68400 39900 metal1 -62700 34200 68400 45600 metal2 -62700 39900 68400 45600 metal2 -62700 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -) -_375_ -( -22800 85500 28500 91200 metal1 -22800 85500 28500 91200 metal2 -22800 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_376_ -( -142500 131100 148200 136800 metal1 -142500 131100 148200 142500 metal2 -142500 136800 148200 142500 metal2 -142500 136800 153900 142500 metal3 -148200 136800 153900 142500 metal2 -148200 136800 153900 176700 metal2 -148200 171000 153900 176700 metal1 -) -_377_ -( -108300 96900 114000 102600 metal1 -108300 96900 114000 102600 metal2 -108300 96900 125400 102600 metal3 -119700 96900 125400 102600 metal2 -119700 91200 125400 102600 metal2 -119700 91200 125400 96900 metal2 -119700 91200 176700 96900 metal3 -171000 91200 176700 96900 metal2 -171000 91200 176700 96900 metal1 -) -_378_ -( -74100 142500 79800 148200 metal1 -74100 142500 79800 148200 metal2 -74100 142500 96900 148200 metal3 -91200 142500 96900 148200 metal2 -91200 136800 96900 148200 metal2 -91200 136800 96900 142500 metal1 -) -_379_ -( -131100 136800 136800 142500 metal1 -131100 136800 136800 148200 metal2 -131100 142500 136800 148200 metal2 -131100 142500 142500 148200 metal3 -136800 142500 142500 148200 metal2 -136800 142500 142500 148200 metal1 -) -_380_ -( -79800 22800 85500 28500 metal1 -79800 22800 85500 28500 metal2 -45600 22800 85500 28500 metal3 -45600 22800 51300 28500 metal2 -45600 22800 51300 119700 metal2 -45600 114000 51300 119700 metal2 -45600 114000 91200 119700 metal3 -85500 114000 91200 119700 metal2 -85500 114000 91200 119700 metal1 -) -_381_ -( -34200 74100 39900 79800 metal1 -34200 74100 39900 79800 metal2 -34200 74100 136800 79800 metal3 -131100 74100 136800 79800 metal2 -131100 74100 136800 85500 metal2 -131100 79800 136800 85500 metal2 -131100 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -) -_382_ -( -148200 119700 153900 125400 metal1 -148200 119700 153900 125400 metal2 -148200 119700 176700 125400 metal3 -171000 119700 176700 125400 metal2 -171000 119700 176700 125400 metal1 -) -_383_ -( -136800 74100 142500 79800 metal1 -136800 74100 142500 79800 metal2 -136800 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 68400 148200 79800 metal2 -142500 68400 148200 74100 metal1 -) -_384_ -( -85500 171000 91200 176700 metal1 -85500 125400 91200 176700 metal2 -85500 125400 91200 131100 metal2 -85500 125400 96900 131100 metal3 -91200 125400 96900 131100 metal2 -91200 114000 96900 131100 metal2 -91200 114000 96900 119700 metal1 -) -_385_ -( -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 102600 metal2 -136800 96900 142500 102600 metal2 -136800 96900 176700 102600 metal3 -171000 96900 176700 102600 metal2 -171000 96900 176700 102600 metal1 -) -_386_ -( -51300 108300 57000 114000 metal1 -51300 85500 57000 114000 metal2 -51300 85500 57000 91200 metal2 -51300 85500 68400 91200 metal3 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal1 -) -_387_ -( -57000 45600 62700 51300 metal1 -57000 45600 62700 57000 metal2 -57000 51300 62700 57000 metal2 -57000 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -) -_388_ -( -108300 171000 114000 176700 metal1 -108300 171000 114000 176700 metal2 -108300 171000 131100 176700 metal3 -125400 171000 131100 176700 metal2 -125400 114000 131100 176700 metal2 -125400 114000 131100 119700 metal2 -119700 114000 131100 119700 metal3 -119700 114000 125400 119700 metal2 -119700 102600 125400 119700 metal2 -119700 102600 125400 108300 metal2 -114000 102600 125400 108300 metal3 -114000 102600 119700 108300 metal2 -114000 85500 119700 108300 metal2 -114000 85500 119700 91200 metal1 -) -_389_ -( -22800 34200 28500 39900 metal1 -22800 34200 28500 39900 metal2 -22800 34200 85500 39900 metal3 -79800 34200 85500 39900 metal2 -79800 34200 85500 45600 metal2 -79800 39900 85500 45600 metal1 -) -_390_ -( -85500 28500 91200 34200 metal1 -85500 28500 91200 45600 metal2 -85500 39900 91200 45600 metal1 -) -_391_ -( -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 125400 148200 metal3 -119700 142500 125400 148200 metal2 -119700 142500 125400 153900 metal2 -119700 148200 125400 153900 metal2 -119700 148200 171000 153900 metal3 -165300 148200 171000 153900 metal2 -165300 148200 171000 153900 metal1 -) -_392_ -( -39900 171000 45600 176700 metal1 -39900 171000 45600 176700 metal2 -34200 171000 45600 176700 metal3 -34200 171000 39900 176700 metal2 -34200 57000 39900 176700 metal2 -34200 57000 39900 62700 metal2 -34200 57000 62700 62700 metal3 -57000 57000 62700 62700 metal2 -57000 51300 62700 62700 metal2 -57000 51300 62700 57000 metal2 -57000 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -) -_393_ -( -114000 171000 119700 176700 metal1 -114000 131100 119700 176700 metal2 -114000 131100 119700 136800 metal1 -) -_394_ -( -22800 171000 28500 176700 metal1 -22800 171000 28500 176700 metal2 -22800 171000 51300 176700 metal3 -45600 171000 51300 176700 metal2 -45600 171000 51300 182400 metal2 -45600 176700 51300 182400 metal2 -45600 176700 108300 182400 metal3 -102600 176700 108300 182400 metal2 -102600 171000 108300 182400 metal2 -102600 171000 108300 176700 metal2 -102600 171000 114000 176700 metal3 -108300 171000 114000 176700 metal2 -108300 142500 114000 176700 metal2 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -) -_395_ -( -153900 91200 159600 96900 metal1 -153900 91200 159600 96900 metal2 -153900 91200 171000 96900 metal3 -165300 91200 171000 96900 metal2 -165300 91200 171000 102600 metal2 -165300 96900 171000 102600 metal1 -) -_396_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -153900 96900 165300 102600 metal3 -159600 96900 165300 102600 metal2 -159600 74100 165300 102600 metal2 -159600 74100 165300 79800 metal2 -153900 74100 165300 79800 metal3 -153900 74100 159600 79800 metal2 -153900 28500 159600 79800 metal2 -153900 28500 159600 34200 metal2 -153900 28500 171000 34200 metal3 -165300 28500 171000 34200 metal2 -165300 22800 171000 34200 metal2 -165300 22800 171000 28500 metal1 -) -_397_ -( -22800 62700 28500 68400 metal1 -22800 62700 28500 68400 metal2 -22800 62700 114000 68400 metal3 -108300 62700 114000 68400 metal2 -108300 62700 114000 79800 metal2 -108300 74100 114000 79800 metal2 -108300 74100 119700 79800 metal3 -114000 74100 119700 79800 metal2 -114000 74100 119700 91200 metal2 -114000 85500 119700 91200 metal2 -114000 85500 125400 91200 metal3 -119700 85500 125400 91200 metal2 -119700 85500 125400 91200 metal1 -) -_398_ -( -142500 119700 148200 125400 metal1 -142500 119700 148200 125400 metal2 -142500 119700 153900 125400 metal3 -148200 119700 153900 125400 metal2 -148200 119700 153900 131100 metal2 -148200 125400 153900 131100 metal2 -148200 125400 176700 131100 metal3 -171000 125400 176700 131100 metal2 -171000 125400 176700 131100 metal1 -) -_399_ -( -45600 102600 51300 108300 metal1 -45600 102600 51300 108300 metal2 -45600 102600 62700 108300 metal3 -57000 102600 62700 108300 metal2 -57000 96900 62700 108300 metal2 -57000 96900 62700 102600 metal1 -) -_400_ -( -22800 74100 28500 79800 metal1 -22800 74100 28500 79800 metal2 -22800 74100 39900 79800 metal3 -34200 74100 39900 79800 metal2 -34200 74100 39900 85500 metal2 -34200 79800 39900 85500 metal2 -34200 79800 57000 85500 metal3 -51300 79800 57000 85500 metal2 -51300 79800 57000 85500 metal1 -) -_401_ -( -79800 102600 85500 108300 metal1 -79800 96900 85500 108300 metal2 -51300 96900 57000 102600 metal1 -51300 96900 57000 102600 metal2 -51300 96900 85500 102600 metal3 -79800 96900 85500 102600 metal2 -45600 96900 57000 102600 metal3 -45600 96900 51300 102600 metal2 -45600 79800 51300 102600 metal2 -45600 79800 51300 85500 metal2 -45600 79800 57000 85500 metal3 -51300 79800 57000 85500 metal2 -51300 79800 57000 85500 metal1 -85500 62700 91200 85500 metal2 -85500 62700 91200 68400 metal2 -85500 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 68400 metal1 -102600 62700 114000 68400 metal3 -108300 62700 114000 68400 metal2 -108300 62700 114000 68400 metal1 -85500 91200 91200 96900 metal2 -85500 91200 114000 96900 metal3 -108300 91200 114000 96900 metal2 -108300 91200 114000 96900 metal1 -85500 79800 91200 96900 metal2 -79800 96900 91200 102600 metal3 -85500 96900 91200 102600 metal2 -85500 91200 91200 102600 metal2 -85500 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -68400 39900 74100 45600 metal1 -68400 39900 74100 62700 metal2 -68400 57000 74100 62700 metal2 -68400 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -79800 57000 85500 68400 metal2 -108300 34200 114000 68400 metal2 -108300 34200 114000 39900 metal1 -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 91200 68400 metal3 -) -_402_ -( -74100 119700 79800 131100 metal2 -74100 125400 79800 131100 metal2 -74100 125400 85500 131100 metal3 -79800 125400 85500 131100 metal2 -79800 125400 85500 131100 metal1 -68400 108300 74100 114000 metal1 -68400 108300 74100 125400 metal2 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -) -_403_ -( -62700 119700 68400 125400 metal1 -62700 114000 68400 125400 metal2 -62700 108300 68400 119700 metal2 -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -62700 114000 68400 119700 metal2 -62700 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -62700 108300 74100 114000 metal3 -68400 108300 74100 114000 metal2 -68400 108300 74100 114000 metal1 -) -_404_ -( -96900 102600 102600 136800 metal2 -96900 102600 102600 108300 metal1 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 131100 102600 142500 metal2 -96900 131100 102600 136800 metal2 -96900 131100 108300 136800 metal3 -102600 131100 108300 136800 metal2 -102600 131100 108300 136800 metal1 -) -_405_ -( -45600 74100 51300 79800 metal1 -45600 74100 51300 79800 metal2 -45600 74100 57000 79800 metal3 -51300 74100 57000 79800 metal2 -51300 68400 57000 79800 metal2 -51300 68400 57000 74100 metal2 -51300 68400 74100 74100 metal3 -68400 68400 74100 74100 metal2 -68400 68400 74100 74100 metal1 -) -_406_ -( -119700 68400 125400 85500 metal2 -119700 79800 125400 85500 metal1 -119700 68400 125400 74100 metal2 -119700 68400 131100 74100 metal3 -125400 68400 131100 74100 metal2 -125400 68400 131100 74100 metal1 -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 125400 74100 metal3 -) -_407_ -( -102600 45600 108300 51300 metal1 -102600 45600 108300 51300 metal2 -102600 45600 114000 51300 metal3 -108300 45600 114000 51300 metal2 -108300 39900 114000 51300 metal2 -108300 39900 114000 45600 metal2 -108300 39900 119700 45600 metal3 -114000 39900 119700 45600 metal2 -114000 34200 119700 45600 metal2 -114000 34200 119700 39900 metal1 -) -_408_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 102600 39900 metal3 -96900 34200 102600 39900 metal2 -96900 22800 102600 39900 metal2 -96900 22800 102600 28500 metal1 -96900 39900 102600 45600 metal1 -96900 34200 102600 45600 metal2 -) -_409_ -( -74100 39900 79800 45600 metal1 -74100 39900 79800 45600 metal2 -74100 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -85500 39900 131100 45600 metal3 -125400 39900 131100 45600 metal2 -125400 39900 131100 45600 metal1 -) -_410_ -( -91200 57000 96900 62700 metal1 -91200 57000 96900 79800 metal2 -91200 74100 96900 79800 metal1 -85500 22800 91200 28500 metal1 -85500 22800 91200 28500 metal2 -85500 22800 96900 28500 metal3 -91200 22800 96900 28500 metal2 -91200 22800 96900 62700 metal2 -) -_411_ -( -96900 119700 102600 125400 metal1 -96900 119700 102600 131100 metal2 -91200 136800 96900 142500 metal1 -91200 125400 96900 142500 metal2 -91200 125400 96900 131100 metal2 -91200 125400 102600 131100 metal3 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal1 -) -_412_ -( -96900 131100 102600 136800 metal1 -96900 131100 102600 136800 metal2 -96900 131100 108300 136800 metal3 -102600 131100 108300 136800 metal2 -102600 125400 108300 136800 metal2 -102600 125400 108300 131100 metal1 -79800 131100 85500 136800 metal1 -79800 131100 85500 136800 metal2 -79800 131100 102600 136800 metal3 -) -_413_ -( -125400 125400 131100 131100 metal1 -125400 125400 131100 131100 metal2 -125400 125400 136800 131100 metal3 -131100 125400 136800 131100 metal2 -131100 125400 136800 131100 metal1 -131100 125400 153900 131100 metal3 -148200 125400 153900 131100 metal2 -148200 119700 153900 131100 metal2 -148200 119700 153900 125400 metal1 -) -_414_ -( -136800 85500 142500 91200 metal1 -136800 79800 142500 91200 metal2 -136800 79800 142500 85500 metal1 -131100 62700 136800 68400 metal1 -131100 62700 136800 68400 metal2 -131100 62700 142500 68400 metal3 -136800 62700 142500 68400 metal2 -136800 62700 142500 85500 metal2 -) -_415_ -( -142500 91200 148200 114000 metal2 -142500 108300 148200 114000 metal1 -142500 91200 148200 96900 metal1 -142500 91200 148200 96900 metal2 -142500 91200 165300 96900 metal3 -159600 91200 165300 96900 metal2 -159600 91200 165300 96900 metal1 -) -_416_ -( -131100 91200 136800 96900 metal1 -131100 79800 136800 96900 metal2 -131100 79800 136800 85500 metal1 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 136800 79800 metal3 -131100 74100 136800 79800 metal2 -131100 74100 136800 85500 metal2 -) -_417_ -( -125400 108300 131100 114000 metal1 -125400 108300 131100 125400 metal2 -125400 119700 131100 125400 metal1 -125400 119700 131100 125400 metal2 -125400 119700 159600 125400 metal3 -153900 119700 159600 125400 metal2 -153900 119700 159600 125400 metal1 -) -_418_ -( -74100 91200 79800 96900 metal1 -74100 91200 79800 102600 metal2 -74100 96900 79800 102600 metal1 -68400 102600 74100 108300 metal1 -68400 102600 74100 108300 metal2 -68400 102600 79800 108300 metal3 -74100 102600 79800 108300 metal2 -74100 96900 79800 108300 metal2 -) -_419_ -( -74100 85500 79800 91200 metal1 -74100 79800 79800 91200 metal2 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_420_ -( -57000 125400 62700 131100 metal1 -57000 125400 62700 131100 metal2 -57000 125400 68400 131100 metal3 -62700 125400 68400 131100 metal2 -62700 125400 74100 131100 metal3 -68400 125400 74100 131100 metal2 -68400 119700 74100 131100 metal2 -68400 119700 74100 125400 metal1 -62700 119700 68400 131100 metal2 -62700 119700 68400 125400 metal1 -) -_421_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 125400 metal2 -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 119700 74100 125400 metal1 -62700 74100 68400 114000 metal2 -62700 74100 68400 79800 metal2 -62700 74100 74100 79800 metal3 -68400 74100 74100 79800 metal2 -68400 62700 74100 79800 metal2 -68400 62700 74100 68400 metal2 -68400 62700 79800 68400 metal3 -74100 62700 79800 68400 metal2 -74100 57000 79800 68400 metal2 -74100 57000 79800 62700 metal1 -) -clk -( -57000 102600 62700 114000 metal2 -57000 102600 62700 108300 metal1 -57000 108300 62700 114000 metal2 -57000 108300 79800 114000 metal3 -74100 108300 79800 114000 metal2 -74100 108300 79800 114000 metal1 -57000 114000 62700 119700 metal1 -57000 114000 62700 131100 metal2 -57000 125400 62700 131100 metal2 -57000 125400 91200 131100 metal3 -85500 125400 91200 131100 metal2 -136800 119700 142500 136800 metal2 -91200 193800 96900 201600 metal2 -91200 193800 96900 201600 metal3 -91200 193800 96900 201600 metal4 -91200 193800 96900 201600 metal5 -91200 193800 96900 201600 metal6 -91200 153900 96900 201600 metal2 -91200 153900 96900 159600 metal2 -91200 153900 108300 159600 metal3 -102600 153900 108300 159600 metal2 -85500 131100 91200 136800 metal1 -85500 131100 91200 148200 metal2 -85500 142500 91200 148200 metal2 -85500 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal1 -119700 136800 125400 159600 metal2 -119700 136800 125400 142500 metal1 -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 153900 119700 metal3 -148200 114000 153900 119700 metal2 -108300 74100 114000 91200 metal2 -51300 91200 57000 96900 metal1 -51300 91200 57000 102600 metal2 -51300 96900 57000 102600 metal2 -51300 96900 62700 102600 metal3 -57000 96900 62700 102600 metal2 -51300 85500 57000 91200 metal1 -51300 74100 57000 91200 metal2 -51300 74100 57000 79800 metal2 -51300 74100 62700 79800 metal3 -57000 74100 62700 79800 metal2 -57000 74100 62700 79800 metal1 -57000 62700 62700 79800 metal2 -57000 62700 62700 68400 metal1 -119700 62700 125400 68400 metal1 -119700 62700 125400 68400 metal2 -119700 62700 136800 68400 metal3 -131100 62700 136800 68400 metal2 -131100 62700 136800 74100 metal2 -68400 51300 74100 62700 metal2 -68400 51300 74100 57000 metal1 -85500 28500 91200 34200 metal1 -85500 28500 91200 34200 metal2 -85500 28500 108300 34200 metal3 -102600 28500 108300 34200 metal2 -102600 28500 108300 34200 metal1 -114000 45600 119700 51300 metal1 -114000 28500 119700 51300 metal2 -114000 28500 119700 34200 metal2 -102600 28500 119700 34200 metal3 -108300 68400 114000 74100 metal1 -108300 62700 114000 74100 metal2 -108300 62700 114000 68400 metal2 -108300 62700 119700 68400 metal3 -114000 62700 119700 68400 metal2 -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -136800 131100 153900 136800 metal3 -148200 131100 153900 136800 metal2 -148200 131100 153900 136800 metal1 -85500 125400 91200 136800 metal2 -102600 148200 108300 153900 metal1 -102600 142500 108300 153900 metal2 -131100 142500 136800 148200 metal1 -131100 142500 136800 148200 metal2 -131100 142500 142500 148200 metal3 -136800 142500 142500 148200 metal2 -136800 131100 142500 148200 metal2 -148200 85500 153900 91200 metal1 -148200 85500 153900 108300 metal2 -148200 102600 153900 119700 metal2 -114000 51300 119700 57000 metal1 -114000 51300 119700 68400 metal2 -148200 74100 153900 91200 metal2 -57000 96900 68400 102600 metal3 -62700 96900 68400 102600 metal2 -62700 96900 68400 102600 metal1 -51300 85500 57000 96900 metal2 -57000 57000 62700 68400 metal2 -57000 57000 62700 62700 metal2 -57000 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 62700 metal1 -131100 68400 136800 74100 metal1 -131100 68400 136800 74100 metal2 -131100 68400 148200 74100 metal3 -142500 68400 148200 74100 metal2 -142500 68400 148200 79800 metal2 -142500 74100 148200 79800 metal2 -142500 74100 153900 79800 metal3 -148200 74100 153900 79800 metal2 -148200 74100 153900 79800 metal1 -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -108300 85500 131100 91200 metal3 -125400 85500 131100 91200 metal2 -125400 85500 131100 91200 metal1 -74100 28500 91200 34200 metal3 -74100 28500 79800 34200 metal2 -74100 28500 79800 39900 metal2 -74100 34200 79800 39900 metal1 -114000 45600 119700 57000 metal2 -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -102600 153900 125400 159600 metal3 -119700 153900 125400 159600 metal2 -119700 153900 136800 159600 metal3 -131100 153900 136800 159600 metal2 -131100 142500 136800 159600 metal2 -108300 68400 114000 79800 metal2 -102600 148200 108300 159600 metal2 -57000 96900 62700 108300 metal2 -57000 108300 62700 119700 metal2 -136800 114000 142500 125400 metal2 -114000 62700 125400 68400 metal3 -131100 119700 136800 125400 metal1 -131100 119700 136800 125400 metal2 -131100 119700 142500 125400 metal3 -136800 119700 142500 125400 metal2 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -153900 102600 159600 108300 metal1 -85500 119700 91200 131100 metal2 -85500 119700 91200 125400 metal1 -148200 114000 159600 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal1 -) -ctrl.state.out\[1\] -( -57000 114000 62700 119700 metal1 -57000 108300 62700 119700 metal2 -57000 108300 62700 114000 metal1 -) -ctrl.state.out\[2\] -( -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -) -dpath.a_lt_b$in0\[0\] -( -148200 131100 153900 136800 metal1 -148200 131100 153900 136800 metal2 -148200 131100 159600 136800 metal3 -153900 131100 159600 136800 metal2 -153900 131100 159600 136800 metal1 -) -dpath.a_lt_b$in0\[10\] -( -62700 62700 68400 68400 metal1 -62700 62700 68400 68400 metal2 -) -dpath.a_lt_b$in0\[11\] -( -119700 62700 125400 68400 metal1 -119700 62700 125400 68400 metal2 -119700 62700 131100 68400 metal3 -125400 62700 131100 68400 metal2 -125400 62700 131100 68400 metal1 -) -dpath.a_lt_b$in0\[12\] -( -114000 45600 119700 51300 metal1 -114000 45600 119700 51300 metal2 -114000 45600 125400 51300 metal3 -119700 45600 125400 51300 metal2 -119700 45600 125400 51300 metal1 -) -dpath.a_lt_b$in0\[13\] -( -91200 28500 96900 34200 metal1 -91200 28500 96900 39900 metal2 -91200 34200 96900 39900 metal1 -) -dpath.a_lt_b$in0\[14\] -( -74100 34200 79800 39900 metal1 -74100 34200 79800 45600 metal2 -74100 39900 79800 45600 metal1 -) -dpath.a_lt_b$in0\[15\] -( -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -) -dpath.a_lt_b$in0\[1\] -( -85500 131100 91200 136800 metal1 -85500 125400 91200 136800 metal2 -85500 125400 91200 131100 metal1 -) -dpath.a_lt_b$in0\[2\] -( -102600 148200 108300 153900 metal1 -102600 142500 108300 153900 metal2 -102600 142500 108300 148200 metal1 -) -dpath.a_lt_b$in0\[3\] -( -125400 142500 131100 148200 metal1 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal1 -) -dpath.a_lt_b$in0\[4\] -( -153900 74100 159600 79800 metal1 -153900 74100 159600 85500 metal2 -153900 79800 159600 85500 metal1 -) -dpath.a_lt_b$in0\[5\] -( -153900 114000 159600 119700 metal1 -153900 114000 159600 119700 metal2 -) -dpath.a_lt_b$in0\[6\] -( -131100 74100 136800 79800 metal1 -131100 68400 136800 79800 metal2 -131100 68400 136800 74100 metal2 -131100 68400 142500 74100 metal3 -136800 68400 142500 74100 metal2 -136800 68400 142500 74100 metal1 -) -dpath.a_lt_b$in0\[7\] -( -136800 119700 142500 125400 metal1 -136800 119700 142500 125400 metal2 -) -dpath.a_lt_b$in0\[8\] -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -51300 91200 62700 96900 metal3 -57000 91200 62700 96900 metal2 -57000 91200 62700 96900 metal1 -) -dpath.a_lt_b$in0\[9\] -( -57000 74100 62700 79800 metal1 -57000 74100 62700 79800 metal2 -57000 74100 68400 79800 metal3 -62700 74100 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -dpath.a_lt_b$in1\[0\] -( -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -) -dpath.a_lt_b$in1\[10\] -( -74100 57000 79800 62700 metal1 -74100 57000 79800 68400 metal2 -74100 62700 79800 68400 metal1 -) -dpath.a_lt_b$in1\[11\] -( -108300 74100 114000 79800 metal1 -108300 74100 114000 79800 metal2 -108300 74100 119700 79800 metal3 -114000 74100 119700 79800 metal2 -114000 68400 119700 79800 metal2 -114000 68400 119700 74100 metal1 -) -dpath.a_lt_b$in1\[12\] -( -114000 57000 119700 62700 metal1 -114000 57000 119700 62700 metal2 -114000 57000 125400 62700 metal3 -119700 57000 125400 62700 metal2 -119700 51300 125400 62700 metal2 -119700 51300 125400 57000 metal1 -) -dpath.a_lt_b$in1\[13\] -( -102600 28500 108300 34200 metal1 -102600 28500 108300 39900 metal2 -102600 34200 108300 39900 metal1 -) -dpath.a_lt_b$in1\[14\] -( -74100 51300 79800 57000 metal1 -74100 51300 79800 57000 metal2 -) -dpath.a_lt_b$in1\[15\] -( -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -108300 74100 114000 79800 metal1 -) -dpath.a_lt_b$in1\[1\] -( -91200 119700 96900 125400 metal1 -91200 119700 96900 125400 metal2 -) -dpath.a_lt_b$in1\[2\] -( -108300 142500 114000 148200 metal1 -108300 136800 114000 148200 metal2 -108300 136800 114000 142500 metal1 -) -dpath.a_lt_b$in1\[3\] -( -119700 131100 125400 136800 metal1 -119700 131100 125400 142500 metal2 -119700 136800 125400 142500 metal2 -119700 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -) -dpath.a_lt_b$in1\[4\] -( -153900 79800 159600 85500 metal1 -153900 79800 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -dpath.a_lt_b$in1\[5\] -( -153900 108300 159600 114000 metal1 -153900 108300 159600 114000 metal2 -153900 108300 165300 114000 metal3 -159600 108300 165300 114000 metal2 -159600 102600 165300 114000 metal2 -159600 102600 165300 108300 metal1 -) -dpath.a_lt_b$in1\[6\] -( -125400 79800 131100 85500 metal1 -125400 79800 131100 91200 metal2 -125400 85500 131100 91200 metal2 -125400 85500 136800 91200 metal3 -131100 85500 136800 91200 metal2 -131100 85500 136800 91200 metal1 -) -dpath.a_lt_b$in1\[7\] -( -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 148200 119700 metal3 -142500 114000 148200 119700 metal2 -142500 108300 148200 119700 metal2 -142500 108300 148200 114000 metal1 -) -dpath.a_lt_b$in1\[8\] -( -68400 96900 74100 102600 metal1 -68400 96900 74100 102600 metal2 -) -dpath.a_lt_b$in1\[9\] -( -57000 79800 62700 85500 metal1 -57000 79800 62700 85500 metal2 -) -net1 -( -114000 171000 119700 176700 metal1 -114000 171000 119700 182400 metal2 -114000 176700 119700 182400 metal2 -114000 176700 171000 182400 metal3 -165300 176700 171000 182400 metal2 -165300 176700 171000 182400 metal1 -) -net10 -( -142500 68400 148200 74100 metal1 -142500 45600 148200 74100 metal2 -142500 45600 148200 51300 metal2 -142500 45600 182400 51300 metal3 -176700 45600 182400 51300 metal2 -176700 22800 182400 51300 metal2 -176700 22800 182400 28500 metal2 -171000 22800 182400 28500 metal3 -171000 22800 176700 28500 metal2 -171000 22800 176700 28500 metal1 -) -net11 -( -171000 119700 176700 125400 metal1 -171000 119700 176700 125400 metal2 -171000 119700 182400 125400 metal3 -176700 119700 182400 125400 metal2 -176700 119700 182400 131100 metal2 -176700 125400 182400 131100 metal1 -) -net12 -( -28500 22800 34200 28500 metal1 -28500 22800 34200 34200 metal2 -28500 28500 34200 34200 metal2 -28500 28500 39900 34200 metal3 -34200 28500 39900 34200 metal2 -34200 28500 39900 79800 metal2 -34200 74100 39900 79800 metal1 -) -net13 -( -136800 176700 142500 182400 metal1 -136800 142500 142500 182400 metal2 -136800 142500 142500 148200 metal1 -) -net14 -( -62700 176700 68400 182400 metal1 -62700 142500 68400 182400 metal2 -62700 142500 68400 148200 metal2 -62700 142500 74100 148200 metal3 -68400 142500 74100 148200 metal2 -68400 142500 74100 148200 metal1 -) -net15 -( -171000 91200 176700 96900 metal1 -171000 85500 176700 96900 metal2 -171000 85500 176700 91200 metal2 -171000 85500 182400 91200 metal3 -176700 85500 182400 91200 metal2 -176700 79800 182400 91200 metal2 -176700 79800 182400 85500 metal1 -) -net16 -( -148200 171000 153900 176700 metal1 -148200 171000 153900 176700 metal2 -148200 171000 159600 176700 metal3 -153900 171000 159600 176700 metal2 -153900 171000 159600 182400 metal2 -153900 176700 159600 182400 metal1 -) -net17 -( -17100 85500 22800 91200 metal1 -17100 85500 22800 91200 metal2 -11400 85500 22800 91200 metal3 -11400 85500 17100 91200 metal2 -11400 85500 17100 176700 metal2 -11400 171000 17100 176700 metal2 -11400 171000 28500 176700 metal3 -22800 171000 28500 176700 metal2 -22800 171000 28500 182400 metal2 -22800 176700 28500 182400 metal1 -) -net18 -( -39900 22800 45600 28500 metal1 -39900 22800 45600 34200 metal2 -39900 28500 45600 34200 metal2 -39900 28500 68400 34200 metal3 -62700 28500 68400 34200 metal2 -62700 28500 68400 39900 metal2 -62700 34200 68400 39900 metal1 -) -net19 -( -114000 34200 119700 39900 metal1 -114000 28500 119700 39900 metal2 -114000 28500 119700 34200 metal2 -114000 28500 153900 34200 metal3 -148200 28500 153900 34200 metal2 -148200 22800 153900 34200 metal2 -148200 22800 153900 28500 metal1 -) -net2 -( -34200 176700 39900 182400 metal1 -34200 176700 39900 182400 metal2 -34200 176700 45600 182400 metal3 -39900 176700 45600 182400 metal2 -39900 171000 45600 182400 metal2 -39900 171000 45600 176700 metal1 -) -net20 -( -114000 165300 119700 171000 metal1 -114000 159600 119700 171000 metal2 -114000 159600 119700 165300 metal2 -114000 159600 182400 165300 metal3 -176700 159600 182400 165300 metal2 -176700 159600 182400 176700 metal2 -176700 171000 182400 176700 metal1 -) -net21 -( -102600 22800 108300 28500 metal1 -102600 22800 108300 28500 metal2 -) -net22 -( -119700 171000 125400 176700 metal1 -119700 171000 125400 176700 metal2 -119700 171000 131100 176700 metal3 -125400 171000 131100 176700 metal2 -125400 171000 131100 182400 metal2 -125400 176700 131100 182400 metal1 -) -net23 -( -17100 74100 22800 79800 metal1 -17100 74100 22800 79800 metal2 -) -net24 -( -28500 176700 34200 182400 metal1 -28500 125400 34200 182400 metal2 -28500 125400 34200 131100 metal2 -28500 125400 51300 131100 metal3 -45600 125400 51300 131100 metal2 -45600 102600 51300 131100 metal2 -45600 102600 51300 108300 metal1 -) -net25 -( -171000 125400 176700 131100 metal1 -171000 125400 176700 131100 metal2 -171000 125400 182400 131100 metal3 -176700 125400 182400 131100 metal2 -176700 125400 182400 159600 metal2 -176700 153900 182400 159600 metal1 -) -net26 -( -17100 57000 22800 62700 metal1 -17100 57000 22800 68400 metal2 -17100 62700 22800 68400 metal2 -17100 62700 28500 68400 metal3 -22800 62700 28500 68400 metal2 -22800 62700 28500 68400 metal1 -) -net27 -( -159600 22800 165300 28500 metal1 -159600 22800 165300 28500 metal2 -159600 22800 182400 28500 metal3 -176700 22800 182400 28500 metal2 -176700 22800 182400 34200 metal2 -176700 28500 182400 34200 metal1 -) -net28 -( -159600 96900 165300 102600 metal1 -159600 96900 165300 108300 metal2 -159600 102600 165300 108300 metal2 -159600 102600 182400 108300 metal3 -176700 102600 182400 108300 metal2 -176700 102600 182400 114000 metal2 -176700 108300 182400 114000 metal1 -) -net29 -( -17100 171000 22800 176700 metal1 -17100 171000 22800 176700 metal2 -) -net3 -( -85500 22800 91200 28500 metal1 -85500 22800 91200 34200 metal2 -85500 28500 91200 34200 metal1 -) -net30 -( -148200 176700 153900 182400 metal1 -148200 171000 153900 182400 metal2 -148200 171000 153900 176700 metal2 -148200 171000 159600 176700 metal3 -153900 171000 159600 176700 metal2 -153900 153900 159600 176700 metal2 -153900 153900 159600 159600 metal2 -153900 153900 171000 159600 metal3 -165300 153900 171000 159600 metal2 -165300 148200 171000 159600 metal2 -165300 148200 171000 153900 metal1 -) -net31 -( -74100 22800 79800 28500 metal1 -74100 22800 79800 28500 metal2 -74100 22800 85500 28500 metal3 -79800 22800 85500 28500 metal2 -79800 22800 85500 28500 metal1 -) -net32 -( -153900 136800 159600 142500 metal1 -153900 136800 159600 142500 metal2 -153900 136800 182400 142500 metal3 -176700 136800 182400 142500 metal2 -176700 136800 182400 142500 metal1 -) -net33 -( -79800 125400 85500 131100 metal1 -79800 125400 85500 182400 metal2 -79800 176700 85500 182400 metal2 -79800 176700 176700 182400 metal3 -171000 176700 176700 182400 metal2 -171000 176700 176700 182400 metal1 -) -net34 -( -17100 102600 22800 108300 metal1 -17100 102600 22800 114000 metal2 -17100 108300 22800 114000 metal2 -17100 108300 57000 114000 metal3 -51300 108300 57000 114000 metal2 -51300 108300 57000 114000 metal1 -) -net35 -( -17100 176700 22800 182400 metal1 -17100 176700 22800 182400 metal2 -17100 176700 51300 182400 metal3 -45600 176700 51300 182400 metal2 -45600 125400 51300 182400 metal2 -45600 125400 51300 131100 metal2 -45600 125400 62700 131100 metal3 -57000 125400 62700 131100 metal2 -57000 125400 62700 131100 metal1 -) -net36 -( -51300 96900 57000 108300 metal2 -51300 102600 57000 108300 metal2 -51300 102600 62700 108300 metal3 -57000 102600 62700 108300 metal2 -57000 102600 62700 108300 metal1 -17100 22800 22800 28500 metal1 -17100 22800 22800 28500 metal2 -17100 22800 28500 28500 metal3 -22800 22800 28500 28500 metal2 -22800 22800 28500 96900 metal2 -22800 91200 28500 96900 metal2 -22800 91200 34200 96900 metal3 -28500 91200 34200 96900 metal2 -28500 91200 34200 102600 metal2 -28500 96900 34200 102600 metal2 -28500 96900 57000 102600 metal3 -51300 96900 57000 102600 metal2 -51300 96900 57000 102600 metal1 -) -net37 -( -17100 22800 22800 28500 metal1 -17100 22800 22800 28500 metal2 -17100 22800 91200 28500 metal3 -85500 22800 91200 28500 metal2 -85500 22800 91200 28500 metal1 -) -net38 -( -125400 39900 131100 45600 metal1 -125400 39900 131100 45600 metal2 -125400 39900 136800 45600 metal3 -131100 39900 136800 45600 metal2 -131100 22800 136800 45600 metal2 -131100 22800 136800 28500 metal1 -) -net39 -( -96900 22800 102600 28500 metal1 -96900 22800 102600 28500 metal2 -96900 22800 176700 28500 metal3 -171000 22800 176700 28500 metal2 -171000 22800 176700 28500 metal1 -) -net4 -( -17100 28500 22800 34200 metal1 -17100 28500 22800 39900 metal2 -17100 34200 22800 39900 metal1 -) -net40 -( -114000 34200 119700 39900 metal1 -114000 34200 119700 39900 metal2 -114000 34200 176700 39900 metal3 -171000 34200 176700 39900 metal2 -171000 22800 176700 39900 metal2 -171000 22800 176700 28500 metal1 -) -net41 -( -125400 68400 131100 74100 metal1 -125400 68400 131100 74100 metal2 -125400 68400 142500 74100 metal3 -136800 68400 142500 74100 metal2 -136800 62700 142500 74100 metal2 -136800 62700 142500 68400 metal2 -136800 62700 176700 68400 metal3 -171000 62700 176700 68400 metal2 -171000 62700 176700 74100 metal2 -171000 68400 176700 74100 metal1 -) -net42 -( -17100 85500 22800 91200 metal1 -17100 74100 22800 91200 metal2 -17100 74100 22800 79800 metal2 -17100 74100 51300 79800 metal3 -45600 74100 51300 79800 metal2 -45600 74100 51300 79800 metal1 -) -net43 -( -79800 79800 85500 85500 metal1 -79800 22800 85500 85500 metal2 -79800 22800 85500 28500 metal2 -79800 22800 119700 28500 metal3 -114000 22800 119700 28500 metal2 -114000 22800 119700 28500 metal1 -) -net44 -( -17100 114000 22800 119700 metal1 -17100 114000 22800 119700 metal2 -17100 114000 57000 119700 metal3 -51300 114000 57000 119700 metal2 -51300 108300 57000 119700 metal2 -51300 108300 57000 114000 metal2 -51300 108300 62700 114000 metal3 -57000 108300 62700 114000 metal2 -57000 102600 62700 114000 metal2 -57000 102600 62700 108300 metal2 -57000 102600 74100 108300 metal3 -68400 102600 74100 108300 metal2 -68400 102600 74100 108300 metal1 -) -net45 -( -153900 119700 159600 125400 metal1 -153900 119700 159600 176700 metal2 -153900 171000 159600 176700 metal2 -153900 171000 176700 176700 metal3 -171000 171000 176700 176700 metal2 -171000 171000 176700 182400 metal2 -171000 176700 176700 182400 metal1 -) -net46 -( -17100 45600 22800 51300 metal1 -17100 45600 22800 51300 metal2 -17100 45600 57000 51300 metal3 -51300 45600 57000 51300 metal2 -51300 34200 57000 51300 metal2 -51300 34200 57000 39900 metal2 -51300 34200 74100 39900 metal3 -68400 34200 74100 39900 metal2 -68400 28500 74100 39900 metal2 -68400 28500 74100 34200 metal2 -68400 28500 125400 34200 metal3 -119700 28500 125400 34200 metal2 -119700 28500 125400 39900 metal2 -119700 34200 125400 39900 metal2 -119700 34200 131100 39900 metal3 -125400 34200 131100 39900 metal2 -125400 34200 131100 79800 metal2 -125400 74100 131100 79800 metal1 -) -net47 -( -159600 91200 165300 96900 metal1 -159600 85500 165300 96900 metal2 -159600 85500 165300 91200 metal2 -159600 85500 171000 91200 metal3 -165300 85500 171000 91200 metal2 -165300 74100 171000 91200 metal2 -165300 74100 171000 79800 metal2 -165300 74100 182400 79800 metal3 -176700 74100 182400 79800 metal2 -176700 45600 182400 79800 metal2 -176700 45600 182400 51300 metal2 -171000 45600 182400 51300 metal3 -171000 45600 176700 51300 metal2 -171000 34200 176700 51300 metal2 -171000 34200 176700 39900 metal1 -) -net48 -( -22800 22800 28500 28500 metal1 -22800 22800 28500 28500 metal2 -22800 22800 39900 28500 metal3 -34200 22800 39900 28500 metal2 -34200 11400 39900 28500 metal2 -34200 11400 39900 17100 metal2 -34200 11400 131100 17100 metal3 -125400 11400 131100 17100 metal2 -125400 11400 131100 51300 metal2 -125400 45600 131100 51300 metal2 -125400 45600 136800 51300 metal3 -131100 45600 136800 51300 metal2 -131100 45600 136800 68400 metal2 -131100 62700 136800 68400 metal1 -) -net49 -( -148200 119700 153900 125400 metal1 -148200 114000 153900 125400 metal2 -148200 114000 153900 119700 metal2 -148200 114000 171000 119700 metal3 -165300 114000 171000 119700 metal2 -165300 74100 171000 119700 metal2 -165300 74100 171000 79800 metal2 -159600 74100 171000 79800 metal3 -159600 74100 165300 79800 metal2 -159600 22800 165300 79800 metal2 -159600 22800 165300 28500 metal1 -) -net5 -( -108300 176700 114000 182400 metal1 -108300 171000 114000 182400 metal2 -108300 171000 114000 176700 metal1 -) -net50 -( -17100 131100 22800 136800 metal1 -17100 125400 22800 136800 metal2 -17100 125400 22800 131100 metal2 -17100 125400 79800 131100 metal3 -74100 125400 79800 131100 metal2 -74100 125400 79800 136800 metal2 -74100 131100 79800 136800 metal2 -74100 131100 85500 136800 metal3 -79800 131100 85500 136800 metal2 -79800 131100 85500 136800 metal1 -) -net51 -( -17100 148200 22800 153900 metal1 -17100 148200 22800 153900 metal2 -17100 148200 28500 153900 metal3 -22800 148200 28500 153900 metal2 -22800 136800 28500 153900 metal2 -22800 136800 28500 142500 metal2 -22800 136800 96900 142500 metal3 -91200 136800 96900 142500 metal2 -91200 136800 96900 142500 metal1 -) -net52 -( -17100 159600 22800 165300 metal1 -17100 153900 22800 165300 metal2 -17100 153900 22800 159600 metal2 -17100 153900 96900 159600 metal3 -91200 153900 96900 159600 metal2 -91200 136800 96900 159600 metal2 -91200 136800 96900 142500 metal1 -) -net53 -( -74100 57000 79800 62700 metal1 -74100 57000 79800 62700 metal2 -74100 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -79800 51300 85500 62700 metal2 -79800 51300 85500 57000 metal2 -79800 51300 125400 57000 metal3 -119700 51300 125400 57000 metal2 -119700 45600 125400 57000 metal2 -119700 45600 125400 51300 metal2 -119700 45600 176700 51300 metal3 -171000 45600 176700 51300 metal2 -171000 45600 176700 57000 metal2 -171000 51300 176700 57000 metal1 -) -net6 -( -57000 22800 62700 28500 metal1 -57000 22800 62700 51300 metal2 -57000 45600 62700 51300 metal1 -) -net7 -( -51300 176700 57000 182400 metal1 -51300 108300 57000 182400 metal2 -51300 108300 57000 114000 metal1 -) -net8 -( -171000 96900 176700 102600 metal1 -171000 96900 176700 102600 metal2 -171000 96900 182400 102600 metal3 -176700 96900 182400 102600 metal2 -176700 91200 182400 102600 metal2 -176700 91200 182400 96900 metal1 -) -net9 -( -79800 176700 85500 182400 metal1 -79800 171000 85500 182400 metal2 -79800 171000 85500 176700 metal2 -79800 171000 91200 176700 metal3 -85500 171000 91200 176700 metal2 -85500 171000 91200 176700 metal1 -) -req_msg[0] -( -171000 136800 176700 142500 metal1 -171000 136800 176700 142500 metal2 -171000 136800 200260 142500 metal3 -193800 136800 200260 142500 metal3 -193800 136800 200260 142500 metal4 -193800 136800 200260 142500 metal5 -) -req_msg[10] -( -125400 193800 131100 201600 metal2 -125400 193800 131100 201600 metal3 -125400 193800 131100 201600 metal4 -125400 193800 131100 201600 metal5 -125400 193800 131100 201600 metal6 -125400 176700 131100 201600 metal2 -125400 176700 131100 182400 metal1 -) -req_msg[11] -( -102600 0 108300 5700 metal2 -102600 0 108300 5700 metal3 -102600 0 108300 5700 metal4 -102600 0 108300 5700 metal5 -102600 0 108300 5700 metal6 -102600 0 108300 28500 metal2 -102600 22800 108300 28500 metal1 -) -req_msg[12] -( -171000 171000 176700 176700 metal1 -171000 171000 176700 176700 metal2 -171000 171000 200260 176700 metal3 -193800 171000 200260 176700 metal3 -193800 171000 200260 176700 metal4 -193800 171000 200260 176700 metal5 -) -req_msg[13] -( -142500 0 148200 5700 metal2 -142500 0 148200 5700 metal3 -142500 0 148200 5700 metal4 -142500 0 148200 5700 metal5 -142500 0 148200 5700 metal6 -142500 0 148200 28500 metal2 -142500 22800 148200 28500 metal1 -) -req_msg[14] -( -39900 0 45600 5700 metal3 -39900 0 45600 5700 metal4 -39900 0 45600 5700 metal5 -39900 0 45600 5700 metal6 -39900 0 51300 5700 metal3 -45600 0 51300 5700 metal2 -45600 0 51300 28500 metal2 -45600 22800 51300 28500 metal2 -39900 22800 51300 28500 metal3 -39900 22800 45600 28500 metal2 -39900 22800 45600 28500 metal1 -) -req_msg[15] -( -5700 193800 11400 201600 metal2 -5700 193800 11400 201600 metal3 -5700 193800 11400 201600 metal4 -5700 193800 11400 201600 metal5 -5700 193800 11400 201600 metal6 -5700 188100 11400 201600 metal2 -5700 188100 11400 193800 metal2 -5700 188100 28500 193800 metal3 -22800 188100 28500 193800 metal2 -22800 176700 28500 193800 metal2 -22800 176700 28500 182400 metal1 -) -req_msg[16] -( -153900 193800 159600 201600 metal2 -153900 193800 159600 201600 metal3 -153900 193800 159600 201600 metal4 -153900 193800 159600 201600 metal5 -153900 193800 159600 201600 metal6 -153900 176700 159600 201600 metal2 -153900 176700 159600 182400 metal1 -) -req_msg[17] -( -171000 79800 176700 85500 metal1 -171000 79800 176700 85500 metal2 -171000 79800 200260 85500 metal3 -193800 79800 200260 85500 metal3 -193800 79800 200260 85500 metal4 -193800 79800 200260 85500 metal5 -) -req_msg[18] -( -62700 193800 68400 201600 metal2 -62700 193800 68400 201600 metal3 -62700 193800 68400 201600 metal4 -62700 193800 68400 201600 metal5 -62700 193800 68400 201600 metal6 -62700 176700 68400 201600 metal2 -62700 176700 68400 182400 metal1 -) -req_msg[19] -( -136800 193800 142500 201600 metal2 -136800 193800 142500 201600 metal3 -136800 193800 142500 201600 metal4 -136800 193800 142500 201600 metal5 -136800 193800 142500 201600 metal6 -136800 176700 142500 201600 metal2 -136800 176700 142500 182400 metal1 -) -req_msg[1] -( -74100 0 79800 5700 metal2 -74100 0 79800 5700 metal3 -74100 0 79800 5700 metal4 -74100 0 79800 5700 metal5 -74100 0 79800 5700 metal6 -74100 0 79800 28500 metal2 -74100 22800 79800 28500 metal1 -) -req_msg[20] -( -28500 0 34200 5700 metal3 -28500 0 34200 5700 metal4 -28500 0 34200 5700 metal5 -28500 0 34200 5700 metal6 -22800 0 34200 5700 metal3 -22800 0 28500 5700 metal2 -22800 0 28500 17100 metal2 -22800 11400 28500 17100 metal2 -22800 11400 34200 17100 metal3 -28500 11400 34200 17100 metal2 -28500 11400 34200 28500 metal2 -28500 22800 34200 28500 metal1 -) -req_msg[21] -( -171000 125400 176700 131100 metal1 -171000 125400 176700 131100 metal2 -171000 125400 200260 131100 metal3 -193800 125400 200260 131100 metal3 -193800 125400 200260 131100 metal4 -193800 125400 200260 131100 metal5 -) -req_msg[22] -( -165300 22800 171000 28500 metal1 -165300 11400 171000 28500 metal2 -165300 11400 171000 17100 metal2 -165300 11400 200260 17100 metal3 -193800 11400 200260 17100 metal2 -193800 5700 200260 17100 metal2 -193800 5700 200260 11400 metal2 -193800 5700 200260 11400 metal3 -193800 5700 200260 11400 metal4 -193800 5700 200260 11400 metal5 -) -req_msg[23] -( -79800 193800 85500 201600 metal2 -79800 193800 85500 201600 metal3 -79800 193800 85500 201600 metal4 -79800 193800 85500 201600 metal5 -79800 193800 85500 201600 metal6 -79800 176700 85500 201600 metal2 -79800 176700 85500 182400 metal1 -) -req_msg[24] -( -171000 91200 176700 96900 metal1 -171000 91200 176700 96900 metal2 -171000 91200 200260 96900 metal3 -193800 91200 200260 96900 metal3 -193800 91200 200260 96900 metal4 -193800 91200 200260 96900 metal5 -) -req_msg[25] -( -51300 193800 57000 201600 metal2 -51300 193800 57000 201600 metal3 -51300 193800 57000 201600 metal4 -51300 193800 57000 201600 metal5 -51300 193800 57000 201600 metal6 -51300 188100 57000 201600 metal2 -51300 188100 57000 193800 metal2 -45600 188100 57000 193800 metal3 -45600 188100 51300 193800 metal2 -45600 176700 51300 193800 metal2 -45600 176700 51300 182400 metal2 -45600 176700 57000 182400 metal3 -51300 176700 57000 182400 metal2 -51300 176700 57000 182400 metal1 -) -req_msg[26] -( -57000 0 62700 5700 metal2 -57000 0 62700 5700 metal3 -57000 0 62700 5700 metal4 -57000 0 62700 5700 metal5 -57000 0 62700 5700 metal6 -57000 0 62700 28500 metal2 -57000 22800 62700 28500 metal1 -) -req_msg[27] -( -108300 193800 114000 201600 metal2 -108300 193800 114000 201600 metal3 -108300 193800 114000 201600 metal4 -108300 193800 114000 201600 metal5 -108300 193800 114000 201600 metal6 -108300 176700 114000 201600 metal2 -108300 176700 114000 182400 metal1 -) -req_msg[28] -( -0 28500 5700 34200 metal3 -0 28500 5700 34200 metal4 -0 28500 5700 34200 metal5 -0 28500 22800 34200 metal3 -17100 28500 22800 34200 metal2 -17100 28500 22800 34200 metal1 -) -req_msg[29] -( -85500 0 91200 5700 metal2 -85500 0 91200 5700 metal3 -85500 0 91200 5700 metal4 -85500 0 91200 5700 metal5 -85500 0 91200 5700 metal6 -85500 0 91200 28500 metal2 -85500 22800 91200 28500 metal1 -) -req_msg[2] -( -148200 176700 153900 182400 metal1 -148200 176700 153900 193800 metal2 -148200 188100 153900 193800 metal2 -148200 188100 171000 193800 metal3 -165300 188100 171000 193800 metal2 -165300 188100 171000 201600 metal2 -165300 193800 171000 201600 metal2 -165300 193800 171000 201600 metal3 -165300 193800 171000 201600 metal4 -165300 193800 171000 201600 metal5 -165300 193800 171000 201600 metal6 -) -req_msg[30] -( -34200 193800 39900 201600 metal2 -34200 193800 39900 201600 metal3 -34200 193800 39900 201600 metal4 -34200 193800 39900 201600 metal5 -34200 193800 39900 201600 metal6 -34200 176700 39900 201600 metal2 -34200 176700 39900 182400 metal1 -) -req_msg[31] -( -165300 176700 171000 182400 metal1 -165300 176700 171000 182400 metal2 -165300 176700 188100 182400 metal3 -182400 176700 188100 182400 metal2 -182400 176700 188100 201600 metal2 -182400 193800 188100 201600 metal2 -182400 193800 188100 201600 metal3 -182400 193800 188100 201600 metal4 -182400 193800 188100 201600 metal5 -182400 193800 188100 201600 metal6 -) -req_msg[3] -( -0 176700 5700 182400 metal3 -0 176700 5700 182400 metal4 -0 176700 5700 182400 metal5 -0 176700 17100 182400 metal3 -11400 176700 17100 182400 metal2 -11400 171000 17100 182400 metal2 -11400 171000 17100 176700 metal2 -11400 171000 22800 176700 metal3 -17100 171000 22800 176700 metal2 -17100 171000 22800 176700 metal1 -) -req_msg[4] -( -171000 108300 176700 114000 metal1 -171000 108300 176700 114000 metal2 -171000 108300 200260 114000 metal3 -193800 108300 200260 114000 metal3 -193800 108300 200260 114000 metal4 -193800 108300 200260 114000 metal5 -) -req_msg[5] -( -171000 28500 176700 34200 metal1 -171000 28500 176700 34200 metal2 -171000 28500 182400 34200 metal3 -176700 28500 182400 34200 metal2 -176700 0 182400 34200 metal2 -176700 0 182400 5700 metal2 -176700 0 182400 5700 metal3 -176700 0 182400 5700 metal4 -176700 0 182400 5700 metal5 -176700 0 182400 5700 metal6 -) -req_msg[6] -( -0 57000 5700 62700 metal3 -0 57000 5700 62700 metal4 -0 57000 5700 62700 metal5 -0 57000 22800 62700 metal3 -17100 57000 22800 62700 metal2 -17100 57000 22800 62700 metal1 -) -req_msg[7] -( -171000 153900 176700 159600 metal1 -171000 153900 176700 159600 metal2 -171000 153900 200260 159600 metal3 -193800 153900 200260 159600 metal3 -193800 153900 200260 159600 metal4 -193800 153900 200260 159600 metal5 -) -req_msg[8] -( -17100 193800 22800 201600 metal2 -17100 193800 22800 201600 metal3 -17100 193800 22800 201600 metal4 -17100 193800 22800 201600 metal5 -17100 193800 22800 201600 metal6 -17100 188100 22800 201600 metal2 -17100 188100 22800 193800 metal2 -17100 188100 28500 193800 metal3 -22800 188100 28500 193800 metal2 -22800 176700 28500 193800 metal2 -22800 176700 28500 182400 metal2 -22800 176700 34200 182400 metal3 -28500 176700 34200 182400 metal2 -28500 176700 34200 182400 metal1 -) -req_msg[9] -( -0 68400 5700 74100 metal2 -0 68400 5700 74100 metal3 -0 68400 5700 74100 metal4 -0 68400 5700 74100 metal5 -0 68400 5700 79800 metal2 -0 74100 5700 79800 metal2 -0 74100 22800 79800 metal3 -17100 74100 22800 79800 metal2 -17100 74100 22800 79800 metal1 -) -req_rdy -( -0 0 5700 5700 metal2 -0 0 5700 5700 metal3 -0 0 5700 5700 metal4 -0 0 5700 5700 metal5 -0 0 5700 5700 metal6 -0 0 5700 28500 metal2 -0 22800 5700 28500 metal2 -0 22800 22800 28500 metal3 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal1 -) -req_val -( -165300 176700 171000 182400 metal1 -165300 176700 171000 182400 metal2 -165300 176700 193800 182400 metal3 -188100 176700 193800 182400 metal2 -188100 176700 193800 188100 metal2 -188100 182400 193800 188100 metal2 -188100 182400 200260 188100 metal3 -193800 182400 200260 188100 metal3 -193800 182400 200260 188100 metal4 -193800 182400 200260 188100 metal5 -) -reset -( -0 102600 5700 108300 metal3 -0 102600 5700 108300 metal4 -0 102600 5700 108300 metal5 -0 102600 22800 108300 metal3 -17100 102600 22800 108300 metal2 -17100 102600 22800 108300 metal1 -) -resp_msg[0] -( -0 159600 5700 165300 metal3 -0 159600 5700 165300 metal4 -0 159600 5700 165300 metal5 -0 159600 22800 165300 metal3 -17100 159600 22800 165300 metal2 -17100 159600 22800 165300 metal1 -) -resp_msg[10] -( -0 85500 5700 91200 metal3 -0 85500 5700 91200 metal4 -0 85500 5700 91200 metal5 -0 85500 22800 91200 metal3 -17100 85500 22800 91200 metal2 -17100 85500 22800 91200 metal1 -) -resp_msg[11] -( -176700 68400 182400 74100 metal1 -176700 62700 182400 74100 metal2 -176700 62700 182400 68400 metal2 -176700 62700 200260 68400 metal3 -193800 62700 200260 68400 metal3 -193800 62700 200260 68400 metal4 -193800 62700 200260 68400 metal5 -) -resp_msg[12] -( -176700 22800 182400 28500 metal1 -176700 22800 182400 28500 metal2 -176700 22800 188100 28500 metal3 -182400 22800 188100 28500 metal2 -182400 17100 188100 28500 metal2 -182400 17100 188100 22800 metal2 -182400 17100 193800 22800 metal3 -188100 17100 193800 22800 metal2 -188100 0 193800 22800 metal2 -188100 0 193800 5700 metal2 -188100 0 193800 5700 metal3 -188100 0 193800 5700 metal4 -188100 0 193800 5700 metal5 -188100 0 193800 5700 metal6 -) -resp_msg[13] -( -176700 22800 182400 28500 metal1 -176700 22800 182400 28500 metal2 -176700 22800 193800 28500 metal3 -188100 22800 193800 28500 metal2 -188100 17100 193800 28500 metal2 -188100 17100 193800 22800 metal2 -188100 17100 200260 22800 metal3 -193800 17100 200260 22800 metal3 -193800 17100 200260 22800 metal4 -193800 17100 200260 22800 metal5 -) -resp_msg[14] -( -131100 22800 136800 28500 metal1 -131100 11400 136800 28500 metal2 -131100 11400 136800 17100 metal2 -125400 11400 136800 17100 metal3 -125400 11400 131100 17100 metal2 -125400 0 131100 17100 metal2 -125400 0 131100 5700 metal2 -125400 0 136800 5700 metal3 -131100 0 136800 5700 metal3 -131100 0 136800 5700 metal4 -131100 0 136800 5700 metal5 -131100 0 136800 5700 metal6 -) -resp_msg[15] -( -11400 0 17100 5700 metal2 -11400 0 17100 5700 metal3 -11400 0 17100 5700 metal4 -11400 0 17100 5700 metal5 -11400 0 17100 5700 metal6 -11400 0 17100 28500 metal2 -11400 22800 17100 28500 metal2 -11400 22800 22800 28500 metal3 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal1 -) -resp_msg[1] -( -0 142500 5700 148200 metal3 -0 142500 5700 148200 metal4 -0 142500 5700 148200 metal5 -0 142500 22800 148200 metal3 -17100 142500 22800 148200 metal2 -17100 142500 22800 153900 metal2 -17100 148200 22800 153900 metal1 -) -resp_msg[2] -( -0 131100 5700 136800 metal2 -0 131100 5700 136800 metal3 -0 131100 5700 136800 metal4 -0 131100 5700 136800 metal5 -0 131100 5700 142500 metal2 -0 136800 5700 142500 metal2 -0 136800 22800 142500 metal3 -17100 136800 22800 142500 metal2 -17100 131100 22800 142500 metal2 -17100 131100 22800 136800 metal1 -) -resp_msg[3] -( -159600 22800 165300 28500 metal1 -159600 22800 165300 28500 metal2 -153900 22800 165300 28500 metal3 -153900 22800 159600 28500 metal2 -153900 0 159600 28500 metal2 -153900 0 159600 5700 metal2 -153900 0 165300 5700 metal3 -159600 0 165300 5700 metal3 -159600 0 165300 5700 metal4 -159600 0 165300 5700 metal5 -159600 0 165300 5700 metal6 -) -resp_msg[4] -( -0 11400 5700 17100 metal3 -0 11400 5700 17100 metal4 -0 11400 5700 17100 metal5 -0 11400 28500 17100 metal3 -22800 11400 28500 17100 metal2 -22800 11400 28500 28500 metal2 -22800 22800 28500 28500 metal1 -) -resp_msg[5] -( -176700 34200 182400 39900 metal1 -176700 34200 182400 39900 metal2 -176700 34200 200260 39900 metal3 -193800 34200 200260 39900 metal3 -193800 34200 200260 39900 metal4 -193800 34200 200260 39900 metal5 -) -resp_msg[6] -( -0 39900 5700 45600 metal2 -0 39900 5700 45600 metal3 -0 39900 5700 45600 metal4 -0 39900 5700 45600 metal5 -0 39900 5700 51300 metal2 -0 45600 5700 51300 metal2 -0 45600 22800 51300 metal3 -17100 45600 22800 51300 metal2 -17100 45600 22800 51300 metal1 -) -resp_msg[7] -( -176700 176700 182400 182400 metal1 -176700 176700 182400 193800 metal2 -176700 188100 182400 193800 metal2 -176700 188100 200260 193800 metal3 -193800 188100 200260 193800 metal2 -193800 188100 200260 201600 metal2 -193800 193800 200260 201600 metal2 -193800 193800 200260 201600 metal3 -193800 193800 200260 201600 metal4 -193800 193800 200260 201600 metal5 -193800 193800 200260 201600 metal6 -) -resp_msg[8] -( -0 114000 5700 119700 metal3 -0 114000 5700 119700 metal4 -0 114000 5700 119700 metal5 -0 114000 22800 119700 metal3 -17100 114000 22800 119700 metal2 -17100 114000 22800 119700 metal1 -) -resp_msg[9] -( -114000 0 119700 5700 metal2 -114000 0 119700 5700 metal3 -114000 0 119700 5700 metal4 -114000 0 119700 5700 metal5 -114000 0 119700 5700 metal6 -114000 0 119700 28500 metal2 -114000 22800 119700 28500 metal2 -114000 22800 125400 28500 metal3 -119700 22800 125400 28500 metal2 -119700 22800 125400 28500 metal1 -) -resp_rdy -( -0 188100 5700 193800 metal2 -0 188100 5700 193800 metal3 -0 188100 5700 193800 metal4 -0 188100 5700 193800 metal5 -0 176700 5700 193800 metal2 -0 176700 5700 182400 metal2 -0 176700 22800 182400 metal3 -17100 176700 22800 182400 metal2 -17100 176700 22800 182400 metal1 -) -resp_val -( -176700 51300 182400 57000 metal1 -176700 51300 182400 57000 metal2 -176700 51300 200260 57000 metal3 -193800 51300 200260 57000 metal3 -193800 51300 200260 57000 metal4 -193800 51300 200260 57000 metal5 -) diff --git a/src/grt/test/congestion1_snapshot_batched.ok b/src/grt/test/congestion1_snapshot_batched.ok deleted file mode 100644 index 49bc25d93b7..00000000000 --- a/src/grt/test/congestion1_snapshot_batched.ok +++ /dev/null @@ -1,94 +0,0 @@ -[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells -[INFO ODB-0128] Design: gcd -[INFO ODB-0130] Created 54 pins. -[INFO ODB-0131] Created 676 components and 2850 component-terminals. -[INFO ODB-0133] Created 579 nets and 1498 connections. -[WARNING GRT-0300] Timing is not available, setting critical nets percentage to 0. -[INFO GRT-0020] Min routing layer: metal2 -[INFO GRT-0021] Max routing layer: metal10 -[INFO GRT-0022] Global adjustment: 0% -[INFO GRT-0023] Grid origin: (0, 0) -[INFO GRT-0088] Layer metal1 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1350 -[INFO GRT-0088] Layer metal2 Track-Pitch = 0.1900 line-2-Via Pitch: 0.1400 -[INFO GRT-0088] Layer metal3 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1400 -[INFO GRT-0088] Layer metal4 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal5 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal6 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal7 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 -[INFO GRT-0088] Layer metal8 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 -[INFO GRT-0088] Layer metal9 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 -[INFO GRT-0088] Layer metal10 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 -[INFO GRT-0003] Macros: 0 -[INFO GRT-0004] Blockages: 0 -[INFO GRT-0019] Found 0 clock nets. -[INFO GRT-0001] Minimum degree: 2 -[INFO GRT-0002] Maximum degree: 36 - -[INFO GRT-0053] Routing resources analysis: - Routing Original Derated Resource -Layer Direction Resources Resources Reduction (%) ---------------------------------------------------------------- -metal1 Horizontal 0 0 0.00% -metal2 Vertical 17918 1190 93.36% -metal3 Horizontal 24480 2380 90.28% -metal4 Vertical 12172 0 100.00% -metal5 Horizontal 12240 0 100.00% -metal6 Vertical 12172 0 100.00% -metal7 Horizontal 4284 0 100.00% -metal8 Vertical 4284 0 100.00% -metal9 Horizontal 2142 0 100.00% -metal10 Vertical 2142 0 100.00% ---------------------------------------------------------------- - -[INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0102] Start extra iteration 1/50 -[INFO GRT-0102] Start extra iteration 2/50 -[INFO GRT-0102] Start extra iteration 3/50 -[INFO GRT-0102] Start extra iteration 4/50 -[INFO GRT-0102] Start extra iteration 5/50 -[INFO GRT-0102] Start extra iteration 6/50 -[INFO GRT-0102] Start extra iteration 7/50 -[INFO GRT-0102] Start extra iteration 8/50 -[INFO GRT-0102] Start extra iteration 9/50 -[INFO GRT-0102] Start extra iteration 10/50 -[INFO GRT-0102] Start extra iteration 11/50 -[INFO GRT-0102] Start extra iteration 12/50 -[INFO GRT-0102] Start extra iteration 13/50 -[INFO GRT-0102] Start extra iteration 14/50 -[INFO GRT-0102] Start extra iteration 15/50 -[INFO GRT-0102] Start extra iteration 16/50 -[INFO GRT-0102] Start extra iteration 17/50 -[INFO GRT-0102] Start extra iteration 18/50 -[INFO GRT-0102] Start extra iteration 19/50 -[INFO GRT-0102] Start extra iteration 20/50 -[INFO GRT-0102] Start extra iteration 21/50 -[INFO GRT-0102] Start extra iteration 22/50 -[INFO GRT-0102] Start extra iteration 23/50 -[INFO GRT-0102] Start extra iteration 24/50 -[INFO GRT-0102] Start extra iteration 25/50 -[INFO GRT-0197] Via related to pin nodes: 2837 -[INFO GRT-0198] Via related Steiner nodes: 35 -[INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 3820 -[INFO GRT-0112] Final usage 3D: 14109 - -[INFO GRT-0096] Final congestion report: -Layer Resource Demand Usage (%) Max H / Max V / Total Overflow ---------------------------------------------------------------------------------------- -metal1 0 0 0.00% 0 / 0 / 0 -metal2 1190 1258 105.71% 1 / 4 / 527 -metal3 2380 1391 58.45% 3 / 1 / 300 -metal4 0 0 0.00% 0 / 0 / 0 -metal5 0 0 0.00% 0 / 0 / 0 -metal6 0 0 0.00% 0 / 0 / 0 -metal7 0 0 0.00% 0 / 0 / 0 -metal8 0 0 0.00% 0 / 0 / 0 -metal9 0 0 0.00% 0 / 0 / 0 -metal10 0 0 0.00% 0 / 0 / 0 ---------------------------------------------------------------------------------------- -Total 3570 2649 74.20% 4 / 5 / 827 - -[INFO GRT-0018] Total wirelength: 11502 um -[INFO GRT-0014] Routed nets: 563 -[WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. -No differences found. diff --git a/src/grt/test/congestion1_snapshot_batched.tcl b/src/grt/test/congestion1_snapshot_batched.tcl deleted file mode 100644 index 14833162682..00000000000 --- a/src/grt/test/congestion1_snapshot_batched.tcl +++ /dev/null @@ -1,19 +0,0 @@ -source "helpers.tcl" -read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" - -set_thread_count 16 - -set guide_file [make_result_file congestion1_snapshot_batched.guide] - -set_global_routing_layer_adjustment metal2 0.9 -set_global_routing_layer_adjustment metal3 0.9 -set_global_routing_layer_adjustment metal4-metal10 1 - -set_routing_layers -signal metal2-metal10 - -global_route -allow_congestion -snapshot_batched_width 16 -verbose - -write_guides $guide_file - -diff_file congestion1_snapshot_batched.guideok $guide_file diff --git a/src/grt/test/congestion2_snapshot_batched.guideok b/src/grt/test/congestion2_snapshot_batched.guideok deleted file mode 100644 index 2a5d91f9ad5..00000000000 --- a/src/grt/test/congestion2_snapshot_batched.guideok +++ /dev/null @@ -1,7185 +0,0 @@ -_000_ -( -51300 102600 57000 108300 metal1 -51300 102600 57000 114000 metal2 -51300 108300 57000 114000 metal2 -51300 108300 62700 114000 metal3 -57000 108300 62700 114000 metal2 -57000 108300 62700 114000 metal1 -) -_001_ -( -51300 114000 57000 119700 metal1 -51300 114000 57000 125400 metal2 -51300 119700 57000 125400 metal2 -51300 119700 62700 125400 metal3 -57000 119700 62700 125400 metal2 -57000 119700 62700 125400 metal1 -) -_002_ -( -74100 114000 79800 119700 metal1 -74100 108300 79800 119700 metal2 -74100 108300 79800 114000 metal1 -) -_003_ -( -57000 114000 62700 119700 metal1 -57000 114000 62700 125400 metal2 -57000 119700 62700 125400 metal1 -) -_004_ -( -74100 108300 79800 114000 metal1 -74100 108300 79800 114000 metal2 -74100 108300 79800 114000 metal3 -74100 108300 79800 119700 metal4 -74100 114000 79800 119700 metal3 -74100 114000 79800 119700 metal2 -74100 114000 79800 119700 metal1 -) -_005_ -( -57000 102600 62700 108300 metal1 -57000 102600 62700 108300 metal2 -57000 102600 68400 108300 metal3 -62700 102600 68400 108300 metal2 -62700 102600 68400 108300 metal1 -) -_006_ -( -136800 131100 142500 136800 metal1 -136800 125400 142500 136800 metal2 -136800 125400 142500 131100 metal1 -) -_007_ -( -85500 119700 91200 125400 metal1 -85500 119700 91200 131100 metal2 -85500 125400 91200 131100 metal2 -85500 125400 96900 131100 metal3 -91200 125400 96900 131100 metal2 -91200 125400 96900 131100 metal1 -) -_008_ -( -102600 136800 108300 142500 metal1 -102600 136800 108300 142500 metal2 -102600 136800 108300 142500 metal3 -102600 136800 108300 148200 metal4 -102600 142500 108300 148200 metal3 -102600 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_009_ -( -119700 136800 125400 142500 metal1 -119700 131100 125400 142500 metal2 -119700 131100 125400 136800 metal2 -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 131100 131100 136800 metal1 -) -_010_ -( -148200 79800 153900 85500 metal1 -148200 79800 153900 85500 metal2 -148200 79800 159600 85500 metal3 -153900 79800 159600 85500 metal3 -153900 79800 159600 91200 metal4 -153900 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_011_ -( -153900 108300 159600 114000 metal1 -153900 108300 159600 114000 metal2 -153900 108300 165300 114000 metal3 -159600 108300 165300 114000 metal2 -159600 102600 165300 114000 metal2 -159600 102600 165300 108300 metal1 -) -_012_ -( -125400 85500 131100 91200 metal1 -125400 79800 131100 91200 metal2 -125400 79800 131100 85500 metal1 -) -_013_ -( -131100 114000 136800 119700 metal1 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal1 -) -_014_ -( -62700 96900 68400 102600 metal1 -62700 96900 68400 102600 metal2 -62700 96900 74100 102600 metal3 -68400 96900 74100 102600 metal2 -68400 96900 74100 102600 metal1 -) -_015_ -( -51300 85500 57000 91200 metal1 -51300 85500 57000 91200 metal2 -51300 85500 62700 91200 metal3 -57000 85500 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_016_ -( -68400 62700 74100 68400 metal1 -68400 62700 74100 68400 metal2 -68400 62700 79800 68400 metal3 -74100 62700 79800 68400 metal3 -74100 57000 79800 68400 metal4 -74100 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 -74100 57000 79800 62700 metal1 -) -_017_ -( -114000 68400 119700 74100 metal1 -114000 68400 119700 79800 metal2 -114000 74100 119700 79800 metal1 -) -_018_ -( -114000 51300 119700 57000 metal1 -114000 51300 119700 57000 metal2 -) -_019_ -( -96900 34200 102600 39900 metal1 -96900 34200 102600 39900 metal2 -96900 34200 108300 39900 metal3 -102600 34200 108300 39900 metal3 -102600 28500 108300 39900 metal4 -102600 28500 108300 34200 metal3 -102600 28500 108300 34200 metal2 -102600 28500 108300 34200 metal1 -) -_020_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 57000 metal2 -68400 51300 74100 57000 metal2 -68400 51300 79800 57000 metal3 -74100 51300 79800 57000 metal2 -74100 51300 79800 57000 metal1 -) -_021_ -( -108300 74100 114000 79800 metal1 -108300 74100 114000 85500 metal2 -108300 79800 114000 85500 metal1 -) -_022_ -( -148200 125400 153900 131100 metal1 -148200 125400 153900 136800 metal2 -148200 131100 153900 136800 metal1 -) -_023_ -( -57000 62700 62700 68400 metal1 -57000 62700 62700 68400 metal2 -) -_024_ -( -119700 68400 125400 74100 metal1 -119700 62700 125400 74100 metal2 -119700 62700 125400 68400 metal1 -) -_025_ -( -114000 39900 119700 45600 metal1 -114000 39900 119700 51300 metal2 -114000 45600 119700 51300 metal1 -) -_026_ -( -85500 34200 91200 39900 metal1 -85500 28500 91200 39900 metal2 -85500 28500 91200 34200 metal1 -) -_027_ -( -68400 39900 74100 45600 metal1 -68400 34200 74100 45600 metal2 -68400 34200 74100 39900 metal2 -68400 34200 79800 39900 metal3 -74100 34200 79800 39900 metal2 -74100 34200 79800 39900 metal1 -) -_028_ -( -102600 85500 108300 91200 metal1 -102600 85500 108300 91200 metal2 -102600 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -) -_029_ -( -85500 131100 91200 136800 metal1 -85500 131100 91200 136800 metal2 -) -_030_ -( -96900 142500 102600 148200 metal1 -96900 142500 102600 153900 metal2 -96900 148200 102600 153900 metal1 -) -_031_ -( -125400 142500 131100 148200 metal1 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 136800 136800 148200 metal2 -131100 136800 136800 142500 metal1 -) -_032_ -( -148200 74100 153900 79800 metal1 -148200 74100 153900 79800 metal2 -) -_033_ -( -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -) -_034_ -( -131100 68400 136800 74100 metal1 -131100 68400 136800 74100 metal2 -) -_035_ -( -131100 119700 136800 125400 metal1 -131100 119700 136800 125400 metal2 -) -_036_ -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -) -_037_ -( -51300 74100 57000 79800 metal1 -51300 68400 57000 79800 metal2 -51300 68400 57000 74100 metal2 -51300 68400 62700 74100 metal3 -57000 68400 62700 74100 metal2 -57000 68400 62700 74100 metal1 -) -_038_ -( -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -) -_039_ -( -68400 57000 74100 62700 metal1 -68400 57000 74100 62700 metal2 -68400 57000 74100 62700 metal3 -68400 57000 74100 62700 metal4 -68400 57000 79800 62700 metal5 -74100 57000 79800 62700 metal5 -74100 57000 79800 68400 metal6 -74100 62700 79800 68400 metal5 -74100 62700 79800 68400 metal4 -74100 62700 79800 68400 metal3 -74100 62700 79800 68400 metal2 -74100 62700 79800 68400 metal1 -) -_040_ -( -108300 68400 114000 74100 metal1 -108300 68400 114000 74100 metal2 -) -_041_ -( -114000 57000 119700 62700 metal1 -114000 51300 119700 62700 metal2 -114000 51300 119700 57000 metal1 -) -_042_ -( -96900 28500 102600 34200 metal1 -96900 28500 102600 34200 metal2 -96900 28500 114000 34200 metal3 -108300 28500 114000 34200 metal2 -108300 28500 114000 39900 metal2 -108300 34200 114000 39900 metal1 -) -_043_ -( -68400 51300 74100 57000 metal1 -68400 51300 74100 57000 metal2 -68400 51300 79800 57000 metal3 -74100 51300 79800 57000 metal2 -74100 45600 79800 57000 metal2 -74100 45600 79800 51300 metal1 -) -_044_ -( -102600 79800 108300 85500 metal1 -102600 74100 108300 85500 metal2 -102600 74100 108300 79800 metal1 -) -_045_ -( -85500 119700 91200 125400 metal1 -85500 119700 91200 125400 metal2 -) -_046_ -( -102600 142500 108300 148200 metal1 -102600 142500 108300 148200 metal2 -102600 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_047_ -( -119700 142500 125400 148200 metal1 -119700 136800 125400 148200 metal2 -119700 136800 125400 142500 metal1 -) -_048_ -( -148200 85500 153900 91200 metal1 -148200 85500 153900 91200 metal2 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_049_ -( -153900 102600 159600 108300 metal1 -153900 102600 159600 108300 metal2 -) -_050_ -( -119700 79800 125400 85500 metal1 -119700 79800 125400 85500 metal2 -119700 79800 125400 85500 metal3 -119700 79800 125400 91200 metal4 -119700 85500 125400 91200 metal3 -119700 85500 131100 91200 metal3 -125400 85500 131100 91200 metal2 -125400 85500 131100 91200 metal1 -) -_051_ -( -131100 114000 136800 119700 metal1 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 108300 142500 119700 metal2 -136800 108300 142500 114000 metal1 -) -_052_ -( -62700 96900 68400 102600 metal1 -62700 96900 68400 102600 metal2 -) -_053_ -( -51300 79800 57000 85500 metal1 -51300 79800 57000 91200 metal2 -51300 85500 57000 91200 metal1 -) -_054_ -( -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -) -_055_ -( -57000 119700 62700 125400 metal1 -57000 119700 62700 125400 metal2 -57000 119700 62700 125400 metal3 -57000 114000 62700 125400 metal4 -57000 114000 62700 119700 metal3 -57000 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_056_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -) -_057_ -( -57000 119700 62700 125400 metal1 -57000 119700 62700 125400 metal2 -57000 119700 68400 125400 metal3 -62700 119700 68400 125400 metal2 -62700 119700 68400 125400 metal1 -62700 114000 68400 125400 metal2 -62700 114000 68400 119700 metal1 -) -_058_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -74100 114000 85500 119700 metal3 -79800 114000 85500 119700 metal2 -79800 114000 85500 119700 metal1 -) -_059_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -62700 108300 74100 114000 metal3 -68400 108300 74100 114000 metal2 -68400 108300 74100 114000 metal1 -79800 102600 85500 108300 metal2 -79800 102600 91200 108300 metal3 -85500 102600 91200 108300 metal2 -85500 102600 91200 108300 metal1 -79800 96900 85500 108300 metal2 -79800 96900 85500 102600 metal1 -68400 102600 74100 108300 metal1 -68400 102600 74100 108300 metal2 -68400 102600 85500 108300 metal3 -62700 102600 68400 114000 metal2 -62700 102600 68400 108300 metal1 -68400 102600 74100 114000 metal2 -) -_060_ -( -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_061_ -( -91200 125400 96900 131100 metal1 -91200 125400 96900 131100 metal2 -91200 125400 102600 131100 metal3 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal1 -) -_062_ -( -96900 136800 102600 142500 metal1 -96900 136800 102600 142500 metal2 -96900 136800 108300 142500 metal3 -102600 136800 108300 142500 metal2 -102600 136800 108300 142500 metal1 -) -_063_ -( -125400 131100 131100 136800 metal1 -125400 131100 131100 136800 metal2 -) -_064_ -( -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 153900 85500 metal3 -148200 79800 153900 85500 metal2 -148200 79800 153900 85500 metal1 -) -_065_ -( -142500 108300 148200 114000 metal1 -142500 108300 148200 114000 metal2 -142500 108300 159600 114000 metal3 -153900 108300 159600 114000 metal2 -153900 108300 159600 114000 metal1 -) -_066_ -( -125400 79800 131100 85500 metal1 -125400 79800 131100 85500 metal2 -125400 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -) -_067_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -131100 114000 136800 119700 metal1 -) -_068_ -( -68400 96900 74100 102600 metal1 -68400 91200 74100 102600 metal2 -68400 91200 74100 96900 metal1 -) -_069_ -( -57000 85500 62700 91200 metal1 -57000 85500 62700 91200 metal2 -57000 85500 68400 91200 metal3 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal1 -) -_070_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 62700 metal2 -62700 57000 68400 62700 metal3 -62700 57000 68400 68400 metal4 -62700 62700 68400 68400 metal3 -62700 62700 74100 68400 metal3 -68400 62700 74100 68400 metal2 -68400 62700 74100 68400 metal1 -) -_071_ -( -114000 74100 119700 79800 metal1 -114000 74100 119700 85500 metal2 -114000 79800 119700 85500 metal1 -) -_072_ -( -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 119700 45600 metal3 -114000 39900 119700 45600 metal3 -114000 39900 119700 57000 metal4 -114000 51300 119700 57000 metal3 -114000 51300 119700 57000 metal2 -114000 51300 119700 57000 metal1 -) -_073_ -( -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 102600 45600 metal3 -96900 39900 102600 45600 metal2 -96900 34200 102600 45600 metal2 -96900 34200 102600 39900 metal1 -) -_074_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -) -_075_ -( -108300 79800 114000 85500 metal1 -108300 79800 114000 91200 metal2 -108300 85500 114000 91200 metal1 -) -_076_ -( -142500 125400 148200 131100 metal1 -142500 125400 148200 131100 metal2 -142500 125400 153900 131100 metal3 -148200 125400 153900 131100 metal2 -148200 125400 153900 131100 metal1 -) -_077_ -( -57000 62700 62700 68400 metal1 -57000 62700 62700 68400 metal2 -57000 62700 68400 68400 metal3 -62700 62700 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_078_ -( -119700 68400 125400 74100 metal1 -119700 68400 125400 74100 metal2 -) -_079_ -( -108300 45600 114000 51300 metal1 -108300 39900 114000 51300 metal2 -108300 39900 114000 45600 metal2 -108300 39900 119700 45600 metal3 -114000 39900 119700 45600 metal2 -114000 39900 119700 45600 metal1 -) -_080_ -( -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -) -_081_ -( -68400 39900 74100 45600 metal1 -68400 39900 74100 45600 metal2 -) -_082_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_083_ -( -85500 131100 91200 136800 metal1 -85500 131100 91200 136800 metal2 -85500 131100 102600 136800 metal3 -96900 131100 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_084_ -( -96900 142500 102600 148200 metal1 -96900 142500 102600 148200 metal2 -96900 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 136800 108300 148200 metal2 -102600 136800 108300 142500 metal1 -) -_085_ -( -125400 136800 131100 142500 metal1 -125400 136800 131100 142500 metal2 -125400 136800 136800 142500 metal3 -131100 136800 136800 142500 metal2 -131100 136800 136800 142500 metal1 -) -_086_ -( -148200 74100 153900 79800 metal1 -148200 74100 153900 79800 metal2 -) -_087_ -( -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -) -_088_ -( -131100 74100 136800 79800 metal1 -131100 68400 136800 79800 metal2 -131100 68400 136800 74100 metal1 -) -_089_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -131100 114000 136800 125400 metal2 -131100 119700 136800 125400 metal1 -) -_090_ -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -51300 91200 68400 96900 metal3 -62700 91200 68400 96900 metal2 -62700 91200 68400 96900 metal1 -) -_091_ -( -57000 68400 62700 74100 metal1 -57000 68400 62700 74100 metal2 -57000 68400 68400 74100 metal3 -62700 68400 68400 74100 metal2 -62700 68400 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -_092_ -( -131100 131100 136800 136800 metal1 -131100 131100 136800 136800 metal2 -131100 131100 148200 136800 metal3 -142500 131100 148200 136800 metal2 -142500 131100 148200 142500 metal2 -142500 136800 148200 142500 metal1 -) -_093_ -( -74100 62700 79800 68400 metal1 -74100 62700 79800 68400 metal2 -74100 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -) -_094_ -( -108300 68400 114000 74100 metal1 -108300 68400 114000 74100 metal2 -) -_095_ -( -114000 57000 119700 62700 metal1 -114000 57000 119700 62700 metal2 -) -_096_ -( -108300 39900 114000 45600 metal1 -108300 34200 114000 45600 metal2 -108300 34200 114000 39900 metal1 -) -_097_ -( -74100 45600 79800 51300 metal1 -74100 45600 79800 51300 metal2 -74100 45600 85500 51300 metal3 -79800 45600 85500 51300 metal2 -79800 45600 85500 51300 metal1 -) -_098_ -( -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 108300 79800 metal3 -102600 74100 108300 85500 metal4 -102600 79800 108300 85500 metal3 -102600 79800 108300 85500 metal2 -102600 79800 108300 85500 metal1 -) -_099_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 125400 metal2 -85500 119700 91200 125400 metal1 -) -_100_ -( -108300 142500 114000 148200 metal1 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -) -_101_ -( -119700 136800 125400 142500 metal1 -119700 136800 125400 142500 metal2 -119700 136800 125400 142500 metal3 -119700 136800 125400 148200 metal4 -119700 142500 125400 148200 metal3 -119700 142500 125400 148200 metal2 -119700 142500 125400 148200 metal1 -) -_102_ -( -153900 91200 159600 96900 metal1 -153900 85500 159600 96900 metal2 -153900 85500 159600 91200 metal1 -) -_103_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 108300 metal2 -153900 102600 159600 108300 metal1 -) -_104_ -( -119700 85500 125400 91200 metal1 -119700 79800 125400 91200 metal2 -119700 79800 125400 85500 metal1 -) -_105_ -( -136800 108300 142500 114000 metal1 -136800 108300 142500 114000 metal2 -136800 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 119700 metal2 -142500 114000 148200 119700 metal1 -) -_106_ -( -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 68400 102600 metal3 -62700 96900 68400 102600 metal2 -62700 96900 68400 102600 metal1 -) -_107_ -( -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 62700 85500 metal3 -57000 79800 62700 85500 metal2 -57000 79800 62700 85500 metal1 -) -_108_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -) -_109_ -( -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -79800 108300 91200 114000 metal3 -85500 108300 91200 114000 metal2 -85500 102600 91200 114000 metal2 -85500 102600 91200 108300 metal1 -85500 96900 91200 108300 metal2 -85500 96900 91200 102600 metal1 -79800 102600 85500 114000 metal2 -79800 102600 85500 108300 metal1 -) -_110_ -( -102600 131100 108300 136800 metal1 -102600 131100 108300 136800 metal2 -102600 131100 108300 136800 metal3 -102600 131100 108300 136800 metal4 -102600 131100 108300 136800 metal5 -102600 131100 108300 159600 metal6 -102600 153900 108300 159600 metal5 -102600 153900 153900 159600 metal5 -148200 153900 153900 159600 metal4 -148200 136800 153900 159600 metal4 -148200 136800 153900 142500 metal3 -148200 136800 153900 142500 metal2 -148200 136800 153900 142500 metal1 -148200 131100 153900 136800 metal1 -148200 131100 153900 136800 metal2 -148200 131100 153900 136800 metal3 -148200 131100 153900 142500 metal4 -148200 125400 153900 136800 metal4 -148200 125400 153900 131100 metal3 -142500 125400 153900 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -102600 125400 108300 136800 metal2 -102600 125400 108300 131100 metal1 -) -_111_ -( -74100 68400 79800 74100 metal1 -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal1 -62700 62700 68400 68400 metal1 -62700 62700 68400 74100 metal2 -62700 68400 68400 74100 metal2 -62700 68400 79800 74100 metal3 -79800 62700 85500 74100 metal2 -79800 62700 85500 68400 metal1 -) -_112_ -( -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 62700 108300 74100 metal2 -114000 62700 119700 74100 metal2 -114000 68400 119700 74100 metal1 -102600 62700 108300 68400 metal1 -102600 62700 108300 68400 metal2 -102600 62700 119700 68400 metal3 -114000 62700 119700 68400 metal2 -114000 62700 125400 68400 metal3 -119700 62700 125400 68400 metal2 -119700 62700 125400 68400 metal1 -) -_113_ -( -108300 45600 114000 57000 metal2 -108300 51300 114000 57000 metal1 -102600 57000 108300 62700 metal1 -102600 57000 108300 62700 metal2 -102600 57000 114000 62700 metal3 -108300 57000 114000 62700 metal2 -108300 45600 114000 51300 metal1 -108300 45600 114000 51300 metal2 -108300 45600 119700 51300 metal3 -114000 45600 119700 51300 metal2 -114000 45600 119700 51300 metal1 -108300 57000 114000 68400 metal2 -108300 62700 114000 68400 metal1 -108300 51300 114000 62700 metal2 -) -_114_ -( -91200 34200 108300 39900 metal3 -102600 34200 108300 39900 metal2 -102600 34200 108300 45600 metal2 -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 96900 39900 metal3 -102600 51300 108300 57000 metal1 -102600 51300 108300 57000 metal2 -102600 51300 108300 57000 metal3 -102600 51300 108300 57000 metal4 -102600 51300 108300 57000 metal5 -102600 39900 108300 57000 metal6 -102600 39900 108300 45600 metal5 -102600 39900 108300 45600 metal4 -102600 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 96900 39900 metal3 -91200 34200 96900 39900 metal4 -91200 34200 96900 39900 metal5 -91200 34200 96900 45600 metal6 -91200 39900 96900 45600 metal5 -91200 39900 96900 45600 metal4 -91200 39900 96900 45600 metal3 -91200 39900 96900 45600 metal2 -91200 39900 96900 45600 metal1 -102600 34200 114000 39900 metal3 -108300 34200 114000 39900 metal2 -108300 34200 114000 39900 metal1 -) -_115_ -( -79800 39900 85500 57000 metal2 -79800 51300 85500 57000 metal1 -79800 51300 85500 57000 metal2 -79800 51300 85500 57000 metal3 -79800 51300 85500 62700 metal4 -79800 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -79800 57000 85500 62700 metal1 -68400 39900 74100 45600 metal1 -68400 39900 74100 45600 metal2 -68400 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -) -_116_ -( -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal3 -91200 85500 96900 91200 metal4 -91200 85500 96900 91200 metal5 -91200 68400 96900 91200 metal6 -91200 68400 96900 74100 metal5 -91200 68400 96900 74100 metal4 -91200 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -91200 85500 102600 91200 metal3 -) -_117_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 96900 119700 metal3 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal1 -96900 114000 102600 119700 metal1 -96900 114000 102600 119700 metal2 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -91200 125400 96900 131100 metal1 -91200 114000 96900 131100 metal2 -91200 125400 96900 136800 metal2 -91200 131100 96900 136800 metal1 -91200 114000 102600 119700 metal3 -) -_118_ -( -108300 142500 114000 148200 metal5 -108300 131100 114000 148200 metal6 -108300 131100 114000 136800 metal5 -108300 131100 114000 136800 metal4 -108300 131100 114000 136800 metal3 -108300 131100 114000 136800 metal2 -108300 131100 114000 136800 metal1 -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal3 -114000 119700 119700 131100 metal4 -114000 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 119700 119700 125400 metal1 -96900 136800 102600 142500 metal1 -96900 136800 102600 148200 metal2 -96900 142500 102600 148200 metal2 -96900 142500 108300 148200 metal3 -108300 131100 119700 136800 metal3 -114000 131100 119700 136800 metal3 -114000 125400 119700 136800 metal4 -108300 142500 119700 148200 metal5 -114000 142500 119700 148200 metal4 -114000 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -102600 142500 108300 148200 metal1 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal3 -102600 142500 108300 148200 metal4 -102600 142500 114000 148200 metal5 -) -_119_ -( -119700 125400 131100 131100 metal5 -125400 125400 131100 131100 metal4 -125400 125400 131100 142500 metal4 -125400 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -119700 114000 125400 125400 metal4 -119700 114000 125400 119700 metal3 -119700 114000 125400 119700 metal2 -119700 114000 125400 119700 metal1 -119700 125400 125400 131100 metal1 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal3 -119700 125400 125400 131100 metal4 -119700 125400 125400 131100 metal5 -119700 119700 125400 131100 metal6 -119700 119700 125400 125400 metal5 -119700 119700 125400 125400 metal4 -119700 119700 125400 125400 metal3 -125400 136800 131100 148200 metal2 -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 131100 148200 metal3 -125400 142500 131100 148200 metal2 -125400 142500 131100 148200 metal3 -125400 142500 131100 148200 metal4 -125400 142500 136800 148200 metal5 -131100 142500 136800 148200 metal4 -131100 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal1 -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 125400 125400 metal3 -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 125400 119700 metal3 -) -_120_ -( -142500 79800 148200 91200 metal2 -142500 85500 148200 91200 metal1 -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 153900 85500 metal3 -148200 79800 153900 85500 metal2 -148200 79800 153900 96900 metal2 -148200 79800 159600 85500 metal3 -153900 79800 159600 85500 metal2 -153900 79800 159600 85500 metal1 -148200 91200 153900 96900 metal1 -148200 91200 153900 96900 metal2 -148200 91200 159600 96900 metal3 -153900 91200 159600 96900 metal2 -153900 91200 159600 96900 metal1 -) -_121_ -( -153900 114000 159600 119700 metal1 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal3 -153900 102600 159600 119700 metal4 -148200 102600 153900 108300 metal1 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -142500 102600 148200 108300 metal1 -142500 102600 148200 108300 metal2 -142500 102600 153900 108300 metal3 -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -148200 114000 159600 119700 metal3 -153900 102600 159600 108300 metal3 -153900 102600 159600 108300 metal4 -153900 102600 159600 108300 metal5 -153900 96900 159600 108300 metal6 -153900 96900 159600 102600 metal5 -153900 96900 159600 102600 metal4 -153900 96900 159600 102600 metal3 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal1 -) -_122_ -( -125400 91200 131100 96900 metal3 -125400 74100 131100 96900 metal4 -125400 74100 131100 79800 metal3 -125400 74100 131100 79800 metal2 -125400 74100 131100 79800 metal1 -114000 91200 119700 96900 metal1 -114000 91200 119700 96900 metal2 -114000 91200 131100 96900 metal3 -114000 85500 119700 96900 metal2 -114000 85500 119700 91200 metal1 -125400 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -125400 91200 136800 96900 metal3 -131100 91200 136800 96900 metal2 -131100 91200 136800 96900 metal1 -) -_123_ -( -131100 102600 136800 108300 metal1 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal3 -131100 102600 136800 119700 metal4 -131100 114000 136800 119700 metal4 -131100 114000 142500 119700 metal5 -136800 114000 142500 119700 metal4 -136800 114000 142500 125400 metal4 -136800 119700 142500 125400 metal3 -136800 119700 142500 125400 metal2 -136800 119700 142500 125400 metal1 -125400 102600 131100 108300 metal1 -125400 102600 131100 108300 metal2 -125400 102600 136800 108300 metal3 -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 131100 119700 metal3 -125400 114000 131100 119700 metal4 -125400 114000 136800 119700 metal5 -) -_124_ -( -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -62700 85500 68400 96900 metal2 -62700 85500 68400 91200 metal1 -57000 91200 62700 96900 metal1 -57000 91200 62700 96900 metal2 -57000 91200 68400 96900 metal3 -51300 96900 57000 102600 metal1 -51300 96900 57000 102600 metal2 -51300 96900 62700 102600 metal3 -57000 96900 62700 102600 metal2 -57000 91200 62700 102600 metal2 -) -_125_ -( -62700 74100 68400 85500 metal2 -62700 79800 68400 85500 metal1 -51300 79800 57000 85500 metal1 -51300 74100 57000 85500 metal2 -51300 74100 57000 79800 metal2 -51300 74100 62700 79800 metal3 -57000 74100 62700 79800 metal2 -57000 74100 62700 79800 metal1 -57000 74100 68400 79800 metal3 -62700 74100 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -_126_ -( -102600 131100 108300 142500 metal2 -102600 136800 108300 142500 metal2 -102600 136800 142500 142500 metal3 -136800 136800 142500 142500 metal2 -136800 136800 142500 142500 metal1 -102600 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -102600 119700 108300 125400 metal1 -102600 119700 108300 125400 metal2 -102600 119700 108300 125400 metal3 -102600 119700 108300 125400 metal4 -102600 119700 108300 125400 metal5 -102600 114000 108300 125400 metal6 -102600 114000 108300 119700 metal5 -102600 114000 108300 119700 metal4 -102600 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -102600 119700 108300 136800 metal6 -102600 131100 108300 136800 metal5 -102600 131100 108300 136800 metal4 -102600 131100 108300 136800 metal3 -102600 131100 108300 136800 metal2 -102600 131100 108300 136800 metal1 -136800 131100 142500 142500 metal2 -136800 131100 142500 136800 metal1 -) -_127_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal3 -74100 62700 79800 79800 metal4 -74100 62700 79800 68400 metal3 -74100 62700 79800 68400 metal2 -74100 62700 79800 68400 metal1 -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 91200 68400 metal3 -85500 62700 91200 68400 metal3 -85500 62700 91200 74100 metal4 -85500 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -74100 62700 85500 68400 metal3 -) -_128_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 79800 metal2 -74100 74100 91200 79800 metal3 -96900 62700 102600 68400 metal1 -96900 62700 102600 68400 metal2 -96900 62700 108300 68400 metal3 -102600 62700 108300 68400 metal3 -102600 62700 108300 74100 metal4 -102600 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 68400 108300 74100 metal1 -91200 74100 96900 79800 metal1 -91200 74100 96900 79800 metal2 -91200 74100 108300 79800 metal3 -85500 74100 91200 79800 metal3 -85500 74100 91200 79800 metal4 -85500 74100 91200 79800 metal5 -85500 68400 91200 79800 metal6 -85500 68400 91200 74100 metal5 -85500 68400 91200 74100 metal4 -85500 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -102600 74100 108300 79800 metal3 -102600 68400 108300 79800 metal4 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -108300 74100 114000 79800 metal1 -85500 74100 96900 79800 metal3 -) -_129_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 102600 68400 metal3 -96900 62700 102600 68400 metal2 -96900 57000 102600 68400 metal2 -108300 57000 114000 62700 metal1 -108300 57000 114000 62700 metal2 -108300 57000 114000 62700 metal3 -108300 51300 114000 62700 metal4 -108300 51300 114000 57000 metal3 -108300 51300 114000 57000 metal2 -108300 51300 114000 57000 metal1 -102600 57000 114000 62700 metal3 -96900 51300 102600 62700 metal2 -96900 51300 102600 57000 metal1 -108300 57000 119700 62700 metal3 -114000 57000 119700 62700 metal2 -114000 57000 119700 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal3 -96900 57000 102600 62700 metal4 -96900 57000 108300 62700 metal5 -102600 57000 108300 62700 metal4 -102600 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_130_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal3 -91200 62700 96900 68400 metal4 -91200 62700 108300 68400 metal5 -102600 62700 108300 68400 metal4 -102600 57000 108300 68400 metal4 -102600 34200 108300 39900 metal1 -102600 34200 108300 39900 metal2 -102600 34200 108300 39900 metal3 -102600 34200 108300 45600 metal4 -102600 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -102600 39900 108300 57000 metal4 -102600 51300 108300 57000 metal4 -102600 51300 108300 57000 metal5 -102600 51300 108300 62700 metal6 -102600 57000 108300 62700 metal5 -102600 57000 108300 62700 metal4 -102600 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_131_ -( -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -85500 57000 91200 62700 metal3 -85500 57000 91200 68400 metal4 -85500 62700 91200 68400 metal3 -85500 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal1 -74100 51300 85500 57000 metal3 -79800 51300 85500 57000 metal2 -79800 51300 85500 57000 metal1 -79800 51300 85500 62700 metal2 -79800 57000 85500 62700 metal2 -79800 57000 91200 62700 metal3 -74100 51300 79800 57000 metal1 -74100 51300 79800 57000 metal2 -74100 51300 79800 57000 metal3 -74100 45600 79800 57000 metal4 -74100 45600 79800 51300 metal3 -74100 45600 79800 51300 metal2 -74100 45600 79800 51300 metal1 -) -_132_ -( -96900 62700 102600 74100 metal4 -96900 62700 102600 68400 metal3 -96900 62700 102600 68400 metal2 -96900 62700 102600 68400 metal1 -96900 79800 102600 85500 metal1 -96900 79800 102600 85500 metal2 -96900 79800 102600 85500 metal3 -96900 79800 102600 91200 metal4 -96900 85500 102600 91200 metal3 -96900 85500 102600 91200 metal2 -96900 85500 102600 91200 metal1 -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal3 -91200 68400 96900 74100 metal4 -91200 68400 102600 74100 metal5 -96900 68400 102600 74100 metal4 -96900 74100 102600 85500 metal2 -96900 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -102600 74100 108300 79800 metal1 -96900 74100 102600 79800 metal2 -96900 74100 102600 79800 metal3 -96900 68400 102600 79800 metal4 -) -_133_ -( -91200 119700 96900 125400 metal1 -91200 119700 96900 125400 metal2 -91200 119700 96900 125400 metal3 -91200 119700 96900 125400 metal4 -91200 119700 114000 125400 metal5 -108300 119700 114000 125400 metal4 -108300 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -91200 114000 96900 119700 metal1 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal3 -91200 108300 96900 119700 metal4 -91200 108300 96900 114000 metal3 -91200 108300 96900 114000 metal2 -91200 108300 96900 114000 metal1 -91200 114000 96900 125400 metal4 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 96900 119700 metal3 -) -_134_ -( -108300 131100 114000 142500 metal2 -108300 131100 114000 136800 metal1 -108300 136800 114000 142500 metal1 -108300 136800 114000 142500 metal2 -108300 136800 114000 142500 metal3 -108300 136800 114000 148200 metal4 -108300 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_135_ -( -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 125400 131100 136800 metal2 -125400 125400 131100 131100 metal1 -119700 131100 125400 136800 metal1 -119700 131100 125400 136800 metal2 -119700 131100 125400 136800 metal3 -119700 131100 125400 142500 metal4 -119700 136800 125400 142500 metal3 -119700 136800 125400 142500 metal2 -119700 136800 125400 142500 metal1 -119700 125400 125400 136800 metal2 -119700 125400 125400 131100 metal1 -) -_136_ -( -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -136800 102600 142500 108300 metal3 -136800 102600 142500 108300 metal4 -136800 102600 148200 108300 metal5 -142500 102600 148200 108300 metal5 -142500 96900 148200 108300 metal6 -142500 96900 148200 102600 metal5 -142500 96900 148200 102600 metal4 -142500 96900 148200 102600 metal3 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal1 -148200 85500 153900 91200 metal3 -148200 85500 153900 96900 metal4 -148200 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 96900 metal1 -142500 85500 148200 102600 metal6 -142500 85500 148200 91200 metal5 -142500 85500 148200 91200 metal4 -142500 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 91200 metal1 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -142500 85500 153900 91200 metal3 -) -_137_ -( -148200 102600 153900 108300 metal1 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -153900 102600 159600 108300 metal3 -153900 96900 159600 108300 metal4 -153900 96900 159600 102600 metal3 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal1 -142500 102600 148200 108300 metal1 -142500 102600 148200 108300 metal2 -142500 102600 148200 108300 metal3 -142500 96900 148200 108300 metal4 -142500 96900 148200 102600 metal3 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal1 -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -153900 108300 159600 114000 metal1 -153900 102600 159600 114000 metal2 -142500 102600 153900 108300 metal3 -) -_138_ -( -125400 91200 131100 96900 metal3 -125400 91200 131100 96900 metal4 -125400 91200 131100 96900 metal5 -125400 91200 131100 102600 metal6 -125400 96900 136800 102600 metal6 -131100 96900 136800 108300 metal6 -131100 102600 136800 108300 metal5 -131100 102600 142500 108300 metal5 -136800 102600 142500 108300 metal4 -136800 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 102600 142500 108300 metal1 -119700 91200 125400 96900 metal1 -119700 91200 125400 96900 metal2 -119700 91200 125400 96900 metal3 -119700 91200 125400 102600 metal4 -119700 96900 125400 102600 metal3 -119700 96900 125400 102600 metal2 -119700 96900 125400 102600 metal1 -119700 91200 131100 96900 metal3 -125400 85500 131100 96900 metal6 -125400 85500 131100 91200 metal5 -125400 85500 136800 91200 metal5 -131100 85500 136800 91200 metal4 -131100 85500 136800 91200 metal3 -131100 85500 136800 91200 metal2 -131100 85500 136800 91200 metal1 -119700 85500 125400 96900 metal2 -119700 85500 125400 91200 metal1 -) -_139_ -( -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -131100 102600 142500 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -131100 108300 142500 114000 metal3 -131100 108300 136800 114000 metal2 -131100 108300 136800 114000 metal1 -136800 108300 142500 114000 metal2 -136800 108300 142500 114000 metal3 -136800 108300 142500 119700 metal4 -136800 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal1 -136800 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -136800 102600 142500 114000 metal2 -) -_140_ -( -68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 74100 91200 metal3 -68400 85500 74100 91200 metal4 -68400 85500 74100 91200 metal5 -68400 79800 74100 91200 metal6 -68400 79800 74100 85500 metal5 -68400 79800 79800 85500 metal5 -74100 79800 79800 85500 metal5 -74100 74100 79800 85500 metal6 -74100 74100 79800 79800 metal5 -74100 74100 79800 79800 metal4 -74100 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -68400 96900 74100 102600 metal1 -68400 96900 74100 102600 metal2 -68400 96900 74100 102600 metal3 -68400 96900 74100 102600 metal4 -68400 96900 74100 102600 metal5 -68400 91200 74100 102600 metal6 -68400 91200 74100 96900 metal5 -68400 91200 74100 96900 metal4 -68400 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -68400 85500 74100 96900 metal6 -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 74100 102600 metal3 -) -_141_ -( -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -57000 79800 62700 85500 metal1 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -62700 79800 74100 85500 metal3 -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal3 -68400 79800 74100 85500 metal4 -68400 79800 74100 85500 metal5 -68400 74100 74100 85500 metal6 -68400 74100 74100 79800 metal5 -68400 74100 74100 79800 metal4 -68400 74100 74100 79800 metal3 -68400 74100 74100 79800 metal2 -68400 74100 74100 79800 metal1 -57000 79800 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_142_ -( -62700 96900 68400 114000 metal4 -62700 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal3 -62700 85500 68400 91200 metal4 -62700 85500 68400 91200 metal5 -62700 85500 68400 102600 metal6 -62700 96900 68400 102600 metal5 -62700 96900 68400 102600 metal4 -79800 96900 85500 108300 metal4 -79800 102600 85500 108300 metal3 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal1 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -79800 102600 91200 108300 metal3 -45600 45600 68400 51300 metal3 -45600 45600 51300 51300 metal2 -45600 45600 51300 91200 metal2 -45600 85500 51300 91200 metal2 -45600 85500 68400 91200 metal3 -62700 45600 74100 51300 metal3 -68400 45600 74100 51300 metal3 -68400 45600 74100 51300 metal4 -68400 45600 85500 51300 metal5 -79800 45600 85500 51300 metal4 -79800 39900 85500 51300 metal4 -79800 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -79800 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -62700 96900 85500 102600 metal5 -79800 96900 85500 102600 metal4 -79800 96900 85500 102600 metal3 -79800 96900 85500 102600 metal2 -62700 45600 68400 51300 metal3 -62700 45600 68400 51300 metal4 -62700 45600 68400 51300 metal5 -62700 45600 68400 57000 metal6 -62700 51300 68400 57000 metal5 -62700 51300 68400 57000 metal4 -62700 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -79800 91200 85500 96900 metal1 -79800 91200 85500 102600 metal2 -) -_143_ -( -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 131100 119700 metal3 -125400 114000 131100 119700 metal2 -125400 108300 131100 119700 metal2 -125400 108300 131100 114000 metal2 -125400 108300 142500 114000 metal3 -136800 108300 142500 114000 metal3 -136800 102600 142500 114000 metal4 -136800 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 102600 142500 108300 metal1 -) -_144_ -( -114000 114000 125400 119700 metal3 -119700 114000 125400 119700 metal2 -119700 114000 125400 119700 metal1 -119700 114000 131100 119700 metal3 -125400 114000 131100 119700 metal3 -125400 114000 131100 131100 metal4 -125400 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 119700 119700 metal3 -114000 114000 119700 125400 metal4 -114000 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 119700 119700 125400 metal1 -) -_145_ -( -114000 119700 119700 131100 metal2 -114000 125400 119700 131100 metal1 -114000 125400 119700 136800 metal2 -114000 131100 119700 136800 metal2 -108300 131100 119700 136800 metal3 -108300 131100 114000 136800 metal2 -108300 131100 114000 136800 metal1 -108300 114000 114000 119700 metal1 -108300 114000 114000 119700 metal2 -108300 114000 114000 119700 metal3 -108300 114000 114000 125400 metal4 -108300 119700 114000 125400 metal3 -108300 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 119700 119700 125400 metal1 -) -_146_ -( -108300 119700 114000 125400 metal1 -108300 114000 114000 125400 metal2 -108300 114000 114000 119700 metal1 -) -_147_ -( -79800 119700 85500 125400 metal1 -79800 119700 85500 125400 metal2 -79800 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal2 -102600 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 119700 metal1 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal3 -74100 119700 79800 131100 metal4 -74100 125400 79800 131100 metal3 -74100 125400 85500 131100 metal3 -79800 125400 85500 131100 metal2 -79800 119700 85500 131100 metal2 -) -_148_ -( -74100 74100 79800 79800 metal1 -74100 68400 79800 79800 metal2 -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal1 -) -_149_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal3 -79800 68400 85500 74100 metal4 -79800 68400 96900 74100 metal5 -91200 68400 96900 74100 metal5 -91200 57000 96900 74100 metal6 -91200 57000 96900 62700 metal5 -91200 57000 102600 62700 metal5 -96900 57000 102600 62700 metal4 -96900 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -) -_150_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal3 -79800 68400 85500 74100 metal4 -79800 68400 85500 74100 metal5 -79800 68400 85500 125400 metal6 -79800 119700 85500 125400 metal5 -79800 119700 85500 125400 metal4 -79800 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -) -_151_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_152_ -( -68400 119700 74100 125400 metal1 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal3 -74100 119700 79800 125400 metal4 -74100 119700 85500 125400 metal5 -79800 119700 85500 125400 metal4 -79800 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -68400 114000 74100 119700 metal1 -68400 114000 74100 125400 metal2 -) -_153_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -79800 114000 85500 119700 metal1 -79800 114000 85500 125400 metal2 -) -_154_ -( -68400 114000 74100 119700 metal1 -68400 114000 74100 119700 metal2 -68400 114000 79800 119700 metal3 -74100 114000 79800 119700 metal3 -74100 114000 79800 125400 metal4 -74100 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -) -_155_ -( -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -) -_156_ -( -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 68400 125400 metal3 -62700 119700 68400 125400 metal4 -62700 119700 74100 125400 metal5 -68400 119700 74100 125400 metal5 -68400 114000 74100 125400 metal6 -68400 114000 74100 119700 metal5 -68400 114000 74100 119700 metal4 -68400 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_157_ -( -74100 119700 79800 125400 metal1 -74100 114000 79800 125400 metal2 -74100 114000 79800 119700 metal1 -) -_158_ -( -74100 102600 79800 114000 metal2 -74100 108300 79800 114000 metal2 -74100 108300 85500 114000 metal3 -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 91200 91200 96900 metal1 -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -79800 108300 85500 114000 metal3 -79800 108300 85500 119700 metal4 -79800 114000 85500 119700 metal4 -79800 114000 96900 119700 metal5 -91200 114000 96900 119700 metal4 -91200 114000 96900 119700 metal3 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal1 -74100 91200 85500 96900 metal3 -68400 102600 79800 108300 metal3 -68400 102600 74100 108300 metal2 -68400 102600 74100 108300 metal1 -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal3 -62700 62700 68400 91200 metal4 -62700 62700 68400 68400 metal4 -62700 62700 68400 68400 metal5 -62700 51300 68400 68400 metal6 -62700 51300 68400 57000 metal5 -62700 51300 68400 57000 metal4 -62700 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -62700 45600 68400 57000 metal4 -62700 45600 68400 51300 metal4 -62700 45600 74100 51300 metal5 -68400 45600 74100 51300 metal5 -68400 39900 74100 51300 metal6 -68400 39900 74100 45600 metal5 -68400 39900 85500 45600 metal5 -79800 39900 85500 45600 metal4 -79800 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -79800 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -74100 102600 79800 108300 metal2 -74100 102600 79800 108300 metal3 -74100 91200 79800 108300 metal4 -74100 91200 79800 96900 metal3 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 96900 metal2 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -) -_159_ -( -131100 136800 148200 142500 metal3 -142500 136800 148200 142500 metal3 -142500 131100 148200 142500 metal4 -85500 108300 102600 114000 metal3 -96900 108300 102600 114000 metal2 -96900 102600 102600 114000 metal2 -96900 102600 102600 108300 metal2 -96900 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 96900 114000 108300 metal2 -114000 85500 119700 91200 metal1 -114000 85500 119700 91200 metal2 -114000 85500 119700 91200 metal3 -114000 79800 119700 91200 metal4 -114000 79800 119700 85500 metal4 -114000 79800 125400 85500 metal5 -119700 79800 125400 85500 metal4 -119700 79800 125400 85500 metal3 -119700 79800 131100 85500 metal3 -125400 79800 131100 85500 metal3 -125400 79800 131100 85500 metal4 -125400 79800 142500 85500 metal5 -142500 131100 148200 136800 metal1 -142500 131100 148200 136800 metal2 -142500 131100 148200 136800 metal3 -142500 131100 148200 136800 metal4 -142500 131100 148200 136800 metal5 -142500 119700 148200 136800 metal6 -142500 119700 148200 125400 metal5 -142500 119700 148200 125400 metal4 -142500 119700 148200 125400 metal3 -142500 119700 148200 125400 metal2 -142500 119700 148200 125400 metal1 -136800 79800 142500 85500 metal1 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal3 -136800 79800 142500 85500 metal4 -136800 79800 142500 85500 metal5 -136800 74100 142500 85500 metal6 -136800 74100 142500 79800 metal5 -136800 74100 142500 79800 metal4 -136800 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -108300 96900 114000 102600 metal1 -108300 96900 114000 102600 metal2 -108300 96900 119700 102600 metal3 -114000 96900 119700 102600 metal3 -114000 85500 119700 102600 metal4 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 96900 142500 metal3 -91200 136800 96900 142500 metal4 -91200 136800 119700 142500 metal5 -114000 136800 119700 142500 metal4 -114000 136800 119700 142500 metal3 -114000 136800 119700 142500 metal2 -114000 136800 131100 142500 metal3 -125400 136800 131100 142500 metal3 -125400 136800 131100 142500 metal4 -125400 136800 136800 142500 metal5 -131100 136800 136800 142500 metal4 -131100 136800 136800 142500 metal3 -131100 136800 136800 142500 metal2 -131100 136800 136800 142500 metal1 -79800 119700 85500 125400 metal1 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal3 -79800 119700 85500 131100 metal4 -79800 125400 85500 131100 metal3 -79800 125400 91200 131100 metal3 -85500 125400 91200 131100 metal3 -85500 125400 91200 142500 metal4 -85500 136800 91200 142500 metal3 -85500 136800 96900 142500 metal3 -79800 119700 91200 125400 metal3 -85500 119700 91200 125400 metal3 -85500 108300 91200 125400 metal4 -85500 108300 91200 114000 metal3 -85500 108300 91200 114000 metal2 -85500 108300 91200 114000 metal1 -114000 131100 119700 142500 metal2 -114000 131100 119700 136800 metal1 -) -_160_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal3 -74100 119700 79800 125400 metal4 -74100 119700 79800 125400 metal5 -74100 114000 79800 125400 metal6 -74100 114000 79800 119700 metal5 -68400 108300 74100 114000 metal1 -68400 108300 74100 114000 metal2 -68400 108300 74100 114000 metal3 -68400 108300 74100 114000 metal4 -68400 108300 74100 114000 metal5 -68400 108300 74100 119700 metal6 -68400 114000 74100 119700 metal5 -68400 114000 79800 119700 metal5 -153900 91200 159600 102600 metal2 -153900 91200 159600 96900 metal1 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 91200 119700 metal3 -85500 114000 91200 119700 metal4 -85500 114000 91200 119700 metal5 -85500 108300 91200 119700 metal6 -85500 108300 91200 114000 metal5 -85500 108300 114000 114000 metal5 -108300 91200 119700 96900 metal3 -114000 91200 119700 96900 metal3 -114000 91200 119700 96900 metal4 -114000 91200 119700 96900 metal5 -114000 85500 119700 96900 metal6 -114000 85500 119700 91200 metal5 -114000 85500 119700 91200 metal4 -114000 85500 119700 91200 metal3 -114000 85500 119700 91200 metal2 -114000 85500 119700 91200 metal1 -114000 119700 131100 125400 metal3 -125400 119700 131100 125400 metal3 -125400 119700 131100 125400 metal4 -125400 119700 142500 125400 metal5 -136800 119700 142500 125400 metal4 -136800 119700 142500 125400 metal3 -136800 119700 142500 125400 metal2 -136800 119700 142500 125400 metal1 -108300 108300 114000 114000 metal5 -108300 108300 114000 125400 metal6 -108300 119700 114000 125400 metal5 -108300 119700 119700 125400 metal5 -148200 136800 153900 142500 metal1 -148200 136800 153900 142500 metal2 -148200 136800 165300 142500 metal3 -159600 136800 165300 142500 metal2 -159600 119700 165300 142500 metal2 -108300 91200 114000 96900 metal1 -108300 91200 114000 96900 metal2 -108300 91200 114000 96900 metal3 -108300 91200 114000 96900 metal4 -108300 91200 114000 96900 metal5 -108300 91200 114000 114000 metal6 -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal3 -153900 96900 159600 102600 metal4 -153900 96900 165300 102600 metal5 -159600 96900 165300 102600 metal5 -159600 96900 165300 125400 metal6 -159600 119700 165300 125400 metal5 -159600 119700 165300 125400 metal4 -159600 119700 165300 125400 metal3 -159600 119700 165300 125400 metal2 -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal3 -114000 142500 119700 148200 metal4 -114000 142500 119700 148200 metal5 -114000 119700 119700 148200 metal6 -114000 119700 119700 125400 metal5 -114000 119700 119700 125400 metal4 -114000 119700 119700 125400 metal3 -74100 114000 85500 119700 metal5 -79800 114000 85500 119700 metal4 -79800 114000 85500 119700 metal3 -79800 114000 91200 119700 metal3 -136800 119700 165300 125400 metal5 -) -_161_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -74100 114000 85500 119700 metal3 -79800 114000 85500 119700 metal3 -79800 114000 85500 125400 metal4 -79800 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_162_ -( -62700 114000 68400 119700 metal1 -62700 114000 68400 119700 metal2 -62700 114000 68400 119700 metal3 -62700 114000 68400 125400 metal4 -62700 119700 68400 125400 metal3 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 119700 74100 125400 metal1 -) -_163_ -( -62700 114000 68400 119700 metal1 -62700 108300 68400 119700 metal2 -62700 108300 68400 114000 metal1 -) -_164_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal3 -62700 108300 68400 119700 metal4 -62700 114000 68400 119700 metal3 -62700 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_165_ -( -131100 131100 148200 136800 metal3 -91200 102600 96900 108300 metal3 -91200 102600 96900 108300 metal4 -91200 102600 96900 108300 metal5 -91200 96900 96900 108300 metal6 -91200 96900 96900 102600 metal5 -91200 96900 114000 102600 metal5 -108300 96900 114000 102600 metal4 -108300 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 102600 metal1 -91200 131100 96900 142500 metal2 -91200 136800 96900 142500 metal1 -131100 131100 136800 142500 metal4 -131100 136800 136800 142500 metal3 -131100 136800 136800 142500 metal2 -131100 136800 136800 142500 metal1 -114000 85500 119700 91200 metal1 -114000 85500 119700 91200 metal2 -114000 85500 142500 91200 metal3 -136800 85500 142500 91200 metal3 -136800 79800 142500 91200 metal4 -136800 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -142500 131100 148200 136800 metal1 -142500 131100 148200 136800 metal2 -142500 131100 148200 136800 metal3 -142500 119700 148200 136800 metal4 -142500 119700 148200 125400 metal3 -142500 119700 148200 125400 metal2 -142500 119700 148200 125400 metal1 -136800 74100 142500 85500 metal4 -136800 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -91200 102600 96900 119700 metal6 -91200 114000 96900 119700 metal5 -91200 114000 96900 119700 metal4 -91200 114000 96900 119700 metal3 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal1 -108300 85500 114000 102600 metal2 -108300 85500 114000 91200 metal2 -108300 85500 119700 91200 metal3 -91200 131100 119700 136800 metal5 -114000 131100 119700 136800 metal4 -114000 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 131100 119700 136800 metal1 -114000 131100 136800 136800 metal5 -131100 131100 136800 136800 metal4 -131100 131100 136800 136800 metal3 -91200 114000 96900 136800 metal6 -91200 131100 96900 136800 metal5 -91200 131100 96900 136800 metal4 -91200 131100 96900 136800 metal3 -91200 131100 96900 136800 metal2 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 96900 108300 metal3 -) -_166_ -( -142500 131100 148200 136800 metal1 -142500 125400 148200 136800 metal2 -142500 125400 148200 131100 metal1 -) -_167_ -( -96900 79800 102600 85500 metal1 -96900 79800 102600 91200 metal2 -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_168_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -96900 85500 102600 91200 metal2 -96900 85500 102600 91200 metal1 -) -_169_ -( -131100 102600 136800 108300 metal1 -131100 96900 136800 108300 metal2 -119700 96900 125400 102600 metal1 -119700 96900 125400 102600 metal2 -119700 96900 131100 102600 metal3 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal1 -125400 108300 131100 114000 metal1 -125400 108300 131100 114000 metal2 -125400 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 102600 136800 114000 metal2 -125400 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -) -_170_ -( -131100 91200 136800 96900 metal1 -131100 91200 136800 102600 metal2 -131100 96900 136800 102600 metal1 -131100 85500 136800 91200 metal1 -131100 85500 136800 96900 metal2 -) -_171_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 119700 108300 metal3 -131100 96900 136800 102600 metal1 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal3 -131100 96900 136800 108300 metal4 -131100 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -114000 102600 119700 108300 metal2 -114000 102600 119700 108300 metal3 -114000 102600 119700 114000 metal4 -114000 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -114000 102600 136800 108300 metal3 -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -131100 96900 142500 102600 metal3 -114000 96900 119700 108300 metal2 -114000 96900 119700 102600 metal1 -) -_172_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal3 -114000 125400 119700 131100 metal4 -114000 125400 125400 131100 metal5 -119700 125400 125400 131100 metal4 -119700 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -119700 119700 125400 131100 metal4 -119700 119700 125400 125400 metal3 -119700 119700 125400 125400 metal2 -119700 119700 125400 125400 metal1 -) -_173_ -( -108300 125400 114000 131100 metal2 -108300 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal1 -102600 125400 108300 131100 metal1 -102600 125400 108300 131100 metal2 -102600 125400 114000 131100 metal3 -108300 131100 114000 136800 metal1 -108300 125400 114000 136800 metal2 -) -_174_ -( -108300 102600 114000 119700 metal4 -108300 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 102600 114000 108300 metal1 -102600 96900 108300 102600 metal1 -102600 96900 108300 108300 metal2 -102600 102600 108300 108300 metal2 -102600 102600 114000 108300 metal3 -108300 114000 114000 119700 metal1 -108300 114000 114000 119700 metal2 -108300 114000 114000 119700 metal3 -108300 114000 114000 119700 metal4 -108300 114000 114000 119700 metal5 -108300 114000 114000 131100 metal6 -108300 125400 114000 131100 metal5 -108300 125400 119700 131100 metal5 -114000 125400 119700 131100 metal4 -114000 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal1 -) -_175_ -( -136800 91200 142500 96900 metal1 -136800 91200 142500 96900 metal2 -136800 91200 148200 96900 metal3 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 96900 153900 108300 metal2 -148200 102600 153900 108300 metal1 -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal3 -142500 91200 148200 102600 metal4 -142500 91200 148200 96900 metal3 -142500 91200 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_176_ -( -136800 85500 142500 96900 metal2 -136800 91200 142500 96900 metal1 -136800 85500 142500 91200 metal1 -136800 85500 142500 91200 metal2 -136800 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 91200 metal1 -) -_177_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 119700 108300 metal3 -114000 102600 119700 108300 metal3 -114000 102600 119700 108300 metal4 -114000 102600 119700 108300 metal5 -114000 102600 119700 114000 metal6 -114000 108300 119700 114000 metal5 -114000 108300 119700 114000 metal4 -114000 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal3 -114000 96900 119700 102600 metal4 -114000 96900 136800 102600 metal5 -131100 96900 136800 102600 metal4 -131100 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -131100 96900 142500 102600 metal5 -136800 96900 142500 102600 metal4 -136800 91200 142500 102600 metal4 -136800 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 96900 metal1 -114000 96900 119700 108300 metal4 -) -_178_ -( -102600 108300 108300 114000 metal1 -102600 108300 108300 114000 metal2 -102600 108300 108300 114000 metal3 -102600 102600 108300 114000 metal4 -102600 102600 108300 108300 metal3 -102600 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 102600 114000 108300 metal1 -) -_179_ -( -91200 108300 96900 114000 metal1 -91200 108300 96900 119700 metal2 -91200 114000 96900 119700 metal2 -91200 114000 102600 119700 metal3 -96900 114000 102600 119700 metal2 -96900 114000 102600 119700 metal1 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -) -_180_ -( -102600 108300 108300 119700 metal4 -102600 108300 108300 114000 metal3 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 108300 114000 114000 metal1 -102600 114000 108300 125400 metal4 -102600 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 119700 108300 125400 metal1 -96900 114000 102600 119700 metal1 -96900 114000 102600 119700 metal2 -96900 114000 102600 119700 metal3 -96900 114000 102600 119700 metal4 -96900 114000 108300 119700 metal5 -102600 114000 108300 119700 metal4 -) -_181_ -( -102600 114000 108300 119700 metal1 -102600 114000 108300 119700 metal2 -) -_182_ -( -102600 119700 108300 125400 metal1 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal1 -102600 125400 108300 131100 metal1 -102600 119700 108300 131100 metal2 -) -_183_ -( -102600 114000 108300 119700 metal1 -102600 108300 108300 119700 metal2 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 108300 114000 114000 metal1 -) -_184_ -( -108300 108300 114000 114000 metal1 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 102600 119700 114000 metal2 -114000 102600 119700 108300 metal1 -) -_185_ -( -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal3 -142500 96900 148200 102600 metal4 -142500 96900 153900 102600 metal5 -148200 96900 153900 102600 metal4 -148200 91200 153900 102600 metal4 -148200 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 96900 metal1 -) -_186_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 96900 153900 102600 metal1 -) -_187_ -( -142500 102600 148200 108300 metal1 -142500 96900 148200 108300 metal2 -142500 96900 148200 102600 metal1 -) -_188_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal3 -136800 96900 142500 108300 metal4 -136800 102600 142500 108300 metal3 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 108300 metal1 -) -_189_ -( -119700 102600 125400 108300 metal1 -119700 102600 125400 108300 metal2 -119700 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 96900 136800 108300 metal2 -131100 96900 136800 102600 metal2 -131100 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_190_ -( -125400 102600 131100 108300 metal1 -125400 102600 131100 108300 metal2 -125400 102600 131100 108300 metal3 -125400 102600 131100 108300 metal4 -125400 102600 131100 108300 metal5 -125400 102600 131100 114000 metal6 -125400 108300 131100 114000 metal5 -125400 108300 136800 114000 metal5 -131100 108300 136800 114000 metal4 -131100 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 108300 136800 114000 metal1 -) -_191_ -( -119700 108300 125400 114000 metal1 -119700 108300 125400 114000 metal2 -119700 108300 131100 114000 metal3 -125400 108300 131100 114000 metal3 -125400 102600 131100 114000 metal4 -125400 102600 131100 108300 metal3 -125400 102600 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_192_ -( -119700 108300 125400 114000 metal1 -119700 102600 125400 114000 metal2 -119700 102600 125400 108300 metal1 -) -_193_ -( -119700 91200 125400 102600 metal2 -119700 96900 125400 102600 metal1 -114000 91200 119700 96900 metal1 -114000 91200 119700 96900 metal2 -114000 91200 125400 96900 metal3 -119700 91200 125400 96900 metal2 -119700 91200 125400 96900 metal1 -) -_194_ -( -119700 96900 125400 102600 metal1 -119700 96900 125400 108300 metal2 -119700 102600 125400 108300 metal1 -) -_195_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 125400 108300 metal3 -119700 102600 125400 108300 metal2 -119700 102600 125400 108300 metal1 -) -_196_ -( -114000 114000 119700 119700 metal1 -114000 108300 119700 119700 metal2 -114000 108300 119700 114000 metal1 -) -_197_ -( -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 119700 125400 metal3 -114000 119700 119700 125400 metal4 -114000 119700 119700 125400 metal5 -114000 108300 119700 125400 metal6 -114000 108300 119700 114000 metal5 -114000 108300 119700 114000 metal4 -114000 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_198_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 114000 metal2 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_199_ -( -102600 96900 108300 102600 metal1 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal3 -102600 96900 108300 108300 metal4 -102600 102600 108300 108300 metal4 -102600 102600 119700 108300 metal5 -114000 102600 119700 108300 metal4 -114000 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -114000 102600 119700 108300 metal1 -) -_200_ -( -74100 68400 79800 74100 metal2 -74100 68400 79800 74100 metal3 -74100 68400 79800 74100 metal4 -74100 68400 79800 74100 metal5 -74100 68400 79800 79800 metal6 -74100 74100 79800 79800 metal5 -74100 74100 85500 79800 metal5 -79800 74100 85500 79800 metal4 -79800 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 74100 74100 metal3 -68400 68400 74100 74100 metal4 -68400 68400 79800 74100 metal5 -74100 62700 79800 68400 metal1 -74100 62700 79800 74100 metal2 -) -_201_ -( -79800 74100 85500 79800 metal1 -79800 74100 85500 79800 metal2 -79800 74100 91200 79800 metal3 -85500 74100 91200 79800 metal2 -85500 74100 91200 79800 metal1 -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 68400 108300 74100 metal1 -85500 74100 102600 79800 metal3 -96900 74100 102600 79800 metal2 -96900 68400 102600 79800 metal2 -) -_202_ -( -79800 79800 85500 91200 metal2 -79800 85500 85500 91200 metal1 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 74100 85500 79800 metal1 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal3 -79800 74100 85500 85500 metal4 -79800 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_203_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 85500 91200 metal3 -79800 85500 85500 91200 metal2 -79800 85500 85500 91200 metal1 -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal3 -68400 79800 74100 91200 metal4 -68400 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 91200 metal1 -68400 85500 79800 91200 metal3 -62700 79800 68400 85500 metal1 -62700 79800 68400 85500 metal2 -62700 79800 74100 85500 metal3 -) -_204_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 85500 91200 metal3 -79800 85500 85500 91200 metal2 -79800 85500 85500 91200 metal1 -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 -74100 91200 79800 96900 metal1 -74100 85500 79800 96900 metal2 -) -_205_ -( -85500 85500 91200 91200 metal1 -85500 85500 91200 91200 metal2 -85500 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 96900 metal2 -91200 91200 96900 96900 metal2 -91200 91200 108300 96900 metal3 -102600 91200 108300 96900 metal1 -102600 91200 108300 96900 metal2 -102600 91200 108300 96900 metal3 -102600 91200 108300 102600 metal4 -102600 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal1 -79800 85500 85500 91200 metal1 -79800 85500 85500 91200 metal2 -79800 85500 91200 91200 metal3 -) -_206_ -( -85500 51300 91200 57000 metal1 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal3 -91200 51300 96900 62700 metal4 -91200 57000 96900 62700 metal3 -91200 57000 96900 62700 metal2 -91200 57000 96900 62700 metal1 -79800 51300 85500 57000 metal1 -79800 51300 85500 57000 metal2 -79800 51300 91200 57000 metal3 -) -_207_ -( -91200 57000 96900 68400 metal2 -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 102600 68400 metal3 -96900 62700 102600 68400 metal2 -96900 62700 102600 74100 metal2 -96900 68400 102600 74100 metal1 -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -85500 57000 96900 62700 metal3 -91200 57000 96900 62700 metal2 -91200 57000 96900 62700 metal1 -) -_208_ -( -91200 57000 96900 62700 metal1 -91200 57000 96900 62700 metal2 -91200 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -) -_209_ -( -96900 39900 102600 51300 metal2 -96900 45600 102600 51300 metal1 -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -96900 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 102600 45600 metal3 -) -_210_ -( -96900 51300 102600 57000 metal3 -96900 51300 102600 62700 metal4 -96900 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -91200 51300 96900 57000 metal1 -91200 51300 96900 57000 metal2 -91200 51300 102600 57000 metal3 -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -96900 45600 102600 51300 metal3 -96900 45600 102600 57000 metal4 -) -_211_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 108300 57000 metal3 -102600 51300 108300 57000 metal2 -102600 45600 108300 57000 metal2 -102600 45600 108300 51300 metal1 -102600 51300 114000 57000 metal3 -108300 51300 114000 57000 metal2 -108300 51300 114000 57000 metal1 -) -_212_ -( -91200 51300 96900 62700 metal2 -91200 57000 96900 62700 metal1 -96900 45600 102600 57000 metal2 -96900 45600 102600 51300 metal1 -91200 51300 96900 57000 metal1 -91200 51300 96900 57000 metal2 -91200 51300 102600 57000 metal3 -96900 51300 102600 57000 metal2 -96900 51300 102600 57000 metal1 -) -_213_ -( -102600 85500 108300 96900 metal2 -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal3 -91200 85500 96900 91200 metal4 -91200 85500 108300 91200 metal5 -102600 91200 108300 96900 metal1 -102600 91200 108300 96900 metal2 -102600 91200 108300 96900 metal3 -102600 91200 108300 96900 metal4 -102600 91200 108300 96900 metal5 -102600 91200 108300 102600 metal6 -102600 96900 108300 102600 metal5 -102600 96900 108300 102600 metal4 -102600 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal1 -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal3 -96900 57000 102600 68400 metal4 -96900 62700 102600 68400 metal3 -96900 62700 108300 68400 metal3 -102600 62700 108300 68400 metal3 -102600 62700 108300 68400 metal4 -102600 62700 108300 68400 metal5 -102600 62700 108300 91200 metal6 -102600 85500 108300 91200 metal5 -102600 85500 108300 91200 metal4 -102600 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -) -_214_ -( -102600 91200 108300 96900 metal1 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_215_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal3 -91200 85500 96900 102600 metal4 -91200 96900 96900 102600 metal3 -91200 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_216_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 91200 metal1 -) -_217_ -( -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_218_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 79800 metal2 -68400 74100 74100 79800 metal3 -68400 74100 74100 85500 metal4 -68400 79800 74100 85500 metal3 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal1 -62700 74100 68400 79800 metal1 -62700 74100 68400 79800 metal2 -62700 74100 74100 79800 metal3 -) -_219_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_220_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 85500 metal2 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal3 -74100 79800 79800 85500 metal4 -74100 79800 96900 85500 metal5 -91200 79800 96900 85500 metal4 -91200 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_221_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 79800 metal2 -91200 74100 96900 79800 metal3 -91200 74100 96900 79800 metal4 -91200 74100 119700 79800 metal5 -85500 68400 91200 74100 metal1 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal3 -85500 68400 91200 79800 metal4 -85500 74100 91200 79800 metal4 -85500 74100 96900 79800 metal5 -114000 74100 125400 79800 metal5 -119700 74100 125400 79800 metal4 -119700 74100 125400 79800 metal3 -119700 74100 125400 79800 metal2 -119700 74100 125400 79800 metal1 -114000 68400 119700 74100 metal1 -114000 68400 119700 74100 metal2 -114000 68400 119700 74100 metal3 -114000 68400 119700 74100 metal4 -114000 68400 119700 74100 metal5 -114000 68400 119700 79800 metal6 -114000 74100 119700 79800 metal5 -) -_222_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 85500 metal2 -91200 79800 96900 85500 metal1 -91200 68400 96900 74100 metal1 -91200 68400 96900 79800 metal2 -) -_223_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 74100 metal2 -79800 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -) -_224_ -( -85500 68400 91200 74100 metal1 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal3 -85500 68400 91200 85500 metal4 -85500 79800 91200 85500 metal3 -85500 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_225_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 79800 metal2 -91200 74100 96900 79800 metal3 -91200 74100 96900 91200 metal4 -91200 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_226_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -) -_227_ -( -85500 57000 91200 68400 metal2 -85500 62700 91200 68400 metal2 -85500 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal1 -79800 57000 85500 62700 metal1 -79800 57000 85500 62700 metal2 -79800 57000 91200 62700 metal3 -85500 57000 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_228_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal3 -91200 62700 96900 79800 metal4 -91200 74100 96900 79800 metal3 -91200 74100 96900 79800 metal2 -91200 74100 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_229_ -( -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 102600 91200 metal3 -96900 85500 102600 108300 metal4 -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 96900 108300 metal3 -91200 102600 96900 108300 metal4 -91200 102600 102600 108300 metal5 -96900 102600 102600 108300 metal4 -96900 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_230_ -( -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -91200 102600 96900 108300 metal3 -91200 96900 96900 108300 metal4 -91200 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 96900 108300 metal3 -) -_231_ -( -102600 51300 108300 57000 metal1 -102600 51300 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_232_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_233_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 108300 57000 metal3 -102600 51300 108300 57000 metal3 -102600 51300 108300 62700 metal4 -102600 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_234_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_235_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal3 -96900 57000 102600 62700 metal4 -96900 57000 102600 62700 metal5 -96900 57000 102600 108300 metal6 -96900 102600 102600 108300 metal5 -96900 102600 102600 108300 metal4 -96900 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -) -_236_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal3 -96900 102600 102600 108300 metal4 -96900 102600 108300 108300 metal5 -102600 102600 108300 108300 metal5 -102600 102600 108300 114000 metal6 -102600 108300 108300 114000 metal5 -102600 108300 119700 114000 metal5 -114000 108300 119700 114000 metal4 -114000 108300 119700 114000 metal3 -114000 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 108300 136800 119700 metal2 -131100 114000 136800 119700 metal2 -131100 114000 136800 119700 metal3 -131100 114000 136800 131100 metal4 -131100 125400 136800 131100 metal4 -131100 125400 148200 131100 metal5 -142500 125400 148200 131100 metal4 -142500 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_237_ -( -102600 96900 108300 102600 metal1 -102600 96900 108300 102600 metal2 -102600 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal1 -) -_238_ -( -96900 102600 102600 108300 metal1 -96900 96900 102600 108300 metal2 -96900 96900 102600 102600 metal2 -96900 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_239_ -( -96900 114000 102600 119700 metal1 -96900 108300 102600 119700 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 108300 108300 114000 metal1 -96900 114000 102600 125400 metal2 -96900 119700 102600 125400 metal1 -) -_240_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 108300 metal2 -96900 102600 108300 108300 metal3 -102600 102600 108300 108300 metal2 -102600 102600 108300 114000 metal2 -102600 108300 108300 114000 metal1 -) -_241_ -( -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_242_ -( -85500 96900 91200 102600 metal1 -85500 96900 91200 102600 metal2 -85500 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -91200 102600 96900 108300 metal1 -91200 96900 96900 108300 metal2 -) -_243_ -( -85500 96900 91200 102600 metal3 -85500 91200 91200 102600 metal4 -85500 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 91200 91200 96900 metal1 -79800 96900 85500 102600 metal1 -79800 96900 85500 102600 metal2 -79800 96900 91200 102600 metal3 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 91200 108300 metal3 -85500 96900 91200 108300 metal4 -) -_244_ -( -85500 91200 91200 96900 metal1 -85500 91200 91200 96900 metal2 -85500 91200 91200 96900 metal3 -85500 91200 91200 96900 metal4 -85500 91200 102600 96900 metal5 -96900 91200 102600 96900 metal4 -96900 91200 102600 96900 metal3 -96900 91200 102600 96900 metal2 -96900 91200 102600 96900 metal1 -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal3 -68400 91200 74100 96900 metal4 -68400 91200 91200 96900 metal5 -62700 85500 68400 96900 metal4 -62700 91200 68400 96900 metal4 -62700 91200 74100 96900 metal5 -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal3 -62700 85500 68400 91200 metal4 -62700 85500 68400 91200 metal5 -62700 57000 68400 91200 metal6 -62700 57000 68400 62700 metal5 -62700 57000 68400 62700 metal4 -62700 57000 68400 62700 metal3 -62700 57000 68400 62700 metal2 -62700 57000 68400 62700 metal1 -85500 39900 91200 45600 metal1 -85500 39900 91200 45600 metal2 -85500 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -68400 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 39900 91200 51300 metal2 -62700 51300 68400 62700 metal4 -62700 51300 68400 57000 metal3 -62700 51300 74100 57000 metal3 -68400 51300 74100 57000 metal3 -68400 45600 74100 57000 metal4 -68400 45600 74100 51300 metal3 -68400 45600 74100 51300 metal2 -68400 45600 74100 51300 metal1 -) -_245_ -( -125400 125400 136800 131100 metal3 -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal3 -142500 79800 148200 91200 metal4 -142500 85500 148200 91200 metal4 -142500 85500 153900 91200 metal5 -148200 85500 153900 91200 metal5 -148200 85500 153900 96900 metal6 -148200 91200 153900 96900 metal5 -148200 91200 153900 96900 metal4 -148200 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 102600 metal2 -148200 96900 153900 102600 metal2 -148200 96900 153900 102600 metal3 -148200 96900 153900 114000 metal4 -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 142500 131100 metal3 -136800 119700 142500 131100 metal4 -136800 119700 142500 125400 metal4 -136800 119700 148200 125400 metal5 -142500 119700 148200 125400 metal5 -142500 108300 148200 125400 metal6 -142500 108300 148200 114000 metal5 -142500 108300 153900 114000 metal5 -148200 108300 153900 114000 metal4 -148200 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -131100 131100 136800 136800 metal1 -131100 131100 136800 136800 metal2 -131100 131100 136800 136800 metal3 -131100 125400 136800 136800 metal4 -131100 125400 136800 131100 metal3 -102600 125400 108300 142500 metal4 -102600 136800 108300 142500 metal3 -96900 136800 108300 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -114000 79800 119700 85500 metal1 -114000 79800 119700 85500 metal2 -114000 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -131100 125400 142500 131100 metal3 -108300 85500 119700 91200 metal3 -114000 85500 119700 91200 metal2 -114000 79800 119700 91200 metal2 -131100 79800 148200 85500 metal3 -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal3 -108300 85500 114000 91200 metal4 -102600 85500 114000 91200 metal5 -102600 85500 108300 91200 metal4 -102600 85500 108300 96900 metal4 -102600 91200 108300 96900 metal4 -96900 91200 108300 96900 metal5 -96900 91200 102600 96900 metal4 -96900 91200 102600 96900 metal3 -96900 91200 102600 96900 metal2 -96900 91200 102600 96900 metal1 -102600 125400 108300 131100 metal4 -102600 125400 131100 131100 metal5 -125400 125400 131100 131100 metal4 -125400 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal3 -96900 125400 102600 131100 metal4 -96900 125400 108300 131100 metal5 -125400 114000 131100 119700 metal1 -125400 114000 131100 131100 metal2 -) -_246_ -( -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_247_ -( -74100 102600 79800 108300 metal1 -74100 102600 79800 108300 metal2 -74100 102600 85500 108300 metal3 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal1 -) -_248_ -( -125400 74100 131100 96900 metal2 -125400 91200 131100 96900 metal2 -125400 91200 131100 96900 metal3 -125400 91200 131100 119700 metal4 -125400 114000 131100 119700 metal3 -125400 114000 131100 119700 metal2 -125400 114000 131100 119700 metal1 -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -119700 74100 131100 79800 metal3 -125400 74100 131100 79800 metal2 -125400 74100 131100 79800 metal1 -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 91200 39900 metal3 -85500 34200 91200 39900 metal4 -85500 34200 91200 39900 metal5 -85500 34200 91200 51300 metal6 -85500 45600 91200 51300 metal5 -85500 45600 96900 51300 metal5 -91200 45600 96900 51300 metal4 -91200 45600 96900 51300 metal3 -91200 45600 108300 51300 metal3 -102600 45600 108300 51300 metal3 -102600 45600 108300 51300 metal4 -102600 45600 114000 51300 metal5 -108300 45600 114000 51300 metal4 -108300 45600 114000 51300 metal3 -108300 45600 114000 51300 metal2 -108300 45600 114000 51300 metal1 -57000 62700 62700 79800 metal4 -57000 62700 62700 68400 metal3 -62700 91200 68400 108300 metal2 -62700 102600 68400 108300 metal2 -62700 102600 68400 108300 metal3 -62700 102600 68400 108300 metal4 -62700 102600 79800 108300 metal5 -74100 102600 79800 108300 metal4 -74100 102600 79800 108300 metal3 -74100 102600 79800 108300 metal2 -74100 102600 79800 108300 metal1 -57000 45600 62700 68400 metal4 -57000 45600 62700 51300 metal4 -57000 45600 68400 51300 metal5 -62700 45600 68400 51300 metal4 -62700 34200 68400 51300 metal4 -62700 34200 68400 39900 metal3 -62700 34200 74100 39900 metal3 -108300 45600 125400 51300 metal5 -119700 45600 125400 51300 metal4 -119700 45600 125400 51300 metal3 -119700 45600 131100 51300 metal3 -125400 45600 131100 51300 metal2 -125400 45600 131100 79800 metal2 -68400 28500 74100 39900 metal2 -68400 28500 74100 34200 metal2 -68400 28500 85500 34200 metal3 -79800 28500 85500 34200 metal2 -79800 28500 85500 39900 metal2 -79800 34200 85500 39900 metal2 -79800 34200 91200 39900 metal3 -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 68400 96900 metal3 -62700 91200 68400 96900 metal4 -57000 91200 68400 96900 metal5 -57000 91200 62700 96900 metal4 -57000 85500 62700 96900 metal4 -57000 85500 62700 91200 metal4 -57000 85500 62700 91200 metal5 -57000 74100 62700 91200 metal6 -57000 74100 62700 79800 metal5 -57000 74100 62700 79800 metal4 -57000 74100 62700 79800 metal3 -57000 74100 62700 79800 metal2 -57000 74100 62700 79800 metal1 -57000 62700 68400 68400 metal3 -62700 62700 68400 68400 metal2 -62700 62700 68400 68400 metal1 -68400 34200 74100 39900 metal2 -68400 34200 74100 39900 metal3 -68400 34200 74100 45600 metal4 -68400 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -) -_249_ -( -153900 114000 159600 119700 metal3 -153900 114000 159600 131100 metal4 -91200 131100 96900 136800 metal1 -91200 131100 96900 136800 metal2 -91200 131100 96900 136800 metal3 -91200 131100 96900 136800 metal4 -91200 131100 96900 136800 metal5 -91200 131100 96900 148200 metal6 -91200 142500 96900 148200 metal5 -91200 142500 102600 148200 metal5 -96900 142500 102600 148200 metal4 -96900 142500 102600 159600 metal4 -96900 153900 102600 159600 metal3 -96900 153900 131100 159600 metal3 -125400 153900 159600 159600 metal3 -153900 153900 159600 159600 metal3 -153900 125400 159600 159600 metal4 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 131100 79800 metal3 -125400 74100 131100 79800 metal4 -125400 74100 148200 79800 metal5 -142500 74100 148200 79800 metal4 -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -148200 114000 159600 119700 metal3 -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -119700 74100 131100 79800 metal3 -114000 74100 125400 79800 metal3 -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 119700 85500 metal3 -114000 79800 119700 85500 metal3 -114000 74100 119700 85500 metal4 -114000 74100 119700 79800 metal3 -114000 74100 119700 79800 metal2 -114000 74100 119700 79800 metal1 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -142500 74100 182400 79800 metal5 -176700 74100 182400 79800 metal4 -176700 74100 182400 119700 metal4 -176700 114000 182400 119700 metal3 -153900 114000 182400 119700 metal3 -142500 74100 148200 85500 metal4 -142500 79800 148200 85500 metal3 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal1 -142500 125400 148200 131100 metal1 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal3 -142500 125400 148200 131100 metal4 -142500 125400 159600 131100 metal5 -153900 125400 159600 131100 metal4 -125400 153900 131100 159600 metal3 -125400 136800 131100 159600 metal4 -125400 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -96900 136800 102600 148200 metal4 -96900 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_250_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal3 -96900 102600 102600 131100 metal4 -96900 102600 102600 108300 metal4 -96900 102600 108300 108300 metal5 -102600 102600 108300 108300 metal5 -102600 96900 108300 108300 metal6 -102600 96900 108300 102600 metal5 -102600 96900 108300 102600 metal4 -102600 96900 108300 102600 metal3 -102600 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 102600 metal1 -) -_251_ -( -91200 96900 96900 102600 metal1 -91200 96900 96900 102600 metal2 -) -_252_ -( -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 85500 96900 metal3 -79800 91200 85500 96900 metal4 -79800 91200 85500 96900 metal5 -79800 91200 85500 102600 metal6 -79800 96900 85500 102600 metal5 -79800 96900 96900 102600 metal5 -91200 96900 96900 102600 metal4 -91200 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal3 -79800 79800 85500 96900 metal4 -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 96900 39900 metal3 -91200 34200 96900 39900 metal4 -91200 34200 102600 39900 metal5 -96900 34200 102600 39900 metal5 -96900 34200 102600 51300 metal6 -96900 45600 102600 51300 metal5 -96900 45600 108300 51300 metal5 -102600 45600 108300 51300 metal4 -102600 45600 108300 51300 metal3 -102600 45600 108300 51300 metal2 -102600 45600 108300 51300 metal1 -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 74100 74100 metal3 -68400 68400 74100 74100 metal4 -68400 68400 74100 74100 metal5 -68400 45600 74100 74100 metal6 -68400 45600 74100 51300 metal5 -68400 45600 74100 51300 metal4 -68400 45600 74100 51300 metal3 -68400 45600 79800 51300 metal3 -74100 45600 79800 51300 metal3 -74100 39900 79800 51300 metal4 -74100 39900 79800 45600 metal3 -74100 39900 79800 45600 metal2 -74100 39900 79800 45600 metal1 -74100 34200 79800 45600 metal4 -74100 34200 79800 39900 metal4 -74100 34200 96900 39900 metal5 -68400 68400 74100 79800 metal2 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 85500 metal2 -) -_253_ -( -131100 79800 136800 85500 metal1 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal3 -131100 79800 136800 85500 metal4 -131100 79800 136800 85500 metal5 -131100 79800 136800 114000 metal6 -131100 108300 136800 114000 metal5 -131100 119700 136800 125400 metal2 -131100 119700 136800 125400 metal3 -131100 119700 136800 125400 metal4 -131100 119700 136800 125400 metal5 -131100 108300 136800 125400 metal6 -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -96900 125400 119700 131100 metal3 -114000 125400 119700 131100 metal3 -114000 125400 119700 131100 metal4 -114000 125400 119700 131100 metal5 -114000 119700 119700 131100 metal6 -114000 119700 119700 125400 metal5 -114000 119700 131100 125400 metal5 -125400 119700 131100 125400 metal4 -125400 119700 131100 125400 metal3 -125400 119700 131100 125400 metal2 -125400 119700 131100 125400 metal1 -119700 79800 125400 85500 metal1 -119700 79800 125400 85500 metal2 -119700 79800 125400 85500 metal3 -119700 79800 125400 85500 metal4 -119700 79800 136800 85500 metal5 -96900 131100 102600 136800 metal1 -96900 125400 102600 136800 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal3 -85500 79800 91200 96900 metal4 -85500 79800 91200 85500 metal3 -85500 79800 102600 85500 metal3 -74100 96900 79800 102600 metal1 -74100 96900 79800 102600 metal2 -74100 96900 85500 102600 metal3 -79800 96900 85500 102600 metal3 -79800 91200 85500 102600 metal4 -79800 91200 85500 96900 metal3 -79800 91200 85500 96900 metal2 -79800 91200 85500 96900 metal1 -131100 119700 136800 131100 metal2 -131100 125400 136800 131100 metal1 -96900 79800 125400 85500 metal3 -96900 79800 102600 85500 metal3 -96900 74100 102600 85500 metal4 -96900 74100 102600 79800 metal3 -96900 74100 102600 79800 metal2 -96900 74100 102600 79800 metal1 -131100 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -131100 108300 148200 114000 metal5 -142500 108300 148200 114000 metal4 -142500 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -125400 119700 136800 125400 metal3 -) -_254_ -( -96900 119700 102600 125400 metal1 -96900 119700 102600 125400 metal2 -96900 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 119700 108300 125400 metal1 -) -_255_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -) -_256_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_257_ -( -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_258_ -( -102600 119700 108300 125400 metal3 -102600 119700 108300 131100 metal4 -102600 125400 108300 131100 metal3 -102600 125400 108300 131100 metal2 -102600 125400 108300 131100 metal1 -102600 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -96900 119700 102600 125400 metal1 -96900 119700 102600 125400 metal2 -96900 119700 108300 125400 metal3 -) -_259_ -( -96900 131100 102600 136800 metal1 -96900 131100 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_260_ -( -96900 136800 102600 142500 metal1 -96900 136800 102600 142500 metal2 -) -_261_ -( -131100 136800 136800 142500 metal1 -131100 131100 136800 142500 metal2 -131100 131100 136800 136800 metal1 -) -_262_ -( -108300 119700 114000 131100 metal2 -108300 125400 114000 131100 metal1 -108300 119700 114000 125400 metal1 -108300 119700 114000 125400 metal2 -108300 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 114000 119700 125400 metal2 -114000 114000 119700 119700 metal1 -) -_263_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -) -_264_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -119700 119700 125400 131100 metal2 -119700 119700 125400 125400 metal1 -) -_265_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 131100 metal2 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -) -_266_ -( -131100 125400 136800 131100 metal1 -131100 125400 136800 136800 metal2 -131100 131100 136800 136800 metal1 -) -_267_ -( -125400 136800 131100 142500 metal1 -125400 131100 131100 142500 metal2 -125400 131100 131100 136800 metal2 -125400 131100 136800 136800 metal3 -131100 131100 136800 136800 metal2 -131100 131100 136800 136800 metal1 -) -_268_ -( -136800 74100 142500 79800 metal1 -136800 74100 142500 79800 metal2 -136800 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 74100 148200 85500 metal2 -142500 79800 148200 85500 metal1 -) -_269_ -( -119700 119700 125400 125400 metal1 -119700 114000 125400 125400 metal2 -119700 114000 125400 119700 metal1 -) -_270_ -( -114000 108300 119700 114000 metal1 -114000 108300 119700 114000 metal2 -114000 108300 125400 114000 metal3 -119700 108300 125400 114000 metal2 -119700 108300 125400 119700 metal2 -119700 114000 125400 119700 metal1 -) -_271_ -( -108300 114000 114000 119700 metal1 -108300 114000 114000 119700 metal2 -108300 114000 119700 119700 metal3 -114000 114000 119700 119700 metal3 -114000 108300 119700 119700 metal4 -114000 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_272_ -( -136800 85500 142500 96900 metal4 -136800 85500 142500 91200 metal3 -136800 85500 142500 91200 metal2 -136800 85500 142500 91200 metal1 -119700 96900 125400 102600 metal3 -119700 96900 125400 102600 metal4 -119700 96900 125400 102600 metal5 -119700 91200 125400 102600 metal6 -119700 91200 125400 96900 metal5 -119700 91200 142500 96900 metal5 -136800 91200 142500 96900 metal4 -136800 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 96900 metal1 -119700 96900 125400 119700 metal4 -119700 114000 125400 119700 metal4 -114000 114000 125400 119700 metal5 -114000 114000 119700 119700 metal4 -114000 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 119700 metal1 -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 125400 102600 metal3 -136800 91200 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_273_ -( -136800 79800 142500 85500 metal1 -136800 79800 142500 85500 metal2 -136800 79800 148200 85500 metal3 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal1 -) -_274_ -( -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -) -_275_ -( -142500 119700 148200 125400 metal1 -142500 119700 148200 125400 metal2 -142500 119700 148200 125400 metal3 -142500 114000 148200 125400 metal4 -142500 114000 148200 119700 metal3 -142500 114000 153900 119700 metal3 -148200 114000 153900 119700 metal3 -148200 108300 153900 119700 metal4 -148200 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -) -_276_ -( -136800 85500 142500 91200 metal1 -136800 85500 142500 91200 metal2 -136800 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_277_ -( -142500 91200 148200 96900 metal1 -142500 91200 148200 96900 metal2 -142500 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 96900 metal1 -142500 91200 148200 102600 metal2 -142500 96900 148200 102600 metal1 -) -_278_ -( -136800 91200 142500 96900 metal1 -136800 91200 142500 96900 metal2 -136800 91200 148200 96900 metal3 -142500 91200 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_279_ -( -142500 108300 148200 114000 metal1 -142500 108300 148200 114000 metal2 -142500 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -) -_280_ -( -148200 108300 153900 114000 metal1 -148200 108300 153900 119700 metal2 -148200 114000 153900 119700 metal1 -) -_281_ -( -131100 79800 136800 85500 metal1 -131100 74100 136800 85500 metal2 -131100 74100 136800 79800 metal2 -131100 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -) -_282_ -( -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -) -_283_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 148200 102600 metal3 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal1 -131100 102600 136800 108300 metal1 -131100 102600 136800 108300 metal2 -131100 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 96900 142500 108300 metal2 -) -_284_ -( -131100 96900 136800 102600 metal3 -131100 91200 136800 102600 metal4 -131100 91200 136800 96900 metal3 -131100 91200 136800 96900 metal2 -131100 91200 136800 96900 metal1 -125400 96900 131100 102600 metal1 -125400 96900 131100 102600 metal2 -125400 96900 136800 102600 metal3 -131100 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_285_ -( -131100 79800 136800 85500 metal1 -131100 79800 136800 85500 metal2 -) -_286_ -( -131100 74100 136800 79800 metal1 -131100 74100 136800 79800 metal2 -) -_287_ -( -91200 114000 96900 119700 metal1 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal3 -91200 114000 96900 119700 metal4 -91200 114000 131100 119700 metal5 -125400 114000 131100 119700 metal4 -125400 114000 131100 119700 metal3 -125400 114000 131100 119700 metal2 -125400 114000 131100 119700 metal1 -) -_288_ -( -125400 91200 131100 96900 metal1 -125400 91200 131100 102600 metal2 -125400 96900 131100 102600 metal1 -) -_289_ -( -119700 96900 125400 102600 metal1 -119700 96900 125400 102600 metal2 -119700 96900 131100 102600 metal3 -125400 96900 131100 102600 metal1 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal3 -125400 96900 131100 102600 metal4 -125400 96900 131100 102600 metal5 -125400 96900 131100 108300 metal6 -125400 102600 131100 108300 metal5 -125400 102600 131100 108300 metal4 -125400 102600 131100 108300 metal3 -125400 102600 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_290_ -( -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_291_ -( -125400 102600 131100 108300 metal1 -125400 102600 131100 114000 metal2 -125400 108300 131100 114000 metal1 -) -_292_ -( -125400 119700 131100 125400 metal1 -125400 114000 131100 125400 metal2 -125400 114000 131100 119700 metal1 -) -_293_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -) -_294_ -( -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 85500 96900 metal3 -79800 91200 85500 96900 metal2 -79800 91200 85500 96900 metal1 -) -_295_ -( -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -) -_296_ -( -125400 96900 131100 102600 metal1 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal3 -125400 96900 131100 108300 metal4 -125400 102600 131100 108300 metal3 -125400 102600 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_297_ -( -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal3 -114000 96900 119700 102600 metal4 -114000 96900 119700 102600 metal5 -114000 96900 119700 108300 metal6 -114000 102600 119700 108300 metal5 -114000 102600 136800 108300 metal5 -131100 102600 136800 108300 metal4 -131100 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -) -_298_ -( -74100 85500 79800 96900 metal4 -74100 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 -74100 91200 79800 96900 metal1 -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 79800 91200 metal3 -74100 85500 79800 91200 metal4 -74100 85500 91200 91200 metal5 -85500 85500 91200 91200 metal4 -85500 85500 91200 91200 metal3 -85500 85500 91200 91200 metal2 -85500 85500 91200 91200 metal1 -85500 85500 91200 96900 metal2 -85500 91200 91200 96900 metal2 -85500 91200 119700 96900 metal3 -114000 91200 119700 96900 metal2 -114000 91200 119700 102600 metal2 -114000 96900 119700 102600 metal1 -) -_299_ -( -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal3 -68400 91200 74100 102600 metal4 -68400 96900 74100 102600 metal3 -68400 96900 79800 102600 metal3 -74100 96900 79800 102600 metal2 -74100 96900 79800 102600 metal1 -) -_300_ -( -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -) -_301_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -) -_302_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 79800 91200 metal3 -74100 74100 79800 91200 metal4 -74100 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -74100 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -) -_303_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -) -_304_ -( -68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 79800 91200 metal3 -74100 85500 79800 91200 metal2 -74100 85500 79800 91200 metal1 -68400 79800 74100 91200 metal2 -68400 79800 74100 85500 metal1 -) -_305_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -) -_306_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal3 -62700 85500 68400 91200 metal4 -62700 85500 79800 91200 metal5 -74100 85500 79800 91200 metal5 -74100 79800 79800 91200 metal6 -74100 79800 79800 85500 metal5 -74100 79800 79800 85500 metal4 -74100 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_307_ -( -57000 74100 62700 79800 metal1 -57000 74100 62700 85500 metal2 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -) -_308_ -( -62700 51300 68400 57000 metal1 -62700 51300 68400 62700 metal2 -62700 57000 68400 62700 metal1 -) -_309_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal1 -) -_310_ -( -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal3 -68400 74100 74100 85500 metal4 -68400 74100 74100 79800 metal4 -68400 74100 79800 79800 metal5 -74100 74100 79800 79800 metal4 -74100 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -) -_311_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -74100 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -79800 74100 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_312_ -( -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 68400 79800 74100 metal2 -74100 68400 79800 74100 metal1 -) -_313_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 62700 metal2 -62700 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 74100 metal2 -68400 68400 74100 74100 metal1 -) -_314_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_315_ -( -114000 79800 119700 85500 metal1 -114000 79800 119700 85500 metal2 -) -_316_ -( -114000 74100 119700 79800 metal1 -114000 74100 119700 79800 metal2 -114000 74100 125400 79800 metal3 -119700 74100 125400 79800 metal2 -119700 74100 125400 79800 metal1 -) -_317_ -( -79800 74100 85500 79800 metal1 -79800 68400 85500 79800 metal2 -79800 68400 85500 74100 metal2 -79800 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -) -_318_ -( -85500 68400 91200 74100 metal2 -85500 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -85500 68400 91200 79800 metal2 -85500 74100 91200 79800 metal1 -85500 62700 91200 68400 metal1 -85500 62700 91200 74100 metal2 -) -_319_ -( -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal1 -) -_320_ -( -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal1 -) -_321_ -( -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -) -_322_ -( -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -) -_323_ -( -85500 85500 91200 91200 metal1 -85500 85500 91200 91200 metal2 -) -_324_ -( -85500 79800 91200 85500 metal1 -85500 79800 91200 85500 metal2 -) -_325_ -( -79800 79800 85500 85500 metal1 -79800 79800 85500 85500 metal2 -79800 79800 91200 85500 metal3 -85500 79800 91200 85500 metal2 -85500 79800 91200 85500 metal1 -) -_326_ -( -85500 74100 91200 79800 metal1 -85500 74100 91200 85500 metal2 -85500 79800 91200 85500 metal1 -) -_327_ -( -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -96900 45600 108300 51300 metal3 -102600 45600 108300 51300 metal2 -102600 45600 108300 51300 metal1 -91200 45600 96900 57000 metal4 -91200 45600 96900 51300 metal3 -91200 45600 102600 51300 metal3 -85500 79800 91200 85500 metal1 -85500 79800 91200 85500 metal2 -85500 79800 91200 85500 metal3 -85500 79800 91200 85500 metal4 -85500 79800 91200 85500 metal5 -85500 51300 91200 85500 metal6 -85500 51300 91200 57000 metal5 -85500 51300 96900 57000 metal5 -91200 51300 96900 57000 metal4 -91200 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 57000 metal1 -) -_328_ -( -102600 45600 108300 51300 metal1 -102600 39900 108300 51300 metal2 -102600 39900 108300 45600 metal1 -) -_329_ -( -79800 39900 85500 45600 metal1 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal3 -79800 39900 85500 45600 metal4 -79800 39900 108300 45600 metal5 -102600 39900 108300 45600 metal4 -102600 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -) -_330_ -( -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal3 -102600 39900 108300 51300 metal4 -102600 45600 108300 51300 metal3 -102600 45600 114000 51300 metal3 -108300 45600 114000 51300 metal2 -108300 45600 114000 51300 metal1 -) -_331_ -( -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -) -_332_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 102600 57000 metal3 -96900 51300 102600 57000 metal4 -96900 51300 102600 57000 metal5 -96900 45600 102600 57000 metal6 -96900 45600 102600 51300 metal5 -96900 45600 102600 51300 metal4 -96900 45600 102600 51300 metal3 -96900 45600 102600 51300 metal2 -96900 45600 102600 51300 metal1 -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 96900 45600 metal3 -91200 39900 96900 51300 metal4 -91200 45600 96900 51300 metal4 -91200 45600 102600 51300 metal5 -) -_333_ -( -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -) -_334_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_335_ -( -85500 39900 91200 45600 metal1 -85500 39900 91200 45600 metal2 -85500 39900 96900 45600 metal3 -91200 39900 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_336_ -( -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 96900 39900 metal3 -91200 34200 96900 39900 metal3 -91200 34200 96900 45600 metal4 -91200 39900 96900 45600 metal3 -91200 39900 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_337_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -85500 45600 96900 51300 metal3 -91200 45600 96900 51300 metal2 -91200 45600 96900 57000 metal2 -91200 51300 96900 57000 metal1 -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -) -_338_ -( -85500 51300 91200 57000 metal1 -85500 45600 91200 57000 metal2 -85500 45600 91200 51300 metal1 -) -_339_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -85500 45600 96900 51300 metal3 -91200 45600 96900 51300 metal2 -91200 39900 96900 51300 metal2 -91200 39900 96900 45600 metal1 -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -) -_340_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -) -_341_ -( -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 85500 51300 metal3 -79800 45600 85500 51300 metal4 -79800 45600 91200 51300 metal5 -85500 45600 91200 51300 metal4 -85500 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 45600 91200 51300 metal1 -85500 45600 91200 62700 metal4 -85500 57000 91200 62700 metal3 -85500 57000 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_342_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -68400 45600 74100 51300 metal3 -68400 39900 74100 51300 metal4 -68400 39900 74100 45600 metal3 -68400 39900 79800 45600 metal3 -74100 39900 79800 45600 metal2 -74100 39900 79800 45600 metal1 -) -_343_ -( -62700 51300 68400 57000 metal1 -62700 45600 68400 57000 metal2 -62700 45600 68400 51300 metal2 -62700 45600 74100 51300 metal3 -68400 45600 74100 51300 metal2 -68400 45600 74100 51300 metal1 -) -_344_ -( -68400 45600 74100 51300 metal1 -68400 39900 74100 51300 metal2 -68400 39900 74100 45600 metal1 -) -_345_ -( -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -) -_346_ -( -85500 51300 91200 57000 metal1 -85500 51300 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_347_ -( -96900 74100 102600 79800 metal1 -96900 74100 102600 79800 metal2 -96900 74100 102600 79800 metal3 -96900 74100 102600 79800 metal4 -96900 74100 108300 79800 metal5 -102600 74100 108300 79800 metal5 -102600 74100 108300 85500 metal6 -102600 79800 108300 85500 metal5 -102600 79800 108300 85500 metal4 -102600 79800 108300 85500 metal3 -102600 79800 108300 85500 metal2 -102600 79800 108300 85500 metal1 -) -_348_ -( -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal3 -108300 85500 114000 108300 metal4 -108300 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 102600 114000 119700 metal2 -108300 114000 114000 119700 metal2 -108300 114000 114000 119700 metal3 -108300 114000 114000 136800 metal4 -108300 131100 114000 136800 metal3 -108300 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 131100 119700 136800 metal1 -) -_349_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 114000 85500 metal3 -108300 79800 114000 85500 metal2 -108300 79800 114000 85500 metal1 -) -_350_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 108300 85500 metal3 -102600 79800 108300 91200 metal4 -102600 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_351_ -( -136800 136800 142500 142500 metal1 -136800 136800 142500 142500 metal2 -136800 136800 153900 142500 metal3 -148200 136800 153900 142500 metal2 -148200 136800 153900 142500 metal1 -) -_352_ -( -91200 91200 96900 96900 metal1 -91200 91200 96900 96900 metal2 -91200 91200 96900 96900 metal3 -91200 91200 96900 96900 metal4 -91200 91200 96900 96900 metal5 -91200 79800 96900 96900 metal6 -91200 79800 96900 85500 metal5 -91200 79800 102600 85500 metal5 -96900 79800 102600 85500 metal4 -96900 79800 102600 85500 metal3 -96900 79800 102600 85500 metal2 -96900 79800 102600 85500 metal1 -96900 79800 108300 85500 metal3 -102600 79800 108300 85500 metal2 -102600 68400 108300 85500 metal2 -102600 68400 108300 74100 metal1 -102600 57000 108300 74100 metal2 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal3 -102600 57000 108300 62700 metal4 -102600 57000 114000 62700 metal5 -74100 45600 79800 51300 metal1 -74100 45600 79800 51300 metal2 -74100 45600 79800 51300 metal3 -74100 45600 79800 51300 metal4 -74100 45600 79800 51300 metal5 -74100 45600 79800 62700 metal6 -74100 57000 79800 62700 metal5 -74100 57000 85500 62700 metal5 -79800 57000 85500 62700 metal4 -79800 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal3 -102600 39900 108300 45600 metal4 -102600 39900 114000 45600 metal5 -108300 39900 114000 45600 metal5 -108300 39900 114000 62700 metal6 -108300 57000 114000 62700 metal5 -108300 57000 114000 62700 metal4 -108300 57000 114000 62700 metal3 -108300 57000 114000 62700 metal2 -108300 57000 114000 62700 metal1 -79800 96900 85500 102600 metal1 -79800 96900 85500 102600 metal2 -79800 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 91200 96900 102600 metal2 -79800 57000 91200 62700 metal5 -85500 57000 91200 62700 metal4 -85500 57000 91200 62700 metal3 -85500 57000 108300 62700 metal3 -79800 57000 85500 68400 metal2 -79800 62700 85500 68400 metal1 -) -_353_ -( -148200 114000 153900 119700 metal5 -148200 114000 153900 142500 metal6 -148200 136800 153900 142500 metal5 -136800 136800 153900 142500 metal5 -136800 136800 142500 142500 metal4 -136800 136800 142500 142500 metal3 -136800 136800 142500 142500 metal2 -136800 136800 142500 142500 metal1 -85500 108300 91200 119700 metal2 -85500 114000 91200 119700 metal1 -148200 96900 159600 102600 metal3 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal1 -119700 136800 125400 142500 metal1 -119700 136800 125400 142500 metal2 -119700 136800 125400 142500 metal3 -119700 136800 125400 142500 metal4 -119700 136800 142500 142500 metal5 -148200 91200 153900 102600 metal2 -108300 142500 114000 148200 metal1 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 136800 119700 148200 metal2 -114000 136800 119700 142500 metal2 -114000 136800 119700 142500 metal3 -114000 136800 119700 142500 metal4 -114000 136800 125400 142500 metal5 -119700 91200 142500 96900 metal3 -136800 91200 142500 96900 metal3 -136800 91200 142500 96900 metal4 -136800 91200 153900 96900 metal5 -148200 91200 153900 96900 metal4 -148200 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 96900 metal1 -148200 96900 153900 102600 metal2 -148200 96900 153900 102600 metal3 -148200 96900 153900 102600 metal4 -148200 96900 153900 102600 metal5 -148200 96900 153900 119700 metal6 -57000 96900 62700 108300 metal2 -57000 102600 62700 108300 metal2 -57000 102600 74100 108300 metal3 -68400 102600 74100 108300 metal3 -68400 102600 74100 114000 metal4 -68400 108300 74100 114000 metal3 -68400 108300 91200 114000 metal3 -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 62700 102600 metal3 -57000 96900 62700 102600 metal4 -57000 96900 62700 102600 metal5 -57000 79800 62700 102600 metal6 -57000 79800 62700 85500 metal5 -57000 79800 62700 85500 metal4 -57000 79800 62700 85500 metal3 -57000 79800 62700 85500 metal2 -57000 79800 62700 85500 metal1 -119700 85500 125400 96900 metal4 -119700 85500 125400 91200 metal3 -119700 85500 125400 91200 metal2 -119700 85500 125400 91200 metal1 -85500 108300 91200 114000 metal2 -85500 108300 91200 114000 metal3 -85500 102600 91200 114000 metal4 -85500 102600 91200 108300 metal4 -85500 102600 96900 108300 metal5 -91200 102600 96900 108300 metal5 -91200 91200 96900 108300 metal6 -91200 91200 96900 96900 metal5 -91200 91200 96900 96900 metal4 -91200 91200 96900 96900 metal3 -91200 91200 96900 96900 metal2 -91200 91200 96900 96900 metal1 -91200 91200 125400 96900 metal5 -119700 91200 125400 96900 metal4 -119700 91200 125400 96900 metal3 -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal3 -136800 114000 142500 119700 metal4 -136800 114000 153900 119700 metal5 -) -_354_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -) -_355_ -( -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -) -_356_ -( -119700 142500 125400 148200 metal1 -119700 142500 125400 148200 metal2 -119700 142500 125400 148200 metal3 -119700 142500 125400 148200 metal4 -119700 142500 125400 148200 metal5 -119700 136800 125400 148200 metal6 -119700 136800 125400 142500 metal5 -119700 136800 125400 142500 metal4 -119700 136800 125400 142500 metal3 -119700 136800 125400 142500 metal2 -119700 136800 125400 142500 metal1 -) -_357_ -( -153900 91200 159600 96900 metal1 -153900 91200 159600 96900 metal2 -) -_358_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -) -_359_ -( -119700 85500 125400 91200 metal1 -119700 85500 125400 91200 metal2 -) -_360_ -( -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 148200 119700 metal3 -142500 114000 148200 119700 metal2 -142500 114000 148200 125400 metal2 -142500 119700 148200 125400 metal1 -) -_361_ -( -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -) -_362_ -( -57000 74100 62700 79800 metal1 -57000 74100 62700 79800 metal2 -57000 74100 62700 79800 metal3 -57000 74100 62700 91200 metal4 -57000 85500 62700 91200 metal3 -57000 85500 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_363_ -( -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 91200 68400 metal3 -85500 62700 91200 68400 metal2 -85500 62700 91200 68400 metal1 -) -_364_ -( -108300 62700 114000 68400 metal1 -108300 62700 114000 74100 metal2 -108300 68400 114000 74100 metal1 -) -_365_ -( -108300 57000 114000 62700 metal1 -108300 57000 114000 62700 metal2 -108300 57000 119700 62700 metal3 -114000 57000 119700 62700 metal2 -114000 57000 119700 68400 metal2 -114000 62700 119700 68400 metal1 -) -_366_ -( -108300 34200 114000 39900 metal1 -108300 34200 114000 39900 metal2 -108300 34200 114000 39900 metal3 -108300 34200 114000 45600 metal4 -108300 39900 114000 45600 metal3 -108300 39900 114000 45600 metal2 -108300 39900 114000 45600 metal1 -) -_367_ -( -74100 39900 79800 45600 metal1 -74100 39900 79800 51300 metal2 -74100 45600 79800 51300 metal1 -) -_368_ -( -96900 79800 102600 85500 metal1 -96900 79800 102600 85500 metal2 -) -_369_ -( -148200 136800 153900 142500 metal1 -148200 136800 153900 142500 metal2 -148200 136800 159600 142500 metal3 -153900 136800 159600 142500 metal2 -153900 136800 159600 142500 metal1 -) -_370_ -( -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -45600 62700 85500 68400 metal3 -45600 62700 51300 68400 metal3 -45600 62700 51300 68400 metal4 -45600 62700 51300 68400 metal5 -45600 62700 51300 182400 metal6 -45600 176700 51300 182400 metal5 -45600 176700 91200 182400 metal5 -85500 176700 91200 182400 metal4 -85500 176700 91200 182400 metal3 -85500 176700 125400 182400 metal3 -119700 176700 125400 182400 metal2 -119700 171000 125400 182400 metal2 -119700 171000 125400 176700 metal1 -) -_371_ -( -102600 22800 108300 28500 metal1 -102600 22800 108300 28500 metal2 -102600 22800 108300 28500 metal3 -102600 22800 108300 28500 metal4 -102600 22800 119700 28500 metal5 -114000 22800 119700 28500 metal5 -114000 22800 119700 68400 metal6 -114000 62700 119700 68400 metal5 -102600 62700 119700 68400 metal5 -102600 62700 108300 68400 metal4 -102600 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 68400 metal1 -) -_372_ -( -114000 62700 119700 68400 metal1 -114000 62700 119700 68400 metal2 -114000 62700 119700 68400 metal3 -114000 62700 119700 68400 metal4 -114000 62700 125400 68400 metal5 -119700 62700 125400 68400 metal4 -119700 57000 125400 68400 metal4 -119700 57000 125400 62700 metal3 -119700 57000 159600 62700 metal3 -153900 57000 159600 62700 metal3 -153900 57000 159600 79800 metal4 -153900 74100 159600 79800 metal3 -153900 74100 188100 79800 metal3 -182400 74100 188100 79800 metal2 -182400 74100 188100 119700 metal2 -182400 114000 188100 119700 metal2 -176700 114000 188100 119700 metal3 -176700 114000 182400 119700 metal3 -176700 114000 182400 159600 metal4 -176700 153900 182400 159600 metal4 -153900 153900 182400 159600 metal5 -153900 153900 159600 159600 metal4 -153900 153900 159600 165300 metal4 -153900 159600 159600 165300 metal3 -119700 159600 159600 165300 metal3 -119700 159600 125400 165300 metal2 -119700 159600 125400 171000 metal2 -119700 165300 125400 171000 metal1 -) -_373_ -( -108300 34200 114000 39900 metal1 -108300 34200 114000 39900 metal2 -108300 34200 119700 39900 metal3 -114000 34200 119700 39900 metal2 -114000 34200 119700 39900 metal1 -) -_374_ -( -62700 34200 68400 39900 metal1 -62700 34200 68400 45600 metal2 -62700 39900 68400 45600 metal2 -62700 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -) -_375_ -( -22800 85500 28500 91200 metal1 -22800 85500 28500 91200 metal2 -22800 85500 28500 91200 metal3 -22800 74100 28500 91200 metal4 -22800 74100 28500 79800 metal4 -22800 74100 51300 79800 metal5 -45600 74100 51300 79800 metal5 -45600 74100 51300 85500 metal6 -45600 79800 51300 85500 metal5 -45600 79800 74100 85500 metal5 -68400 79800 74100 85500 metal4 -68400 79800 74100 85500 metal3 -68400 79800 91200 85500 metal3 -85500 79800 91200 85500 metal2 -85500 79800 91200 91200 metal2 -85500 85500 91200 91200 metal2 -85500 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_376_ -( -142500 131100 148200 136800 metal1 -142500 131100 148200 136800 metal2 -142500 131100 148200 136800 metal3 -142500 131100 148200 136800 metal4 -142500 131100 148200 136800 metal5 -142500 131100 148200 176700 metal6 -142500 171000 148200 176700 metal5 -142500 171000 153900 176700 metal5 -148200 171000 153900 176700 metal4 -148200 171000 153900 176700 metal3 -148200 171000 153900 176700 metal2 -148200 171000 153900 176700 metal1 -) -_377_ -( -108300 96900 114000 102600 metal1 -108300 96900 114000 102600 metal2 -108300 96900 114000 102600 metal3 -108300 96900 114000 102600 metal4 -108300 96900 119700 102600 metal5 -114000 96900 119700 102600 metal4 -114000 96900 119700 102600 metal3 -114000 96900 125400 102600 metal3 -119700 96900 125400 102600 metal3 -119700 96900 125400 102600 metal4 -119700 96900 148200 102600 metal5 -142500 96900 148200 102600 metal4 -142500 96900 148200 102600 metal3 -142500 96900 165300 102600 metal3 -159600 96900 165300 102600 metal2 -159600 91200 165300 102600 metal2 -159600 91200 165300 96900 metal2 -159600 91200 176700 96900 metal3 -171000 91200 176700 96900 metal2 -171000 91200 176700 96900 metal1 -) -_378_ -( -74100 142500 79800 148200 metal1 -74100 136800 79800 148200 metal2 -74100 136800 79800 142500 metal2 -74100 136800 96900 142500 metal3 -91200 136800 96900 142500 metal2 -91200 136800 96900 142500 metal1 -) -_379_ -( -131100 136800 136800 142500 metal1 -131100 136800 136800 142500 metal2 -131100 136800 136800 142500 metal3 -131100 136800 136800 148200 metal4 -131100 142500 136800 148200 metal3 -131100 142500 142500 148200 metal3 -136800 142500 142500 148200 metal2 -136800 142500 142500 148200 metal1 -) -_380_ -( -79800 22800 85500 28500 metal1 -79800 22800 85500 28500 metal2 -79800 22800 85500 28500 metal3 -79800 22800 85500 28500 metal4 -45600 22800 85500 28500 metal5 -45600 22800 51300 28500 metal4 -45600 22800 51300 51300 metal4 -45600 45600 51300 51300 metal3 -34200 45600 51300 51300 metal3 -34200 45600 39900 51300 metal3 -34200 45600 39900 119700 metal4 -34200 114000 39900 119700 metal4 -34200 114000 74100 119700 metal5 -68400 114000 74100 119700 metal4 -68400 114000 74100 119700 metal3 -68400 114000 91200 119700 metal3 -85500 114000 91200 119700 metal2 -85500 114000 91200 119700 metal1 -) -_381_ -( -34200 74100 39900 79800 metal1 -34200 74100 39900 79800 metal2 -28500 74100 39900 79800 metal3 -28500 74100 34200 79800 metal3 -28500 62700 34200 79800 metal4 -28500 62700 34200 68400 metal4 -28500 62700 51300 68400 metal5 -45600 62700 51300 68400 metal5 -45600 0 51300 68400 metal6 -45600 0 51300 5700 metal5 -45600 0 131100 5700 metal5 -125400 0 131100 5700 metal4 -125400 0 131100 17100 metal4 -125400 11400 131100 17100 metal3 -125400 11400 159600 17100 metal3 -153900 11400 159600 17100 metal2 -153900 11400 159600 79800 metal2 -153900 74100 159600 79800 metal2 -142500 74100 159600 79800 metal3 -142500 74100 148200 79800 metal3 -142500 74100 148200 79800 metal4 -142500 74100 148200 79800 metal5 -142500 74100 148200 85500 metal6 -142500 79800 148200 85500 metal5 -136800 79800 148200 85500 metal5 -136800 79800 142500 85500 metal4 -136800 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -) -_382_ -( -148200 119700 153900 125400 metal1 -148200 119700 153900 131100 metal2 -148200 125400 153900 131100 metal2 -148200 125400 176700 131100 metal3 -171000 125400 176700 131100 metal2 -171000 119700 176700 131100 metal2 -171000 119700 176700 125400 metal1 -) -_383_ -( -136800 74100 142500 79800 metal1 -136800 74100 142500 79800 metal2 -136800 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 68400 148200 79800 metal2 -142500 68400 148200 74100 metal1 -) -_384_ -( -85500 171000 91200 176700 metal1 -85500 171000 91200 176700 metal2 -85500 171000 91200 176700 metal3 -85500 171000 91200 176700 metal4 -85500 171000 91200 176700 metal5 -85500 114000 91200 176700 metal6 -85500 114000 91200 119700 metal5 -85500 114000 96900 119700 metal5 -91200 114000 96900 119700 metal4 -91200 114000 96900 119700 metal3 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal1 -) -_385_ -( -79800 91200 85500 96900 metal1 -79800 85500 85500 96900 metal2 -79800 85500 85500 91200 metal2 -79800 85500 91200 91200 metal3 -85500 85500 91200 91200 metal3 -85500 85500 91200 91200 metal4 -85500 85500 131100 91200 metal5 -125400 85500 131100 91200 metal4 -125400 85500 131100 91200 metal3 -125400 85500 136800 91200 metal3 -131100 85500 136800 91200 metal3 -131100 85500 136800 91200 metal4 -131100 85500 148200 91200 metal5 -142500 85500 148200 91200 metal4 -142500 85500 148200 91200 metal3 -142500 85500 176700 91200 metal3 -171000 85500 176700 91200 metal2 -171000 85500 176700 102600 metal2 -171000 96900 176700 102600 metal1 -) -_386_ -( -51300 108300 57000 114000 metal1 -51300 108300 57000 114000 metal2 -51300 108300 57000 114000 metal3 -51300 85500 57000 114000 metal4 -51300 85500 57000 91200 metal4 -51300 85500 68400 91200 metal5 -62700 85500 68400 91200 metal4 -62700 85500 68400 91200 metal3 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal1 -) -_387_ -( -57000 45600 62700 51300 metal1 -57000 45600 62700 57000 metal2 -57000 51300 62700 57000 metal2 -57000 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -) -_388_ -( -108300 171000 114000 176700 metal1 -108300 171000 114000 176700 metal2 -108300 171000 114000 176700 metal3 -108300 171000 114000 176700 metal4 -108300 171000 131100 176700 metal5 -125400 171000 131100 176700 metal5 -125400 119700 131100 176700 metal6 -125400 119700 131100 125400 metal5 -125400 119700 131100 125400 metal4 -125400 119700 131100 125400 metal3 -119700 119700 131100 125400 metal3 -119700 119700 125400 125400 metal3 -119700 119700 125400 125400 metal4 -119700 119700 125400 125400 metal5 -119700 96900 125400 125400 metal6 -119700 96900 125400 102600 metal5 -114000 96900 125400 102600 metal5 -114000 96900 119700 102600 metal5 -114000 85500 119700 102600 metal6 -114000 85500 119700 91200 metal5 -114000 85500 119700 91200 metal4 -114000 85500 119700 91200 metal3 -114000 85500 119700 91200 metal2 -114000 85500 119700 91200 metal1 -) -_389_ -( -22800 34200 28500 39900 metal1 -22800 34200 28500 39900 metal2 -22800 34200 85500 39900 metal3 -79800 34200 85500 39900 metal2 -79800 34200 85500 45600 metal2 -79800 39900 85500 45600 metal1 -) -_390_ -( -85500 28500 91200 34200 metal1 -85500 28500 91200 34200 metal2 -85500 28500 91200 34200 metal3 -85500 28500 91200 45600 metal4 -85500 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -) -_391_ -( -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 171000 148200 metal3 -165300 142500 171000 148200 metal2 -165300 142500 171000 153900 metal2 -165300 148200 171000 153900 metal1 -) -_392_ -( -39900 171000 45600 176700 metal1 -39900 171000 45600 176700 metal2 -11400 171000 45600 176700 metal3 -11400 171000 17100 176700 metal3 -11400 45600 17100 176700 metal4 -11400 45600 17100 51300 metal4 -11400 45600 57000 51300 metal5 -51300 45600 57000 51300 metal5 -51300 45600 57000 57000 metal6 -51300 51300 57000 57000 metal5 -51300 51300 68400 57000 metal5 -62700 51300 68400 57000 metal4 -62700 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -) -_393_ -( -114000 171000 119700 176700 metal1 -114000 171000 119700 176700 metal2 -114000 171000 119700 176700 metal3 -114000 131100 119700 176700 metal4 -114000 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 131100 119700 136800 metal1 -) -_394_ -( -22800 171000 28500 176700 metal1 -22800 153900 28500 176700 metal2 -22800 153900 28500 159600 metal2 -22800 153900 28500 159600 metal3 -22800 153900 28500 159600 metal4 -22800 153900 108300 159600 metal5 -102600 153900 108300 159600 metal4 -102600 153900 108300 159600 metal3 -102600 153900 119700 159600 metal3 -114000 153900 119700 159600 metal2 -114000 142500 119700 159600 metal2 -114000 142500 119700 148200 metal1 -) -_395_ -( -153900 91200 159600 96900 metal1 -153900 91200 159600 96900 metal2 -153900 91200 171000 96900 metal3 -165300 91200 171000 96900 metal2 -165300 91200 171000 102600 metal2 -165300 96900 171000 102600 metal1 -) -_396_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal3 -153900 85500 159600 102600 metal4 -153900 85500 159600 91200 metal4 -153900 85500 159600 91200 metal5 -153900 22800 159600 91200 metal6 -153900 22800 159600 28500 metal5 -153900 22800 171000 28500 metal5 -165300 22800 171000 28500 metal4 -165300 22800 171000 28500 metal3 -165300 22800 171000 28500 metal2 -165300 22800 171000 28500 metal1 -) -_397_ -( -22800 62700 28500 68400 metal1 -22800 45600 28500 68400 metal2 -22800 45600 28500 51300 metal2 -22800 45600 39900 51300 metal3 -34200 45600 39900 51300 metal2 -34200 17100 39900 51300 metal2 -34200 17100 39900 22800 metal2 -34200 17100 131100 22800 metal3 -125400 17100 131100 22800 metal3 -125400 17100 131100 68400 metal4 -125400 62700 131100 68400 metal4 -119700 62700 131100 68400 metal5 -119700 62700 125400 68400 metal5 -119700 62700 125400 91200 metal6 -119700 85500 125400 91200 metal5 -119700 85500 125400 91200 metal4 -119700 85500 125400 91200 metal3 -119700 85500 125400 91200 metal2 -119700 85500 125400 91200 metal1 -) -_398_ -( -142500 119700 148200 125400 metal1 -142500 119700 148200 125400 metal2 -142500 119700 148200 125400 metal3 -142500 119700 148200 125400 metal4 -142500 119700 153900 125400 metal5 -148200 119700 153900 125400 metal4 -148200 119700 153900 131100 metal4 -148200 125400 153900 131100 metal3 -148200 125400 176700 131100 metal3 -171000 125400 176700 131100 metal2 -171000 125400 176700 131100 metal1 -) -_399_ -( -45600 102600 51300 108300 metal1 -45600 96900 51300 108300 metal2 -45600 96900 51300 102600 metal2 -45600 96900 62700 102600 metal3 -57000 96900 62700 102600 metal2 -57000 96900 62700 102600 metal1 -) -_400_ -( -22800 74100 28500 79800 metal1 -22800 74100 28500 85500 metal2 -22800 79800 28500 85500 metal2 -22800 79800 57000 85500 metal3 -51300 79800 57000 85500 metal2 -51300 79800 57000 85500 metal1 -) -_401_ -( -51300 45600 57000 68400 metal4 -51300 45600 57000 51300 metal3 -51300 45600 68400 51300 metal3 -62700 45600 68400 51300 metal2 -62700 39900 68400 51300 metal2 -62700 39900 68400 45600 metal2 -62700 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 57000 85500 metal3 -51300 62700 57000 85500 metal4 -79800 62700 85500 79800 metal4 -79800 74100 85500 79800 metal4 -79800 74100 91200 79800 metal5 -85500 74100 91200 79800 metal5 -85500 74100 91200 85500 metal6 -85500 79800 91200 85500 metal5 -79800 102600 85500 108300 metal1 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal3 -79800 102600 85500 108300 metal4 -79800 102600 91200 108300 metal5 -85500 102600 91200 108300 metal5 -85500 79800 91200 108300 metal6 -108300 62700 114000 68400 metal1 -108300 62700 114000 68400 metal2 -108300 62700 114000 68400 metal3 -108300 62700 114000 68400 metal4 -108300 62700 114000 68400 metal5 -108300 62700 114000 85500 metal6 -108300 79800 114000 85500 metal5 -108300 45600 114000 68400 metal4 -108300 45600 114000 51300 metal4 -108300 45600 114000 51300 metal5 -108300 34200 114000 51300 metal6 -108300 34200 114000 39900 metal5 -108300 34200 114000 39900 metal4 -108300 34200 114000 39900 metal3 -108300 34200 114000 39900 metal2 -108300 34200 114000 39900 metal1 -102600 62700 114000 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 68400 metal1 -91200 79800 102600 85500 metal3 -96900 79800 102600 85500 metal3 -96900 79800 102600 85500 metal4 -96900 79800 114000 85500 metal5 -51300 62700 57000 68400 metal4 -51300 62700 85500 68400 metal5 -79800 62700 85500 68400 metal4 -79800 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -51300 79800 57000 91200 metal4 -51300 85500 57000 91200 metal3 -51300 85500 57000 91200 metal2 -51300 85500 57000 102600 metal2 -51300 96900 57000 102600 metal1 -108300 79800 114000 96900 metal6 -108300 91200 114000 96900 metal5 -108300 91200 114000 96900 metal4 -108300 91200 114000 96900 metal3 -108300 91200 114000 96900 metal2 -108300 91200 114000 96900 metal1 -85500 79800 96900 85500 metal5 -91200 79800 96900 85500 metal4 -91200 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_402_ -( -74100 119700 79800 131100 metal2 -74100 125400 79800 131100 metal2 -74100 125400 85500 131100 metal3 -79800 125400 85500 131100 metal2 -79800 125400 85500 131100 metal1 -68400 108300 74100 114000 metal1 -68400 108300 74100 114000 metal2 -68400 108300 74100 114000 metal3 -68400 108300 74100 125400 metal4 -68400 119700 74100 125400 metal3 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -) -_403_ -( -68400 108300 74100 114000 metal1 -68400 108300 74100 114000 metal2 -62700 108300 74100 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal3 -68400 114000 74100 125400 metal4 -68400 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -68400 108300 74100 119700 metal2 -) -_404_ -( -96900 131100 102600 136800 metal3 -96900 131100 102600 136800 metal4 -96900 131100 102600 136800 metal5 -96900 102600 102600 136800 metal6 -96900 102600 102600 108300 metal5 -96900 102600 102600 108300 metal4 -96900 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal3 -96900 131100 102600 142500 metal4 -96900 131100 108300 136800 metal3 -102600 131100 108300 136800 metal2 -102600 131100 108300 136800 metal1 -) -_405_ -( -45600 74100 51300 79800 metal1 -45600 74100 51300 79800 metal2 -45600 74100 51300 79800 metal3 -45600 74100 51300 79800 metal4 -45600 74100 74100 79800 metal5 -68400 74100 74100 79800 metal4 -68400 68400 74100 79800 metal4 -68400 68400 74100 74100 metal3 -68400 68400 74100 74100 metal2 -68400 68400 74100 74100 metal1 -) -_406_ -( -119700 68400 125400 85500 metal4 -119700 79800 125400 85500 metal3 -119700 79800 125400 85500 metal2 -119700 79800 125400 85500 metal1 -119700 68400 131100 74100 metal3 -125400 68400 131100 74100 metal2 -125400 68400 131100 74100 metal1 -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal3 -96900 68400 102600 74100 metal4 -96900 68400 125400 74100 metal5 -119700 68400 125400 74100 metal4 -119700 68400 125400 74100 metal3 -) -_407_ -( -102600 45600 108300 51300 metal1 -102600 45600 108300 51300 metal2 -102600 45600 114000 51300 metal3 -108300 45600 114000 51300 metal3 -108300 39900 114000 51300 metal4 -108300 39900 114000 45600 metal4 -108300 39900 119700 45600 metal5 -114000 39900 119700 45600 metal4 -114000 34200 119700 45600 metal4 -114000 34200 119700 39900 metal3 -114000 34200 119700 39900 metal2 -114000 34200 119700 39900 metal1 -) -_408_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 102600 39900 metal3 -96900 22800 102600 39900 metal2 -96900 22800 102600 28500 metal1 -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -96900 39900 102600 45600 metal3 -96900 34200 102600 45600 metal4 -96900 34200 102600 39900 metal3 -96900 34200 102600 39900 metal2 -) -_409_ -( -74100 39900 79800 45600 metal1 -74100 39900 79800 45600 metal2 -74100 39900 79800 45600 metal3 -74100 39900 79800 45600 metal4 -74100 39900 79800 45600 metal5 -74100 34200 79800 45600 metal6 -74100 34200 79800 39900 metal5 -74100 34200 79800 39900 metal4 -74100 34200 79800 39900 metal3 -74100 34200 91200 39900 metal3 -85500 34200 91200 39900 metal2 -85500 34200 91200 39900 metal3 -85500 34200 91200 39900 metal4 -85500 34200 91200 39900 metal5 -85500 28500 91200 39900 metal6 -85500 28500 91200 34200 metal5 -85500 28500 102600 34200 metal5 -96900 28500 102600 34200 metal4 -96900 28500 102600 39900 metal4 -96900 34200 102600 39900 metal4 -96900 34200 125400 39900 metal5 -119700 34200 125400 39900 metal4 -119700 34200 125400 45600 metal4 -119700 39900 125400 45600 metal3 -119700 39900 131100 45600 metal3 -125400 39900 131100 45600 metal2 -125400 39900 131100 45600 metal1 -85500 34200 91200 45600 metal2 -85500 39900 91200 45600 metal1 -) -_410_ -( -91200 57000 96900 68400 metal4 -91200 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 79800 metal2 -91200 74100 96900 79800 metal1 -85500 22800 91200 28500 metal1 -85500 22800 91200 28500 metal2 -85500 22800 91200 28500 metal3 -85500 22800 91200 28500 metal4 -85500 22800 96900 28500 metal5 -91200 22800 96900 28500 metal5 -91200 22800 96900 62700 metal6 -91200 57000 96900 62700 metal5 -91200 57000 96900 62700 metal4 -91200 57000 96900 62700 metal3 -91200 57000 96900 62700 metal2 -91200 57000 96900 62700 metal1 -) -_411_ -( -96900 119700 102600 125400 metal1 -96900 119700 102600 131100 metal2 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 96900 142500 metal3 -91200 125400 96900 142500 metal4 -91200 125400 96900 131100 metal3 -91200 125400 102600 131100 metal3 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal1 -) -_412_ -( -96900 125400 108300 131100 metal3 -102600 125400 108300 131100 metal2 -102600 125400 108300 131100 metal1 -79800 131100 85500 136800 metal1 -79800 131100 85500 136800 metal2 -79800 131100 85500 136800 metal3 -79800 125400 85500 136800 metal4 -79800 125400 85500 131100 metal4 -79800 125400 102600 131100 metal5 -96900 125400 102600 131100 metal4 -96900 125400 102600 131100 metal3 -96900 125400 102600 136800 metal4 -96900 131100 102600 136800 metal3 -96900 131100 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_413_ -( -125400 125400 131100 131100 metal1 -125400 125400 131100 131100 metal2 -125400 125400 136800 131100 metal3 -131100 125400 136800 131100 metal2 -131100 125400 136800 131100 metal1 -131100 125400 142500 131100 metal3 -136800 125400 142500 131100 metal2 -136800 119700 142500 131100 metal2 -136800 119700 142500 125400 metal2 -136800 119700 153900 125400 metal3 -148200 119700 153900 125400 metal2 -148200 119700 153900 125400 metal1 -) -_414_ -( -136800 85500 142500 91200 metal1 -136800 79800 142500 91200 metal2 -136800 79800 142500 85500 metal1 -131100 62700 136800 68400 metal1 -131100 62700 136800 68400 metal2 -131100 62700 142500 68400 metal3 -136800 62700 142500 68400 metal2 -136800 62700 142500 85500 metal2 -) -_415_ -( -148200 91200 153900 96900 metal3 -148200 91200 153900 96900 metal4 -148200 91200 153900 96900 metal5 -148200 91200 153900 108300 metal6 -148200 102600 153900 108300 metal5 -142500 102600 153900 108300 metal5 -142500 102600 148200 108300 metal4 -142500 102600 148200 114000 metal4 -142500 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -148200 91200 165300 96900 metal3 -159600 91200 165300 96900 metal2 -159600 91200 165300 96900 metal1 -142500 91200 148200 96900 metal1 -142500 91200 148200 96900 metal2 -142500 91200 153900 96900 metal3 -) -_416_ -( -131100 91200 136800 96900 metal1 -131100 91200 136800 96900 metal2 -131100 91200 136800 96900 metal3 -131100 79800 136800 96900 metal4 -131100 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 136800 79800 metal3 -131100 74100 136800 79800 metal3 -131100 74100 136800 85500 metal4 -) -_417_ -( -125400 119700 131100 125400 metal1 -125400 119700 131100 125400 metal2 -125400 119700 131100 125400 metal3 -125400 119700 131100 125400 metal4 -125400 119700 131100 125400 metal5 -125400 108300 131100 125400 metal6 -125400 108300 131100 114000 metal5 -125400 108300 131100 114000 metal4 -125400 108300 131100 114000 metal3 -125400 108300 131100 114000 metal2 -125400 108300 131100 114000 metal1 -125400 119700 159600 125400 metal3 -153900 119700 159600 125400 metal2 -153900 119700 159600 125400 metal1 -) -_418_ -( -74100 91200 79800 96900 metal1 -74100 91200 79800 102600 metal2 -68400 102600 74100 108300 metal1 -68400 96900 74100 108300 metal2 -68400 96900 74100 102600 metal2 -68400 96900 79800 102600 metal3 -74100 96900 79800 102600 metal2 -74100 96900 79800 102600 metal1 -) -_419_ -( -74100 85500 79800 91200 metal1 -74100 79800 79800 91200 metal2 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_420_ -( -57000 125400 62700 131100 metal1 -57000 125400 62700 131100 metal2 -57000 125400 68400 131100 metal3 -62700 125400 68400 131100 metal2 -62700 125400 74100 131100 metal3 -68400 125400 74100 131100 metal2 -68400 119700 74100 131100 metal2 -68400 119700 74100 125400 metal1 -62700 119700 68400 131100 metal2 -62700 119700 68400 125400 metal1 -) -_421_ -( -62700 119700 68400 131100 metal4 -62700 125400 68400 131100 metal3 -62700 125400 74100 131100 metal3 -68400 125400 74100 131100 metal3 -68400 119700 74100 131100 metal4 -68400 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 119700 74100 125400 metal1 -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 68400 125400 metal3 -62700 119700 68400 125400 metal4 -62700 119700 68400 125400 metal5 -62700 108300 68400 125400 metal6 -62700 108300 68400 114000 metal5 -62700 108300 68400 114000 metal4 -62700 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -34200 125400 68400 131100 metal3 -34200 125400 39900 131100 metal2 -34200 74100 39900 131100 metal2 -34200 74100 39900 79800 metal2 -34200 74100 51300 79800 metal3 -45600 74100 51300 79800 metal3 -45600 57000 51300 79800 metal4 -45600 57000 51300 62700 metal4 -45600 57000 74100 62700 metal5 -68400 57000 74100 62700 metal4 -68400 57000 74100 62700 metal3 -68400 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 -74100 57000 79800 62700 metal1 -) -clk -( -57000 102600 62700 114000 metal2 -45600 91200 51300 96900 metal3 -45600 91200 51300 108300 metal4 -45600 102600 51300 108300 metal3 -45600 102600 62700 108300 metal3 -57000 102600 62700 108300 metal2 -57000 102600 62700 108300 metal1 -57000 114000 62700 119700 metal1 -57000 114000 62700 119700 metal2 -57000 114000 62700 119700 metal3 -57000 114000 62700 119700 metal4 -57000 114000 62700 119700 metal5 -57000 114000 62700 142500 metal6 -57000 136800 62700 142500 metal5 -57000 136800 74100 142500 metal5 -68400 136800 74100 142500 metal4 -131100 119700 142500 125400 metal3 -136800 119700 142500 125400 metal2 -136800 114000 142500 125400 metal2 -136800 114000 142500 119700 metal1 -85500 142500 91200 159600 metal2 -85500 153900 91200 159600 metal2 -85500 153900 108300 159600 metal3 -91200 176700 96900 201600 metal6 -91200 176700 96900 182400 metal5 -91200 176700 108300 182400 metal5 -102600 176700 108300 182400 metal4 -102600 159600 108300 182400 metal4 -102600 159600 108300 165300 metal3 -148200 85500 153900 91200 metal1 -148200 85500 153900 91200 metal2 -148200 85500 153900 91200 metal3 -148200 85500 153900 91200 metal4 -148200 85500 159600 91200 metal5 -153900 85500 159600 91200 metal5 -153900 85500 159600 108300 metal6 -153900 102600 159600 108300 metal5 -153900 102600 159600 108300 metal4 -153900 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -153900 102600 159600 108300 metal1 -148200 131100 159600 136800 metal3 -153900 131100 159600 136800 metal2 -153900 114000 159600 136800 metal2 -108300 68400 119700 74100 metal3 -114000 68400 119700 74100 metal3 -114000 62700 119700 74100 metal4 -114000 62700 119700 68400 metal3 -131100 131100 136800 136800 metal5 -131100 119700 136800 136800 metal6 -131100 119700 136800 125400 metal5 -131100 119700 136800 125400 metal4 -131100 119700 136800 125400 metal3 -131100 119700 136800 125400 metal2 -131100 119700 136800 125400 metal1 -57000 108300 62700 114000 metal2 -57000 108300 62700 114000 metal3 -57000 108300 62700 114000 metal4 -57000 108300 68400 114000 metal5 -45600 85500 51300 96900 metal4 -45600 85500 51300 91200 metal3 -57000 62700 62700 79800 metal2 -57000 62700 62700 68400 metal1 -114000 51300 119700 57000 metal1 -114000 51300 119700 57000 metal2 -114000 51300 119700 57000 metal3 -114000 51300 119700 68400 metal4 -68400 51300 74100 62700 metal2 -68400 51300 74100 57000 metal1 -85500 28500 91200 34200 metal1 -85500 28500 91200 34200 metal2 -85500 28500 108300 34200 metal3 -102600 28500 108300 34200 metal2 -102600 28500 108300 34200 metal1 -114000 45600 119700 51300 metal1 -114000 45600 119700 51300 metal2 -114000 45600 125400 51300 metal3 -119700 45600 125400 51300 metal2 -119700 28500 125400 51300 metal2 -119700 28500 125400 34200 metal2 -102600 28500 125400 34200 metal3 -131100 131100 142500 136800 metal5 -136800 131100 142500 136800 metal4 -136800 131100 142500 136800 metal3 -136800 131100 142500 136800 metal2 -136800 131100 142500 136800 metal1 -85500 142500 91200 148200 metal2 -68400 142500 91200 148200 metal3 -68400 142500 74100 148200 metal3 -68400 136800 74100 148200 metal4 -119700 136800 125400 142500 metal1 -119700 136800 125400 153900 metal2 -102600 153900 108300 165300 metal4 -102600 153900 108300 159600 metal3 -102600 153900 108300 159600 metal2 -136800 131100 153900 136800 metal5 -148200 131100 153900 136800 metal4 -148200 131100 153900 136800 metal3 -148200 131100 153900 136800 metal2 -148200 131100 153900 136800 metal1 -153900 114000 159600 119700 metal1 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal3 -153900 114000 159600 119700 metal4 -153900 114000 159600 119700 metal5 -153900 102600 159600 119700 metal6 -108300 74100 114000 79800 metal3 -108300 68400 114000 79800 metal4 -108300 68400 114000 74100 metal3 -108300 68400 114000 74100 metal2 -108300 68400 114000 74100 metal1 -148200 74100 153900 91200 metal4 -148200 74100 153900 79800 metal3 -148200 74100 153900 79800 metal2 -148200 74100 153900 79800 metal1 -62700 108300 68400 114000 metal5 -62700 96900 68400 114000 metal6 -62700 96900 68400 102600 metal5 -62700 96900 68400 102600 metal4 -62700 96900 68400 102600 metal3 -62700 96900 68400 102600 metal2 -62700 96900 68400 102600 metal1 -45600 74100 51300 91200 metal4 -45600 74100 51300 79800 metal3 -45600 74100 62700 79800 metal3 -57000 74100 62700 79800 metal2 -57000 74100 62700 79800 metal1 -57000 57000 62700 68400 metal2 -57000 57000 62700 62700 metal2 -57000 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 62700 metal1 -131100 62700 136800 68400 metal2 -131100 62700 153900 68400 metal3 -148200 62700 153900 68400 metal2 -148200 62700 153900 79800 metal2 -108300 74100 114000 91200 metal4 -108300 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -74100 28500 91200 34200 metal3 -74100 28500 79800 34200 metal2 -74100 28500 79800 39900 metal2 -74100 34200 79800 39900 metal1 -114000 45600 119700 57000 metal2 -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 114000 79800 metal3 -102600 148200 108300 153900 metal1 -102600 148200 108300 153900 metal2 -102600 148200 108300 153900 metal3 -102600 142500 108300 153900 metal4 -102600 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal1 -131100 142500 136800 148200 metal1 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal3 -131100 142500 136800 148200 metal4 -131100 142500 136800 148200 metal5 -131100 131100 136800 148200 metal6 -131100 62700 136800 74100 metal2 -102600 148200 108300 159600 metal2 -62700 108300 79800 114000 metal5 -74100 108300 79800 114000 metal4 -74100 108300 79800 114000 metal3 -74100 108300 79800 114000 metal2 -74100 108300 79800 114000 metal1 -57000 108300 62700 119700 metal4 -114000 62700 125400 68400 metal3 -119700 62700 125400 68400 metal2 -119700 62700 125400 68400 metal1 -45600 85500 57000 91200 metal3 -51300 85500 57000 91200 metal2 -51300 85500 57000 91200 metal1 -131100 68400 136800 74100 metal1 -131100 68400 136800 74100 metal2 -131100 68400 136800 74100 metal3 -131100 68400 136800 74100 metal4 -125400 68400 136800 74100 metal5 -125400 68400 131100 74100 metal5 -125400 68400 131100 91200 metal6 -125400 85500 131100 91200 metal5 -125400 85500 131100 91200 metal4 -125400 85500 131100 91200 metal3 -125400 85500 131100 91200 metal2 -125400 85500 131100 91200 metal1 -85500 131100 91200 148200 metal2 -85500 131100 91200 136800 metal1 -119700 62700 136800 68400 metal3 -68400 125400 74100 142500 metal4 -68400 125400 74100 131100 metal4 -68400 125400 85500 131100 metal5 -79800 125400 85500 131100 metal4 -79800 125400 85500 131100 metal3 -79800 125400 91200 131100 metal3 -85500 125400 91200 131100 metal3 -85500 119700 91200 131100 metal4 -85500 119700 91200 125400 metal3 -85500 119700 91200 125400 metal2 -85500 119700 91200 125400 metal1 -102600 159600 125400 165300 metal3 -119700 159600 125400 165300 metal2 -119700 148200 125400 165300 metal2 -119700 148200 125400 153900 metal2 -119700 148200 136800 153900 metal3 -131100 148200 136800 153900 metal2 -131100 142500 136800 153900 metal2 -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -45600 91200 57000 96900 metal3 -) -ctrl.state.out\[1\] -( -57000 114000 62700 119700 metal1 -57000 108300 62700 119700 metal2 -57000 108300 62700 114000 metal1 -) -ctrl.state.out\[2\] -( -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -) -dpath.a_lt_b$in0\[0\] -( -148200 131100 153900 136800 metal1 -148200 131100 153900 136800 metal2 -148200 131100 159600 136800 metal3 -153900 131100 159600 136800 metal2 -153900 131100 159600 136800 metal1 -) -dpath.a_lt_b$in0\[10\] -( -62700 62700 68400 68400 metal1 -62700 62700 68400 68400 metal2 -) -dpath.a_lt_b$in0\[11\] -( -119700 62700 125400 68400 metal1 -119700 62700 125400 68400 metal2 -119700 62700 131100 68400 metal3 -125400 62700 131100 68400 metal2 -125400 62700 131100 68400 metal1 -) -dpath.a_lt_b$in0\[12\] -( -114000 45600 119700 51300 metal1 -114000 45600 119700 51300 metal2 -114000 45600 125400 51300 metal3 -119700 45600 125400 51300 metal2 -119700 45600 125400 51300 metal1 -) -dpath.a_lt_b$in0\[13\] -( -91200 28500 96900 34200 metal1 -91200 28500 96900 39900 metal2 -91200 34200 96900 39900 metal1 -) -dpath.a_lt_b$in0\[14\] -( -74100 34200 79800 39900 metal1 -74100 34200 79800 45600 metal2 -74100 39900 79800 45600 metal1 -) -dpath.a_lt_b$in0\[15\] -( -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -) -dpath.a_lt_b$in0\[1\] -( -85500 131100 91200 136800 metal1 -85500 125400 91200 136800 metal2 -85500 125400 91200 131100 metal1 -) -dpath.a_lt_b$in0\[2\] -( -102600 148200 108300 153900 metal1 -102600 142500 108300 153900 metal2 -102600 142500 108300 148200 metal1 -) -dpath.a_lt_b$in0\[3\] -( -125400 142500 131100 148200 metal1 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal1 -) -dpath.a_lt_b$in0\[4\] -( -153900 74100 159600 79800 metal1 -153900 74100 159600 85500 metal2 -153900 79800 159600 85500 metal1 -) -dpath.a_lt_b$in0\[5\] -( -153900 114000 159600 119700 metal1 -153900 114000 159600 119700 metal2 -) -dpath.a_lt_b$in0\[6\] -( -131100 74100 136800 79800 metal1 -131100 74100 136800 79800 metal2 -131100 74100 136800 79800 metal3 -131100 68400 136800 79800 metal4 -131100 68400 136800 74100 metal3 -131100 68400 142500 74100 metal3 -136800 68400 142500 74100 metal2 -136800 68400 142500 74100 metal1 -) -dpath.a_lt_b$in0\[7\] -( -136800 119700 142500 125400 metal1 -136800 119700 142500 125400 metal2 -) -dpath.a_lt_b$in0\[8\] -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -51300 91200 62700 96900 metal3 -57000 91200 62700 96900 metal2 -57000 91200 62700 96900 metal1 -) -dpath.a_lt_b$in0\[9\] -( -57000 74100 62700 79800 metal1 -57000 74100 62700 79800 metal2 -57000 74100 68400 79800 metal3 -62700 74100 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -dpath.a_lt_b$in1\[0\] -( -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -) -dpath.a_lt_b$in1\[10\] -( -74100 57000 79800 62700 metal1 -74100 57000 79800 68400 metal2 -74100 62700 79800 68400 metal1 -) -dpath.a_lt_b$in1\[11\] -( -108300 74100 114000 79800 metal1 -108300 74100 114000 79800 metal2 -108300 74100 119700 79800 metal3 -114000 74100 119700 79800 metal3 -114000 68400 119700 79800 metal4 -114000 68400 119700 74100 metal3 -114000 68400 119700 74100 metal2 -114000 68400 119700 74100 metal1 -) -dpath.a_lt_b$in1\[12\] -( -114000 57000 119700 62700 metal1 -114000 57000 119700 62700 metal2 -114000 57000 125400 62700 metal3 -119700 57000 125400 62700 metal2 -119700 51300 125400 62700 metal2 -119700 51300 125400 57000 metal1 -) -dpath.a_lt_b$in1\[13\] -( -102600 28500 108300 34200 metal1 -102600 28500 108300 39900 metal2 -102600 34200 108300 39900 metal1 -) -dpath.a_lt_b$in1\[14\] -( -74100 51300 79800 57000 metal1 -74100 51300 79800 57000 metal2 -) -dpath.a_lt_b$in1\[15\] -( -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -108300 74100 114000 79800 metal1 -) -dpath.a_lt_b$in1\[1\] -( -91200 119700 96900 125400 metal1 -91200 119700 96900 125400 metal2 -) -dpath.a_lt_b$in1\[2\] -( -108300 142500 114000 148200 metal1 -108300 136800 114000 148200 metal2 -108300 136800 114000 142500 metal1 -) -dpath.a_lt_b$in1\[3\] -( -119700 131100 125400 136800 metal1 -119700 131100 125400 136800 metal2 -119700 131100 125400 136800 metal3 -119700 131100 125400 136800 metal4 -119700 131100 125400 136800 metal5 -119700 131100 125400 142500 metal6 -119700 136800 125400 142500 metal5 -119700 136800 131100 142500 metal5 -125400 136800 131100 142500 metal4 -125400 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -) -dpath.a_lt_b$in1\[4\] -( -153900 79800 159600 85500 metal1 -153900 79800 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -dpath.a_lt_b$in1\[5\] -( -153900 108300 159600 114000 metal1 -153900 108300 159600 114000 metal2 -153900 108300 165300 114000 metal3 -159600 108300 165300 114000 metal3 -159600 102600 165300 114000 metal4 -159600 102600 165300 108300 metal3 -159600 102600 165300 108300 metal2 -159600 102600 165300 108300 metal1 -) -dpath.a_lt_b$in1\[6\] -( -125400 79800 131100 85500 metal1 -125400 79800 131100 85500 metal2 -125400 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 91200 metal2 -131100 85500 136800 91200 metal1 -) -dpath.a_lt_b$in1\[7\] -( -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 148200 119700 metal3 -142500 114000 148200 119700 metal3 -142500 108300 148200 119700 metal4 -142500 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -) -dpath.a_lt_b$in1\[8\] -( -68400 96900 74100 102600 metal1 -68400 96900 74100 102600 metal2 -) -dpath.a_lt_b$in1\[9\] -( -57000 79800 62700 85500 metal1 -57000 79800 62700 85500 metal2 -) -net1 -( -114000 171000 119700 176700 metal1 -114000 171000 119700 182400 metal2 -114000 176700 119700 182400 metal2 -114000 176700 171000 182400 metal3 -165300 176700 171000 182400 metal2 -165300 176700 171000 182400 metal1 -) -net10 -( -142500 68400 148200 74100 metal1 -142500 45600 148200 74100 metal2 -142500 45600 148200 51300 metal2 -142500 45600 182400 51300 metal3 -176700 45600 182400 51300 metal2 -176700 22800 182400 51300 metal2 -176700 22800 182400 28500 metal2 -171000 22800 182400 28500 metal3 -171000 22800 176700 28500 metal2 -171000 22800 176700 28500 metal1 -) -net11 -( -171000 119700 176700 125400 metal1 -171000 119700 176700 125400 metal2 -171000 119700 182400 125400 metal3 -176700 119700 182400 125400 metal2 -176700 119700 182400 131100 metal2 -176700 125400 182400 131100 metal1 -) -net12 -( -28500 22800 34200 28500 metal1 -28500 22800 34200 51300 metal2 -28500 45600 34200 51300 metal2 -28500 45600 39900 51300 metal3 -34200 45600 39900 51300 metal2 -34200 45600 39900 79800 metal2 -34200 74100 39900 79800 metal1 -) -net13 -( -136800 176700 142500 182400 metal1 -136800 176700 142500 182400 metal2 -131100 176700 142500 182400 metal3 -131100 176700 136800 182400 metal2 -131100 148200 136800 182400 metal2 -131100 148200 136800 153900 metal2 -131100 148200 142500 153900 metal3 -136800 148200 142500 153900 metal2 -136800 142500 142500 153900 metal2 -136800 142500 142500 148200 metal1 -) -net14 -( -62700 176700 68400 182400 metal1 -62700 142500 68400 182400 metal2 -62700 142500 68400 148200 metal2 -62700 142500 74100 148200 metal3 -68400 142500 74100 148200 metal2 -68400 142500 74100 148200 metal1 -) -net15 -( -171000 91200 176700 96900 metal1 -171000 91200 176700 96900 metal2 -171000 91200 182400 96900 metal3 -176700 91200 182400 96900 metal2 -176700 79800 182400 96900 metal2 -176700 79800 182400 85500 metal1 -) -net16 -( -148200 171000 153900 176700 metal1 -148200 171000 153900 176700 metal2 -148200 171000 159600 176700 metal3 -153900 171000 159600 176700 metal2 -153900 171000 159600 182400 metal2 -153900 176700 159600 182400 metal1 -) -net17 -( -17100 85500 22800 91200 metal1 -17100 85500 22800 91200 metal2 -17100 85500 28500 91200 metal3 -22800 85500 28500 91200 metal3 -22800 85500 28500 182400 metal4 -22800 176700 28500 182400 metal3 -22800 176700 28500 182400 metal2 -22800 176700 28500 182400 metal1 -) -net18 -( -39900 22800 45600 28500 metal1 -39900 22800 45600 28500 metal2 -39900 22800 51300 28500 metal3 -45600 22800 51300 28500 metal2 -45600 22800 51300 34200 metal2 -45600 28500 51300 34200 metal2 -45600 28500 68400 34200 metal3 -62700 28500 68400 34200 metal2 -62700 28500 68400 39900 metal2 -62700 34200 68400 39900 metal1 -) -net19 -( -114000 34200 119700 39900 metal1 -114000 34200 119700 39900 metal2 -114000 34200 153900 39900 metal3 -148200 34200 153900 39900 metal2 -148200 22800 153900 39900 metal2 -148200 22800 153900 28500 metal1 -) -net2 -( -34200 176700 39900 182400 metal1 -34200 176700 39900 182400 metal2 -34200 176700 51300 182400 metal3 -45600 176700 51300 182400 metal2 -45600 171000 51300 182400 metal2 -45600 171000 51300 176700 metal2 -39900 171000 51300 176700 metal3 -39900 171000 45600 176700 metal2 -39900 171000 45600 176700 metal1 -) -net20 -( -114000 165300 119700 171000 metal1 -114000 153900 119700 171000 metal2 -114000 153900 119700 159600 metal2 -114000 153900 182400 159600 metal3 -176700 153900 182400 159600 metal2 -176700 153900 182400 176700 metal2 -176700 171000 182400 176700 metal1 -) -net21 -( -102600 22800 108300 28500 metal1 -102600 22800 108300 28500 metal2 -) -net22 -( -119700 171000 125400 176700 metal1 -119700 171000 125400 176700 metal2 -119700 171000 131100 176700 metal3 -125400 171000 131100 176700 metal2 -125400 171000 131100 182400 metal2 -125400 176700 131100 182400 metal1 -) -net23 -( -17100 74100 22800 79800 metal1 -17100 74100 22800 79800 metal2 -) -net24 -( -28500 176700 34200 182400 metal1 -28500 176700 34200 182400 metal2 -28500 176700 51300 182400 metal3 -45600 176700 51300 182400 metal3 -45600 102600 51300 182400 metal4 -45600 102600 51300 108300 metal3 -45600 102600 51300 108300 metal2 -45600 102600 51300 108300 metal1 -) -net25 -( -171000 125400 176700 131100 metal1 -171000 125400 176700 131100 metal2 -171000 125400 182400 131100 metal3 -176700 125400 182400 131100 metal2 -176700 125400 182400 159600 metal2 -176700 153900 182400 159600 metal1 -) -net26 -( -17100 57000 22800 62700 metal1 -17100 57000 22800 68400 metal2 -17100 62700 22800 68400 metal2 -17100 62700 28500 68400 metal3 -22800 62700 28500 68400 metal2 -22800 62700 28500 68400 metal1 -) -net27 -( -159600 22800 165300 28500 metal1 -159600 22800 165300 34200 metal2 -159600 28500 165300 34200 metal2 -159600 28500 182400 34200 metal3 -176700 28500 182400 34200 metal2 -176700 28500 182400 34200 metal1 -) -net28 -( -159600 96900 165300 102600 metal1 -159600 96900 165300 102600 metal2 -159600 96900 176700 102600 metal3 -171000 96900 176700 102600 metal2 -171000 96900 176700 108300 metal2 -171000 102600 176700 108300 metal2 -171000 102600 182400 108300 metal3 -176700 102600 182400 108300 metal2 -176700 102600 182400 114000 metal2 -176700 108300 182400 114000 metal1 -) -net29 -( -17100 171000 22800 176700 metal1 -17100 171000 22800 176700 metal2 -) -net3 -( -85500 22800 91200 28500 metal1 -85500 22800 91200 34200 metal2 -85500 28500 91200 34200 metal1 -) -net30 -( -148200 176700 153900 182400 metal1 -148200 171000 153900 182400 metal2 -148200 171000 153900 176700 metal2 -148200 171000 159600 176700 metal3 -153900 171000 159600 176700 metal2 -153900 159600 159600 176700 metal2 -153900 159600 159600 165300 metal2 -153900 159600 165300 165300 metal3 -159600 159600 165300 165300 metal2 -159600 148200 165300 165300 metal2 -159600 148200 165300 153900 metal2 -159600 148200 171000 153900 metal3 -165300 148200 171000 153900 metal2 -165300 148200 171000 153900 metal1 -) -net31 -( -74100 22800 79800 28500 metal1 -74100 22800 79800 28500 metal2 -74100 22800 85500 28500 metal3 -79800 22800 85500 28500 metal2 -79800 22800 85500 28500 metal1 -) -net32 -( -153900 136800 159600 142500 metal1 -153900 136800 159600 142500 metal2 -153900 136800 182400 142500 metal3 -176700 136800 182400 142500 metal2 -176700 136800 182400 142500 metal1 -) -net33 -( -79800 125400 85500 131100 metal1 -79800 125400 85500 182400 metal2 -79800 176700 85500 182400 metal2 -79800 176700 108300 182400 metal3 -102600 176700 108300 182400 metal3 -102600 176700 108300 182400 metal4 -102600 176700 176700 182400 metal5 -171000 176700 176700 182400 metal4 -171000 176700 176700 182400 metal3 -171000 176700 176700 182400 metal2 -171000 176700 176700 182400 metal1 -) -net34 -( -17100 102600 22800 108300 metal1 -17100 102600 22800 108300 metal2 -17100 102600 28500 108300 metal3 -22800 102600 28500 108300 metal2 -22800 102600 28500 114000 metal2 -22800 108300 28500 114000 metal2 -22800 108300 57000 114000 metal3 -51300 108300 57000 114000 metal2 -51300 108300 57000 114000 metal1 -) -net35 -( -17100 176700 22800 182400 metal1 -17100 176700 22800 182400 metal2 -17100 176700 39900 182400 metal3 -34200 176700 39900 182400 metal2 -34200 125400 39900 182400 metal2 -34200 125400 39900 131100 metal2 -34200 125400 62700 131100 metal3 -57000 125400 62700 131100 metal2 -57000 125400 62700 131100 metal1 -) -net36 -( -51300 96900 57000 108300 metal2 -51300 102600 57000 108300 metal2 -51300 102600 62700 108300 metal3 -57000 102600 62700 108300 metal2 -57000 102600 62700 108300 metal1 -17100 22800 22800 28500 metal1 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal3 -17100 22800 22800 28500 metal4 -17100 22800 28500 28500 metal5 -22800 22800 28500 28500 metal5 -22800 22800 28500 102600 metal6 -22800 96900 28500 102600 metal5 -22800 96900 57000 102600 metal5 -51300 96900 57000 102600 metal4 -51300 96900 57000 102600 metal3 -51300 96900 57000 102600 metal2 -51300 96900 57000 102600 metal1 -) -net37 -( -17100 22800 22800 28500 metal1 -17100 22800 22800 28500 metal2 -17100 22800 91200 28500 metal3 -85500 22800 91200 28500 metal2 -85500 22800 91200 28500 metal1 -) -net38 -( -125400 39900 131100 45600 metal1 -125400 22800 131100 45600 metal2 -125400 22800 131100 28500 metal2 -125400 22800 136800 28500 metal3 -131100 22800 136800 28500 metal2 -131100 22800 136800 28500 metal1 -) -net39 -( -96900 22800 102600 28500 metal1 -96900 22800 102600 28500 metal2 -96900 22800 176700 28500 metal3 -171000 22800 176700 28500 metal2 -171000 22800 176700 28500 metal1 -) -net4 -( -17100 28500 22800 34200 metal1 -17100 28500 22800 39900 metal2 -17100 34200 22800 39900 metal1 -) -net40 -( -114000 34200 119700 39900 metal1 -114000 34200 119700 39900 metal2 -114000 34200 176700 39900 metal3 -171000 34200 176700 39900 metal2 -171000 22800 176700 39900 metal2 -171000 22800 176700 28500 metal1 -) -net41 -( -125400 68400 131100 74100 metal1 -125400 68400 131100 74100 metal2 -125400 68400 131100 74100 metal3 -125400 62700 131100 74100 metal4 -125400 62700 131100 68400 metal4 -125400 62700 176700 68400 metal5 -171000 62700 176700 68400 metal4 -171000 62700 176700 74100 metal4 -171000 68400 176700 74100 metal3 -171000 68400 176700 74100 metal2 -171000 68400 176700 74100 metal1 -) -net42 -( -17100 85500 22800 91200 metal1 -17100 74100 22800 91200 metal2 -17100 74100 22800 79800 metal2 -17100 74100 51300 79800 metal3 -45600 74100 51300 79800 metal2 -45600 74100 51300 79800 metal1 -) -net43 -( -79800 79800 85500 85500 metal1 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal3 -79800 79800 85500 85500 metal4 -79800 79800 85500 85500 metal5 -79800 39900 85500 85500 metal6 -79800 39900 85500 45600 metal5 -79800 39900 85500 45600 metal4 -79800 22800 85500 45600 metal4 -79800 22800 85500 28500 metal3 -79800 22800 119700 28500 metal3 -114000 22800 119700 28500 metal2 -114000 22800 119700 28500 metal1 -) -net44 -( -17100 114000 22800 119700 metal1 -17100 114000 22800 119700 metal2 -17100 114000 51300 119700 metal3 -45600 114000 51300 119700 metal2 -45600 108300 51300 119700 metal2 -45600 108300 51300 114000 metal2 -45600 108300 62700 114000 metal3 -57000 108300 62700 114000 metal3 -57000 102600 62700 114000 metal4 -57000 102600 62700 108300 metal4 -57000 102600 68400 108300 metal5 -62700 102600 68400 108300 metal4 -62700 102600 68400 108300 metal3 -62700 102600 74100 108300 metal3 -68400 102600 74100 108300 metal2 -68400 102600 74100 108300 metal1 -) -net45 -( -153900 119700 159600 125400 metal1 -153900 119700 159600 125400 metal2 -153900 119700 159600 125400 metal3 -153900 119700 159600 125400 metal4 -153900 119700 159600 125400 metal5 -153900 119700 159600 176700 metal6 -153900 171000 159600 176700 metal5 -153900 171000 176700 176700 metal5 -171000 171000 176700 176700 metal4 -171000 171000 176700 182400 metal4 -171000 176700 176700 182400 metal3 -171000 176700 176700 182400 metal2 -171000 176700 176700 182400 metal1 -) -net46 -( -17100 45600 22800 51300 metal1 -17100 45600 22800 51300 metal2 -17100 45600 28500 51300 metal3 -22800 45600 28500 51300 metal2 -22800 34200 28500 51300 metal2 -22800 34200 28500 39900 metal2 -22800 34200 68400 39900 metal3 -62700 34200 68400 39900 metal3 -62700 11400 68400 39900 metal4 -62700 11400 68400 17100 metal4 -62700 11400 131100 17100 metal5 -125400 11400 131100 17100 metal5 -125400 11400 131100 74100 metal6 -125400 68400 131100 74100 metal5 -125400 68400 131100 74100 metal4 -125400 68400 131100 79800 metal4 -125400 74100 131100 79800 metal3 -125400 74100 131100 79800 metal2 -125400 74100 131100 79800 metal1 -) -net47 -( -159600 91200 165300 96900 metal1 -159600 74100 165300 96900 metal2 -159600 74100 165300 79800 metal2 -159600 74100 182400 79800 metal3 -176700 74100 182400 79800 metal3 -176700 34200 182400 79800 metal4 -176700 34200 182400 39900 metal3 -171000 34200 182400 39900 metal3 -171000 34200 176700 39900 metal2 -171000 34200 176700 39900 metal1 -) -net48 -( -22800 22800 28500 28500 metal1 -22800 11400 28500 28500 metal2 -22800 11400 28500 17100 metal2 -22800 11400 125400 17100 metal3 -119700 11400 125400 17100 metal2 -119700 11400 125400 34200 metal2 -119700 28500 125400 34200 metal2 -119700 28500 136800 34200 metal3 -131100 28500 136800 34200 metal2 -131100 28500 136800 68400 metal2 -131100 62700 136800 68400 metal1 -) -net49 -( -148200 119700 153900 125400 metal1 -148200 119700 153900 125400 metal2 -148200 119700 159600 125400 metal3 -153900 119700 159600 125400 metal3 -153900 119700 159600 125400 metal4 -153900 119700 159600 125400 metal5 -153900 114000 159600 125400 metal6 -153900 114000 159600 119700 metal5 -153900 114000 182400 119700 metal5 -176700 114000 182400 119700 metal5 -176700 45600 182400 119700 metal6 -176700 45600 182400 51300 metal5 -159600 45600 182400 51300 metal5 -159600 45600 165300 51300 metal4 -159600 22800 165300 51300 metal4 -159600 22800 165300 28500 metal3 -159600 22800 165300 28500 metal2 -159600 22800 165300 28500 metal1 -) -net5 -( -108300 176700 114000 182400 metal1 -108300 171000 114000 182400 metal2 -108300 171000 114000 176700 metal1 -) -net50 -( -17100 131100 22800 136800 metal1 -17100 131100 22800 136800 metal2 -17100 131100 22800 136800 metal3 -17100 125400 22800 136800 metal4 -17100 125400 22800 131100 metal4 -17100 125400 74100 131100 metal5 -68400 125400 74100 131100 metal4 -68400 125400 74100 131100 metal3 -68400 125400 79800 131100 metal3 -74100 125400 79800 131100 metal2 -74100 125400 79800 136800 metal2 -74100 131100 79800 136800 metal2 -74100 131100 85500 136800 metal3 -79800 131100 85500 136800 metal2 -79800 131100 85500 136800 metal1 -) -net51 -( -17100 148200 22800 153900 metal1 -17100 136800 22800 153900 metal2 -17100 136800 22800 142500 metal2 -17100 136800 74100 142500 metal3 -68400 136800 74100 142500 metal3 -68400 136800 74100 142500 metal4 -68400 136800 96900 142500 metal5 -91200 136800 96900 142500 metal4 -91200 136800 96900 142500 metal3 -91200 136800 96900 142500 metal2 -91200 136800 96900 142500 metal1 -) -net52 -( -17100 159600 22800 165300 metal1 -17100 153900 22800 165300 metal2 -17100 153900 22800 159600 metal2 -17100 153900 96900 159600 metal3 -91200 153900 96900 159600 metal2 -91200 136800 96900 159600 metal2 -91200 136800 96900 142500 metal1 -) -net53 -( -74100 57000 79800 62700 metal1 -74100 51300 79800 62700 metal2 -74100 51300 79800 57000 metal2 -74100 51300 96900 57000 metal3 -91200 51300 96900 57000 metal3 -91200 51300 96900 57000 metal4 -91200 51300 125400 57000 metal5 -119700 51300 125400 57000 metal4 -119700 45600 125400 57000 metal4 -119700 45600 125400 51300 metal3 -119700 45600 176700 51300 metal3 -171000 45600 176700 51300 metal2 -171000 45600 176700 57000 metal2 -171000 51300 176700 57000 metal1 -) -net6 -( -57000 22800 62700 28500 metal1 -57000 22800 62700 51300 metal2 -57000 45600 62700 51300 metal1 -) -net7 -( -51300 176700 57000 182400 metal1 -51300 176700 57000 182400 metal2 -51300 176700 57000 182400 metal3 -51300 108300 57000 182400 metal4 -51300 108300 57000 114000 metal3 -51300 108300 57000 114000 metal2 -51300 108300 57000 114000 metal1 -) -net8 -( -171000 96900 176700 102600 metal1 -171000 96900 176700 102600 metal2 -171000 96900 182400 102600 metal3 -176700 96900 182400 102600 metal2 -176700 91200 182400 102600 metal2 -176700 91200 182400 96900 metal1 -) -net9 -( -79800 176700 85500 182400 metal1 -79800 176700 85500 182400 metal2 -79800 176700 91200 182400 metal3 -85500 176700 91200 182400 metal2 -85500 171000 91200 182400 metal2 -85500 171000 91200 176700 metal1 -) -req_msg[0] -( -171000 136800 176700 142500 metal1 -171000 136800 176700 142500 metal2 -171000 136800 200260 142500 metal3 -193800 136800 200260 142500 metal3 -193800 136800 200260 142500 metal4 -193800 136800 200260 142500 metal5 -) -req_msg[10] -( -125400 176700 131100 201600 metal6 -125400 176700 131100 182400 metal5 -125400 176700 131100 182400 metal4 -125400 176700 131100 182400 metal3 -125400 176700 131100 182400 metal2 -125400 176700 131100 182400 metal1 -) -req_msg[11] -( -102600 0 108300 28500 metal6 -102600 22800 108300 28500 metal5 -102600 22800 108300 28500 metal4 -102600 22800 108300 28500 metal3 -102600 22800 108300 28500 metal2 -102600 22800 108300 28500 metal1 -) -req_msg[12] -( -171000 171000 176700 176700 metal1 -171000 171000 176700 176700 metal2 -171000 171000 200260 176700 metal3 -193800 171000 200260 176700 metal3 -193800 171000 200260 176700 metal4 -193800 171000 200260 176700 metal5 -) -req_msg[13] -( -142500 0 148200 28500 metal6 -142500 22800 148200 28500 metal5 -142500 22800 148200 28500 metal4 -142500 22800 148200 28500 metal3 -142500 22800 148200 28500 metal2 -142500 22800 148200 28500 metal1 -) -req_msg[14] -( -39900 0 45600 5700 metal5 -39900 0 45600 5700 metal6 -34200 0 45600 5700 metal5 -34200 0 39900 5700 metal4 -34200 0 39900 28500 metal4 -34200 22800 39900 28500 metal3 -34200 22800 45600 28500 metal3 -39900 22800 45600 28500 metal2 -39900 22800 45600 28500 metal1 -) -req_msg[15] -( -5700 188100 11400 201600 metal6 -5700 188100 11400 193800 metal5 -5700 188100 28500 193800 metal5 -22800 188100 28500 193800 metal4 -22800 176700 28500 193800 metal4 -22800 176700 28500 182400 metal3 -22800 176700 28500 182400 metal2 -22800 176700 28500 182400 metal1 -) -req_msg[16] -( -153900 176700 159600 201600 metal6 -153900 176700 159600 182400 metal5 -153900 176700 159600 182400 metal4 -153900 176700 159600 182400 metal3 -153900 176700 159600 182400 metal2 -153900 176700 159600 182400 metal1 -) -req_msg[17] -( -171000 79800 176700 85500 metal1 -171000 79800 176700 85500 metal2 -171000 79800 200260 85500 metal3 -193800 79800 200260 85500 metal3 -193800 79800 200260 85500 metal4 -193800 79800 200260 85500 metal5 -) -req_msg[18] -( -62700 176700 68400 201600 metal6 -62700 176700 68400 182400 metal5 -62700 176700 68400 182400 metal4 -62700 176700 68400 182400 metal3 -62700 176700 68400 182400 metal2 -62700 176700 68400 182400 metal1 -) -req_msg[19] -( -136800 188100 142500 201600 metal6 -136800 188100 142500 193800 metal5 -136800 188100 148200 193800 metal5 -142500 188100 148200 193800 metal4 -142500 176700 148200 193800 metal4 -142500 176700 148200 182400 metal3 -136800 176700 148200 182400 metal3 -136800 176700 142500 182400 metal2 -136800 176700 142500 182400 metal1 -) -req_msg[1] -( -74100 0 79800 28500 metal6 -74100 22800 79800 28500 metal5 -74100 22800 79800 28500 metal4 -74100 22800 79800 28500 metal3 -74100 22800 79800 28500 metal2 -74100 22800 79800 28500 metal1 -) -req_msg[20] -( -28500 0 34200 28500 metal6 -28500 22800 34200 28500 metal5 -28500 22800 34200 28500 metal4 -28500 22800 34200 28500 metal3 -28500 22800 34200 28500 metal2 -28500 22800 34200 28500 metal1 -) -req_msg[21] -( -171000 125400 176700 131100 metal1 -171000 125400 176700 131100 metal2 -171000 125400 200260 131100 metal3 -193800 125400 200260 131100 metal3 -193800 125400 200260 131100 metal4 -193800 125400 200260 131100 metal5 -) -req_msg[22] -( -165300 22800 171000 28500 metal1 -165300 22800 171000 28500 metal2 -165300 22800 176700 28500 metal3 -171000 22800 176700 28500 metal2 -171000 11400 176700 28500 metal2 -171000 11400 176700 17100 metal2 -171000 11400 193800 17100 metal3 -188100 11400 193800 17100 metal3 -188100 5700 193800 17100 metal4 -188100 5700 193800 11400 metal4 -188100 5700 200260 11400 metal5 -) -req_msg[23] -( -79800 176700 85500 201600 metal6 -79800 176700 85500 182400 metal5 -79800 176700 85500 182400 metal4 -79800 176700 85500 182400 metal3 -79800 176700 85500 182400 metal2 -79800 176700 85500 182400 metal1 -) -req_msg[24] -( -171000 91200 176700 96900 metal1 -171000 91200 176700 96900 metal2 -171000 91200 200260 96900 metal3 -193800 91200 200260 96900 metal3 -193800 91200 200260 96900 metal4 -193800 91200 200260 96900 metal5 -) -req_msg[25] -( -51300 176700 57000 201600 metal6 -51300 176700 57000 182400 metal5 -51300 176700 57000 182400 metal4 -51300 176700 57000 182400 metal3 -51300 176700 57000 182400 metal2 -51300 176700 57000 182400 metal1 -) -req_msg[26] -( -57000 0 62700 28500 metal6 -57000 22800 62700 28500 metal5 -57000 22800 62700 28500 metal4 -57000 22800 62700 28500 metal3 -57000 22800 62700 28500 metal2 -57000 22800 62700 28500 metal1 -) -req_msg[27] -( -108300 176700 114000 201600 metal6 -108300 176700 114000 182400 metal5 -108300 176700 114000 182400 metal4 -108300 176700 114000 182400 metal3 -108300 176700 114000 182400 metal2 -108300 176700 114000 182400 metal1 -) -req_msg[28] -( -0 28500 22800 34200 metal5 -17100 28500 22800 34200 metal4 -17100 28500 22800 34200 metal3 -17100 28500 22800 34200 metal2 -17100 28500 22800 34200 metal1 -) -req_msg[29] -( -85500 0 91200 28500 metal6 -85500 22800 91200 28500 metal5 -85500 22800 91200 28500 metal4 -85500 22800 91200 28500 metal3 -85500 22800 91200 28500 metal2 -85500 22800 91200 28500 metal1 -) -req_msg[2] -( -148200 176700 153900 182400 metal1 -148200 176700 153900 182400 metal2 -148200 176700 159600 182400 metal3 -153900 176700 159600 182400 metal3 -153900 176700 159600 193800 metal4 -153900 188100 159600 193800 metal4 -153900 188100 171000 193800 metal5 -165300 188100 171000 193800 metal5 -165300 188100 171000 201600 metal6 -) -req_msg[30] -( -34200 176700 39900 201600 metal6 -34200 176700 39900 182400 metal5 -34200 176700 39900 182400 metal4 -34200 176700 39900 182400 metal3 -34200 176700 39900 182400 metal2 -34200 176700 39900 182400 metal1 -) -req_msg[31] -( -165300 176700 171000 182400 metal1 -165300 176700 171000 182400 metal2 -165300 176700 182400 182400 metal3 -176700 176700 182400 182400 metal3 -176700 176700 182400 193800 metal4 -176700 188100 182400 193800 metal4 -176700 188100 188100 193800 metal5 -182400 188100 188100 193800 metal5 -182400 188100 188100 201600 metal6 -) -req_msg[3] -( -0 176700 22800 182400 metal5 -17100 176700 22800 182400 metal4 -17100 171000 22800 182400 metal4 -17100 171000 22800 176700 metal3 -17100 171000 22800 176700 metal2 -17100 171000 22800 176700 metal1 -) -req_msg[4] -( -171000 108300 176700 114000 metal1 -171000 108300 176700 114000 metal2 -171000 108300 200260 114000 metal3 -193800 108300 200260 114000 metal3 -193800 108300 200260 114000 metal4 -193800 108300 200260 114000 metal5 -) -req_msg[5] -( -171000 28500 176700 34200 metal1 -171000 28500 176700 34200 metal2 -171000 28500 182400 34200 metal3 -176700 28500 182400 34200 metal3 -176700 0 182400 34200 metal4 -176700 0 182400 5700 metal4 -176700 0 182400 5700 metal5 -176700 0 182400 5700 metal6 -) -req_msg[6] -( -0 57000 22800 62700 metal5 -17100 57000 22800 62700 metal4 -17100 57000 22800 62700 metal3 -17100 57000 22800 62700 metal2 -17100 57000 22800 62700 metal1 -) -req_msg[7] -( -171000 153900 176700 159600 metal1 -171000 153900 176700 159600 metal2 -171000 153900 200260 159600 metal3 -193800 153900 200260 159600 metal3 -193800 153900 200260 159600 metal4 -193800 153900 200260 159600 metal5 -) -req_msg[8] -( -17100 176700 22800 201600 metal6 -17100 176700 22800 182400 metal5 -17100 176700 34200 182400 metal5 -28500 176700 34200 182400 metal4 -28500 176700 34200 182400 metal3 -28500 176700 34200 182400 metal2 -28500 176700 34200 182400 metal1 -) -req_msg[9] -( -0 68400 5700 74100 metal4 -0 68400 5700 74100 metal5 -0 68400 5700 79800 metal4 -0 74100 5700 79800 metal3 -0 74100 22800 79800 metal3 -17100 74100 22800 79800 metal2 -17100 74100 22800 79800 metal1 -) -req_rdy -( -0 0 5700 5700 metal4 -0 0 5700 5700 metal5 -0 0 5700 5700 metal6 -0 0 5700 28500 metal4 -0 22800 5700 28500 metal3 -0 22800 22800 28500 metal3 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal1 -) -req_val -( -165300 176700 171000 182400 metal1 -165300 176700 171000 182400 metal2 -165300 176700 193800 182400 metal3 -188100 176700 193800 182400 metal3 -188100 176700 193800 188100 metal4 -188100 182400 193800 188100 metal4 -188100 182400 200260 188100 metal5 -) -reset -( -0 102600 22800 108300 metal5 -17100 102600 22800 108300 metal4 -17100 102600 22800 108300 metal3 -17100 102600 22800 108300 metal2 -17100 102600 22800 108300 metal1 -) -resp_msg[0] -( -0 159600 22800 165300 metal5 -17100 159600 22800 165300 metal4 -17100 159600 22800 165300 metal3 -17100 159600 22800 165300 metal2 -17100 159600 22800 165300 metal1 -) -resp_msg[10] -( -0 85500 22800 91200 metal5 -17100 85500 22800 91200 metal4 -17100 85500 22800 91200 metal3 -17100 85500 22800 91200 metal2 -17100 85500 22800 91200 metal1 -) -resp_msg[11] -( -176700 68400 182400 74100 metal1 -176700 62700 182400 74100 metal2 -176700 62700 182400 68400 metal2 -176700 62700 200260 68400 metal3 -193800 62700 200260 68400 metal3 -193800 62700 200260 68400 metal4 -193800 62700 200260 68400 metal5 -) -resp_msg[12] -( -176700 22800 182400 28500 metal1 -176700 0 182400 28500 metal2 -176700 0 182400 5700 metal2 -176700 0 193800 5700 metal3 -188100 0 193800 5700 metal3 -188100 0 193800 5700 metal4 -188100 0 193800 5700 metal5 -188100 0 193800 5700 metal6 -) -resp_msg[13] -( -176700 22800 182400 28500 metal1 -176700 22800 182400 28500 metal2 -176700 22800 193800 28500 metal3 -188100 22800 193800 28500 metal3 -188100 17100 193800 28500 metal4 -188100 17100 193800 22800 metal4 -188100 17100 200260 22800 metal5 -) -resp_msg[14] -( -131100 22800 136800 28500 metal1 -131100 0 136800 28500 metal2 -131100 0 136800 5700 metal2 -131100 0 136800 5700 metal3 -131100 0 136800 5700 metal4 -131100 0 136800 5700 metal5 -131100 0 136800 5700 metal6 -) -resp_msg[15] -( -11400 0 17100 28500 metal6 -11400 22800 17100 28500 metal5 -11400 22800 22800 28500 metal5 -17100 22800 22800 28500 metal4 -17100 22800 22800 28500 metal3 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal1 -) -resp_msg[1] -( -0 142500 5700 148200 metal4 -0 142500 5700 148200 metal5 -0 142500 5700 159600 metal4 -0 153900 5700 159600 metal3 -0 153900 22800 159600 metal3 -17100 153900 22800 159600 metal2 -17100 148200 22800 159600 metal2 -17100 148200 22800 153900 metal1 -) -resp_msg[2] -( -0 131100 5700 136800 metal4 -0 131100 5700 136800 metal5 -0 131100 5700 142500 metal4 -0 136800 5700 142500 metal3 -0 136800 22800 142500 metal3 -17100 136800 22800 142500 metal2 -17100 131100 22800 142500 metal2 -17100 131100 22800 136800 metal1 -) -resp_msg[3] -( -159600 22800 165300 28500 metal1 -159600 0 165300 28500 metal2 -159600 0 165300 5700 metal2 -159600 0 165300 5700 metal3 -159600 0 165300 5700 metal4 -159600 0 165300 5700 metal5 -159600 0 165300 5700 metal6 -) -resp_msg[4] -( -0 11400 28500 17100 metal5 -22800 11400 28500 17100 metal4 -22800 11400 28500 28500 metal4 -22800 22800 28500 28500 metal3 -22800 22800 28500 28500 metal2 -22800 22800 28500 28500 metal1 -) -resp_msg[5] -( -176700 34200 182400 39900 metal1 -176700 34200 182400 39900 metal2 -176700 34200 200260 39900 metal3 -193800 34200 200260 39900 metal3 -193800 34200 200260 39900 metal4 -193800 34200 200260 39900 metal5 -) -resp_msg[6] -( -0 39900 5700 45600 metal4 -0 39900 5700 45600 metal5 -0 39900 5700 51300 metal4 -0 45600 5700 51300 metal3 -0 45600 22800 51300 metal3 -17100 45600 22800 51300 metal2 -17100 45600 22800 51300 metal1 -) -resp_msg[7] -( -176700 176700 182400 182400 metal1 -176700 176700 182400 182400 metal2 -176700 176700 188100 182400 metal3 -182400 176700 188100 182400 metal3 -182400 176700 188100 193800 metal4 -182400 188100 188100 193800 metal4 -182400 188100 200260 193800 metal5 -193800 188100 200260 193800 metal5 -193800 188100 200260 201600 metal6 -) -resp_msg[8] -( -0 114000 22800 119700 metal5 -17100 114000 22800 119700 metal4 -17100 114000 22800 119700 metal3 -17100 114000 22800 119700 metal2 -17100 114000 22800 119700 metal1 -) -resp_msg[9] -( -114000 0 119700 28500 metal6 -114000 22800 119700 28500 metal5 -114000 22800 125400 28500 metal5 -119700 22800 125400 28500 metal4 -119700 22800 125400 28500 metal3 -119700 22800 125400 28500 metal2 -119700 22800 125400 28500 metal1 -) -resp_rdy -( -0 188100 5700 193800 metal4 -0 188100 5700 193800 metal5 -0 176700 5700 193800 metal4 -0 176700 5700 182400 metal3 -0 176700 22800 182400 metal3 -17100 176700 22800 182400 metal2 -17100 176700 22800 182400 metal1 -) -resp_val -( -176700 51300 182400 57000 metal1 -176700 45600 182400 57000 metal2 -176700 45600 182400 51300 metal2 -176700 45600 193800 51300 metal3 -188100 45600 193800 51300 metal3 -188100 45600 193800 57000 metal4 -188100 51300 193800 57000 metal4 -188100 51300 200260 57000 metal5 -) diff --git a/src/grt/test/congestion2_snapshot_batched.ok b/src/grt/test/congestion2_snapshot_batched.ok deleted file mode 100644 index 21cb82a1e1e..00000000000 --- a/src/grt/test/congestion2_snapshot_batched.ok +++ /dev/null @@ -1,97 +0,0 @@ -[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells -[INFO ODB-0128] Design: gcd -[INFO ODB-0130] Created 54 pins. -[INFO ODB-0131] Created 676 components and 2850 component-terminals. -[INFO ODB-0133] Created 579 nets and 1498 connections. -[WARNING GRT-0300] Timing is not available, setting critical nets percentage to 0. -[INFO GRT-0020] Min routing layer: metal2 -[INFO GRT-0021] Max routing layer: metal10 -[INFO GRT-0022] Global adjustment: 0% -[INFO GRT-0023] Grid origin: (0, 0) -[INFO GRT-0088] Layer metal1 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1350 -[INFO GRT-0088] Layer metal2 Track-Pitch = 0.1900 line-2-Via Pitch: 0.1400 -[INFO GRT-0088] Layer metal3 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1400 -[INFO GRT-0088] Layer metal4 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal5 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal6 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal7 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 -[INFO GRT-0088] Layer metal8 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 -[INFO GRT-0088] Layer metal9 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 -[INFO GRT-0088] Layer metal10 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 -[INFO GRT-0003] Macros: 0 -[INFO GRT-0004] Blockages: 0 -[INFO GRT-0019] Found 0 clock nets. -[INFO GRT-0001] Minimum degree: 2 -[INFO GRT-0002] Maximum degree: 36 - -[INFO GRT-0053] Routing resources analysis: - Routing Original Derated Resource -Layer Direction Resources Resources Reduction (%) ---------------------------------------------------------------- -metal1 Horizontal 0 0 0.00% -metal2 Vertical 17918 1190 93.36% -metal3 Horizontal 24480 2380 90.28% -metal4 Vertical 12172 1190 90.22% -metal5 Horizontal 12240 1190 90.28% -metal6 Vertical 12172 1190 90.22% -metal7 Horizontal 4284 0 100.00% -metal8 Vertical 4284 0 100.00% -metal9 Horizontal 2142 0 100.00% -metal10 Vertical 2142 0 100.00% ---------------------------------------------------------------- - -[INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0102] Start extra iteration 1/50 -[INFO GRT-0102] Start extra iteration 2/50 -[INFO GRT-0102] Start extra iteration 3/50 -[INFO GRT-0102] Start extra iteration 4/50 -[INFO GRT-0102] Start extra iteration 5/50 -[INFO GRT-0102] Start extra iteration 6/50 -[INFO GRT-0102] Start extra iteration 7/50 -[INFO GRT-0102] Start extra iteration 8/50 -[INFO GRT-0102] Start extra iteration 9/50 -[INFO GRT-0102] Start extra iteration 10/50 -[INFO GRT-0102] Start extra iteration 11/50 -[INFO GRT-0102] Start extra iteration 12/50 -[INFO GRT-0102] Start extra iteration 13/50 -[INFO GRT-0102] Start extra iteration 14/50 -[INFO GRT-0102] Start extra iteration 15/50 -[INFO GRT-0102] Start extra iteration 16/50 -[INFO GRT-0102] Start extra iteration 17/50 -[INFO GRT-0102] Start extra iteration 18/50 -[INFO GRT-0102] Start extra iteration 19/50 -[INFO GRT-0102] Start extra iteration 20/50 -[INFO GRT-0102] Start extra iteration 21/50 -[INFO GRT-0102] Start extra iteration 22/50 -[INFO GRT-0102] Start extra iteration 23/50 -[INFO GRT-0102] Start extra iteration 24/50 -[INFO GRT-0102] Start extra iteration 25/50 -[INFO GRT-0102] Start extra iteration 26/50 -[INFO GRT-0102] Start extra iteration 27/50 -[INFO GRT-0102] Start extra iteration 28/50 -[INFO GRT-0197] Via related to pin nodes: 3743 -[INFO GRT-0198] Via related Steiner nodes: 106 -[INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 5470 -[INFO GRT-0112] Final usage 3D: 19230 - -[INFO GRT-0096] Final congestion report: -Layer Resource Demand Usage (%) Max H / Max V / Total Overflow ---------------------------------------------------------------------------------------- -metal1 0 0 0.00% 0 / 0 / 0 -metal2 1190 507 42.61% 0 / 1 / 15 -metal3 2380 965 40.55% 2 / 0 / 29 -metal4 1190 474 39.83% 0 / 1 / 8 -metal5 1190 461 38.74% 1 / 0 / 24 -metal6 1190 413 34.71% 1 / 1 / 20 -metal7 0 0 0.00% 0 / 0 / 0 -metal8 0 0 0.00% 0 / 0 / 0 -metal9 0 0 0.00% 0 / 0 / 0 -metal10 0 0 0.00% 0 / 0 / 0 ---------------------------------------------------------------------------------------- -Total 7140 2820 39.50% 4 / 3 / 96 - -[INFO GRT-0018] Total wirelength: 12280 um -[INFO GRT-0014] Routed nets: 563 -[WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. -No differences found. diff --git a/src/grt/test/congestion2_snapshot_batched.tcl b/src/grt/test/congestion2_snapshot_batched.tcl deleted file mode 100644 index c01401fe970..00000000000 --- a/src/grt/test/congestion2_snapshot_batched.tcl +++ /dev/null @@ -1,20 +0,0 @@ -source "helpers.tcl" -read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" - -set_thread_count 16 - -set guide_file [make_result_file congestion2_snapshot_batched.guide] - -set_global_routing_layer_adjustment metal2 0.9 -set_global_routing_layer_adjustment metal3 0.9 -set_global_routing_layer_adjustment metal4-metal6 0.9 -set_global_routing_layer_adjustment metal7-metal10 1.0 - -set_routing_layers -signal metal2-metal10 - -global_route -allow_congestion -snapshot_batched_width 16 -verbose - -write_guides $guide_file - -diff_file congestion2_snapshot_batched.guideok $guide_file diff --git a/src/grt/test/congestion7_snapshot_batched-20.rptok b/src/grt/test/congestion7_snapshot_batched-20.rptok deleted file mode 100644 index 8a9798448ba..00000000000 --- a/src/grt/test/congestion7_snapshot_batched-20.rptok +++ /dev/null @@ -1,2344 +0,0 @@ -violation type: Horizontal congestion - srcs: net:clk net:_394_ net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 76.9500) - (57.0000, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_299_ net:_353_ net:_418_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_215_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_159_ net:_249_ net:_281_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_249_ net:_275_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_054_ net:_403_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_380_ net:net31 net:net37 - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_031_ net:_085_ net:_126_ net:_159_ net:_353_ - comment: capacity:2 usage:5 overflow:3 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_145_ net:_165_ net:_173_ net:_245_ - comment: capacity:2 usage:5 overflow:3 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_396_ net:net39 net:net40 - comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_221_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_117_ net:_147_ net:_179_ net:_180_ net:_287_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_113_ net:_129_ net:_352_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_204_ net:_244_ net:_294_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_158_ net:_248_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_058_ net:_161_ net:_380_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_117_ net:_147_ net:_287_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_420_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_409_ net:net19 net:net40 - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:dpath.a_lt_b$in0\[12\] net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_133_ net:_254_ net:_258_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_298_ net:_375_ net:_397_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_126_ net:_159_ net:_249_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_371_ net:dpath.a_lt_b$in0\[11\] - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_389_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_216_ net:_375_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_139_ net:_143_ net:_253_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_248_ net:_327_ net:_332_ net:net53 - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_230_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_119_ net:_143_ net:_144_ net:_236_ net:_287_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_143_ net:_236_ net:_287_ net:_388_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_220_ net:_317_ net:_381_ - comment: capacity:2 usage:5 overflow:3 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_136_ net:_137_ net:_188_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_016_ net:_039_ net:_111_ net:_370_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_014_ net:_140_ net:_142_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_221_ net:_249_ net:_381_ net:dpath.a_lt_b$in1\[11\] - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_020_ net:_043_ net:_142_ net:_244_ net:_342_ - comment: capacity:2 usage:5 overflow:3 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_159_ net:_249_ net:_416_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_372_ net:_391_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 76.9500) - (74.1000, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_402_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 62.7000) - (39.9000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_245_ net:_397_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_200_ net:_252_ net:_312_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_372_ net:_391_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 76.9500) - (71.2500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_065_ net:_245_ net:_279_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[2] net:net1 net:net30 net:net33 - comment: capacity:2 usage:4 overflow:2 - bbox = (74.1000, 88.3500) - (76.9500, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_414_ net:net41 - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 31.3500) - (68.4000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_055_ net:_156_ net:_164_ net:_380_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_298_ net:_353_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_061_ net:_165_ net:_411_ net:_412_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_119_ net:_391_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_005_ net:_386_ net:net44 - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_174_ net:_178_ net:_199_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_392_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 22.8000) - (28.5000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_106_ net:_140_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_116_ net:_168_ net:_213_ net:_298_ net:_397_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_372_ net:_391_ net:net30 - comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_131_ net:_158_ net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - -violation type: Horizontal congestion - srcs: net:_371_ net:net39 net:net43 - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 11.4000) - (54.1500, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_072_ net:_248_ net:_407_ net:net53 - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[31] net:req_val net:net45 - comment: capacity:2 usage:3 overflow:1 - bbox = (85.5000, 88.3500) - (88.3500, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_394_ net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 76.9500) - (54.1500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_205_ net:_244_ net:_353_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_221_ net:_224_ net:_317_ net:_381_ - comment: capacity:2 usage:6 overflow:4 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_215_ net:_250_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_372_ net:_391_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 76.9500) - (76.9500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ - comment: capacity:2 usage:5 overflow:3 - bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_245_ net:_253_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_160_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_248_ net:_249_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_093_ net:_111_ net:_127_ net:_370_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_193_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:_329_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_408_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_092_ net:_159_ net:_351_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 68.4000) - (71.2500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_119_ net:_144_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[31] net:req_val net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (82.6500, 88.3500) - (85.5000, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_248_ net:net44 - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_131_ net:_149_ net:_227_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_136_ net:_160_ net:_277_ net:_415_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_105_ net:_139_ net:_253_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_138_ net:_139_ net:_283_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_248_ net:_370_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 31.3500) - (28.5000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_091_ net:_125_ net:_381_ net:_405_ net:dpath.a_lt_b$in0\[9\] - comment: capacity:2 usage:5 overflow:3 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_118_ net:_126_ net:_159_ net:_249_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_092_ net:_126_ net:_159_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_077_ net:_248_ net:_370_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_119_ net:dpath.a_lt_b$in0\[3\] - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_097_ net:_142_ net:_244_ net:_352_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_257_ net:_404_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_008_ net:_159_ net:_249_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_205_ net:_244_ net:_353_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_013_ net:_051_ net:_123_ net:_245_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_253_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_123_ net:_138_ net:_171_ net:_297_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_237_ net:_250_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_050_ net:_122_ net:_165_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_220_ net:_253_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_141_ net:_219_ net:_310_ net:_311_ net:_381_ - comment: capacity:2 usage:5 overflow:3 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_297_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_121_ net:net49 - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_175_ net:_185_ net:_186_ net:_353_ net:_377_ - comment: capacity:2 usage:5 overflow:3 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_145_ net:_147_ net:_174_ net:_236_ net:_271_ net:_287_ - comment: capacity:2 usage:6 overflow:4 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_371_ net:net39 net:net43 - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 11.4000) - (57.0000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_353_ net:_377_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_337_ net:_339_ net:_341_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_124_ net:_399_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_268_ net:_383_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_116_ net:_167_ net:_213_ net:_298_ net:_397_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_394_ net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_243_ net:_352_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_236_ net:_238_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_205_ net:_245_ net:_353_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_195_ net:_388_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_062_ net:_159_ net:_245_ net:_249_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_237_ net:_377_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_229_ net:_230_ net:_235_ net:_241_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_132_ net:_221_ net:_347_ net:_381_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_253_ net:_349_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_392_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (22.8000, 22.8000) - (25.6500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_374_ net:_389_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 17.1000) - (34.2000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_248_ net:_337_ net:_339_ net:net53 - comment: capacity:2 usage:5 overflow:3 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_109_ net:_142_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_218_ net:_381_ net:_405_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_252_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_294_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_190_ net:_385_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_272_ net:_289_ net:_377_ - comment: capacity:2 usage:5 overflow:3 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:resp_msg[14] net:net38 net:net39 - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 11.4000) - (65.5500, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_184_ net:_198_ net:_385_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_060_ net:_110_ net:_236_ net:_246_ net:_249_ net:_413_ - comment: capacity:2 usage:6 overflow:4 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_202_ net:_252_ net:_419_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_126_ net:_133_ net:_258_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_244_ net:_343_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_177_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_371_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_076_ net:_110_ net:_398_ net:_413_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_172_ net:_245_ net:_263_ net:_264_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_248_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_048_ net:_136_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_127_ net:_352_ net:_363_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_160_ net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 76.9500) - (59.8500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_128_ net:_130_ net:_352_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_066_ net:_245_ net:_253_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_125_ net:_141_ net:_307_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:net46 net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 22.8000) - (62.7000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_154_ net:_380_ net:_402_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_236_ net:_245_ net:_249_ net:_413_ - comment: capacity:2 usage:5 overflow:3 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_147_ net:_180_ net:_236_ net:_287_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_129_ net:_130_ net:_207_ net:_352_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_409_ net:net19 net:net40 - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 17.1000) - (62.7000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_165_ net:_397_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_177_ net:_272_ net:_297_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[14] net:net18 net:net37 - comment: capacity:2 usage:3 overflow:1 - bbox = (19.9500, 11.4000) - (22.8000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[26] net:_380_ net:net37 - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 11.4000) - (31.3500, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_149_ net:_206_ net:_207_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_141_ net:_203_ net:_306_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_245_ net:_253_ net:_412_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_245_ net:_360_ net:dpath.a_lt_b$in1\[7\] - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_100_ net:_118_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_037_ net:_381_ net:_405_ - comment: capacity:2 usage:4 overflow:2 - bbox = (25.6500, 37.0500) - (28.5000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_242_ net:_252_ net:_352_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_248_ net:_252_ net:_327_ net:net53 - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_119_ net:_135_ net:_172_ net:_245_ net:_265_ - comment: capacity:2 usage:6 overflow:4 - bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_132_ net:_319_ net:_320_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_067_ net:_123_ net:_143_ net:_245_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_420_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 62.7000) - (34.2000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_239_ net:_240_ net:_385_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_177_ net:_195_ net:_199_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_069_ net:_375_ net:_397_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_117_ net:_133_ net:_158_ net:_384_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_396_ net:net39 net:net40 - comment: capacity:2 usage:3 overflow:1 - bbox = (79.8000, 11.4000) - (82.6500, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_205_ net:_298_ net:_375_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_189_ net:_272_ net:_284_ net:_377_ - comment: capacity:2 usage:6 overflow:4 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_148_ net:_200_ net:_220_ net:_302_ net:_311_ net:_381_ - comment: capacity:2 usage:7 overflow:5 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_015_ net:_375_ net:_397_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_070_ net:_111_ net:_313_ net:_370_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_131_ net:_227_ net:_352_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_394_ net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 76.9500) - (51.3000, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_382_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_203_ net:_204_ net:_298_ net:_375_ net:_397_ - comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:net1 net:net13 net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 88.3500) - (71.2500, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:net51 net:net52 - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[20] net:net12 net:net37 - comment: capacity:2 usage:3 overflow:1 - bbox = (14.2500, 11.4000) - (17.1000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_129_ net:_232_ net:_234_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_128_ net:_221_ net:_381_ net:dpath.a_lt_b$in1\[15\] - comment: capacity:2 usage:5 overflow:3 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ - comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_028_ net:_116_ net:_245_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_175_ net:_278_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_372_ net:_391_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 76.9500) - (68.4000, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_027_ net:_248_ net:_389_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[15] net:req_msg[3] net:resp_rdy - comment: capacity:2 usage:3 overflow:1 - bbox = (5.7000, 88.3500) - (8.5500, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_203_ net:_304_ net:_375_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_272_ net:_284_ net:_377_ - comment: capacity:2 usage:5 overflow:3 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_009_ net:_126_ net:_159_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[3\] - comment: capacity:2 usage:6 overflow:4 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_112_ net:_371_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_186_ net:_283_ net:_353_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[22] net:net39 net:net40 - comment: capacity:2 usage:3 overflow:1 - bbox = (82.6500, 11.4000) - (85.5000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_399_ net:_401_ net:net36 - comment: capacity:2 usage:3 overflow:1 - bbox = (22.8000, 48.4500) - (25.6500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_298_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_221_ net:_249_ net:_316_ net:_381_ - comment: capacity:2 usage:5 overflow:3 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_124_ net:_244_ net:_300_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_165_ net:_173_ net:_245_ net:_253_ - comment: capacity:2 usage:5 overflow:3 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_336_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_372_ net:_391_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_019_ net:_114_ net:_409_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_387_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 22.8000) - (31.3500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_055_ net:_380_ net:_421_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_369_ net:_376_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 68.4000) - (76.9500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_394_ net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 76.9500) - (48.4500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_162_ net:_403_ net:_421_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 59.8500) - (34.2000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_072_ net:_079_ net:_113_ net:_248_ net:_407_ net:net53 - comment: capacity:2 usage:6 overflow:4 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_112_ net:_371_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_138_ net:_165_ net:dpath.a_lt_b$in1\[6\] - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_138_ net:_160_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_140_ net:_217_ net:_306_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_120_ net:_160_ net:_415_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_089_ net:_253_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_073_ net:_209_ net:_329_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_072_ net:_114_ net:_130_ net:_244_ net:_328_ - comment: capacity:1 usage:5 overflow:4 - bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net9 - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 85.5000) - (45.6000, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_159_ net:_384_ net:dpath.a_lt_b$in0\[1\] - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_393_ net:_394_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 74.1000) - (59.8500, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_176_ net:_272_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_343_ net:_387_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_135_ net:dpath.a_lt_b$in1\[3\] - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 45.6000) - (14.2500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_144_ net:_236_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 25.6500) - (14.2500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[16] net:req_msg[2] - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 88.3500) - (79.8000, 91.2000) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_193_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_253_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_122_ net:_248_ net:_381_ - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_298_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_414_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_275_ net:_360_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[22] net:req_msg[5] net:resp_msg[12] - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 5.7000) - (91.2000, 8.5500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net25 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 65.5500) - (91.2000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_376_ net:net30 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 82.6500) - (79.8000, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_371_ net:net46 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 28.5000) - (65.5500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_159_ net:_393_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 71.2500) - (45.6000, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_220_ net:_326_ net:_327_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_169_ net:_171_ net:_253_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 42.7500) - (25.6500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 42.7500) - (14.2500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_228_ net:_317_ net:_410_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:_394_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 82.6500) - (14.2500, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_075_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_213_ net:_214_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_248_ net:_288_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_229_ net:_235_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_270_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[4] net:net46 net:net48 - comment: capacity:1 usage:3 overflow:2 - bbox = (11.4000, 8.5500) - (14.2500, 11.4000) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_352_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:net2 net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 85.5000) - (19.9500, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:_146_ net:_348_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_371_ net:net38 net:net48 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 14.2500) - (65.5500, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_182_ net:_258_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_072_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_307_ net:_362_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_245_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_127_ net:_318_ net:_327_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 51.3000) - (45.6000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:ctrl.state.out\[1\] - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_130_ net:_231_ net:_233_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_249_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 31.3500) - (14.2500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_256_ net:_404_ net:_412_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 76.9500) - (25.6500, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_393_ net:net20 - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 79.8000) - (59.8500, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_212_ net:_410_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_144_ net:_269_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_397_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 34.2000) - (25.6500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_332_ net:_339_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 34.2000) - (14.2500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_244_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 68.4000) - (25.6500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_174_ net:_197_ net:_262_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_204_ net:_298_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_129_ net:_352_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_376_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 74.1000) - (79.8000, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:net47 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 34.2000) - (91.2000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_184_ net:_272_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_308_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[5] net:net10 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_190_ net:_191_ net:_248_ net:_291_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_022_ net:_110_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_330_ net:_352_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_026_ net:_390_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_388_ net:net33 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 79.8000) - (65.5500, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_192_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_021_ net:_249_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_302_ net:_419_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_142_ net:_150_ net:_385_ - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_011_ net:_121_ net:_137_ net:_160_ - comment: capacity:1 usage:5 overflow:4 - bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 28.5000) - (14.2500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_043_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_249_ net:_396_ - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_007_ net:_159_ net:_384_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 79.8000) - (45.6000, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_229_ net:_235_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 59.8500) - (25.6500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_215_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net11 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 59.8500) - (91.2000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net47 - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:net38 net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 11.4000) - (65.5500, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:_344_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:net10 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 17.1000) - (91.2000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:net53 - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_353_ net:_393_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[31] net:resp_msg[7] - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 88.3500) - (91.2000, 91.2000) on Layer - -violation type: Vertical congestion - srcs: net:_051_ net:_139_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 85.5000) - (25.6500, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:_143_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_082_ net:_249_ net:_350_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:_394_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 76.9500) - (14.2500, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_172_ net:_264_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_163_ net:_164_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_268_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_117_ net:_133_ net:_147_ net:_165_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_371_ net:_409_ net:net38 net:net48 - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 17.1000) - (65.5500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net28 net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 51.3000) - (91.2000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_386_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_402_ net:_403_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 54.1500) - (37.0500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_047_ net:_101_ net:_356_ - comment: capacity:1 usage:4 overflow:3 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_050_ net:_104_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:_396_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 31.3500) - (79.8000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net25 net:net45 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 71.2500) - (91.2000, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_109_ net:_243_ net:_353_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_142_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_249_ net:_398_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_070_ net:_142_ net:_244_ net:_313_ net:_314_ - comment: capacity:1 usage:5 overflow:4 - bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 71.2500) - (25.6500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_388_ net:_391_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 74.1000) - (65.5500, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_136_ net:_137_ net:_187_ net:_245_ net:_415_ - comment: capacity:1 usage:5 overflow:4 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[14] net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 5.7000) - (65.5500, 8.5500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_371_ net:net46 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 22.8000) - (65.5500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_390_ net:_409_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_388_ net:_391_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_376_ net:net30 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_159_ net:_384_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 65.5500) - (45.6000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_099_ net:_159_ net:_384_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_213_ net:_235_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_397_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 39.9000) - (25.6500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 45.6000) - (25.6500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_133_ net:_165_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_020_ net:_131_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_037_ net:_091_ net:_248_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_121_ net:_160_ - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 54.1500) - (79.8000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 48.4500) - (14.2500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_166_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net25 net:net45 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 74.1000) - (91.2000, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_120_ net:_245_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_418_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 54.1500) - (91.2000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_089_ net:_236_ net:_292_ net:_388_ net:_417_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_173_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_002_ net:_004_ net:_160_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[2\] - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_199_ net:_238_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_160_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 57.0000) - (79.8000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_025_ net:_079_ net:_407_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[31] net:resp_msg[7] - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 91.2000) - (91.2000, 94.0500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_376_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 71.2500) - (79.8000, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_158_ - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 54.1500) - (42.7500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 25.6500) - (25.6500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_399_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 48.4500) - (25.6500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_073_ net:_252_ net:_408_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_148_ net:_150_ net:net43 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_027_ net:_248_ net:_374_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_364_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_414_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_127_ net:_200_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:_388_ net:net33 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 22.8000) - (25.6500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 82.6500) - (25.6500, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:net16 net:net30 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 85.5000) - (79.8000, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:_044_ net:_098_ net:_347_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_412_ net:net33 net:net50 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net15 net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 42.7500) - (91.2000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_031_ net:_119_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[2] net:net50 - comment: capacity:1 usage:2 overflow:1 - bbox = (8.5500, 62.7000) - (11.4000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_149_ net:_352_ net:_401_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net25 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 68.4000) - (91.2000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:net20 net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 82.6500) - (91.2000, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_393_ net:_394_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_174_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_397_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 31.3500) - (25.6500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_229_ net:_235_ net:_250_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 54.1500) - (14.2500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_117_ net:_165_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_206_ net:_327_ net:_341_ net:_346_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_189_ net:_248_ net:_289_ net:_290_ net:_296_ - comment: capacity:1 usage:6 overflow:5 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[14] net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 8.5500) - (65.5500, 11.4000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net25 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 62.7000) - (91.2000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 65.5500) - (79.8000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_143_ net:_253_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_240_ net:_250_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_416_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_410_ net:dpath.a_lt_b$in0\[13\] - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 14.2500) - (48.4500, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_160_ net:net45 - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:_396_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 28.5000) - (79.8000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_198_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_088_ net:dpath.a_lt_b$in0\[6\] - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_248_ net:net41 net:net46 - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 31.3500) - (65.5500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net49 net:net8 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 45.6000) - (91.2000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_259_ net:_404_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net15 net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 39.9000) - (91.2000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[5] net:resp_msg[12] - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 0.0000) - (91.2000, 2.8500) on Layer - -violation type: Vertical congestion - srcs: net:_130_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_096_ net:_366_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[22] net:req_msg[5] net:resp_msg[12] - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 8.5500) - (91.2000, 11.4000) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_348_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_001_ net:net7 - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_194_ net:_297_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_109_ net:_150_ net:_385_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[5] net:resp_msg[12] - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 2.8500) - (91.2000, 5.7000) on Layer - -violation type: Vertical congestion - srcs: net:_376_ net:net30 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 79.8000) - (79.8000, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_180_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:net47 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 28.5000) - (91.2000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_385_ net:dpath.a_lt_b$in1\[5\] - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_334_ net:_336_ net:_410_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_053_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_124_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_215_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_180_ net:_182_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_165_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_248_ net:net46 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 34.2000) - (65.5500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_371_ net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 19.9500) - (65.5500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:net18 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 11.4000) - (25.6500, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:_112_ net:_132_ net:_207_ net:_213_ net:_235_ - comment: capacity:1 usage:5 overflow:4 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_105_ net:_245_ net:dpath.a_lt_b$in1\[7\] - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_397_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 37.0500) - (25.6500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_178_ net:_236_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_407_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_272_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_159_ net:_376_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_219_ net:_252_ net:_302_ - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_209_ net:_252_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_071_ net:_159_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_139_ net:_169_ net:_253_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_421_ net:net12 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_281_ net:_416_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_068_ net:_140_ net:_299_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_376_ net:net45 - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 68.4000) - (79.8000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_009_ net:_119_ net:_249_ net:_267_ net:_388_ - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_179_ net:_239_ net:_250_ net:_404_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 22.8000) - (14.2500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:_396_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 34.2000) - (79.8000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_248_ net:_417_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_203_ net:_304_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[11] net:net47 net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_126_ net:_134_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_006_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_239_ net:_250_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 79.8000) - (25.6500, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_160_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_158_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_103_ net:_121_ net:_137_ net:_160_ - comment: capacity:1 usage:4 overflow:3 - bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_249_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 62.7000) - (65.5500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_348_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_400_ net:_421_ - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_415_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 82.6500) - (45.6000, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:_111_ net:_149_ net:net43 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_201_ net:_213_ net:_235_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_012_ net:_122_ net:_248_ net:dpath.a_lt_b$in1\[6\] - comment: capacity:1 usage:5 overflow:4 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_235_ net:_253_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_170_ net:_253_ net:_416_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_154_ net:_157_ net:_160_ net:_402_ - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_136_ net:_175_ net:_245_ net:_277_ net:_415_ - comment: capacity:1 usage:5 overflow:4 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_110_ net:_126_ net:_245_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_125_ net:_142_ net:_158_ net:_244_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_244_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:_142_ net:_158_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_348_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_421_ net:net12 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_396_ net:net40 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 14.2500) - (79.8000, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_124_ net:_142_ net:_244_ net:_386_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_230_ net:_242_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:net22 net:net33 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 85.5000) - (65.5500, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_253_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 76.9500) - (45.6000, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_224_ net:_225_ net:_228_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 62.7000) - (25.6500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_183_ net:_236_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_248_ net:_386_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_211_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_138_ net:_248_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_389_ net:net43 - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_141_ net:_218_ net:_309_ net:_310_ - comment: capacity:1 usage:4 overflow:3 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 37.0500) - (14.2500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 51.3000) - (14.2500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_131_ net:_227_ net:_327_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_228_ net:_410_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_092_ net:_165_ net:_261_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_130_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_405_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_392_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 39.9000) - (14.2500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_152_ net:_403_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 74.1000) - (25.6500, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_016_ net:_252_ net:dpath.a_lt_b$in1\[10\] - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_008_ net:_134_ net:dpath.a_lt_b$in1\[2\] - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_225_ net:_228_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_262_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:net27 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 11.4000) - (82.6500, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_158_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_123_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_010_ net:_120_ net:_249_ net:_396_ net:dpath.a_lt_b$in1\[4\] - comment: capacity:1 usage:5 overflow:4 - bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_396_ net:dpath.a_lt_b$in0\[4\] - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 37.0500) - (79.8000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:_394_ - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 79.8000) - (14.2500, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:net10 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 19.9500) - (91.2000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_243_ net:_252_ net:_353_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_365_ net:_372_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 62.7000) - (79.8000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_210_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_248_ net:_386_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:_131_ net:_352_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_141_ net:_248_ net:_353_ net:_362_ - comment: capacity:1 usage:4 overflow:3 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_276_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_313_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_252_ - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:_342_ net:_367_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 57.0000) - (25.6500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_159_ net:_160_ net:_388_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_057_ net:_156_ net:_162_ net:_421_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 74.1000) - (45.6000, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_250_ net:_404_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_167_ net:_213_ net:_235_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[4] net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 5.7000) - (14.2500, 8.5500) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:_158_ net:_352_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_266_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_338_ net:_341_ net:net53 - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_388_ net:net33 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 82.6500) - (65.5500, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:net17 net:net36 - comment: capacity:1 usage:2 overflow:1 - bbox = (5.7000, 45.6000) - (8.5500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_327_ net:_337_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_041_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 37.0500) - (91.2000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_127_ net:_200_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net28 net:net49 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 48.4500) - (91.2000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_175_ net:_249_ - comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_150_ net:_253_ net:_385_ - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_221_ net:_224_ net:_318_ net:_327_ net:_401_ - comment: capacity:1 usage:6 overflow:5 - bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:net47 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 25.6500) - (91.2000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 65.5500) - (25.6500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_170_ net:_177_ net:_253_ net:_284_ - comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_153_ net:_161_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_213_ net:_245_ net:_298_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_185_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_396_ net:net40 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 11.4000) - (79.8000, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:_207_ net:_410_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_244_ net:_306_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_039_ net:_158_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_253_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_210_ net:_212_ net:_332_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_275_ net:_280_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_196_ net:_197_ net:_271_ net:_272_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:net20 net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 79.8000) - (91.2000, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_188_ net:_283_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_272_ net:_388_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[16] net:req_msg[2] - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 91.2000) - (79.8000, 94.0500) on Layer - -violation type: Vertical congestion - srcs: net:_102_ net:_120_ net:_249_ net:_396_ - comment: capacity:1 usage:4 overflow:3 - bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_003_ net:_055_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_371_ net:net46 - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 25.6500) - (65.5500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_311_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_017_ net:_221_ net:dpath.a_lt_b$in1\[11\] - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_401_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (22.8000, 28.5000) - (25.6500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:net47 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 22.8000) - (91.2000, 25.6500) on Layer - diff --git a/src/grt/test/congestion7_snapshot_batched.guideok b/src/grt/test/congestion7_snapshot_batched.guideok deleted file mode 100644 index 51f9b0ff5de..00000000000 --- a/src/grt/test/congestion7_snapshot_batched.guideok +++ /dev/null @@ -1,5971 +0,0 @@ -_000_ -( -51300 102600 57000 108300 metal1 -51300 102600 57000 114000 metal2 -51300 108300 57000 114000 metal2 -51300 108300 62700 114000 metal3 -57000 108300 62700 114000 metal2 -57000 108300 62700 114000 metal1 -) -_001_ -( -51300 114000 57000 119700 metal1 -51300 114000 57000 125400 metal2 -51300 119700 57000 125400 metal2 -51300 119700 62700 125400 metal3 -57000 119700 62700 125400 metal2 -57000 119700 62700 125400 metal1 -) -_002_ -( -74100 114000 79800 119700 metal1 -74100 108300 79800 119700 metal2 -74100 108300 79800 114000 metal1 -) -_003_ -( -57000 114000 62700 119700 metal1 -57000 114000 62700 125400 metal2 -57000 119700 62700 125400 metal1 -) -_004_ -( -74100 108300 79800 114000 metal1 -74100 108300 79800 119700 metal2 -74100 114000 79800 119700 metal1 -) -_005_ -( -57000 102600 62700 108300 metal1 -57000 102600 62700 108300 metal2 -57000 102600 68400 108300 metal3 -62700 102600 68400 108300 metal2 -62700 102600 68400 108300 metal1 -) -_006_ -( -136800 131100 142500 136800 metal1 -136800 125400 142500 136800 metal2 -136800 125400 142500 131100 metal1 -) -_007_ -( -85500 119700 91200 125400 metal1 -85500 119700 91200 131100 metal2 -85500 125400 91200 131100 metal2 -85500 125400 96900 131100 metal3 -91200 125400 96900 131100 metal2 -91200 125400 96900 131100 metal1 -) -_008_ -( -102600 136800 108300 142500 metal1 -102600 136800 108300 148200 metal2 -102600 142500 108300 148200 metal2 -102600 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_009_ -( -119700 136800 125400 142500 metal1 -119700 131100 125400 142500 metal2 -119700 131100 125400 136800 metal2 -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 131100 131100 136800 metal1 -) -_010_ -( -148200 79800 153900 85500 metal1 -148200 79800 153900 85500 metal2 -148200 79800 159600 85500 metal3 -153900 79800 159600 85500 metal2 -153900 79800 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_011_ -( -153900 108300 159600 114000 metal1 -153900 108300 159600 114000 metal2 -153900 108300 165300 114000 metal3 -159600 108300 165300 114000 metal2 -159600 102600 165300 114000 metal2 -159600 102600 165300 108300 metal1 -) -_012_ -( -125400 85500 131100 91200 metal1 -125400 79800 131100 91200 metal2 -125400 79800 131100 85500 metal1 -) -_013_ -( -131100 114000 136800 119700 metal1 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal1 -) -_014_ -( -62700 96900 68400 102600 metal1 -62700 96900 68400 102600 metal2 -62700 96900 74100 102600 metal3 -68400 96900 74100 102600 metal2 -68400 96900 74100 102600 metal1 -) -_015_ -( -51300 85500 57000 91200 metal1 -51300 85500 57000 91200 metal2 -51300 85500 62700 91200 metal3 -57000 85500 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_016_ -( -68400 62700 74100 68400 metal1 -68400 57000 74100 68400 metal2 -68400 57000 74100 62700 metal2 -68400 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 -74100 57000 79800 62700 metal1 -) -_017_ -( -114000 68400 119700 74100 metal1 -114000 68400 119700 79800 metal2 -114000 74100 119700 79800 metal1 -) -_018_ -( -114000 51300 119700 57000 metal1 -114000 51300 119700 57000 metal2 -) -_019_ -( -96900 34200 102600 39900 metal1 -96900 34200 102600 39900 metal2 -96900 34200 108300 39900 metal3 -102600 34200 108300 39900 metal2 -102600 28500 108300 39900 metal2 -102600 28500 108300 34200 metal1 -) -_020_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 57000 metal2 -68400 51300 74100 57000 metal2 -68400 51300 79800 57000 metal3 -74100 51300 79800 57000 metal2 -74100 51300 79800 57000 metal1 -) -_021_ -( -108300 74100 114000 79800 metal1 -108300 74100 114000 85500 metal2 -108300 79800 114000 85500 metal1 -) -_022_ -( -148200 125400 153900 131100 metal1 -148200 125400 153900 136800 metal2 -148200 131100 153900 136800 metal1 -) -_023_ -( -57000 62700 62700 68400 metal1 -57000 62700 62700 68400 metal2 -) -_024_ -( -119700 68400 125400 74100 metal1 -119700 62700 125400 74100 metal2 -119700 62700 125400 68400 metal1 -) -_025_ -( -114000 39900 119700 45600 metal1 -114000 39900 119700 51300 metal2 -114000 45600 119700 51300 metal1 -) -_026_ -( -85500 34200 91200 39900 metal1 -85500 28500 91200 39900 metal2 -85500 28500 91200 34200 metal1 -) -_027_ -( -68400 39900 74100 45600 metal1 -68400 34200 74100 45600 metal2 -68400 34200 74100 39900 metal2 -68400 34200 79800 39900 metal3 -74100 34200 79800 39900 metal2 -74100 34200 79800 39900 metal1 -) -_028_ -( -102600 85500 108300 91200 metal1 -102600 85500 108300 91200 metal2 -102600 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -) -_029_ -( -85500 131100 91200 136800 metal1 -85500 131100 91200 136800 metal2 -) -_030_ -( -96900 142500 102600 148200 metal1 -96900 142500 102600 153900 metal2 -96900 148200 102600 153900 metal1 -) -_031_ -( -125400 142500 131100 148200 metal1 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 136800 136800 148200 metal2 -131100 136800 136800 142500 metal1 -) -_032_ -( -148200 74100 153900 79800 metal1 -148200 74100 153900 79800 metal2 -) -_033_ -( -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -) -_034_ -( -131100 68400 136800 74100 metal1 -131100 68400 136800 74100 metal2 -) -_035_ -( -131100 119700 136800 125400 metal1 -131100 119700 136800 125400 metal2 -) -_036_ -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -) -_037_ -( -51300 74100 57000 79800 metal1 -51300 68400 57000 79800 metal2 -51300 68400 57000 74100 metal2 -51300 68400 62700 74100 metal3 -57000 68400 62700 74100 metal2 -57000 68400 62700 74100 metal1 -) -_038_ -( -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -) -_039_ -( -68400 57000 74100 62700 metal1 -68400 57000 74100 62700 metal2 -68400 57000 79800 62700 metal3 -74100 57000 79800 62700 metal2 -74100 57000 79800 68400 metal2 -74100 62700 79800 68400 metal1 -) -_040_ -( -108300 68400 114000 74100 metal1 -108300 68400 114000 74100 metal2 -) -_041_ -( -114000 57000 119700 62700 metal1 -114000 51300 119700 62700 metal2 -114000 51300 119700 57000 metal1 -) -_042_ -( -96900 28500 102600 34200 metal1 -96900 28500 102600 34200 metal2 -96900 28500 114000 34200 metal3 -108300 28500 114000 34200 metal2 -108300 28500 114000 39900 metal2 -108300 34200 114000 39900 metal1 -) -_043_ -( -68400 51300 74100 57000 metal1 -68400 45600 74100 57000 metal2 -68400 45600 74100 51300 metal2 -68400 45600 79800 51300 metal3 -74100 45600 79800 51300 metal2 -74100 45600 79800 51300 metal1 -) -_044_ -( -102600 79800 108300 85500 metal1 -102600 74100 108300 85500 metal2 -102600 74100 108300 79800 metal1 -) -_045_ -( -85500 119700 91200 125400 metal1 -85500 119700 91200 125400 metal2 -) -_046_ -( -102600 142500 108300 148200 metal1 -102600 142500 108300 148200 metal2 -102600 142500 114000 148200 metal3 -108300 142500 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_047_ -( -119700 142500 125400 148200 metal1 -119700 136800 125400 148200 metal2 -119700 136800 125400 142500 metal1 -) -_048_ -( -148200 85500 153900 91200 metal1 -148200 85500 153900 91200 metal2 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_049_ -( -153900 102600 159600 108300 metal1 -153900 102600 159600 108300 metal2 -) -_050_ -( -119700 79800 125400 85500 metal1 -119700 79800 125400 91200 metal2 -119700 85500 125400 91200 metal2 -119700 85500 131100 91200 metal3 -125400 85500 131100 91200 metal2 -125400 85500 131100 91200 metal1 -) -_051_ -( -131100 114000 136800 119700 metal1 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 108300 142500 119700 metal2 -136800 108300 142500 114000 metal1 -) -_052_ -( -62700 96900 68400 102600 metal1 -62700 96900 68400 102600 metal2 -) -_053_ -( -51300 79800 57000 85500 metal1 -51300 79800 57000 91200 metal2 -51300 85500 57000 91200 metal1 -) -_054_ -( -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -) -_055_ -( -57000 119700 62700 125400 metal1 -57000 114000 62700 125400 metal2 -57000 114000 62700 119700 metal2 -57000 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_056_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -) -_057_ -( -57000 119700 62700 125400 metal1 -57000 119700 62700 125400 metal2 -57000 119700 68400 125400 metal3 -62700 119700 68400 125400 metal2 -62700 119700 68400 125400 metal1 -62700 114000 68400 125400 metal2 -62700 114000 68400 119700 metal1 -) -_058_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -74100 114000 85500 119700 metal3 -79800 114000 85500 119700 metal2 -79800 114000 85500 119700 metal1 -) -_059_ -( -62700 102600 68400 114000 metal2 -62700 108300 68400 114000 metal1 -62700 102600 68400 108300 metal1 -62700 102600 68400 108300 metal2 -62700 102600 74100 108300 metal3 -68400 102600 74100 108300 metal2 -68400 102600 74100 108300 metal1 -68400 102600 74100 114000 metal2 -68400 108300 74100 114000 metal1 -79800 102600 85500 108300 metal2 -79800 102600 91200 108300 metal3 -85500 102600 91200 108300 metal2 -85500 102600 91200 108300 metal1 -79800 96900 85500 108300 metal2 -79800 96900 85500 102600 metal1 -68400 102600 85500 108300 metal3 -) -_060_ -( -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_061_ -( -91200 125400 96900 131100 metal1 -91200 125400 96900 131100 metal2 -91200 125400 102600 131100 metal3 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal1 -) -_062_ -( -96900 136800 102600 142500 metal1 -96900 136800 102600 142500 metal2 -96900 136800 108300 142500 metal3 -102600 136800 108300 142500 metal2 -102600 136800 108300 142500 metal1 -) -_063_ -( -125400 131100 131100 136800 metal1 -125400 131100 131100 136800 metal2 -) -_064_ -( -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 153900 85500 metal3 -148200 79800 153900 85500 metal2 -148200 79800 153900 85500 metal1 -) -_065_ -( -142500 108300 148200 114000 metal1 -142500 108300 148200 114000 metal2 -142500 108300 159600 114000 metal3 -153900 108300 159600 114000 metal2 -153900 108300 159600 114000 metal1 -) -_066_ -( -125400 79800 131100 85500 metal1 -125400 79800 131100 85500 metal2 -125400 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -) -_067_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -131100 114000 136800 119700 metal1 -) -_068_ -( -68400 96900 74100 102600 metal1 -68400 91200 74100 102600 metal2 -68400 91200 74100 96900 metal1 -) -_069_ -( -57000 85500 62700 91200 metal1 -57000 85500 62700 91200 metal2 -57000 85500 68400 91200 metal3 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal1 -) -_070_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 62700 metal2 -62700 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 68400 metal2 -68400 62700 74100 68400 metal1 -) -_071_ -( -114000 74100 119700 79800 metal1 -114000 74100 119700 85500 metal2 -114000 79800 119700 85500 metal1 -) -_072_ -( -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 119700 45600 metal3 -114000 39900 119700 45600 metal2 -114000 39900 119700 57000 metal2 -114000 51300 119700 57000 metal1 -) -_073_ -( -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 102600 45600 metal3 -96900 39900 102600 45600 metal2 -96900 34200 102600 45600 metal2 -96900 34200 102600 39900 metal1 -) -_074_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -) -_075_ -( -108300 79800 114000 85500 metal1 -108300 79800 114000 91200 metal2 -108300 85500 114000 91200 metal1 -) -_076_ -( -142500 125400 148200 131100 metal1 -142500 125400 148200 131100 metal2 -142500 125400 153900 131100 metal3 -148200 125400 153900 131100 metal2 -148200 125400 153900 131100 metal1 -) -_077_ -( -57000 62700 62700 68400 metal1 -57000 62700 62700 68400 metal2 -57000 62700 68400 68400 metal3 -62700 62700 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_078_ -( -119700 68400 125400 74100 metal1 -119700 68400 125400 74100 metal2 -) -_079_ -( -108300 45600 114000 51300 metal1 -108300 45600 114000 51300 metal2 -108300 45600 119700 51300 metal3 -114000 45600 119700 51300 metal2 -114000 39900 119700 51300 metal2 -114000 39900 119700 45600 metal1 -) -_080_ -( -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -) -_081_ -( -68400 39900 74100 45600 metal1 -68400 39900 74100 45600 metal2 -) -_082_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_083_ -( -85500 131100 91200 136800 metal1 -85500 131100 91200 136800 metal2 -85500 131100 102600 136800 metal3 -96900 131100 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_084_ -( -96900 142500 102600 148200 metal1 -96900 142500 102600 148200 metal2 -96900 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 136800 108300 148200 metal2 -102600 136800 108300 142500 metal1 -) -_085_ -( -125400 136800 131100 142500 metal1 -125400 136800 131100 142500 metal2 -125400 136800 136800 142500 metal3 -131100 136800 136800 142500 metal2 -131100 136800 136800 142500 metal1 -) -_086_ -( -148200 74100 153900 79800 metal1 -148200 74100 153900 79800 metal2 -) -_087_ -( -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -) -_088_ -( -131100 74100 136800 79800 metal1 -131100 68400 136800 79800 metal2 -131100 68400 136800 74100 metal1 -) -_089_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -131100 114000 136800 125400 metal2 -131100 119700 136800 125400 metal1 -) -_090_ -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -51300 91200 68400 96900 metal3 -62700 91200 68400 96900 metal2 -62700 91200 68400 96900 metal1 -) -_091_ -( -57000 68400 62700 74100 metal1 -57000 68400 62700 74100 metal2 -57000 68400 68400 74100 metal3 -62700 68400 68400 74100 metal2 -62700 68400 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -_092_ -( -131100 131100 136800 136800 metal1 -131100 131100 136800 136800 metal2 -131100 131100 148200 136800 metal3 -142500 131100 148200 136800 metal2 -142500 131100 148200 142500 metal2 -142500 136800 148200 142500 metal1 -) -_093_ -( -74100 62700 79800 68400 metal1 -74100 62700 79800 68400 metal2 -74100 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -) -_094_ -( -108300 68400 114000 74100 metal1 -108300 68400 114000 74100 metal2 -) -_095_ -( -114000 57000 119700 62700 metal1 -114000 57000 119700 62700 metal2 -) -_096_ -( -108300 39900 114000 45600 metal1 -108300 34200 114000 45600 metal2 -108300 34200 114000 39900 metal1 -) -_097_ -( -74100 45600 79800 51300 metal1 -74100 45600 79800 51300 metal2 -74100 45600 85500 51300 metal3 -79800 45600 85500 51300 metal2 -79800 45600 85500 51300 metal1 -) -_098_ -( -102600 74100 108300 79800 metal1 -102600 74100 108300 85500 metal2 -102600 79800 108300 85500 metal1 -) -_099_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 125400 metal2 -85500 119700 91200 125400 metal1 -) -_100_ -( -108300 142500 114000 148200 metal1 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -) -_101_ -( -119700 136800 125400 142500 metal1 -119700 136800 125400 148200 metal2 -119700 142500 125400 148200 metal1 -) -_102_ -( -153900 91200 159600 96900 metal1 -153900 85500 159600 96900 metal2 -153900 85500 159600 91200 metal1 -) -_103_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 108300 metal2 -153900 102600 159600 108300 metal1 -) -_104_ -( -119700 85500 125400 91200 metal1 -119700 79800 125400 91200 metal2 -119700 79800 125400 85500 metal1 -) -_105_ -( -136800 108300 142500 114000 metal1 -136800 108300 142500 114000 metal2 -136800 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 119700 metal2 -142500 114000 148200 119700 metal1 -) -_106_ -( -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 68400 102600 metal3 -62700 96900 68400 102600 metal2 -62700 96900 68400 102600 metal1 -) -_107_ -( -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 62700 85500 metal3 -57000 79800 62700 85500 metal2 -57000 79800 62700 85500 metal1 -) -_108_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -) -_109_ -( -79800 108300 85500 114000 metal1 -79800 102600 85500 114000 metal2 -79800 102600 85500 108300 metal1 -79800 102600 85500 108300 metal2 -79800 102600 91200 108300 metal3 -85500 102600 91200 108300 metal2 -85500 102600 91200 108300 metal1 -85500 96900 91200 108300 metal2 -85500 96900 91200 102600 metal1 -) -_110_ -( -102600 125400 108300 136800 metal2 -102600 131100 108300 136800 metal1 -102600 125400 108300 131100 metal1 -102600 125400 108300 131100 metal2 -102600 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -148200 131100 153900 136800 metal1 -148200 125400 153900 136800 metal2 -148200 125400 153900 131100 metal2 -142500 125400 153900 131100 metal3 -148200 131100 153900 142500 metal2 -148200 136800 153900 142500 metal1 -) -_111_ -( -74100 68400 79800 74100 metal1 -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal1 -79800 62700 85500 68400 metal1 -79800 62700 85500 74100 metal2 -62700 62700 68400 68400 metal1 -62700 62700 68400 74100 metal2 -62700 68400 68400 74100 metal2 -62700 68400 79800 74100 metal3 -) -_112_ -( -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 62700 108300 74100 metal2 -114000 62700 119700 74100 metal2 -114000 68400 119700 74100 metal1 -102600 62700 108300 68400 metal1 -102600 62700 108300 68400 metal2 -102600 62700 119700 68400 metal3 -114000 62700 119700 68400 metal2 -114000 62700 125400 68400 metal3 -119700 62700 125400 68400 metal2 -119700 62700 125400 68400 metal1 -) -_113_ -( -108300 45600 114000 57000 metal2 -108300 51300 114000 57000 metal1 -102600 57000 108300 62700 metal1 -102600 57000 108300 62700 metal2 -102600 57000 114000 62700 metal3 -108300 57000 114000 62700 metal2 -108300 45600 114000 51300 metal1 -108300 45600 114000 51300 metal2 -108300 45600 119700 51300 metal3 -114000 45600 119700 51300 metal2 -114000 45600 119700 51300 metal1 -108300 57000 114000 68400 metal2 -108300 62700 114000 68400 metal1 -108300 51300 114000 62700 metal2 -) -_114_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 108300 39900 metal3 -102600 34200 108300 39900 metal2 -102600 39900 108300 45600 metal1 -102600 34200 108300 45600 metal2 -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 96900 39900 metal3 -102600 51300 108300 57000 metal1 -102600 39900 108300 57000 metal2 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -102600 34200 114000 39900 metal3 -108300 34200 114000 39900 metal2 -108300 34200 114000 39900 metal1 -) -_115_ -( -79800 39900 85500 57000 metal2 -79800 51300 85500 57000 metal1 -79800 51300 85500 62700 metal2 -79800 57000 85500 62700 metal1 -68400 39900 74100 45600 metal1 -68400 39900 74100 45600 metal2 -68400 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -) -_116_ -( -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 114000 91200 metal3 -108300 85500 114000 91200 metal2 -108300 85500 114000 91200 metal1 -91200 68400 96900 91200 metal2 -91200 68400 96900 74100 metal1 -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -) -_117_ -( -91200 114000 96900 119700 metal1 -91200 114000 96900 119700 metal2 -91200 114000 102600 119700 metal3 -96900 114000 102600 119700 metal2 -96900 114000 102600 119700 metal1 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -91200 125400 96900 131100 metal1 -91200 114000 96900 131100 metal2 -91200 125400 96900 136800 metal2 -91200 131100 96900 136800 metal1 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 96900 119700 metal3 -) -_118_ -( -108300 131100 114000 148200 metal2 -114000 125400 119700 131100 metal1 -114000 119700 119700 131100 metal2 -114000 119700 119700 125400 metal1 -96900 136800 102600 142500 metal1 -96900 136800 102600 148200 metal2 -96900 142500 102600 148200 metal2 -96900 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal1 -108300 131100 114000 136800 metal1 -108300 131100 114000 136800 metal2 -108300 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 125400 119700 136800 metal2 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -102600 142500 114000 148200 metal3 -) -_119_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 136800 metal2 -119700 131100 125400 136800 metal2 -119700 131100 131100 136800 metal3 -125400 131100 131100 136800 metal2 -125400 131100 131100 142500 metal2 -125400 136800 131100 142500 metal1 -119700 114000 125400 125400 metal2 -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 125400 119700 metal3 -119700 114000 125400 119700 metal2 -119700 114000 125400 119700 metal1 -125400 136800 131100 148200 metal2 -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 125400 125400 metal3 -119700 119700 125400 125400 metal2 -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 131100 148200 metal3 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal1 -119700 119700 125400 131100 metal2 -) -_120_ -( -142500 85500 148200 91200 metal1 -142500 85500 148200 91200 metal2 -142500 85500 153900 91200 metal3 -148200 85500 153900 91200 metal2 -148200 85500 153900 96900 metal2 -148200 91200 153900 96900 metal1 -148200 91200 153900 96900 metal2 -148200 91200 159600 96900 metal3 -153900 91200 159600 96900 metal2 -153900 91200 159600 96900 metal1 -142500 79800 148200 91200 metal2 -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -142500 79800 159600 85500 metal3 -153900 79800 159600 85500 metal2 -153900 79800 159600 85500 metal1 -) -_121_ -( -153900 102600 159600 119700 metal2 -148200 102600 153900 108300 metal1 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -142500 102600 148200 108300 metal1 -142500 102600 148200 108300 metal2 -142500 102600 153900 108300 metal3 -148200 114000 153900 119700 metal1 -148200 114000 153900 119700 metal2 -148200 114000 159600 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal1 -153900 96900 159600 102600 metal1 -153900 96900 159600 108300 metal2 -) -_122_ -( -125400 74100 131100 96900 metal2 -114000 91200 119700 96900 metal1 -114000 91200 119700 96900 metal2 -114000 91200 131100 96900 metal3 -125400 91200 131100 96900 metal2 -114000 85500 119700 96900 metal2 -114000 85500 119700 91200 metal1 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -125400 91200 136800 96900 metal3 -131100 91200 136800 96900 metal2 -131100 91200 136800 96900 metal1 -) -_123_ -( -131100 102600 136800 119700 metal2 -131100 114000 136800 119700 metal2 -131100 114000 142500 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 125400 metal2 -136800 119700 142500 125400 metal1 -125400 102600 131100 108300 metal1 -125400 102600 131100 108300 metal2 -125400 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -) -_124_ -( -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -62700 85500 68400 96900 metal2 -62700 85500 68400 91200 metal1 -57000 91200 62700 96900 metal1 -57000 91200 62700 96900 metal2 -57000 91200 68400 96900 metal3 -51300 96900 57000 102600 metal1 -51300 91200 57000 102600 metal2 -51300 91200 57000 96900 metal2 -51300 91200 62700 96900 metal3 -) -_125_ -( -57000 74100 62700 85500 metal2 -51300 79800 57000 85500 metal1 -51300 79800 57000 85500 metal2 -51300 79800 62700 85500 metal3 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -57000 74100 62700 79800 metal1 -57000 74100 62700 79800 metal2 -57000 74100 68400 79800 metal3 -62700 74100 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -_126_ -( -102600 131100 108300 136800 metal1 -102600 131100 108300 136800 metal2 -102600 131100 142500 136800 metal3 -136800 131100 142500 136800 metal2 -136800 131100 142500 136800 metal1 -102600 119700 108300 125400 metal1 -102600 119700 108300 125400 metal2 -102600 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal1 -102600 119700 108300 136800 metal2 -136800 131100 142500 142500 metal2 -136800 136800 142500 142500 metal1 -) -_127_ -( -74100 62700 79800 68400 metal1 -74100 62700 79800 68400 metal2 -74100 62700 85500 68400 metal3 -79800 62700 85500 68400 metal2 -79800 62700 85500 68400 metal1 -74100 68400 79800 74100 metal2 -74100 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -74100 74100 79800 79800 metal1 -74100 68400 79800 79800 metal2 -74100 62700 79800 74100 metal2 -) -_128_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 79800 metal2 -74100 74100 91200 79800 metal3 -85500 74100 91200 79800 metal2 -96900 62700 102600 68400 metal1 -96900 62700 102600 68400 metal2 -96900 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 74100 metal2 -102600 68400 108300 74100 metal1 -91200 74100 96900 79800 metal1 -91200 74100 96900 79800 metal2 -91200 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -85500 68400 91200 79800 metal2 -85500 68400 91200 74100 metal1 -102600 68400 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -108300 74100 114000 79800 metal1 -85500 74100 96900 79800 metal3 -) -_129_ -( -91200 62700 96900 68400 metal1 -91200 57000 96900 68400 metal2 -91200 57000 96900 62700 metal2 -91200 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -108300 51300 114000 62700 metal2 -108300 51300 114000 57000 metal1 -102600 57000 108300 62700 metal1 -102600 57000 108300 62700 metal2 -102600 57000 114000 62700 metal3 -108300 57000 114000 62700 metal2 -108300 57000 114000 62700 metal1 -96900 51300 102600 62700 metal2 -96900 51300 102600 57000 metal1 -108300 57000 119700 62700 metal3 -114000 57000 119700 62700 metal2 -114000 57000 119700 62700 metal1 -96900 57000 108300 62700 metal3 -) -_130_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 57000 108300 68400 metal2 -102600 57000 108300 62700 metal1 -102600 34200 108300 39900 metal1 -102600 34200 108300 45600 metal2 -102600 39900 108300 45600 metal1 -102600 39900 108300 62700 metal2 -) -_131_ -( -85500 57000 91200 62700 metal1 -85500 57000 91200 68400 metal2 -85500 62700 91200 68400 metal2 -85500 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal1 -74100 51300 79800 57000 metal1 -74100 51300 79800 57000 metal2 -74100 51300 85500 57000 metal3 -79800 51300 85500 57000 metal2 -79800 51300 85500 57000 metal1 -79800 51300 91200 57000 metal3 -85500 51300 91200 57000 metal2 -85500 51300 91200 62700 metal2 -74100 45600 79800 57000 metal2 -74100 45600 79800 51300 metal1 -) -_132_ -( -96900 62700 102600 74100 metal2 -96900 62700 102600 68400 metal1 -96900 79800 102600 85500 metal1 -96900 79800 102600 91200 metal2 -96900 85500 102600 91200 metal1 -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 74100 102600 85500 metal2 -96900 74100 102600 79800 metal2 -96900 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -102600 74100 108300 79800 metal1 -96900 68400 102600 79800 metal2 -) -_133_ -( -91200 119700 96900 125400 metal1 -91200 119700 96900 125400 metal2 -91200 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -91200 108300 96900 119700 metal2 -91200 108300 96900 114000 metal1 -91200 114000 96900 125400 metal2 -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -85500 114000 96900 119700 metal3 -91200 114000 96900 119700 metal2 -91200 114000 96900 119700 metal1 -) -_134_ -( -108300 136800 114000 142500 metal1 -108300 131100 114000 142500 metal2 -108300 131100 114000 136800 metal1 -108300 136800 114000 148200 metal2 -108300 142500 114000 148200 metal1 -) -_135_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 131100 metal2 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -119700 131100 125400 136800 metal1 -119700 125400 125400 136800 metal2 -119700 131100 125400 142500 metal2 -119700 136800 125400 142500 metal1 -) -_136_ -( -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 96900 148200 108300 metal2 -142500 85500 148200 91200 metal1 -142500 85500 148200 91200 metal2 -142500 85500 153900 91200 metal3 -148200 85500 153900 91200 metal2 -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 91200 153900 102600 metal2 -148200 91200 153900 96900 metal1 -148200 85500 153900 96900 metal2 -148200 85500 159600 91200 metal3 -153900 85500 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -_137_ -( -136800 102600 142500 108300 metal1 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 108300 metal1 -148200 102600 153900 108300 metal1 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -142500 102600 153900 108300 metal3 -142500 96900 148200 108300 metal2 -142500 96900 148200 102600 metal1 -153900 96900 159600 108300 metal2 -153900 96900 159600 102600 metal1 -153900 108300 159600 114000 metal1 -153900 102600 159600 114000 metal2 -) -_138_ -( -131100 85500 136800 91200 metal1 -131100 85500 136800 91200 metal2 -131100 85500 142500 91200 metal3 -136800 85500 142500 91200 metal2 -136800 85500 142500 108300 metal2 -136800 102600 142500 108300 metal1 -119700 91200 125400 96900 metal1 -119700 91200 125400 102600 metal2 -119700 96900 125400 102600 metal1 -119700 85500 125400 96900 metal2 -119700 85500 125400 91200 metal1 -119700 85500 125400 91200 metal2 -119700 85500 136800 91200 metal3 -) -_139_ -( -136800 102600 142500 114000 metal2 -136800 108300 142500 119700 metal2 -136800 114000 142500 119700 metal1 -136800 108300 142500 114000 metal2 -136800 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -131100 108300 136800 114000 metal1 -131100 108300 136800 114000 metal2 -131100 108300 142500 114000 metal3 -131100 102600 136800 108300 metal1 -131100 102600 136800 108300 metal2 -131100 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 102600 142500 108300 metal1 -) -_140_ -( -68400 85500 74100 91200 metal1 -68400 74100 74100 91200 metal2 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -68400 91200 74100 102600 metal2 -68400 91200 74100 96900 metal1 -68400 85500 74100 96900 metal2 -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 74100 102600 metal3 -68400 96900 74100 102600 metal2 -68400 96900 74100 102600 metal1 -) -_141_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -57000 79800 62700 85500 metal1 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -62700 79800 74100 85500 metal3 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal1 -68400 74100 74100 85500 metal2 -57000 79800 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_142_ -( -62700 108300 68400 114000 metal1 -62700 102600 68400 114000 metal2 -62700 85500 68400 108300 metal2 -62700 85500 68400 91200 metal1 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -79800 102600 91200 108300 metal3 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal1 -62700 51300 68400 91200 metal2 -62700 51300 68400 57000 metal1 -62700 51300 68400 57000 metal2 -62700 51300 85500 57000 metal3 -79800 51300 85500 57000 metal2 -79800 39900 85500 57000 metal2 -79800 39900 85500 45600 metal1 -79800 39900 85500 45600 metal2 -79800 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -62700 102600 68400 108300 metal2 -62700 102600 85500 108300 metal3 -79800 91200 85500 108300 metal2 -79800 91200 85500 96900 metal1 -) -_143_ -( -114000 114000 119700 119700 metal1 -114000 108300 119700 119700 metal2 -114000 108300 119700 114000 metal2 -114000 108300 142500 114000 metal3 -136800 108300 142500 114000 metal2 -136800 102600 142500 114000 metal2 -136800 102600 142500 108300 metal1 -) -_144_ -( -119700 114000 125400 125400 metal2 -119700 119700 125400 125400 metal2 -119700 119700 131100 125400 metal3 -125400 119700 131100 125400 metal2 -125400 119700 131100 131100 metal2 -125400 125400 131100 131100 metal1 -114000 119700 119700 125400 metal1 -114000 119700 119700 125400 metal2 -114000 119700 125400 125400 metal3 -114000 114000 119700 119700 metal1 -114000 114000 119700 119700 metal2 -114000 114000 125400 119700 metal3 -119700 114000 125400 119700 metal2 -119700 114000 125400 119700 metal1 -) -_145_ -( -108300 114000 114000 119700 metal1 -108300 114000 114000 125400 metal2 -108300 125400 114000 131100 metal2 -108300 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal1 -108300 131100 114000 136800 metal1 -108300 125400 114000 136800 metal2 -108300 119700 114000 125400 metal2 -108300 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 119700 119700 125400 metal1 -108300 119700 114000 131100 metal2 -) -_146_ -( -108300 119700 114000 125400 metal1 -108300 114000 114000 125400 metal2 -108300 114000 114000 119700 metal1 -) -_147_ -( -79800 119700 85500 125400 metal1 -79800 119700 85500 125400 metal2 -79800 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal2 -102600 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 119700 metal1 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -) -_148_ -( -74100 74100 79800 79800 metal1 -74100 68400 79800 79800 metal2 -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 74100 metal1 -) -_149_ -( -79800 68400 85500 74100 metal1 -79800 57000 85500 74100 metal2 -79800 57000 85500 62700 metal2 -79800 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -) -_150_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 125400 metal2 -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_151_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_152_ -( -68400 119700 74100 125400 metal1 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -68400 114000 74100 119700 metal1 -68400 114000 74100 125400 metal2 -) -_153_ -( -74100 119700 79800 125400 metal1 -74100 119700 79800 125400 metal2 -74100 119700 85500 125400 metal3 -79800 119700 85500 125400 metal2 -79800 119700 85500 125400 metal1 -79800 114000 85500 119700 metal1 -79800 114000 85500 125400 metal2 -) -_154_ -( -68400 114000 74100 119700 metal1 -68400 114000 74100 125400 metal2 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -) -_155_ -( -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -) -_156_ -( -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 114000 74100 125400 metal2 -68400 114000 74100 119700 metal1 -) -_157_ -( -74100 119700 79800 125400 metal1 -74100 114000 79800 125400 metal2 -74100 114000 79800 119700 metal1 -) -_158_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 96900 metal2 -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 91200 91200 96900 metal1 -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -79800 108300 96900 114000 metal3 -91200 108300 96900 114000 metal2 -91200 108300 96900 119700 metal2 -91200 114000 96900 119700 metal1 -68400 91200 74100 96900 metal2 -68400 91200 85500 96900 metal3 -68400 102600 74100 108300 metal1 -68400 102600 74100 114000 metal2 -68400 108300 74100 114000 metal2 -68400 108300 85500 114000 metal3 -62700 51300 68400 91200 metal2 -62700 51300 68400 57000 metal1 -62700 39900 68400 57000 metal2 -62700 39900 68400 45600 metal2 -62700 39900 85500 45600 metal3 -79800 39900 85500 45600 metal2 -79800 39900 85500 45600 metal1 -79800 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -68400 91200 74100 108300 metal2 -) -_159_ -( -131100 136800 136800 142500 metal1 -131100 136800 136800 142500 metal2 -131100 136800 148200 142500 metal3 -142500 136800 148200 142500 metal2 -142500 131100 148200 142500 metal2 -142500 131100 148200 136800 metal1 -85500 108300 91200 114000 metal1 -85500 108300 91200 114000 metal2 -85500 108300 102600 114000 metal3 -96900 108300 102600 114000 metal2 -96900 102600 102600 114000 metal2 -96900 102600 102600 108300 metal2 -96900 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 96900 114000 108300 metal2 -114000 85500 119700 91200 metal1 -114000 79800 119700 91200 metal2 -114000 79800 119700 85500 metal2 -114000 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -142500 119700 148200 136800 metal2 -142500 119700 148200 125400 metal1 -136800 74100 142500 85500 metal2 -136800 74100 142500 79800 metal1 -108300 96900 114000 102600 metal1 -108300 96900 114000 102600 metal2 -108300 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 85500 119700 102600 metal2 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 119700 142500 metal3 -114000 136800 119700 142500 metal2 -114000 136800 136800 142500 metal3 -79800 119700 85500 142500 metal2 -79800 136800 85500 142500 metal2 -79800 136800 96900 142500 metal3 -79800 119700 85500 125400 metal1 -79800 119700 85500 125400 metal2 -79800 119700 91200 125400 metal3 -85500 119700 91200 125400 metal2 -85500 108300 91200 125400 metal2 -114000 131100 119700 142500 metal2 -114000 131100 119700 136800 metal1 -) -_160_ -( -153900 91200 159600 96900 metal1 -153900 85500 159600 96900 metal2 -153900 85500 159600 91200 metal2 -114000 85500 159600 91200 metal3 -114000 85500 119700 91200 metal2 -114000 85500 119700 91200 metal1 -68400 108300 74100 114000 metal1 -68400 108300 74100 119700 metal2 -68400 114000 74100 119700 metal2 -68400 114000 79800 119700 metal3 -74100 114000 79800 119700 metal2 -74100 119700 79800 125400 metal1 -74100 119700 79800 131100 metal2 -74100 125400 79800 131100 metal2 -68400 125400 79800 131100 metal3 -68400 125400 74100 131100 metal2 -68400 125400 74100 159600 metal2 -68400 153900 74100 159600 metal2 -68400 153900 119700 159600 metal3 -114000 153900 119700 159600 metal2 -74100 114000 79800 125400 metal2 -148200 136800 153900 142500 metal1 -148200 136800 153900 142500 metal2 -148200 136800 159600 142500 metal3 -153900 136800 159600 142500 metal2 -114000 153900 159600 159600 metal3 -153900 153900 159600 159600 metal2 -153900 136800 159600 159600 metal2 -153900 119700 159600 142500 metal2 -74100 114000 91200 119700 metal3 -85500 114000 91200 119700 metal2 -85500 114000 91200 119700 metal1 -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -153900 96900 165300 102600 metal3 -159600 96900 165300 102600 metal2 -159600 96900 165300 119700 metal2 -159600 114000 165300 119700 metal2 -153900 114000 165300 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 125400 metal2 -136800 119700 142500 125400 metal1 -136800 119700 142500 125400 metal2 -136800 119700 159600 125400 metal3 -153900 119700 159600 125400 metal2 -153900 91200 159600 102600 metal2 -114000 142500 119700 148200 metal1 -114000 142500 119700 159600 metal2 -108300 91200 114000 96900 metal1 -108300 85500 114000 96900 metal2 -108300 85500 114000 91200 metal2 -108300 85500 119700 91200 metal3 -) -_161_ -( -74100 114000 79800 119700 metal1 -74100 114000 79800 119700 metal2 -74100 114000 85500 119700 metal3 -79800 114000 85500 119700 metal2 -79800 114000 85500 125400 metal2 -79800 119700 85500 125400 metal1 -) -_162_ -( -62700 114000 68400 119700 metal1 -62700 114000 68400 125400 metal2 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 119700 74100 125400 metal1 -) -_163_ -( -62700 114000 68400 119700 metal1 -62700 108300 68400 119700 metal2 -62700 108300 68400 114000 metal1 -) -_164_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 114000 metal2 -62700 108300 74100 114000 metal3 -68400 108300 74100 114000 metal2 -68400 108300 74100 119700 metal2 -68400 114000 74100 119700 metal1 -) -_165_ -( -131100 131100 136800 136800 metal2 -131100 131100 148200 136800 metal3 -142500 131100 148200 136800 metal2 -142500 131100 148200 136800 metal1 -91200 96900 96900 108300 metal2 -91200 96900 96900 102600 metal2 -91200 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 102600 metal1 -91200 136800 96900 142500 metal1 -91200 131100 96900 142500 metal2 -131100 131100 136800 142500 metal2 -131100 136800 136800 142500 metal1 -114000 85500 119700 91200 metal1 -114000 85500 119700 91200 metal2 -114000 85500 142500 91200 metal3 -136800 85500 142500 91200 metal2 -136800 79800 142500 91200 metal2 -136800 79800 142500 85500 metal1 -142500 119700 148200 136800 metal2 -142500 119700 148200 125400 metal1 -136800 74100 142500 85500 metal2 -136800 74100 142500 79800 metal1 -91200 102600 96900 119700 metal2 -91200 114000 96900 119700 metal1 -108300 85500 114000 102600 metal2 -108300 85500 114000 91200 metal2 -108300 85500 119700 91200 metal3 -91200 131100 96900 136800 metal2 -91200 131100 119700 136800 metal3 -114000 131100 119700 136800 metal2 -114000 131100 119700 136800 metal1 -114000 131100 136800 136800 metal3 -91200 114000 96900 136800 metal2 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 96900 108300 metal3 -91200 102600 96900 108300 metal2 -) -_166_ -( -142500 131100 148200 136800 metal1 -142500 125400 148200 136800 metal2 -142500 125400 148200 131100 metal1 -) -_167_ -( -96900 79800 102600 85500 metal1 -96900 79800 102600 91200 metal2 -96900 85500 102600 91200 metal1 -96900 85500 102600 91200 metal2 -96900 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_168_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -96900 85500 102600 91200 metal2 -96900 85500 102600 91200 metal1 -) -_169_ -( -131100 102600 136800 108300 metal1 -131100 96900 136800 108300 metal2 -119700 96900 125400 102600 metal1 -119700 96900 125400 102600 metal2 -119700 96900 131100 102600 metal3 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal1 -125400 108300 131100 114000 metal1 -125400 108300 131100 114000 metal2 -125400 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 102600 136800 114000 metal2 -125400 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -) -_170_ -( -131100 91200 136800 96900 metal1 -131100 91200 136800 102600 metal2 -131100 96900 136800 102600 metal1 -131100 85500 136800 91200 metal1 -131100 85500 136800 96900 metal2 -) -_171_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -131100 96900 136800 108300 metal2 -114000 102600 119700 114000 metal2 -114000 108300 119700 114000 metal1 -114000 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -131100 96900 142500 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -114000 96900 119700 108300 metal2 -114000 96900 119700 102600 metal1 -) -_172_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -119700 119700 125400 131100 metal2 -119700 119700 125400 125400 metal1 -) -_173_ -( -108300 125400 114000 131100 metal2 -108300 125400 119700 131100 metal3 -114000 125400 119700 131100 metal2 -114000 125400 119700 131100 metal1 -102600 125400 108300 131100 metal1 -102600 125400 108300 131100 metal2 -102600 125400 114000 131100 metal3 -108300 131100 114000 136800 metal1 -108300 125400 114000 136800 metal2 -) -_174_ -( -108300 102600 114000 119700 metal2 -108300 102600 114000 108300 metal1 -102600 96900 108300 102600 metal1 -102600 96900 108300 102600 metal2 -102600 96900 114000 102600 metal3 -108300 96900 114000 102600 metal2 -108300 96900 114000 108300 metal2 -108300 114000 114000 119700 metal1 -108300 114000 114000 119700 metal2 -108300 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 131100 metal2 -114000 125400 119700 131100 metal1 -) -_175_ -( -136800 91200 142500 96900 metal1 -136800 91200 142500 96900 metal2 -136800 91200 148200 96900 metal3 -142500 91200 148200 96900 metal2 -142500 91200 148200 96900 metal1 -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 96900 153900 108300 metal2 -148200 102600 153900 108300 metal1 -142500 91200 148200 102600 metal2 -) -_176_ -( -136800 85500 142500 96900 metal2 -136800 91200 142500 96900 metal1 -136800 85500 142500 91200 metal1 -136800 85500 142500 91200 metal2 -136800 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 91200 metal1 -) -_177_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -114000 102600 119700 114000 metal2 -114000 108300 119700 114000 metal1 -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 136800 102600 metal1 -131100 91200 136800 102600 metal2 -131100 91200 136800 96900 metal2 -131100 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 96900 metal1 -114000 96900 119700 108300 metal2 -) -_178_ -( -102600 108300 108300 114000 metal1 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 102600 114000 114000 metal2 -108300 102600 114000 108300 metal1 -) -_179_ -( -91200 108300 96900 114000 metal1 -91200 108300 96900 114000 metal2 -91200 108300 102600 114000 metal3 -96900 108300 102600 114000 metal2 -96900 108300 102600 119700 metal2 -96900 114000 102600 119700 metal1 -96900 114000 102600 119700 metal2 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -102600 114000 108300 119700 metal1 -) -_180_ -( -102600 108300 108300 119700 metal2 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 108300 114000 114000 metal1 -102600 114000 108300 125400 metal2 -102600 119700 108300 125400 metal1 -96900 114000 102600 119700 metal1 -96900 114000 102600 119700 metal2 -96900 114000 108300 119700 metal3 -102600 114000 108300 119700 metal2 -) -_181_ -( -102600 114000 108300 119700 metal1 -102600 114000 108300 119700 metal2 -) -_182_ -( -102600 119700 108300 125400 metal1 -102600 114000 108300 125400 metal2 -102600 114000 108300 119700 metal1 -102600 125400 108300 131100 metal1 -102600 119700 108300 131100 metal2 -) -_183_ -( -102600 114000 108300 119700 metal1 -102600 108300 108300 119700 metal2 -102600 108300 108300 114000 metal2 -102600 108300 114000 114000 metal3 -108300 108300 114000 114000 metal2 -108300 108300 114000 114000 metal1 -) -_184_ -( -108300 108300 114000 114000 metal1 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 102600 119700 114000 metal2 -114000 102600 119700 108300 metal1 -) -_185_ -( -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -142500 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 91200 153900 102600 metal2 -148200 91200 153900 96900 metal1 -) -_186_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 153900 102600 metal3 -148200 96900 153900 102600 metal2 -148200 96900 153900 102600 metal1 -) -_187_ -( -142500 102600 148200 108300 metal1 -142500 96900 148200 108300 metal2 -142500 96900 148200 102600 metal1 -) -_188_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 108300 metal2 -136800 102600 142500 108300 metal2 -136800 102600 148200 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 108300 metal1 -) -_189_ -( -119700 102600 125400 108300 metal1 -119700 102600 125400 108300 metal2 -119700 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 96900 136800 108300 metal2 -131100 96900 136800 102600 metal2 -131100 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_190_ -( -125400 102600 131100 108300 metal1 -125400 102600 131100 114000 metal2 -125400 108300 131100 114000 metal2 -125400 108300 136800 114000 metal3 -131100 108300 136800 114000 metal2 -131100 108300 136800 114000 metal1 -) -_191_ -( -119700 108300 125400 114000 metal1 -119700 102600 125400 114000 metal2 -119700 102600 125400 108300 metal2 -119700 102600 131100 108300 metal3 -125400 102600 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_192_ -( -119700 108300 125400 114000 metal1 -119700 102600 125400 114000 metal2 -119700 102600 125400 108300 metal1 -) -_193_ -( -119700 91200 125400 102600 metal2 -119700 96900 125400 102600 metal1 -114000 91200 119700 96900 metal1 -114000 91200 119700 96900 metal2 -114000 91200 125400 96900 metal3 -119700 91200 125400 96900 metal2 -119700 91200 125400 96900 metal1 -) -_194_ -( -119700 96900 125400 102600 metal1 -119700 96900 125400 108300 metal2 -119700 102600 125400 108300 metal1 -) -_195_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 108300 metal2 -108300 102600 125400 108300 metal3 -119700 102600 125400 108300 metal2 -119700 102600 125400 108300 metal1 -) -_196_ -( -114000 114000 119700 119700 metal1 -114000 108300 119700 119700 metal2 -114000 108300 119700 114000 metal1 -) -_197_ -( -114000 119700 119700 125400 metal1 -114000 108300 119700 125400 metal2 -114000 108300 119700 114000 metal1 -) -_198_ -( -108300 102600 114000 108300 metal1 -108300 102600 114000 114000 metal2 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_199_ -( -102600 96900 108300 102600 metal1 -102600 96900 108300 108300 metal2 -102600 102600 108300 108300 metal2 -102600 102600 119700 108300 metal3 -114000 102600 119700 108300 metal2 -114000 102600 119700 108300 metal1 -) -_200_ -( -74100 68400 79800 74100 metal2 -74100 68400 85500 74100 metal3 -79800 68400 85500 74100 metal2 -79800 68400 85500 79800 metal2 -79800 74100 85500 79800 metal1 -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 62700 79800 68400 metal1 -74100 62700 79800 74100 metal2 -) -_201_ -( -79800 74100 85500 79800 metal1 -79800 74100 85500 79800 metal2 -79800 74100 91200 79800 metal3 -85500 74100 91200 79800 metal2 -85500 74100 91200 79800 metal1 -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 108300 74100 metal3 -102600 68400 108300 74100 metal2 -102600 68400 108300 74100 metal1 -85500 74100 102600 79800 metal3 -96900 74100 102600 79800 metal2 -96900 68400 102600 79800 metal2 -) -_202_ -( -79800 79800 85500 91200 metal2 -79800 85500 85500 91200 metal1 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal1 -79800 74100 85500 79800 metal1 -79800 74100 85500 85500 metal2 -) -_203_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 85500 91200 metal3 -79800 85500 85500 91200 metal2 -79800 85500 85500 91200 metal1 -68400 79800 74100 91200 metal2 -68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 79800 91200 metal3 -62700 79800 68400 85500 metal1 -62700 79800 68400 85500 metal2 -62700 79800 74100 85500 metal3 -68400 79800 74100 85500 metal2 -68400 79800 74100 85500 metal1 -) -_204_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 85500 91200 metal3 -79800 85500 85500 91200 metal2 -79800 85500 85500 91200 metal1 -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 -74100 91200 79800 96900 metal1 -74100 85500 79800 96900 metal2 -) -_205_ -( -85500 85500 91200 91200 metal1 -85500 85500 91200 91200 metal2 -85500 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 96900 metal2 -102600 91200 108300 96900 metal1 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -79800 85500 85500 91200 metal1 -79800 85500 85500 91200 metal2 -79800 85500 91200 91200 metal3 -) -_206_ -( -85500 51300 91200 57000 metal1 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 62700 metal2 -91200 57000 96900 62700 metal1 -79800 51300 85500 57000 metal1 -79800 51300 85500 57000 metal2 -79800 51300 91200 57000 metal3 -) -_207_ -( -91200 57000 96900 68400 metal2 -91200 62700 96900 68400 metal1 -91200 62700 96900 68400 metal2 -91200 62700 102600 68400 metal3 -96900 62700 102600 68400 metal2 -96900 62700 102600 74100 metal2 -96900 68400 102600 74100 metal1 -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -85500 57000 96900 62700 metal3 -91200 57000 96900 62700 metal2 -91200 57000 96900 62700 metal1 -) -_208_ -( -91200 57000 96900 62700 metal1 -91200 57000 96900 62700 metal2 -91200 57000 102600 62700 metal3 -96900 57000 102600 62700 metal2 -96900 57000 102600 62700 metal1 -) -_209_ -( -96900 39900 102600 51300 metal2 -96900 45600 102600 51300 metal1 -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -96900 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -91200 39900 96900 45600 metal1 -91200 39900 96900 45600 metal2 -91200 39900 102600 45600 metal3 -) -_210_ -( -96900 51300 102600 62700 metal2 -96900 57000 102600 62700 metal1 -91200 51300 96900 57000 metal1 -91200 51300 96900 57000 metal2 -91200 51300 102600 57000 metal3 -96900 51300 102600 57000 metal2 -96900 45600 102600 51300 metal1 -96900 45600 102600 57000 metal2 -) -_211_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 108300 57000 metal3 -102600 51300 108300 57000 metal2 -102600 45600 108300 57000 metal2 -102600 45600 108300 51300 metal1 -102600 51300 114000 57000 metal3 -108300 51300 114000 57000 metal2 -108300 51300 114000 57000 metal1 -) -_212_ -( -91200 51300 96900 62700 metal2 -91200 57000 96900 62700 metal1 -96900 45600 102600 57000 metal2 -96900 45600 102600 51300 metal1 -91200 51300 96900 57000 metal1 -91200 51300 96900 57000 metal2 -91200 51300 102600 57000 metal3 -96900 51300 102600 57000 metal2 -96900 51300 102600 57000 metal1 -) -_213_ -( -96900 85500 102600 91200 metal2 -96900 85500 108300 91200 metal3 -102600 85500 108300 91200 metal2 -102600 85500 108300 96900 metal2 -102600 91200 108300 96900 metal1 -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -91200 85500 102600 91200 metal3 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -96900 57000 102600 62700 metal1 -96900 57000 102600 91200 metal2 -) -_214_ -( -102600 91200 108300 96900 metal1 -102600 91200 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_215_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 102600 metal2 -91200 96900 96900 102600 metal2 -91200 96900 108300 102600 metal3 -102600 96900 108300 102600 metal2 -102600 96900 108300 102600 metal1 -) -_216_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 91200 metal1 -) -_217_ -( -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_218_ -( -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal1 -62700 74100 68400 79800 metal1 -62700 74100 68400 79800 metal2 -62700 74100 74100 79800 metal3 -68400 74100 74100 79800 metal2 -68400 74100 74100 79800 metal1 -) -_219_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 79800 79800 85500 metal1 -) -_220_ -( -74100 74100 79800 79800 metal1 -74100 74100 79800 85500 metal2 -74100 79800 79800 85500 metal2 -74100 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_221_ -( -91200 68400 96900 74100 metal2 -91200 68400 119700 74100 metal3 -114000 68400 119700 74100 metal2 -114000 68400 119700 74100 metal1 -85500 68400 91200 74100 metal1 -85500 68400 91200 74100 metal2 -85500 68400 96900 74100 metal3 -114000 68400 125400 74100 metal3 -119700 68400 125400 74100 metal2 -119700 68400 125400 79800 metal2 -119700 74100 125400 79800 metal1 -91200 68400 96900 79800 metal2 -91200 74100 96900 79800 metal1 -) -_222_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 85500 metal2 -91200 79800 96900 85500 metal1 -91200 68400 96900 74100 metal1 -91200 68400 96900 79800 metal2 -) -_223_ -( -79800 68400 85500 74100 metal1 -79800 68400 85500 74100 metal2 -79800 68400 91200 74100 metal3 -85500 68400 91200 74100 metal2 -85500 68400 91200 74100 metal1 -) -_224_ -( -85500 68400 91200 74100 metal1 -85500 68400 91200 85500 metal2 -85500 79800 91200 85500 metal2 -85500 79800 96900 85500 metal3 -91200 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -) -_225_ -( -91200 74100 96900 79800 metal1 -91200 74100 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_226_ -( -91200 85500 96900 91200 metal1 -91200 85500 96900 91200 metal2 -) -_227_ -( -85500 57000 91200 68400 metal2 -85500 62700 91200 68400 metal2 -85500 62700 96900 68400 metal3 -91200 62700 96900 68400 metal2 -91200 62700 96900 68400 metal1 -79800 57000 85500 62700 metal1 -79800 57000 85500 62700 metal2 -79800 57000 91200 62700 metal3 -85500 57000 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_228_ -( -91200 62700 96900 68400 metal1 -91200 62700 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_229_ -( -96900 85500 102600 91200 metal1 -96900 85500 102600 108300 metal2 -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_230_ -( -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -91200 96900 96900 108300 metal2 -91200 96900 96900 102600 metal1 -85500 102600 91200 108300 metal1 -85500 102600 91200 108300 metal2 -85500 102600 96900 108300 metal3 -) -_231_ -( -102600 51300 108300 57000 metal1 -102600 51300 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_232_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_233_ -( -96900 51300 102600 57000 metal1 -96900 51300 102600 57000 metal2 -96900 51300 108300 57000 metal3 -102600 51300 108300 57000 metal2 -102600 51300 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_234_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 62700 metal2 -96900 57000 108300 62700 metal3 -102600 57000 108300 62700 metal2 -102600 57000 108300 62700 metal1 -) -_235_ -( -96900 57000 102600 62700 metal1 -96900 57000 102600 108300 metal2 -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_236_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 114000 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 108300 108300 119700 metal2 -102600 114000 108300 119700 metal2 -102600 114000 114000 119700 metal3 -108300 114000 114000 119700 metal2 -108300 114000 114000 125400 metal2 -108300 119700 114000 125400 metal2 -108300 119700 148200 125400 metal3 -142500 119700 148200 125400 metal2 -142500 119700 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_237_ -( -102600 96900 108300 102600 metal1 -102600 96900 108300 102600 metal2 -102600 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal1 -) -_238_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 108300 metal2 -96900 102600 108300 108300 metal3 -102600 102600 108300 108300 metal2 -102600 96900 108300 108300 metal2 -102600 96900 108300 102600 metal1 -) -_239_ -( -96900 114000 102600 119700 metal1 -96900 108300 102600 119700 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 108300 108300 114000 metal1 -96900 114000 102600 125400 metal2 -96900 119700 102600 125400 metal1 -) -_240_ -( -96900 102600 102600 108300 metal1 -96900 102600 102600 108300 metal2 -96900 102600 108300 108300 metal3 -102600 102600 108300 108300 metal2 -102600 102600 108300 114000 metal2 -102600 108300 108300 114000 metal1 -) -_241_ -( -91200 102600 96900 108300 metal1 -91200 102600 96900 108300 metal2 -91200 102600 102600 108300 metal3 -96900 102600 102600 108300 metal2 -96900 102600 102600 108300 metal1 -) -_242_ -( -85500 96900 91200 102600 metal1 -85500 96900 91200 102600 metal2 -85500 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -91200 102600 96900 108300 metal1 -91200 96900 96900 108300 metal2 -) -_243_ -( -85500 91200 91200 102600 metal2 -85500 91200 91200 96900 metal1 -79800 96900 85500 102600 metal1 -79800 96900 85500 102600 metal2 -79800 96900 91200 102600 metal3 -85500 96900 91200 102600 metal2 -85500 102600 91200 108300 metal1 -85500 96900 91200 108300 metal2 -) -_244_ -( -85500 91200 91200 96900 metal1 -85500 91200 91200 96900 metal2 -85500 91200 102600 96900 metal3 -96900 91200 102600 96900 metal2 -96900 91200 102600 96900 metal1 -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 91200 96900 metal3 -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 74100 91200 metal3 -68400 85500 74100 91200 metal2 -68400 85500 74100 96900 metal2 -62700 57000 68400 91200 metal2 -62700 57000 68400 62700 metal1 -85500 39900 91200 45600 metal1 -85500 39900 91200 45600 metal2 -85500 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -68400 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 39900 91200 51300 metal2 -62700 45600 68400 62700 metal2 -62700 45600 68400 51300 metal2 -62700 45600 74100 51300 metal3 -) -_245_ -( -131100 125400 136800 136800 metal2 -131100 79800 136800 114000 metal2 -131100 108300 136800 119700 metal2 -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -96900 85500 114000 91200 metal3 -96900 85500 102600 91200 metal2 -96900 85500 102600 96900 metal2 -96900 91200 102600 96900 metal1 -96900 136800 102600 142500 metal1 -96900 131100 102600 142500 metal2 -114000 79800 119700 85500 metal1 -114000 79800 119700 85500 metal2 -114000 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -125400 114000 136800 119700 metal3 -131100 114000 136800 119700 metal2 -108300 79800 114000 91200 metal2 -108300 79800 114000 85500 metal2 -108300 79800 119700 85500 metal3 -131100 114000 136800 131100 metal2 -96900 131100 102600 136800 metal2 -96900 131100 136800 136800 metal3 -131100 131100 136800 136800 metal2 -131100 131100 136800 136800 metal1 -131100 79800 148200 85500 metal3 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal1 -131100 108300 136800 114000 metal2 -131100 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -96900 125400 102600 136800 metal2 -96900 125400 102600 131100 metal1 -131100 125400 142500 131100 metal2 -136800 125400 142500 131100 metal1 -) -_246_ -( -136800 125400 142500 131100 metal1 -136800 125400 142500 131100 metal2 -136800 125400 148200 131100 metal3 -142500 125400 148200 131100 metal2 -142500 125400 148200 131100 metal1 -) -_247_ -( -74100 102600 79800 108300 metal1 -74100 102600 79800 108300 metal2 -74100 102600 85500 108300 metal3 -79800 102600 85500 108300 metal2 -79800 102600 85500 108300 metal1 -) -_248_ -( -125400 74100 131100 119700 metal2 -125400 114000 131100 119700 metal1 -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -119700 74100 131100 79800 metal3 -125400 74100 131100 79800 metal2 -125400 74100 131100 79800 metal1 -85500 34200 91200 51300 metal2 -85500 45600 91200 51300 metal2 -85500 45600 114000 51300 metal3 -108300 45600 114000 51300 metal2 -108300 45600 114000 51300 metal1 -57000 74100 62700 79800 metal1 -57000 62700 62700 79800 metal2 -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 102600 metal2 -68400 96900 74100 102600 metal2 -68400 96900 79800 102600 metal3 -74100 96900 79800 102600 metal2 -74100 96900 79800 108300 metal2 -74100 102600 79800 108300 metal1 -57000 62700 62700 68400 metal2 -51300 62700 62700 68400 metal3 -51300 62700 57000 68400 metal2 -51300 45600 57000 68400 metal2 -51300 45600 57000 51300 metal2 -51300 45600 68400 51300 metal3 -62700 45600 68400 51300 metal2 -62700 39900 68400 51300 metal2 -62700 39900 68400 45600 metal2 -62700 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -108300 45600 125400 51300 metal3 -119700 45600 125400 51300 metal2 -119700 45600 125400 79800 metal2 -68400 34200 74100 45600 metal2 -68400 34200 74100 39900 metal2 -68400 34200 91200 39900 metal3 -85500 34200 91200 39900 metal2 -85500 34200 91200 39900 metal1 -57000 91200 68400 96900 metal3 -57000 91200 62700 96900 metal2 -57000 74100 62700 96900 metal2 -57000 62700 68400 68400 metal3 -62700 62700 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_249_ -( -142500 125400 148200 131100 metal1 -142500 114000 148200 131100 metal2 -91200 131100 96900 136800 metal1 -91200 131100 96900 142500 metal2 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -96900 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -125400 136800 148200 142500 metal3 -142500 136800 148200 142500 metal2 -142500 125400 148200 142500 metal2 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 74100 148200 85500 metal2 -142500 79800 148200 85500 metal1 -142500 114000 148200 119700 metal2 -142500 114000 153900 119700 metal3 -148200 114000 153900 119700 metal2 -148200 114000 153900 119700 metal1 -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -119700 74100 131100 79800 metal3 -114000 74100 119700 79800 metal1 -114000 74100 119700 79800 metal2 -114000 74100 125400 79800 metal3 -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 119700 85500 metal3 -114000 79800 119700 85500 metal2 -114000 74100 119700 85500 metal2 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -142500 79800 148200 119700 metal2 -) -_250_ -( -96900 125400 102600 131100 metal1 -96900 108300 102600 131100 metal2 -96900 108300 102600 114000 metal2 -96900 108300 108300 114000 metal3 -102600 108300 108300 114000 metal2 -102600 102600 108300 114000 metal2 -102600 102600 108300 108300 metal2 -102600 102600 114000 108300 metal3 -108300 102600 114000 108300 metal2 -108300 96900 114000 108300 metal2 -108300 96900 114000 102600 metal1 -) -_251_ -( -91200 96900 96900 102600 metal1 -91200 96900 96900 102600 metal2 -) -_252_ -( -79800 91200 85500 96900 metal1 -79800 91200 85500 102600 metal2 -79800 96900 85500 102600 metal2 -79800 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 96900 96900 102600 metal1 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 96900 metal2 -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 68400 79800 74100 metal2 -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 102600 39900 metal3 -96900 34200 102600 39900 metal2 -96900 34200 102600 51300 metal2 -96900 45600 102600 51300 metal2 -96900 45600 108300 51300 metal3 -102600 45600 108300 51300 metal2 -102600 45600 108300 51300 metal1 -74100 39900 79800 74100 metal2 -74100 39900 79800 45600 metal1 -74100 34200 79800 45600 metal2 -74100 34200 79800 39900 metal2 -74100 34200 96900 39900 metal3 -74100 68400 79800 85500 metal2 -) -_253_ -( -131100 79800 136800 114000 metal2 -131100 108300 136800 125400 metal2 -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -96900 125400 114000 131100 metal3 -108300 125400 114000 131100 metal2 -108300 119700 114000 131100 metal2 -108300 119700 114000 125400 metal2 -108300 119700 131100 125400 metal3 -125400 119700 131100 125400 metal2 -125400 119700 131100 125400 metal1 -119700 79800 125400 85500 metal1 -119700 79800 125400 85500 metal2 -119700 79800 136800 85500 metal3 -131100 79800 136800 85500 metal2 -131100 79800 136800 85500 metal1 -96900 131100 102600 136800 metal1 -96900 125400 102600 136800 metal2 -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 91200 96900 metal3 -85500 91200 91200 96900 metal2 -85500 79800 91200 96900 metal2 -85500 79800 91200 85500 metal2 -85500 79800 102600 85500 metal3 -96900 79800 102600 85500 metal2 -131100 119700 136800 131100 metal2 -131100 125400 136800 131100 metal1 -74100 96900 79800 102600 metal1 -74100 96900 79800 102600 metal2 -74100 96900 85500 102600 metal3 -79800 96900 85500 102600 metal2 -79800 91200 85500 102600 metal2 -96900 79800 125400 85500 metal3 -96900 74100 102600 85500 metal2 -96900 74100 102600 79800 metal1 -131100 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -131100 108300 136800 114000 metal2 -131100 108300 148200 114000 metal3 -142500 108300 148200 114000 metal2 -142500 108300 148200 114000 metal1 -125400 119700 136800 125400 metal3 -131100 119700 136800 125400 metal2 -) -_254_ -( -96900 119700 102600 125400 metal1 -96900 119700 102600 125400 metal2 -96900 119700 108300 125400 metal3 -102600 119700 108300 125400 metal2 -102600 119700 108300 125400 metal1 -) -_255_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 131100 metal2 -) -_256_ -( -96900 125400 102600 131100 metal1 -96900 125400 102600 136800 metal2 -96900 131100 102600 136800 metal1 -) -_257_ -( -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_258_ -( -102600 119700 108300 131100 metal2 -102600 125400 108300 131100 metal1 -102600 119700 108300 125400 metal2 -102600 119700 114000 125400 metal3 -108300 119700 114000 125400 metal2 -108300 119700 114000 125400 metal1 -96900 119700 102600 125400 metal1 -96900 119700 102600 125400 metal2 -96900 119700 108300 125400 metal3 -) -_259_ -( -96900 131100 102600 136800 metal1 -96900 131100 102600 142500 metal2 -96900 136800 102600 142500 metal1 -) -_260_ -( -96900 136800 102600 142500 metal1 -96900 136800 102600 142500 metal2 -) -_261_ -( -131100 136800 136800 142500 metal1 -131100 131100 136800 142500 metal2 -131100 131100 136800 136800 metal1 -) -_262_ -( -108300 119700 114000 131100 metal2 -108300 125400 114000 131100 metal1 -108300 119700 114000 125400 metal1 -108300 119700 114000 125400 metal2 -108300 119700 119700 125400 metal3 -114000 119700 119700 125400 metal2 -114000 114000 119700 125400 metal2 -114000 114000 119700 119700 metal1 -) -_263_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -) -_264_ -( -114000 125400 119700 131100 metal1 -114000 125400 119700 131100 metal2 -114000 125400 125400 131100 metal3 -119700 125400 125400 131100 metal2 -119700 125400 125400 131100 metal1 -119700 119700 125400 131100 metal2 -119700 119700 125400 125400 metal1 -) -_265_ -( -119700 125400 125400 131100 metal1 -119700 125400 125400 131100 metal2 -119700 125400 131100 131100 metal3 -125400 125400 131100 131100 metal2 -125400 125400 131100 131100 metal1 -) -_266_ -( -131100 125400 136800 131100 metal1 -131100 125400 136800 136800 metal2 -131100 131100 136800 136800 metal1 -) -_267_ -( -125400 136800 131100 142500 metal1 -125400 131100 131100 142500 metal2 -125400 131100 131100 136800 metal2 -125400 131100 136800 136800 metal3 -131100 131100 136800 136800 metal2 -131100 131100 136800 136800 metal1 -) -_268_ -( -136800 74100 142500 79800 metal1 -136800 74100 142500 79800 metal2 -136800 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 74100 148200 85500 metal2 -142500 79800 148200 85500 metal1 -) -_269_ -( -119700 119700 125400 125400 metal1 -119700 114000 125400 125400 metal2 -119700 114000 125400 119700 metal1 -) -_270_ -( -114000 108300 119700 114000 metal1 -114000 108300 119700 114000 metal2 -114000 108300 125400 114000 metal3 -119700 108300 125400 114000 metal2 -119700 108300 125400 119700 metal2 -119700 114000 125400 119700 metal1 -) -_271_ -( -108300 114000 114000 119700 metal1 -108300 108300 114000 119700 metal2 -108300 108300 114000 114000 metal2 -108300 108300 119700 114000 metal3 -114000 108300 119700 114000 metal2 -114000 108300 119700 114000 metal1 -) -_272_ -( -136800 91200 142500 96900 metal1 -136800 85500 142500 96900 metal2 -136800 85500 142500 91200 metal1 -136800 91200 142500 102600 metal2 -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -114000 114000 119700 119700 metal1 -114000 96900 119700 119700 metal2 -) -_273_ -( -136800 79800 142500 85500 metal1 -136800 79800 142500 85500 metal2 -136800 79800 148200 85500 metal3 -142500 79800 148200 85500 metal2 -142500 79800 148200 85500 metal1 -) -_274_ -( -142500 79800 148200 85500 metal1 -142500 79800 148200 85500 metal2 -) -_275_ -( -142500 119700 148200 125400 metal1 -142500 114000 148200 125400 metal2 -142500 114000 148200 119700 metal2 -142500 114000 153900 119700 metal3 -148200 114000 153900 119700 metal2 -148200 108300 153900 119700 metal2 -148200 108300 153900 114000 metal1 -) -_276_ -( -136800 85500 142500 91200 metal1 -136800 85500 142500 91200 metal2 -136800 85500 148200 91200 metal3 -142500 85500 148200 91200 metal2 -142500 85500 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_277_ -( -142500 91200 148200 96900 metal1 -142500 91200 148200 96900 metal2 -142500 91200 153900 96900 metal3 -148200 91200 153900 96900 metal2 -148200 91200 153900 96900 metal1 -142500 91200 148200 102600 metal2 -142500 96900 148200 102600 metal1 -) -_278_ -( -136800 91200 142500 96900 metal1 -136800 91200 142500 96900 metal2 -136800 91200 148200 96900 metal3 -142500 91200 148200 96900 metal2 -142500 91200 148200 96900 metal1 -) -_279_ -( -142500 108300 148200 114000 metal1 -142500 108300 148200 114000 metal2 -142500 108300 153900 114000 metal3 -148200 108300 153900 114000 metal2 -148200 108300 153900 114000 metal1 -) -_280_ -( -148200 108300 153900 114000 metal1 -148200 108300 153900 119700 metal2 -148200 114000 153900 119700 metal1 -) -_281_ -( -131100 79800 136800 85500 metal1 -131100 74100 136800 85500 metal2 -131100 74100 136800 79800 metal2 -131100 74100 142500 79800 metal3 -136800 74100 142500 79800 metal2 -136800 74100 142500 79800 metal1 -) -_282_ -( -142500 96900 148200 102600 metal1 -142500 96900 148200 102600 metal2 -) -_283_ -( -136800 96900 142500 102600 metal1 -136800 96900 142500 102600 metal2 -136800 96900 148200 102600 metal3 -142500 96900 148200 102600 metal2 -142500 96900 148200 102600 metal1 -131100 102600 136800 108300 metal1 -131100 102600 136800 108300 metal2 -131100 102600 142500 108300 metal3 -136800 102600 142500 108300 metal2 -136800 96900 142500 108300 metal2 -) -_284_ -( -131100 91200 136800 102600 metal2 -131100 91200 136800 96900 metal1 -125400 96900 131100 102600 metal1 -125400 96900 131100 102600 metal2 -125400 96900 136800 102600 metal3 -131100 96900 136800 102600 metal2 -131100 96900 142500 102600 metal3 -136800 96900 142500 102600 metal2 -136800 96900 142500 102600 metal1 -) -_285_ -( -131100 79800 136800 85500 metal1 -131100 79800 136800 85500 metal2 -) -_286_ -( -131100 74100 136800 79800 metal1 -131100 74100 136800 79800 metal2 -) -_287_ -( -91200 114000 96900 119700 metal1 -91200 114000 96900 119700 metal2 -91200 114000 131100 119700 metal3 -125400 114000 131100 119700 metal2 -125400 114000 131100 119700 metal1 -) -_288_ -( -125400 91200 131100 96900 metal1 -125400 91200 131100 102600 metal2 -125400 96900 131100 102600 metal1 -) -_289_ -( -119700 96900 125400 102600 metal1 -119700 96900 125400 102600 metal2 -119700 96900 131100 102600 metal3 -125400 96900 131100 102600 metal2 -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_290_ -( -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_291_ -( -125400 102600 131100 108300 metal1 -125400 102600 131100 114000 metal2 -125400 108300 131100 114000 metal1 -) -_292_ -( -125400 119700 131100 125400 metal1 -125400 114000 131100 125400 metal2 -125400 114000 131100 119700 metal1 -) -_293_ -( -125400 114000 131100 119700 metal1 -125400 114000 131100 119700 metal2 -) -_294_ -( -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 85500 96900 metal3 -79800 91200 85500 96900 metal2 -79800 91200 85500 96900 metal1 -) -_295_ -( -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -) -_296_ -( -125400 96900 131100 102600 metal1 -125400 96900 131100 108300 metal2 -125400 102600 131100 108300 metal1 -) -_297_ -( -114000 96900 119700 102600 metal1 -114000 96900 119700 102600 metal2 -114000 96900 125400 102600 metal3 -119700 96900 125400 102600 metal2 -119700 96900 125400 108300 metal2 -119700 102600 125400 108300 metal2 -119700 102600 136800 108300 metal3 -131100 102600 136800 108300 metal2 -131100 102600 136800 108300 metal1 -) -_298_ -( -74100 85500 79800 96900 metal2 -74100 91200 79800 96900 metal1 -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -74100 85500 91200 91200 metal3 -85500 85500 91200 91200 metal2 -85500 85500 91200 91200 metal1 -85500 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 102600 metal2 -91200 96900 96900 102600 metal2 -91200 96900 119700 102600 metal3 -114000 96900 119700 102600 metal2 -114000 96900 119700 102600 metal1 -) -_299_ -( -68400 91200 74100 96900 metal1 -68400 91200 74100 96900 metal2 -68400 91200 79800 96900 metal3 -74100 91200 79800 96900 metal2 -74100 91200 79800 102600 metal2 -74100 96900 79800 102600 metal1 -) -_300_ -( -62700 91200 68400 96900 metal1 -62700 91200 68400 96900 metal2 -62700 91200 74100 96900 metal3 -68400 91200 74100 96900 metal2 -68400 91200 74100 96900 metal1 -) -_301_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -) -_302_ -( -74100 85500 79800 91200 metal1 -74100 74100 79800 91200 metal2 -74100 74100 79800 79800 metal1 -74100 74100 79800 79800 metal2 -74100 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -) -_303_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -) -_304_ -( -68400 85500 74100 91200 metal1 -68400 85500 74100 91200 metal2 -68400 85500 79800 91200 metal3 -74100 85500 79800 91200 metal2 -74100 85500 79800 91200 metal1 -68400 79800 74100 91200 metal2 -68400 79800 74100 85500 metal1 -) -_305_ -( -74100 85500 79800 91200 metal1 -74100 85500 79800 91200 metal2 -) -_306_ -( -62700 85500 68400 91200 metal1 -62700 85500 68400 91200 metal2 -62700 85500 79800 91200 metal3 -74100 85500 79800 91200 metal2 -74100 79800 79800 91200 metal2 -74100 79800 79800 85500 metal1 -) -_307_ -( -57000 74100 62700 79800 metal1 -57000 74100 62700 85500 metal2 -57000 79800 62700 85500 metal2 -57000 79800 68400 85500 metal3 -62700 79800 68400 85500 metal2 -62700 79800 68400 85500 metal1 -) -_308_ -( -62700 51300 68400 57000 metal1 -62700 51300 68400 62700 metal2 -62700 57000 68400 62700 metal1 -) -_309_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 85500 metal2 -68400 79800 74100 85500 metal1 -) -_310_ -( -68400 79800 74100 85500 metal1 -68400 79800 74100 85500 metal2 -68400 79800 79800 85500 metal3 -74100 79800 79800 85500 metal2 -74100 74100 79800 85500 metal2 -74100 74100 79800 79800 metal1 -) -_311_ -( -68400 74100 74100 79800 metal1 -68400 74100 74100 79800 metal2 -68400 74100 79800 79800 metal3 -74100 74100 79800 79800 metal2 -74100 74100 79800 79800 metal1 -74100 74100 85500 79800 metal3 -79800 74100 85500 79800 metal2 -79800 74100 85500 79800 metal1 -79800 74100 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_312_ -( -68400 68400 74100 74100 metal1 -68400 68400 74100 74100 metal2 -68400 68400 79800 74100 metal3 -74100 68400 79800 74100 metal2 -74100 68400 79800 74100 metal1 -) -_313_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 62700 metal2 -62700 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 74100 metal2 -68400 68400 74100 74100 metal1 -) -_314_ -( -62700 57000 68400 62700 metal1 -62700 57000 68400 68400 metal2 -62700 62700 68400 68400 metal1 -) -_315_ -( -114000 79800 119700 85500 metal1 -114000 79800 119700 85500 metal2 -) -_316_ -( -114000 74100 119700 79800 metal1 -114000 74100 119700 79800 metal2 -114000 74100 125400 79800 metal3 -119700 74100 125400 79800 metal2 -119700 74100 125400 79800 metal1 -) -_317_ -( -79800 74100 85500 79800 metal1 -79800 68400 85500 79800 metal2 -79800 68400 85500 74100 metal2 -79800 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -) -_318_ -( -85500 68400 91200 74100 metal2 -85500 68400 96900 74100 metal3 -91200 68400 96900 74100 metal2 -91200 68400 96900 74100 metal1 -85500 68400 91200 79800 metal2 -85500 74100 91200 79800 metal1 -85500 62700 91200 68400 metal1 -85500 62700 91200 74100 metal2 -) -_319_ -( -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal1 -) -_320_ -( -91200 68400 96900 74100 metal1 -91200 68400 96900 74100 metal2 -91200 68400 102600 74100 metal3 -96900 68400 102600 74100 metal2 -96900 68400 102600 74100 metal1 -) -_321_ -( -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -) -_322_ -( -119700 74100 125400 79800 metal1 -119700 74100 125400 79800 metal2 -) -_323_ -( -85500 85500 91200 91200 metal1 -85500 85500 91200 91200 metal2 -) -_324_ -( -85500 79800 91200 85500 metal1 -85500 79800 91200 85500 metal2 -) -_325_ -( -79800 79800 85500 85500 metal1 -79800 79800 85500 85500 metal2 -79800 79800 91200 85500 metal3 -85500 79800 91200 85500 metal2 -85500 79800 91200 85500 metal1 -) -_326_ -( -85500 74100 91200 79800 metal1 -85500 74100 91200 85500 metal2 -85500 79800 91200 85500 metal1 -) -_327_ -( -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -96900 45600 108300 51300 metal3 -102600 45600 108300 51300 metal2 -102600 45600 108300 51300 metal1 -91200 45600 96900 57000 metal2 -91200 45600 96900 51300 metal2 -91200 45600 102600 51300 metal3 -85500 79800 91200 85500 metal1 -85500 51300 91200 85500 metal2 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 57000 metal1 -) -_328_ -( -102600 45600 108300 51300 metal1 -102600 39900 108300 51300 metal2 -102600 39900 108300 45600 metal1 -) -_329_ -( -79800 39900 85500 45600 metal1 -79800 39900 85500 45600 metal2 -79800 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -) -_330_ -( -102600 39900 108300 45600 metal1 -102600 39900 108300 45600 metal2 -102600 39900 114000 45600 metal3 -108300 39900 114000 45600 metal2 -108300 39900 114000 51300 metal2 -108300 45600 114000 51300 metal1 -) -_331_ -( -96900 45600 102600 51300 metal1 -96900 45600 102600 51300 metal2 -) -_332_ -( -96900 51300 102600 57000 metal1 -96900 45600 102600 57000 metal2 -91200 39900 96900 45600 metal1 -91200 39900 96900 51300 metal2 -91200 45600 96900 51300 metal2 -91200 45600 102600 51300 metal3 -96900 45600 102600 51300 metal2 -96900 45600 102600 51300 metal1 -) -_333_ -( -96900 39900 102600 45600 metal1 -96900 39900 102600 45600 metal2 -) -_334_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_335_ -( -85500 39900 91200 45600 metal1 -85500 39900 91200 45600 metal2 -85500 39900 96900 45600 metal3 -91200 39900 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_336_ -( -85500 34200 91200 39900 metal1 -85500 34200 91200 39900 metal2 -85500 34200 96900 39900 metal3 -91200 34200 96900 39900 metal2 -91200 34200 96900 45600 metal2 -91200 39900 96900 45600 metal1 -) -_337_ -( -85500 45600 91200 57000 metal2 -85500 51300 91200 57000 metal2 -85500 51300 96900 57000 metal3 -91200 51300 96900 57000 metal2 -91200 51300 96900 57000 metal1 -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 45600 91200 51300 metal1 -) -_338_ -( -85500 51300 91200 57000 metal1 -85500 45600 91200 57000 metal2 -85500 45600 91200 51300 metal1 -) -_339_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -85500 45600 96900 51300 metal3 -91200 45600 96900 51300 metal2 -91200 39900 96900 51300 metal2 -91200 39900 96900 45600 metal1 -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -) -_340_ -( -85500 45600 91200 51300 metal1 -85500 45600 91200 51300 metal2 -) -_341_ -( -79800 45600 85500 51300 metal1 -79800 45600 85500 51300 metal2 -79800 45600 91200 51300 metal3 -85500 45600 91200 51300 metal2 -85500 45600 91200 51300 metal1 -85500 45600 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_342_ -( -68400 45600 74100 51300 metal1 -68400 45600 74100 51300 metal2 -68400 45600 79800 51300 metal3 -74100 45600 79800 51300 metal2 -74100 39900 79800 51300 metal2 -74100 39900 79800 45600 metal1 -) -_343_ -( -62700 51300 68400 57000 metal1 -62700 45600 68400 57000 metal2 -62700 45600 68400 51300 metal2 -62700 45600 74100 51300 metal3 -68400 45600 74100 51300 metal2 -68400 45600 74100 51300 metal1 -) -_344_ -( -68400 45600 74100 51300 metal1 -68400 39900 74100 51300 metal2 -68400 39900 74100 45600 metal1 -) -_345_ -( -85500 57000 91200 62700 metal1 -85500 57000 91200 62700 metal2 -) -_346_ -( -85500 51300 91200 57000 metal1 -85500 51300 91200 62700 metal2 -85500 57000 91200 62700 metal1 -) -_347_ -( -96900 74100 102600 79800 metal1 -96900 74100 102600 79800 metal2 -96900 74100 108300 79800 metal3 -102600 74100 108300 79800 metal2 -102600 74100 108300 85500 metal2 -102600 79800 108300 85500 metal1 -) -_348_ -( -108300 85500 114000 91200 metal1 -108300 85500 114000 119700 metal2 -108300 114000 114000 119700 metal2 -108300 114000 119700 119700 metal3 -114000 114000 119700 119700 metal2 -114000 114000 119700 136800 metal2 -114000 131100 119700 136800 metal1 -) -_349_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 85500 metal2 -102600 79800 114000 85500 metal3 -108300 79800 114000 85500 metal2 -108300 79800 114000 85500 metal1 -) -_350_ -( -102600 79800 108300 85500 metal1 -102600 79800 108300 91200 metal2 -102600 85500 108300 91200 metal1 -) -_351_ -( -136800 136800 142500 142500 metal1 -136800 136800 142500 142500 metal2 -136800 136800 153900 142500 metal3 -148200 136800 153900 142500 metal2 -148200 136800 153900 142500 metal1 -) -_352_ -( -102600 57000 108300 74100 metal2 -102600 68400 108300 74100 metal1 -108300 57000 114000 62700 metal1 -108300 57000 114000 62700 metal2 -102600 57000 114000 62700 metal3 -102600 57000 108300 62700 metal2 -96900 79800 102600 85500 metal1 -96900 79800 102600 85500 metal2 -96900 79800 108300 85500 metal3 -102600 79800 108300 85500 metal2 -102600 68400 108300 85500 metal2 -96900 57000 108300 62700 metal3 -96900 57000 102600 62700 metal2 -96900 45600 102600 62700 metal2 -96900 45600 102600 51300 metal2 -96900 39900 102600 51300 metal3 -96900 39900 108300 45600 metal3 -102600 39900 108300 45600 metal2 -102600 39900 108300 45600 metal1 -74100 45600 79800 51300 metal1 -74100 45600 79800 62700 metal2 -74100 57000 79800 62700 metal2 -74100 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -91200 91200 96900 96900 metal1 -91200 79800 96900 96900 metal2 -91200 79800 96900 85500 metal2 -91200 79800 102600 85500 metal3 -79800 96900 85500 102600 metal1 -79800 96900 85500 102600 metal2 -79800 96900 96900 102600 metal3 -91200 96900 96900 102600 metal2 -91200 91200 96900 102600 metal2 -79800 57000 102600 62700 metal3 -79800 57000 85500 68400 metal2 -79800 62700 85500 68400 metal1 -) -_353_ -( -136800 114000 142500 142500 metal2 -85500 114000 91200 119700 metal1 -85500 96900 91200 119700 metal2 -108300 142500 114000 148200 metal1 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 136800 119700 148200 metal2 -114000 136800 119700 142500 metal2 -114000 136800 125400 142500 metal3 -119700 136800 125400 142500 metal2 -119700 136800 125400 142500 metal1 -119700 136800 142500 142500 metal3 -136800 136800 142500 142500 metal2 -136800 136800 142500 142500 metal1 -148200 91200 153900 102600 metal2 -148200 91200 153900 96900 metal1 -148200 91200 153900 96900 metal2 -119700 91200 153900 96900 metal3 -119700 91200 125400 96900 metal2 -119700 85500 125400 96900 metal2 -119700 85500 125400 91200 metal1 -148200 96900 153900 108300 metal2 -148200 102600 153900 108300 metal2 -142500 102600 153900 108300 metal3 -142500 102600 148200 108300 metal2 -142500 102600 148200 119700 metal2 -142500 114000 148200 119700 metal2 -136800 114000 148200 119700 metal3 -136800 114000 142500 119700 metal2 -136800 114000 142500 119700 metal1 -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -57000 96900 91200 102600 metal3 -85500 96900 91200 102600 metal2 -57000 79800 62700 102600 metal2 -57000 79800 62700 85500 metal1 -148200 96900 153900 102600 metal2 -148200 96900 159600 102600 metal3 -153900 96900 159600 102600 metal2 -153900 96900 159600 102600 metal1 -85500 91200 91200 102600 metal3 -85500 91200 96900 96900 metal3 -91200 91200 96900 96900 metal2 -91200 91200 96900 96900 metal1 -91200 91200 125400 96900 metal3 -) -_354_ -( -85500 114000 91200 119700 metal1 -85500 114000 91200 119700 metal2 -) -_355_ -( -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -) -_356_ -( -119700 142500 125400 148200 metal1 -119700 136800 125400 148200 metal2 -119700 136800 125400 142500 metal1 -) -_357_ -( -153900 91200 159600 96900 metal1 -153900 91200 159600 96900 metal2 -) -_358_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -) -_359_ -( -119700 85500 125400 91200 metal1 -119700 85500 125400 91200 metal2 -) -_360_ -( -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 148200 119700 metal3 -142500 114000 148200 119700 metal2 -142500 114000 148200 125400 metal2 -142500 119700 148200 125400 metal1 -) -_361_ -( -57000 96900 62700 102600 metal1 -57000 96900 62700 102600 metal2 -) -_362_ -( -57000 74100 62700 79800 metal1 -57000 74100 62700 91200 metal2 -57000 85500 62700 91200 metal1 -) -_363_ -( -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 91200 68400 metal3 -85500 62700 91200 68400 metal2 -85500 62700 91200 68400 metal1 -) -_364_ -( -108300 62700 114000 68400 metal1 -108300 62700 114000 74100 metal2 -108300 68400 114000 74100 metal1 -) -_365_ -( -108300 57000 114000 62700 metal1 -108300 57000 114000 62700 metal2 -108300 57000 119700 62700 metal3 -114000 57000 119700 62700 metal2 -114000 57000 119700 68400 metal2 -114000 62700 119700 68400 metal1 -) -_366_ -( -108300 34200 114000 39900 metal1 -108300 34200 114000 45600 metal2 -108300 39900 114000 45600 metal1 -) -_367_ -( -74100 39900 79800 45600 metal1 -74100 39900 79800 51300 metal2 -74100 45600 79800 51300 metal1 -) -_368_ -( -96900 79800 102600 85500 metal1 -96900 79800 102600 85500 metal2 -) -_369_ -( -148200 136800 153900 142500 metal1 -148200 136800 153900 142500 metal2 -148200 136800 159600 142500 metal3 -153900 136800 159600 142500 metal2 -153900 136800 159600 142500 metal1 -) -_370_ -( -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -28500 62700 85500 68400 metal3 -28500 62700 34200 68400 metal2 -28500 62700 34200 85500 metal2 -28500 79800 34200 85500 metal2 -22800 79800 34200 85500 metal3 -22800 79800 28500 85500 metal2 -22800 79800 28500 159600 metal2 -22800 153900 28500 159600 metal2 -22800 153900 74100 159600 metal3 -68400 153900 74100 159600 metal2 -68400 153900 74100 165300 metal2 -68400 159600 74100 165300 metal2 -68400 159600 125400 165300 metal3 -119700 159600 125400 165300 metal2 -119700 159600 125400 176700 metal2 -119700 171000 125400 176700 metal1 -) -_371_ -( -102600 22800 108300 28500 metal1 -102600 22800 108300 28500 metal2 -102600 22800 114000 28500 metal3 -108300 22800 114000 28500 metal2 -108300 22800 114000 68400 metal2 -108300 62700 114000 68400 metal2 -102600 62700 114000 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 68400 metal1 -) -_372_ -( -114000 62700 119700 68400 metal1 -114000 62700 119700 68400 metal2 -114000 62700 153900 68400 metal3 -148200 62700 153900 68400 metal2 -148200 62700 153900 79800 metal2 -148200 74100 153900 79800 metal2 -148200 74100 176700 79800 metal3 -171000 74100 176700 79800 metal2 -171000 74100 176700 159600 metal2 -171000 153900 176700 159600 metal2 -125400 153900 176700 159600 metal3 -125400 153900 131100 159600 metal2 -125400 153900 131100 171000 metal2 -125400 165300 131100 171000 metal2 -119700 165300 131100 171000 metal3 -119700 165300 125400 171000 metal2 -119700 165300 125400 171000 metal1 -) -_373_ -( -108300 34200 114000 39900 metal1 -108300 34200 114000 39900 metal2 -108300 34200 119700 39900 metal3 -114000 34200 119700 39900 metal2 -114000 34200 119700 39900 metal1 -) -_374_ -( -62700 34200 68400 39900 metal1 -62700 34200 68400 45600 metal2 -62700 39900 68400 45600 metal2 -62700 39900 74100 45600 metal3 -68400 39900 74100 45600 metal2 -68400 39900 74100 45600 metal1 -) -_375_ -( -22800 85500 28500 91200 metal1 -22800 85500 28500 91200 metal2 -22800 85500 96900 91200 metal3 -91200 85500 96900 91200 metal2 -91200 85500 96900 91200 metal1 -) -_376_ -( -142500 131100 148200 136800 metal1 -142500 131100 148200 142500 metal2 -142500 136800 148200 142500 metal2 -142500 136800 153900 142500 metal3 -148200 136800 153900 142500 metal2 -148200 136800 153900 176700 metal2 -148200 171000 153900 176700 metal1 -) -_377_ -( -108300 96900 114000 102600 metal1 -108300 96900 114000 102600 metal2 -108300 96900 125400 102600 metal3 -119700 96900 125400 102600 metal2 -119700 91200 125400 102600 metal2 -119700 91200 125400 96900 metal2 -119700 91200 176700 96900 metal3 -171000 91200 176700 96900 metal2 -171000 91200 176700 96900 metal1 -) -_378_ -( -74100 142500 79800 148200 metal1 -74100 142500 79800 148200 metal2 -74100 142500 96900 148200 metal3 -91200 142500 96900 148200 metal2 -91200 136800 96900 148200 metal2 -91200 136800 96900 142500 metal1 -) -_379_ -( -131100 136800 136800 142500 metal1 -131100 136800 136800 148200 metal2 -131100 142500 136800 148200 metal2 -131100 142500 142500 148200 metal3 -136800 142500 142500 148200 metal2 -136800 142500 142500 148200 metal1 -) -_380_ -( -79800 22800 85500 28500 metal1 -79800 22800 85500 28500 metal2 -45600 22800 85500 28500 metal3 -45600 22800 51300 28500 metal2 -45600 22800 51300 119700 metal2 -45600 114000 51300 119700 metal2 -45600 114000 91200 119700 metal3 -85500 114000 91200 119700 metal2 -85500 114000 91200 119700 metal1 -) -_381_ -( -34200 74100 39900 79800 metal1 -34200 74100 39900 79800 metal2 -34200 74100 136800 79800 metal3 -131100 74100 136800 79800 metal2 -131100 74100 136800 85500 metal2 -131100 79800 136800 85500 metal2 -131100 79800 142500 85500 metal3 -136800 79800 142500 85500 metal2 -136800 79800 142500 85500 metal1 -) -_382_ -( -148200 119700 153900 125400 metal1 -148200 119700 153900 125400 metal2 -148200 119700 176700 125400 metal3 -171000 119700 176700 125400 metal2 -171000 119700 176700 125400 metal1 -) -_383_ -( -136800 74100 142500 79800 metal1 -136800 74100 142500 79800 metal2 -136800 74100 148200 79800 metal3 -142500 74100 148200 79800 metal2 -142500 68400 148200 79800 metal2 -142500 68400 148200 74100 metal1 -) -_384_ -( -85500 171000 91200 176700 metal1 -85500 125400 91200 176700 metal2 -85500 125400 91200 131100 metal2 -85500 125400 96900 131100 metal3 -91200 125400 96900 131100 metal2 -91200 114000 96900 131100 metal2 -91200 114000 96900 119700 metal1 -) -_385_ -( -79800 91200 85500 96900 metal1 -79800 91200 85500 96900 metal2 -79800 91200 142500 96900 metal3 -136800 91200 142500 96900 metal2 -136800 91200 142500 102600 metal2 -136800 96900 142500 102600 metal2 -136800 96900 176700 102600 metal3 -171000 96900 176700 102600 metal2 -171000 96900 176700 102600 metal1 -) -_386_ -( -51300 108300 57000 114000 metal1 -51300 85500 57000 114000 metal2 -51300 85500 57000 91200 metal2 -51300 85500 68400 91200 metal3 -62700 85500 68400 91200 metal2 -62700 85500 68400 91200 metal1 -) -_387_ -( -57000 45600 62700 51300 metal1 -57000 45600 62700 57000 metal2 -57000 51300 62700 57000 metal2 -57000 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -) -_388_ -( -108300 171000 114000 176700 metal1 -108300 171000 114000 176700 metal2 -108300 171000 131100 176700 metal3 -125400 171000 131100 176700 metal2 -125400 114000 131100 176700 metal2 -125400 114000 131100 119700 metal2 -119700 114000 131100 119700 metal3 -119700 114000 125400 119700 metal2 -119700 102600 125400 119700 metal2 -119700 102600 125400 108300 metal2 -114000 102600 125400 108300 metal3 -114000 102600 119700 108300 metal2 -114000 85500 119700 108300 metal2 -114000 85500 119700 91200 metal1 -) -_389_ -( -22800 34200 28500 39900 metal1 -22800 34200 28500 39900 metal2 -22800 34200 85500 39900 metal3 -79800 34200 85500 39900 metal2 -79800 34200 85500 45600 metal2 -79800 39900 85500 45600 metal1 -) -_390_ -( -85500 28500 91200 34200 metal1 -85500 28500 91200 45600 metal2 -85500 39900 91200 45600 metal1 -) -_391_ -( -114000 142500 119700 148200 metal1 -114000 142500 119700 148200 metal2 -114000 142500 125400 148200 metal3 -119700 142500 125400 148200 metal2 -119700 142500 125400 153900 metal2 -119700 148200 125400 153900 metal2 -119700 148200 171000 153900 metal3 -165300 148200 171000 153900 metal2 -165300 148200 171000 153900 metal1 -) -_392_ -( -39900 171000 45600 176700 metal1 -39900 171000 45600 176700 metal2 -34200 171000 45600 176700 metal3 -34200 171000 39900 176700 metal2 -34200 57000 39900 176700 metal2 -34200 57000 39900 62700 metal2 -34200 57000 62700 62700 metal3 -57000 57000 62700 62700 metal2 -57000 51300 62700 62700 metal2 -57000 51300 62700 57000 metal2 -57000 51300 68400 57000 metal3 -62700 51300 68400 57000 metal2 -62700 51300 68400 57000 metal1 -) -_393_ -( -114000 171000 119700 176700 metal1 -114000 131100 119700 176700 metal2 -114000 131100 119700 136800 metal1 -) -_394_ -( -22800 171000 28500 176700 metal1 -22800 171000 28500 176700 metal2 -22800 171000 51300 176700 metal3 -45600 171000 51300 176700 metal2 -45600 171000 51300 182400 metal2 -45600 176700 51300 182400 metal2 -45600 176700 108300 182400 metal3 -102600 176700 108300 182400 metal2 -102600 171000 108300 182400 metal2 -102600 171000 108300 176700 metal2 -102600 171000 114000 176700 metal3 -108300 171000 114000 176700 metal2 -108300 142500 114000 176700 metal2 -108300 142500 114000 148200 metal2 -108300 142500 119700 148200 metal3 -114000 142500 119700 148200 metal2 -114000 142500 119700 148200 metal1 -) -_395_ -( -153900 91200 159600 96900 metal1 -153900 91200 159600 96900 metal2 -153900 91200 171000 96900 metal3 -165300 91200 171000 96900 metal2 -165300 91200 171000 102600 metal2 -165300 96900 171000 102600 metal1 -) -_396_ -( -153900 96900 159600 102600 metal1 -153900 96900 159600 102600 metal2 -153900 96900 165300 102600 metal3 -159600 96900 165300 102600 metal2 -159600 74100 165300 102600 metal2 -159600 74100 165300 79800 metal2 -153900 74100 165300 79800 metal3 -153900 74100 159600 79800 metal2 -153900 28500 159600 79800 metal2 -153900 28500 159600 34200 metal2 -153900 28500 171000 34200 metal3 -165300 28500 171000 34200 metal2 -165300 22800 171000 34200 metal2 -165300 22800 171000 28500 metal1 -) -_397_ -( -22800 62700 28500 68400 metal1 -22800 62700 28500 68400 metal2 -22800 62700 114000 68400 metal3 -108300 62700 114000 68400 metal2 -108300 62700 114000 79800 metal2 -108300 74100 114000 79800 metal2 -108300 74100 119700 79800 metal3 -114000 74100 119700 79800 metal2 -114000 74100 119700 91200 metal2 -114000 85500 119700 91200 metal2 -114000 85500 125400 91200 metal3 -119700 85500 125400 91200 metal2 -119700 85500 125400 91200 metal1 -) -_398_ -( -142500 119700 148200 125400 metal1 -142500 119700 148200 125400 metal2 -142500 119700 153900 125400 metal3 -148200 119700 153900 125400 metal2 -148200 119700 153900 131100 metal2 -148200 125400 153900 131100 metal2 -148200 125400 176700 131100 metal3 -171000 125400 176700 131100 metal2 -171000 125400 176700 131100 metal1 -) -_399_ -( -45600 102600 51300 108300 metal1 -45600 102600 51300 108300 metal2 -45600 102600 62700 108300 metal3 -57000 102600 62700 108300 metal2 -57000 96900 62700 108300 metal2 -57000 96900 62700 102600 metal1 -) -_400_ -( -22800 74100 28500 79800 metal1 -22800 74100 28500 79800 metal2 -22800 74100 39900 79800 metal3 -34200 74100 39900 79800 metal2 -34200 74100 39900 85500 metal2 -34200 79800 39900 85500 metal2 -34200 79800 57000 85500 metal3 -51300 79800 57000 85500 metal2 -51300 79800 57000 85500 metal1 -) -_401_ -( -79800 102600 85500 108300 metal1 -79800 96900 85500 108300 metal2 -51300 96900 57000 102600 metal1 -51300 96900 57000 102600 metal2 -51300 96900 85500 102600 metal3 -79800 96900 85500 102600 metal2 -45600 96900 57000 102600 metal3 -45600 96900 51300 102600 metal2 -45600 79800 51300 102600 metal2 -45600 79800 51300 85500 metal2 -45600 79800 57000 85500 metal3 -51300 79800 57000 85500 metal2 -51300 79800 57000 85500 metal1 -85500 62700 91200 85500 metal2 -85500 62700 91200 68400 metal2 -85500 62700 108300 68400 metal3 -102600 62700 108300 68400 metal2 -102600 62700 108300 68400 metal1 -102600 62700 114000 68400 metal3 -108300 62700 114000 68400 metal2 -108300 62700 114000 68400 metal1 -85500 91200 91200 96900 metal2 -85500 91200 114000 96900 metal3 -108300 91200 114000 96900 metal2 -108300 91200 114000 96900 metal1 -85500 79800 91200 96900 metal2 -79800 96900 91200 102600 metal3 -85500 96900 91200 102600 metal2 -85500 91200 91200 102600 metal2 -85500 79800 96900 85500 metal2 -91200 79800 96900 85500 metal1 -68400 39900 74100 45600 metal1 -68400 39900 74100 62700 metal2 -68400 57000 74100 62700 metal2 -68400 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -79800 57000 85500 68400 metal2 -108300 34200 114000 68400 metal2 -108300 34200 114000 39900 metal1 -79800 62700 85500 68400 metal1 -79800 62700 85500 68400 metal2 -79800 62700 91200 68400 metal3 -) -_402_ -( -74100 119700 79800 131100 metal2 -74100 125400 79800 131100 metal2 -74100 125400 85500 131100 metal3 -79800 125400 85500 131100 metal2 -79800 125400 85500 131100 metal1 -68400 108300 74100 114000 metal1 -68400 108300 74100 125400 metal2 -68400 119700 74100 125400 metal2 -68400 119700 79800 125400 metal3 -74100 119700 79800 125400 metal2 -74100 119700 79800 125400 metal1 -) -_403_ -( -62700 119700 68400 125400 metal1 -62700 114000 68400 125400 metal2 -62700 108300 68400 119700 metal2 -57000 108300 62700 114000 metal1 -57000 108300 62700 114000 metal2 -57000 108300 68400 114000 metal3 -62700 108300 68400 114000 metal2 -62700 108300 68400 114000 metal1 -62700 114000 68400 119700 metal2 -62700 114000 74100 119700 metal3 -68400 114000 74100 119700 metal2 -68400 114000 74100 119700 metal1 -62700 108300 74100 114000 metal3 -68400 108300 74100 114000 metal2 -68400 108300 74100 114000 metal1 -) -_404_ -( -96900 102600 102600 136800 metal2 -96900 102600 102600 108300 metal1 -91200 136800 96900 142500 metal1 -91200 136800 96900 142500 metal2 -91200 136800 102600 142500 metal3 -96900 136800 102600 142500 metal2 -96900 131100 102600 142500 metal2 -96900 131100 102600 136800 metal2 -96900 131100 108300 136800 metal3 -102600 131100 108300 136800 metal2 -102600 131100 108300 136800 metal1 -) -_405_ -( -45600 74100 51300 79800 metal1 -45600 74100 51300 79800 metal2 -45600 74100 57000 79800 metal3 -51300 74100 57000 79800 metal2 -51300 68400 57000 79800 metal2 -51300 68400 57000 74100 metal2 -51300 68400 74100 74100 metal3 -68400 68400 74100 74100 metal2 -68400 68400 74100 74100 metal1 -) -_406_ -( -119700 68400 125400 85500 metal2 -119700 79800 125400 85500 metal1 -119700 68400 125400 74100 metal2 -119700 68400 131100 74100 metal3 -125400 68400 131100 74100 metal2 -125400 68400 131100 74100 metal1 -96900 68400 102600 74100 metal1 -96900 68400 102600 74100 metal2 -96900 68400 125400 74100 metal3 -) -_407_ -( -102600 45600 108300 51300 metal1 -102600 45600 108300 51300 metal2 -102600 45600 114000 51300 metal3 -108300 45600 114000 51300 metal2 -108300 39900 114000 51300 metal2 -108300 39900 114000 45600 metal2 -108300 39900 119700 45600 metal3 -114000 39900 119700 45600 metal2 -114000 34200 119700 45600 metal2 -114000 34200 119700 39900 metal1 -) -_408_ -( -91200 34200 96900 39900 metal1 -91200 34200 96900 39900 metal2 -91200 34200 102600 39900 metal3 -96900 34200 102600 39900 metal2 -96900 22800 102600 39900 metal2 -96900 22800 102600 28500 metal1 -96900 39900 102600 45600 metal1 -96900 34200 102600 45600 metal2 -) -_409_ -( -74100 39900 79800 45600 metal1 -74100 39900 79800 45600 metal2 -74100 39900 91200 45600 metal3 -85500 39900 91200 45600 metal2 -85500 39900 91200 45600 metal1 -85500 39900 131100 45600 metal3 -125400 39900 131100 45600 metal2 -125400 39900 131100 45600 metal1 -) -_410_ -( -91200 57000 96900 62700 metal1 -91200 57000 96900 79800 metal2 -91200 74100 96900 79800 metal1 -85500 22800 91200 28500 metal1 -85500 22800 91200 28500 metal2 -85500 22800 96900 28500 metal3 -91200 22800 96900 28500 metal2 -91200 22800 96900 62700 metal2 -) -_411_ -( -96900 119700 102600 125400 metal1 -96900 119700 102600 131100 metal2 -91200 136800 96900 142500 metal1 -91200 125400 96900 142500 metal2 -91200 125400 96900 131100 metal2 -91200 125400 102600 131100 metal3 -96900 125400 102600 131100 metal2 -96900 125400 102600 131100 metal1 -) -_412_ -( -96900 131100 102600 136800 metal1 -96900 131100 102600 136800 metal2 -96900 131100 108300 136800 metal3 -102600 131100 108300 136800 metal2 -102600 125400 108300 136800 metal2 -102600 125400 108300 131100 metal1 -79800 131100 85500 136800 metal1 -79800 131100 85500 136800 metal2 -79800 131100 102600 136800 metal3 -) -_413_ -( -125400 125400 131100 131100 metal1 -125400 125400 131100 131100 metal2 -125400 125400 136800 131100 metal3 -131100 125400 136800 131100 metal2 -131100 125400 136800 131100 metal1 -131100 125400 153900 131100 metal3 -148200 125400 153900 131100 metal2 -148200 119700 153900 131100 metal2 -148200 119700 153900 125400 metal1 -) -_414_ -( -136800 85500 142500 91200 metal1 -136800 79800 142500 91200 metal2 -136800 79800 142500 85500 metal1 -131100 62700 136800 68400 metal1 -131100 62700 136800 68400 metal2 -131100 62700 142500 68400 metal3 -136800 62700 142500 68400 metal2 -136800 62700 142500 85500 metal2 -) -_415_ -( -142500 91200 148200 114000 metal2 -142500 108300 148200 114000 metal1 -142500 91200 148200 96900 metal1 -142500 91200 148200 96900 metal2 -142500 91200 165300 96900 metal3 -159600 91200 165300 96900 metal2 -159600 91200 165300 96900 metal1 -) -_416_ -( -131100 91200 136800 96900 metal1 -131100 79800 136800 96900 metal2 -131100 79800 136800 85500 metal1 -125400 74100 131100 79800 metal1 -125400 74100 131100 79800 metal2 -125400 74100 136800 79800 metal3 -131100 74100 136800 79800 metal2 -131100 74100 136800 85500 metal2 -) -_417_ -( -125400 108300 131100 114000 metal1 -125400 108300 131100 125400 metal2 -125400 119700 131100 125400 metal1 -125400 119700 131100 125400 metal2 -125400 119700 159600 125400 metal3 -153900 119700 159600 125400 metal2 -153900 119700 159600 125400 metal1 -) -_418_ -( -74100 91200 79800 96900 metal1 -74100 91200 79800 102600 metal2 -74100 96900 79800 102600 metal1 -68400 102600 74100 108300 metal1 -68400 102600 74100 108300 metal2 -68400 102600 79800 108300 metal3 -74100 102600 79800 108300 metal2 -74100 96900 79800 108300 metal2 -) -_419_ -( -74100 85500 79800 91200 metal1 -74100 79800 79800 91200 metal2 -74100 79800 79800 85500 metal1 -74100 79800 79800 85500 metal2 -74100 79800 85500 85500 metal3 -79800 79800 85500 85500 metal2 -79800 79800 85500 85500 metal1 -) -_420_ -( -57000 125400 62700 131100 metal1 -57000 125400 62700 131100 metal2 -57000 125400 68400 131100 metal3 -62700 125400 68400 131100 metal2 -62700 125400 74100 131100 metal3 -68400 125400 74100 131100 metal2 -68400 119700 74100 131100 metal2 -68400 119700 74100 125400 metal1 -62700 119700 68400 131100 metal2 -62700 119700 68400 125400 metal1 -) -_421_ -( -62700 108300 68400 114000 metal1 -62700 108300 68400 125400 metal2 -62700 119700 68400 125400 metal1 -62700 119700 68400 125400 metal2 -62700 119700 74100 125400 metal3 -68400 119700 74100 125400 metal2 -68400 119700 74100 125400 metal1 -62700 74100 68400 114000 metal2 -62700 74100 68400 79800 metal2 -62700 74100 74100 79800 metal3 -68400 74100 74100 79800 metal2 -68400 62700 74100 79800 metal2 -68400 62700 74100 68400 metal2 -68400 62700 79800 68400 metal3 -74100 62700 79800 68400 metal2 -74100 57000 79800 68400 metal2 -74100 57000 79800 62700 metal1 -) -clk -( -57000 102600 62700 114000 metal2 -57000 102600 62700 108300 metal1 -57000 108300 62700 114000 metal2 -57000 108300 79800 114000 metal3 -74100 108300 79800 114000 metal2 -74100 108300 79800 114000 metal1 -57000 114000 62700 119700 metal1 -57000 114000 62700 131100 metal2 -57000 125400 62700 131100 metal2 -57000 125400 91200 131100 metal3 -85500 125400 91200 131100 metal2 -136800 119700 142500 136800 metal2 -91200 193800 96900 201600 metal2 -91200 193800 96900 201600 metal3 -91200 193800 96900 201600 metal4 -91200 193800 96900 201600 metal5 -91200 193800 96900 201600 metal6 -91200 153900 96900 201600 metal2 -91200 153900 96900 159600 metal2 -91200 153900 108300 159600 metal3 -102600 153900 108300 159600 metal2 -85500 131100 91200 136800 metal1 -85500 131100 91200 148200 metal2 -85500 142500 91200 148200 metal2 -85500 142500 108300 148200 metal3 -102600 142500 108300 148200 metal2 -102600 142500 108300 148200 metal1 -119700 136800 125400 159600 metal2 -119700 136800 125400 142500 metal1 -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 153900 119700 metal3 -148200 114000 153900 119700 metal2 -108300 74100 114000 91200 metal2 -51300 91200 57000 96900 metal1 -51300 91200 57000 102600 metal2 -51300 96900 57000 102600 metal2 -51300 96900 62700 102600 metal3 -57000 96900 62700 102600 metal2 -51300 85500 57000 91200 metal1 -51300 74100 57000 91200 metal2 -51300 74100 57000 79800 metal2 -51300 74100 62700 79800 metal3 -57000 74100 62700 79800 metal2 -57000 74100 62700 79800 metal1 -57000 62700 62700 79800 metal2 -57000 62700 62700 68400 metal1 -119700 62700 125400 68400 metal1 -119700 62700 125400 68400 metal2 -119700 62700 136800 68400 metal3 -131100 62700 136800 68400 metal2 -131100 62700 136800 74100 metal2 -68400 51300 74100 62700 metal2 -68400 51300 74100 57000 metal1 -85500 28500 91200 34200 metal1 -85500 28500 91200 34200 metal2 -85500 28500 108300 34200 metal3 -102600 28500 108300 34200 metal2 -102600 28500 108300 34200 metal1 -114000 45600 119700 51300 metal1 -114000 28500 119700 51300 metal2 -114000 28500 119700 34200 metal2 -102600 28500 119700 34200 metal3 -108300 68400 114000 74100 metal1 -108300 62700 114000 74100 metal2 -108300 62700 114000 68400 metal2 -108300 62700 119700 68400 metal3 -114000 62700 119700 68400 metal2 -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -136800 131100 153900 136800 metal3 -148200 131100 153900 136800 metal2 -148200 131100 153900 136800 metal1 -85500 125400 91200 136800 metal2 -102600 148200 108300 153900 metal1 -102600 142500 108300 153900 metal2 -131100 142500 136800 148200 metal1 -131100 142500 136800 148200 metal2 -131100 142500 142500 148200 metal3 -136800 142500 142500 148200 metal2 -136800 131100 142500 148200 metal2 -148200 85500 153900 91200 metal1 -148200 85500 153900 108300 metal2 -148200 102600 153900 119700 metal2 -114000 51300 119700 57000 metal1 -114000 51300 119700 68400 metal2 -148200 74100 153900 91200 metal2 -57000 96900 68400 102600 metal3 -62700 96900 68400 102600 metal2 -62700 96900 68400 102600 metal1 -51300 85500 57000 96900 metal2 -57000 57000 62700 68400 metal2 -57000 57000 62700 62700 metal2 -57000 57000 74100 62700 metal3 -68400 57000 74100 62700 metal2 -68400 57000 74100 62700 metal1 -131100 68400 136800 74100 metal1 -131100 68400 136800 74100 metal2 -131100 68400 148200 74100 metal3 -142500 68400 148200 74100 metal2 -142500 68400 148200 79800 metal2 -142500 74100 148200 79800 metal2 -142500 74100 153900 79800 metal3 -148200 74100 153900 79800 metal2 -148200 74100 153900 79800 metal1 -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -108300 85500 131100 91200 metal3 -125400 85500 131100 91200 metal2 -125400 85500 131100 91200 metal1 -74100 28500 91200 34200 metal3 -74100 28500 79800 34200 metal2 -74100 28500 79800 39900 metal2 -74100 34200 79800 39900 metal1 -114000 45600 119700 57000 metal2 -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -102600 153900 125400 159600 metal3 -119700 153900 125400 159600 metal2 -119700 153900 136800 159600 metal3 -131100 153900 136800 159600 metal2 -131100 142500 136800 159600 metal2 -108300 68400 114000 79800 metal2 -102600 148200 108300 159600 metal2 -57000 96900 62700 108300 metal2 -57000 108300 62700 119700 metal2 -136800 114000 142500 125400 metal2 -114000 62700 125400 68400 metal3 -131100 119700 136800 125400 metal1 -131100 119700 136800 125400 metal2 -131100 119700 142500 125400 metal3 -136800 119700 142500 125400 metal2 -148200 102600 153900 108300 metal2 -148200 102600 159600 108300 metal3 -153900 102600 159600 108300 metal2 -153900 102600 159600 108300 metal1 -85500 119700 91200 131100 metal2 -85500 119700 91200 125400 metal1 -148200 114000 159600 119700 metal3 -153900 114000 159600 119700 metal2 -153900 114000 159600 119700 metal1 -) -ctrl.state.out\[1\] -( -57000 114000 62700 119700 metal1 -57000 108300 62700 119700 metal2 -57000 108300 62700 114000 metal1 -) -ctrl.state.out\[2\] -( -79800 108300 85500 114000 metal1 -79800 108300 85500 114000 metal2 -) -dpath.a_lt_b$in0\[0\] -( -148200 131100 153900 136800 metal1 -148200 131100 153900 136800 metal2 -148200 131100 159600 136800 metal3 -153900 131100 159600 136800 metal2 -153900 131100 159600 136800 metal1 -) -dpath.a_lt_b$in0\[10\] -( -62700 62700 68400 68400 metal1 -62700 62700 68400 68400 metal2 -) -dpath.a_lt_b$in0\[11\] -( -119700 62700 125400 68400 metal1 -119700 62700 125400 68400 metal2 -119700 62700 131100 68400 metal3 -125400 62700 131100 68400 metal2 -125400 62700 131100 68400 metal1 -) -dpath.a_lt_b$in0\[12\] -( -114000 45600 119700 51300 metal1 -114000 45600 119700 51300 metal2 -114000 45600 125400 51300 metal3 -119700 45600 125400 51300 metal2 -119700 45600 125400 51300 metal1 -) -dpath.a_lt_b$in0\[13\] -( -91200 28500 96900 34200 metal1 -91200 28500 96900 39900 metal2 -91200 34200 96900 39900 metal1 -) -dpath.a_lt_b$in0\[14\] -( -74100 34200 79800 39900 metal1 -74100 34200 79800 45600 metal2 -74100 39900 79800 45600 metal1 -) -dpath.a_lt_b$in0\[15\] -( -108300 85500 114000 91200 metal1 -108300 85500 114000 91200 metal2 -) -dpath.a_lt_b$in0\[1\] -( -85500 131100 91200 136800 metal1 -85500 125400 91200 136800 metal2 -85500 125400 91200 131100 metal1 -) -dpath.a_lt_b$in0\[2\] -( -102600 148200 108300 153900 metal1 -102600 142500 108300 153900 metal2 -102600 142500 108300 148200 metal1 -) -dpath.a_lt_b$in0\[3\] -( -125400 142500 131100 148200 metal1 -125400 142500 131100 148200 metal2 -125400 142500 136800 148200 metal3 -131100 142500 136800 148200 metal2 -131100 142500 136800 148200 metal1 -) -dpath.a_lt_b$in0\[4\] -( -153900 74100 159600 79800 metal1 -153900 74100 159600 85500 metal2 -153900 79800 159600 85500 metal1 -) -dpath.a_lt_b$in0\[5\] -( -153900 114000 159600 119700 metal1 -153900 114000 159600 119700 metal2 -) -dpath.a_lt_b$in0\[6\] -( -131100 74100 136800 79800 metal1 -131100 68400 136800 79800 metal2 -131100 68400 136800 74100 metal2 -131100 68400 142500 74100 metal3 -136800 68400 142500 74100 metal2 -136800 68400 142500 74100 metal1 -) -dpath.a_lt_b$in0\[7\] -( -136800 119700 142500 125400 metal1 -136800 119700 142500 125400 metal2 -) -dpath.a_lt_b$in0\[8\] -( -51300 91200 57000 96900 metal1 -51300 91200 57000 96900 metal2 -51300 91200 62700 96900 metal3 -57000 91200 62700 96900 metal2 -57000 91200 62700 96900 metal1 -) -dpath.a_lt_b$in0\[9\] -( -57000 74100 62700 79800 metal1 -57000 74100 62700 79800 metal2 -57000 74100 68400 79800 metal3 -62700 74100 68400 79800 metal2 -62700 74100 68400 79800 metal1 -) -dpath.a_lt_b$in1\[0\] -( -136800 131100 142500 136800 metal1 -136800 131100 142500 136800 metal2 -) -dpath.a_lt_b$in1\[10\] -( -74100 57000 79800 62700 metal1 -74100 57000 79800 68400 metal2 -74100 62700 79800 68400 metal1 -) -dpath.a_lt_b$in1\[11\] -( -108300 74100 114000 79800 metal1 -108300 74100 114000 79800 metal2 -108300 74100 119700 79800 metal3 -114000 74100 119700 79800 metal2 -114000 68400 119700 79800 metal2 -114000 68400 119700 74100 metal1 -) -dpath.a_lt_b$in1\[12\] -( -114000 57000 119700 62700 metal1 -114000 57000 119700 62700 metal2 -114000 57000 125400 62700 metal3 -119700 57000 125400 62700 metal2 -119700 51300 125400 62700 metal2 -119700 51300 125400 57000 metal1 -) -dpath.a_lt_b$in1\[13\] -( -102600 28500 108300 34200 metal1 -102600 28500 108300 39900 metal2 -102600 34200 108300 39900 metal1 -) -dpath.a_lt_b$in1\[14\] -( -74100 51300 79800 57000 metal1 -74100 51300 79800 57000 metal2 -) -dpath.a_lt_b$in1\[15\] -( -102600 74100 108300 79800 metal1 -102600 74100 108300 79800 metal2 -102600 74100 114000 79800 metal3 -108300 74100 114000 79800 metal2 -108300 74100 114000 79800 metal1 -) -dpath.a_lt_b$in1\[1\] -( -91200 119700 96900 125400 metal1 -91200 119700 96900 125400 metal2 -) -dpath.a_lt_b$in1\[2\] -( -108300 142500 114000 148200 metal1 -108300 136800 114000 148200 metal2 -108300 136800 114000 142500 metal1 -) -dpath.a_lt_b$in1\[3\] -( -119700 131100 125400 136800 metal1 -119700 131100 125400 142500 metal2 -119700 136800 125400 142500 metal2 -119700 136800 131100 142500 metal3 -125400 136800 131100 142500 metal2 -125400 136800 131100 142500 metal1 -) -dpath.a_lt_b$in1\[4\] -( -153900 79800 159600 85500 metal1 -153900 79800 159600 91200 metal2 -153900 85500 159600 91200 metal1 -) -dpath.a_lt_b$in1\[5\] -( -153900 108300 159600 114000 metal1 -153900 108300 159600 114000 metal2 -153900 108300 165300 114000 metal3 -159600 108300 165300 114000 metal2 -159600 102600 165300 114000 metal2 -159600 102600 165300 108300 metal1 -) -dpath.a_lt_b$in1\[6\] -( -125400 79800 131100 85500 metal1 -125400 79800 131100 91200 metal2 -125400 85500 131100 91200 metal2 -125400 85500 136800 91200 metal3 -131100 85500 136800 91200 metal2 -131100 85500 136800 91200 metal1 -) -dpath.a_lt_b$in1\[7\] -( -136800 114000 142500 119700 metal1 -136800 114000 142500 119700 metal2 -136800 114000 148200 119700 metal3 -142500 114000 148200 119700 metal2 -142500 108300 148200 119700 metal2 -142500 108300 148200 114000 metal1 -) -dpath.a_lt_b$in1\[8\] -( -68400 96900 74100 102600 metal1 -68400 96900 74100 102600 metal2 -) -dpath.a_lt_b$in1\[9\] -( -57000 79800 62700 85500 metal1 -57000 79800 62700 85500 metal2 -) -net1 -( -114000 171000 119700 176700 metal1 -114000 171000 119700 182400 metal2 -114000 176700 119700 182400 metal2 -114000 176700 171000 182400 metal3 -165300 176700 171000 182400 metal2 -165300 176700 171000 182400 metal1 -) -net10 -( -142500 68400 148200 74100 metal1 -142500 45600 148200 74100 metal2 -142500 45600 148200 51300 metal2 -142500 45600 182400 51300 metal3 -176700 45600 182400 51300 metal2 -176700 22800 182400 51300 metal2 -176700 22800 182400 28500 metal2 -171000 22800 182400 28500 metal3 -171000 22800 176700 28500 metal2 -171000 22800 176700 28500 metal1 -) -net11 -( -171000 119700 176700 125400 metal1 -171000 119700 176700 125400 metal2 -171000 119700 182400 125400 metal3 -176700 119700 182400 125400 metal2 -176700 119700 182400 131100 metal2 -176700 125400 182400 131100 metal1 -) -net12 -( -28500 22800 34200 28500 metal1 -28500 22800 34200 34200 metal2 -28500 28500 34200 34200 metal2 -28500 28500 39900 34200 metal3 -34200 28500 39900 34200 metal2 -34200 28500 39900 79800 metal2 -34200 74100 39900 79800 metal1 -) -net13 -( -136800 176700 142500 182400 metal1 -136800 142500 142500 182400 metal2 -136800 142500 142500 148200 metal1 -) -net14 -( -62700 176700 68400 182400 metal1 -62700 142500 68400 182400 metal2 -62700 142500 68400 148200 metal2 -62700 142500 74100 148200 metal3 -68400 142500 74100 148200 metal2 -68400 142500 74100 148200 metal1 -) -net15 -( -171000 91200 176700 96900 metal1 -171000 85500 176700 96900 metal2 -171000 85500 176700 91200 metal2 -171000 85500 182400 91200 metal3 -176700 85500 182400 91200 metal2 -176700 79800 182400 91200 metal2 -176700 79800 182400 85500 metal1 -) -net16 -( -148200 171000 153900 176700 metal1 -148200 171000 153900 176700 metal2 -148200 171000 159600 176700 metal3 -153900 171000 159600 176700 metal2 -153900 171000 159600 182400 metal2 -153900 176700 159600 182400 metal1 -) -net17 -( -17100 85500 22800 91200 metal1 -17100 85500 22800 91200 metal2 -11400 85500 22800 91200 metal3 -11400 85500 17100 91200 metal2 -11400 85500 17100 176700 metal2 -11400 171000 17100 176700 metal2 -11400 171000 28500 176700 metal3 -22800 171000 28500 176700 metal2 -22800 171000 28500 182400 metal2 -22800 176700 28500 182400 metal1 -) -net18 -( -39900 22800 45600 28500 metal1 -39900 22800 45600 34200 metal2 -39900 28500 45600 34200 metal2 -39900 28500 68400 34200 metal3 -62700 28500 68400 34200 metal2 -62700 28500 68400 39900 metal2 -62700 34200 68400 39900 metal1 -) -net19 -( -114000 34200 119700 39900 metal1 -114000 28500 119700 39900 metal2 -114000 28500 119700 34200 metal2 -114000 28500 153900 34200 metal3 -148200 28500 153900 34200 metal2 -148200 22800 153900 34200 metal2 -148200 22800 153900 28500 metal1 -) -net2 -( -34200 176700 39900 182400 metal1 -34200 176700 39900 182400 metal2 -34200 176700 45600 182400 metal3 -39900 176700 45600 182400 metal2 -39900 171000 45600 182400 metal2 -39900 171000 45600 176700 metal1 -) -net20 -( -114000 165300 119700 171000 metal1 -114000 159600 119700 171000 metal2 -114000 159600 119700 165300 metal2 -114000 159600 182400 165300 metal3 -176700 159600 182400 165300 metal2 -176700 159600 182400 176700 metal2 -176700 171000 182400 176700 metal1 -) -net21 -( -102600 22800 108300 28500 metal1 -102600 22800 108300 28500 metal2 -) -net22 -( -119700 171000 125400 176700 metal1 -119700 171000 125400 176700 metal2 -119700 171000 131100 176700 metal3 -125400 171000 131100 176700 metal2 -125400 171000 131100 182400 metal2 -125400 176700 131100 182400 metal1 -) -net23 -( -17100 74100 22800 79800 metal1 -17100 74100 22800 79800 metal2 -) -net24 -( -28500 176700 34200 182400 metal1 -28500 125400 34200 182400 metal2 -28500 125400 34200 131100 metal2 -28500 125400 51300 131100 metal3 -45600 125400 51300 131100 metal2 -45600 102600 51300 131100 metal2 -45600 102600 51300 108300 metal1 -) -net25 -( -171000 125400 176700 131100 metal1 -171000 125400 176700 131100 metal2 -171000 125400 182400 131100 metal3 -176700 125400 182400 131100 metal2 -176700 125400 182400 159600 metal2 -176700 153900 182400 159600 metal1 -) -net26 -( -17100 57000 22800 62700 metal1 -17100 57000 22800 68400 metal2 -17100 62700 22800 68400 metal2 -17100 62700 28500 68400 metal3 -22800 62700 28500 68400 metal2 -22800 62700 28500 68400 metal1 -) -net27 -( -159600 22800 165300 28500 metal1 -159600 22800 165300 28500 metal2 -159600 22800 182400 28500 metal3 -176700 22800 182400 28500 metal2 -176700 22800 182400 34200 metal2 -176700 28500 182400 34200 metal1 -) -net28 -( -159600 96900 165300 102600 metal1 -159600 96900 165300 108300 metal2 -159600 102600 165300 108300 metal2 -159600 102600 182400 108300 metal3 -176700 102600 182400 108300 metal2 -176700 102600 182400 114000 metal2 -176700 108300 182400 114000 metal1 -) -net29 -( -17100 171000 22800 176700 metal1 -17100 171000 22800 176700 metal2 -) -net3 -( -85500 22800 91200 28500 metal1 -85500 22800 91200 34200 metal2 -85500 28500 91200 34200 metal1 -) -net30 -( -148200 176700 153900 182400 metal1 -148200 171000 153900 182400 metal2 -148200 171000 153900 176700 metal2 -148200 171000 159600 176700 metal3 -153900 171000 159600 176700 metal2 -153900 153900 159600 176700 metal2 -153900 153900 159600 159600 metal2 -153900 153900 171000 159600 metal3 -165300 153900 171000 159600 metal2 -165300 148200 171000 159600 metal2 -165300 148200 171000 153900 metal1 -) -net31 -( -74100 22800 79800 28500 metal1 -74100 22800 79800 28500 metal2 -74100 22800 85500 28500 metal3 -79800 22800 85500 28500 metal2 -79800 22800 85500 28500 metal1 -) -net32 -( -153900 136800 159600 142500 metal1 -153900 136800 159600 142500 metal2 -153900 136800 182400 142500 metal3 -176700 136800 182400 142500 metal2 -176700 136800 182400 142500 metal1 -) -net33 -( -79800 125400 85500 131100 metal1 -79800 125400 85500 182400 metal2 -79800 176700 85500 182400 metal2 -79800 176700 176700 182400 metal3 -171000 176700 176700 182400 metal2 -171000 176700 176700 182400 metal1 -) -net34 -( -17100 102600 22800 108300 metal1 -17100 102600 22800 114000 metal2 -17100 108300 22800 114000 metal2 -17100 108300 57000 114000 metal3 -51300 108300 57000 114000 metal2 -51300 108300 57000 114000 metal1 -) -net35 -( -17100 176700 22800 182400 metal1 -17100 176700 22800 182400 metal2 -17100 176700 51300 182400 metal3 -45600 176700 51300 182400 metal2 -45600 125400 51300 182400 metal2 -45600 125400 51300 131100 metal2 -45600 125400 62700 131100 metal3 -57000 125400 62700 131100 metal2 -57000 125400 62700 131100 metal1 -) -net36 -( -51300 96900 57000 108300 metal2 -51300 102600 57000 108300 metal2 -51300 102600 62700 108300 metal3 -57000 102600 62700 108300 metal2 -57000 102600 62700 108300 metal1 -17100 22800 22800 28500 metal1 -17100 22800 22800 28500 metal2 -17100 22800 28500 28500 metal3 -22800 22800 28500 28500 metal2 -22800 22800 28500 96900 metal2 -22800 91200 28500 96900 metal2 -22800 91200 34200 96900 metal3 -28500 91200 34200 96900 metal2 -28500 91200 34200 102600 metal2 -28500 96900 34200 102600 metal2 -28500 96900 57000 102600 metal3 -51300 96900 57000 102600 metal2 -51300 96900 57000 102600 metal1 -) -net37 -( -17100 22800 22800 28500 metal1 -17100 22800 22800 28500 metal2 -17100 22800 91200 28500 metal3 -85500 22800 91200 28500 metal2 -85500 22800 91200 28500 metal1 -) -net38 -( -125400 39900 131100 45600 metal1 -125400 39900 131100 45600 metal2 -125400 39900 136800 45600 metal3 -131100 39900 136800 45600 metal2 -131100 22800 136800 45600 metal2 -131100 22800 136800 28500 metal1 -) -net39 -( -96900 22800 102600 28500 metal1 -96900 22800 102600 28500 metal2 -96900 22800 176700 28500 metal3 -171000 22800 176700 28500 metal2 -171000 22800 176700 28500 metal1 -) -net4 -( -17100 28500 22800 34200 metal1 -17100 28500 22800 39900 metal2 -17100 34200 22800 39900 metal1 -) -net40 -( -114000 34200 119700 39900 metal1 -114000 34200 119700 39900 metal2 -114000 34200 176700 39900 metal3 -171000 34200 176700 39900 metal2 -171000 22800 176700 39900 metal2 -171000 22800 176700 28500 metal1 -) -net41 -( -125400 68400 131100 74100 metal1 -125400 68400 131100 74100 metal2 -125400 68400 142500 74100 metal3 -136800 68400 142500 74100 metal2 -136800 62700 142500 74100 metal2 -136800 62700 142500 68400 metal2 -136800 62700 176700 68400 metal3 -171000 62700 176700 68400 metal2 -171000 62700 176700 74100 metal2 -171000 68400 176700 74100 metal1 -) -net42 -( -17100 85500 22800 91200 metal1 -17100 74100 22800 91200 metal2 -17100 74100 22800 79800 metal2 -17100 74100 51300 79800 metal3 -45600 74100 51300 79800 metal2 -45600 74100 51300 79800 metal1 -) -net43 -( -79800 79800 85500 85500 metal1 -79800 22800 85500 85500 metal2 -79800 22800 85500 28500 metal2 -79800 22800 119700 28500 metal3 -114000 22800 119700 28500 metal2 -114000 22800 119700 28500 metal1 -) -net44 -( -17100 114000 22800 119700 metal1 -17100 114000 22800 119700 metal2 -17100 114000 57000 119700 metal3 -51300 114000 57000 119700 metal2 -51300 108300 57000 119700 metal2 -51300 108300 57000 114000 metal2 -51300 108300 62700 114000 metal3 -57000 108300 62700 114000 metal2 -57000 102600 62700 114000 metal2 -57000 102600 62700 108300 metal2 -57000 102600 74100 108300 metal3 -68400 102600 74100 108300 metal2 -68400 102600 74100 108300 metal1 -) -net45 -( -153900 119700 159600 125400 metal1 -153900 119700 159600 176700 metal2 -153900 171000 159600 176700 metal2 -153900 171000 176700 176700 metal3 -171000 171000 176700 176700 metal2 -171000 171000 176700 182400 metal2 -171000 176700 176700 182400 metal1 -) -net46 -( -17100 45600 22800 51300 metal1 -17100 45600 22800 51300 metal2 -17100 45600 57000 51300 metal3 -51300 45600 57000 51300 metal2 -51300 34200 57000 51300 metal2 -51300 34200 57000 39900 metal2 -51300 34200 74100 39900 metal3 -68400 34200 74100 39900 metal2 -68400 28500 74100 39900 metal2 -68400 28500 74100 34200 metal2 -68400 28500 125400 34200 metal3 -119700 28500 125400 34200 metal2 -119700 28500 125400 39900 metal2 -119700 34200 125400 39900 metal2 -119700 34200 131100 39900 metal3 -125400 34200 131100 39900 metal2 -125400 34200 131100 79800 metal2 -125400 74100 131100 79800 metal1 -) -net47 -( -159600 91200 165300 96900 metal1 -159600 85500 165300 96900 metal2 -159600 85500 165300 91200 metal2 -159600 85500 171000 91200 metal3 -165300 85500 171000 91200 metal2 -165300 74100 171000 91200 metal2 -165300 74100 171000 79800 metal2 -165300 74100 182400 79800 metal3 -176700 74100 182400 79800 metal2 -176700 45600 182400 79800 metal2 -176700 45600 182400 51300 metal2 -171000 45600 182400 51300 metal3 -171000 45600 176700 51300 metal2 -171000 34200 176700 51300 metal2 -171000 34200 176700 39900 metal1 -) -net48 -( -22800 22800 28500 28500 metal1 -22800 22800 28500 28500 metal2 -22800 22800 39900 28500 metal3 -34200 22800 39900 28500 metal2 -34200 11400 39900 28500 metal2 -34200 11400 39900 17100 metal2 -34200 11400 131100 17100 metal3 -125400 11400 131100 17100 metal2 -125400 11400 131100 51300 metal2 -125400 45600 131100 51300 metal2 -125400 45600 136800 51300 metal3 -131100 45600 136800 51300 metal2 -131100 45600 136800 68400 metal2 -131100 62700 136800 68400 metal1 -) -net49 -( -148200 119700 153900 125400 metal1 -148200 114000 153900 125400 metal2 -148200 114000 153900 119700 metal2 -148200 114000 171000 119700 metal3 -165300 114000 171000 119700 metal2 -165300 74100 171000 119700 metal2 -165300 74100 171000 79800 metal2 -159600 74100 171000 79800 metal3 -159600 74100 165300 79800 metal2 -159600 22800 165300 79800 metal2 -159600 22800 165300 28500 metal1 -) -net5 -( -108300 176700 114000 182400 metal1 -108300 171000 114000 182400 metal2 -108300 171000 114000 176700 metal1 -) -net50 -( -17100 131100 22800 136800 metal1 -17100 125400 22800 136800 metal2 -17100 125400 22800 131100 metal2 -17100 125400 79800 131100 metal3 -74100 125400 79800 131100 metal2 -74100 125400 79800 136800 metal2 -74100 131100 79800 136800 metal2 -74100 131100 85500 136800 metal3 -79800 131100 85500 136800 metal2 -79800 131100 85500 136800 metal1 -) -net51 -( -17100 148200 22800 153900 metal1 -17100 148200 22800 153900 metal2 -17100 148200 28500 153900 metal3 -22800 148200 28500 153900 metal2 -22800 136800 28500 153900 metal2 -22800 136800 28500 142500 metal2 -22800 136800 96900 142500 metal3 -91200 136800 96900 142500 metal2 -91200 136800 96900 142500 metal1 -) -net52 -( -17100 159600 22800 165300 metal1 -17100 153900 22800 165300 metal2 -17100 153900 22800 159600 metal2 -17100 153900 96900 159600 metal3 -91200 153900 96900 159600 metal2 -91200 136800 96900 159600 metal2 -91200 136800 96900 142500 metal1 -) -net53 -( -74100 57000 79800 62700 metal1 -74100 57000 79800 62700 metal2 -74100 57000 85500 62700 metal3 -79800 57000 85500 62700 metal2 -79800 51300 85500 62700 metal2 -79800 51300 85500 57000 metal2 -79800 51300 125400 57000 metal3 -119700 51300 125400 57000 metal2 -119700 45600 125400 57000 metal2 -119700 45600 125400 51300 metal2 -119700 45600 176700 51300 metal3 -171000 45600 176700 51300 metal2 -171000 45600 176700 57000 metal2 -171000 51300 176700 57000 metal1 -) -net6 -( -57000 22800 62700 28500 metal1 -57000 22800 62700 51300 metal2 -57000 45600 62700 51300 metal1 -) -net7 -( -51300 176700 57000 182400 metal1 -51300 108300 57000 182400 metal2 -51300 108300 57000 114000 metal1 -) -net8 -( -171000 96900 176700 102600 metal1 -171000 96900 176700 102600 metal2 -171000 96900 182400 102600 metal3 -176700 96900 182400 102600 metal2 -176700 91200 182400 102600 metal2 -176700 91200 182400 96900 metal1 -) -net9 -( -79800 176700 85500 182400 metal1 -79800 171000 85500 182400 metal2 -79800 171000 85500 176700 metal2 -79800 171000 91200 176700 metal3 -85500 171000 91200 176700 metal2 -85500 171000 91200 176700 metal1 -) -req_msg[0] -( -171000 136800 176700 142500 metal1 -171000 136800 176700 142500 metal2 -171000 136800 200260 142500 metal3 -193800 136800 200260 142500 metal3 -193800 136800 200260 142500 metal4 -193800 136800 200260 142500 metal5 -) -req_msg[10] -( -125400 193800 131100 201600 metal2 -125400 193800 131100 201600 metal3 -125400 193800 131100 201600 metal4 -125400 193800 131100 201600 metal5 -125400 193800 131100 201600 metal6 -125400 176700 131100 201600 metal2 -125400 176700 131100 182400 metal1 -) -req_msg[11] -( -102600 0 108300 5700 metal2 -102600 0 108300 5700 metal3 -102600 0 108300 5700 metal4 -102600 0 108300 5700 metal5 -102600 0 108300 5700 metal6 -102600 0 108300 28500 metal2 -102600 22800 108300 28500 metal1 -) -req_msg[12] -( -171000 171000 176700 176700 metal1 -171000 171000 176700 176700 metal2 -171000 171000 200260 176700 metal3 -193800 171000 200260 176700 metal3 -193800 171000 200260 176700 metal4 -193800 171000 200260 176700 metal5 -) -req_msg[13] -( -142500 0 148200 5700 metal2 -142500 0 148200 5700 metal3 -142500 0 148200 5700 metal4 -142500 0 148200 5700 metal5 -142500 0 148200 5700 metal6 -142500 0 148200 28500 metal2 -142500 22800 148200 28500 metal1 -) -req_msg[14] -( -39900 0 45600 5700 metal3 -39900 0 45600 5700 metal4 -39900 0 45600 5700 metal5 -39900 0 45600 5700 metal6 -39900 0 51300 5700 metal3 -45600 0 51300 5700 metal2 -45600 0 51300 28500 metal2 -45600 22800 51300 28500 metal2 -39900 22800 51300 28500 metal3 -39900 22800 45600 28500 metal2 -39900 22800 45600 28500 metal1 -) -req_msg[15] -( -5700 193800 11400 201600 metal2 -5700 193800 11400 201600 metal3 -5700 193800 11400 201600 metal4 -5700 193800 11400 201600 metal5 -5700 193800 11400 201600 metal6 -5700 188100 11400 201600 metal2 -5700 188100 11400 193800 metal2 -5700 188100 28500 193800 metal3 -22800 188100 28500 193800 metal2 -22800 176700 28500 193800 metal2 -22800 176700 28500 182400 metal1 -) -req_msg[16] -( -153900 193800 159600 201600 metal2 -153900 193800 159600 201600 metal3 -153900 193800 159600 201600 metal4 -153900 193800 159600 201600 metal5 -153900 193800 159600 201600 metal6 -153900 176700 159600 201600 metal2 -153900 176700 159600 182400 metal1 -) -req_msg[17] -( -171000 79800 176700 85500 metal1 -171000 79800 176700 85500 metal2 -171000 79800 200260 85500 metal3 -193800 79800 200260 85500 metal3 -193800 79800 200260 85500 metal4 -193800 79800 200260 85500 metal5 -) -req_msg[18] -( -62700 193800 68400 201600 metal2 -62700 193800 68400 201600 metal3 -62700 193800 68400 201600 metal4 -62700 193800 68400 201600 metal5 -62700 193800 68400 201600 metal6 -62700 176700 68400 201600 metal2 -62700 176700 68400 182400 metal1 -) -req_msg[19] -( -136800 193800 142500 201600 metal2 -136800 193800 142500 201600 metal3 -136800 193800 142500 201600 metal4 -136800 193800 142500 201600 metal5 -136800 193800 142500 201600 metal6 -136800 176700 142500 201600 metal2 -136800 176700 142500 182400 metal1 -) -req_msg[1] -( -74100 0 79800 5700 metal2 -74100 0 79800 5700 metal3 -74100 0 79800 5700 metal4 -74100 0 79800 5700 metal5 -74100 0 79800 5700 metal6 -74100 0 79800 28500 metal2 -74100 22800 79800 28500 metal1 -) -req_msg[20] -( -28500 0 34200 5700 metal3 -28500 0 34200 5700 metal4 -28500 0 34200 5700 metal5 -28500 0 34200 5700 metal6 -22800 0 34200 5700 metal3 -22800 0 28500 5700 metal2 -22800 0 28500 17100 metal2 -22800 11400 28500 17100 metal2 -22800 11400 34200 17100 metal3 -28500 11400 34200 17100 metal2 -28500 11400 34200 28500 metal2 -28500 22800 34200 28500 metal1 -) -req_msg[21] -( -171000 125400 176700 131100 metal1 -171000 125400 176700 131100 metal2 -171000 125400 200260 131100 metal3 -193800 125400 200260 131100 metal3 -193800 125400 200260 131100 metal4 -193800 125400 200260 131100 metal5 -) -req_msg[22] -( -165300 22800 171000 28500 metal1 -165300 11400 171000 28500 metal2 -165300 11400 171000 17100 metal2 -165300 11400 200260 17100 metal3 -193800 11400 200260 17100 metal2 -193800 5700 200260 17100 metal2 -193800 5700 200260 11400 metal2 -193800 5700 200260 11400 metal3 -193800 5700 200260 11400 metal4 -193800 5700 200260 11400 metal5 -) -req_msg[23] -( -79800 193800 85500 201600 metal2 -79800 193800 85500 201600 metal3 -79800 193800 85500 201600 metal4 -79800 193800 85500 201600 metal5 -79800 193800 85500 201600 metal6 -79800 176700 85500 201600 metal2 -79800 176700 85500 182400 metal1 -) -req_msg[24] -( -171000 91200 176700 96900 metal1 -171000 91200 176700 96900 metal2 -171000 91200 200260 96900 metal3 -193800 91200 200260 96900 metal3 -193800 91200 200260 96900 metal4 -193800 91200 200260 96900 metal5 -) -req_msg[25] -( -51300 193800 57000 201600 metal2 -51300 193800 57000 201600 metal3 -51300 193800 57000 201600 metal4 -51300 193800 57000 201600 metal5 -51300 193800 57000 201600 metal6 -51300 188100 57000 201600 metal2 -51300 188100 57000 193800 metal2 -45600 188100 57000 193800 metal3 -45600 188100 51300 193800 metal2 -45600 176700 51300 193800 metal2 -45600 176700 51300 182400 metal2 -45600 176700 57000 182400 metal3 -51300 176700 57000 182400 metal2 -51300 176700 57000 182400 metal1 -) -req_msg[26] -( -57000 0 62700 5700 metal2 -57000 0 62700 5700 metal3 -57000 0 62700 5700 metal4 -57000 0 62700 5700 metal5 -57000 0 62700 5700 metal6 -57000 0 62700 28500 metal2 -57000 22800 62700 28500 metal1 -) -req_msg[27] -( -108300 193800 114000 201600 metal2 -108300 193800 114000 201600 metal3 -108300 193800 114000 201600 metal4 -108300 193800 114000 201600 metal5 -108300 193800 114000 201600 metal6 -108300 176700 114000 201600 metal2 -108300 176700 114000 182400 metal1 -) -req_msg[28] -( -0 28500 5700 34200 metal3 -0 28500 5700 34200 metal4 -0 28500 5700 34200 metal5 -0 28500 22800 34200 metal3 -17100 28500 22800 34200 metal2 -17100 28500 22800 34200 metal1 -) -req_msg[29] -( -85500 0 91200 5700 metal2 -85500 0 91200 5700 metal3 -85500 0 91200 5700 metal4 -85500 0 91200 5700 metal5 -85500 0 91200 5700 metal6 -85500 0 91200 28500 metal2 -85500 22800 91200 28500 metal1 -) -req_msg[2] -( -148200 176700 153900 182400 metal1 -148200 176700 153900 193800 metal2 -148200 188100 153900 193800 metal2 -148200 188100 171000 193800 metal3 -165300 188100 171000 193800 metal2 -165300 188100 171000 201600 metal2 -165300 193800 171000 201600 metal2 -165300 193800 171000 201600 metal3 -165300 193800 171000 201600 metal4 -165300 193800 171000 201600 metal5 -165300 193800 171000 201600 metal6 -) -req_msg[30] -( -34200 193800 39900 201600 metal2 -34200 193800 39900 201600 metal3 -34200 193800 39900 201600 metal4 -34200 193800 39900 201600 metal5 -34200 193800 39900 201600 metal6 -34200 176700 39900 201600 metal2 -34200 176700 39900 182400 metal1 -) -req_msg[31] -( -165300 176700 171000 182400 metal1 -165300 176700 171000 182400 metal2 -165300 176700 188100 182400 metal3 -182400 176700 188100 182400 metal2 -182400 176700 188100 201600 metal2 -182400 193800 188100 201600 metal2 -182400 193800 188100 201600 metal3 -182400 193800 188100 201600 metal4 -182400 193800 188100 201600 metal5 -182400 193800 188100 201600 metal6 -) -req_msg[3] -( -0 176700 5700 182400 metal3 -0 176700 5700 182400 metal4 -0 176700 5700 182400 metal5 -0 176700 17100 182400 metal3 -11400 176700 17100 182400 metal2 -11400 171000 17100 182400 metal2 -11400 171000 17100 176700 metal2 -11400 171000 22800 176700 metal3 -17100 171000 22800 176700 metal2 -17100 171000 22800 176700 metal1 -) -req_msg[4] -( -171000 108300 176700 114000 metal1 -171000 108300 176700 114000 metal2 -171000 108300 200260 114000 metal3 -193800 108300 200260 114000 metal3 -193800 108300 200260 114000 metal4 -193800 108300 200260 114000 metal5 -) -req_msg[5] -( -171000 28500 176700 34200 metal1 -171000 28500 176700 34200 metal2 -171000 28500 182400 34200 metal3 -176700 28500 182400 34200 metal2 -176700 0 182400 34200 metal2 -176700 0 182400 5700 metal2 -176700 0 182400 5700 metal3 -176700 0 182400 5700 metal4 -176700 0 182400 5700 metal5 -176700 0 182400 5700 metal6 -) -req_msg[6] -( -0 57000 5700 62700 metal3 -0 57000 5700 62700 metal4 -0 57000 5700 62700 metal5 -0 57000 22800 62700 metal3 -17100 57000 22800 62700 metal2 -17100 57000 22800 62700 metal1 -) -req_msg[7] -( -171000 153900 176700 159600 metal1 -171000 153900 176700 159600 metal2 -171000 153900 200260 159600 metal3 -193800 153900 200260 159600 metal3 -193800 153900 200260 159600 metal4 -193800 153900 200260 159600 metal5 -) -req_msg[8] -( -17100 193800 22800 201600 metal2 -17100 193800 22800 201600 metal3 -17100 193800 22800 201600 metal4 -17100 193800 22800 201600 metal5 -17100 193800 22800 201600 metal6 -17100 188100 22800 201600 metal2 -17100 188100 22800 193800 metal2 -17100 188100 28500 193800 metal3 -22800 188100 28500 193800 metal2 -22800 176700 28500 193800 metal2 -22800 176700 28500 182400 metal2 -22800 176700 34200 182400 metal3 -28500 176700 34200 182400 metal2 -28500 176700 34200 182400 metal1 -) -req_msg[9] -( -0 68400 5700 74100 metal2 -0 68400 5700 74100 metal3 -0 68400 5700 74100 metal4 -0 68400 5700 74100 metal5 -0 68400 5700 79800 metal2 -0 74100 5700 79800 metal2 -0 74100 22800 79800 metal3 -17100 74100 22800 79800 metal2 -17100 74100 22800 79800 metal1 -) -req_rdy -( -0 0 5700 5700 metal2 -0 0 5700 5700 metal3 -0 0 5700 5700 metal4 -0 0 5700 5700 metal5 -0 0 5700 5700 metal6 -0 0 5700 28500 metal2 -0 22800 5700 28500 metal2 -0 22800 22800 28500 metal3 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal1 -) -req_val -( -165300 176700 171000 182400 metal1 -165300 176700 171000 182400 metal2 -165300 176700 193800 182400 metal3 -188100 176700 193800 182400 metal2 -188100 176700 193800 188100 metal2 -188100 182400 193800 188100 metal2 -188100 182400 200260 188100 metal3 -193800 182400 200260 188100 metal3 -193800 182400 200260 188100 metal4 -193800 182400 200260 188100 metal5 -) -reset -( -0 102600 5700 108300 metal3 -0 102600 5700 108300 metal4 -0 102600 5700 108300 metal5 -0 102600 22800 108300 metal3 -17100 102600 22800 108300 metal2 -17100 102600 22800 108300 metal1 -) -resp_msg[0] -( -0 159600 5700 165300 metal3 -0 159600 5700 165300 metal4 -0 159600 5700 165300 metal5 -0 159600 22800 165300 metal3 -17100 159600 22800 165300 metal2 -17100 159600 22800 165300 metal1 -) -resp_msg[10] -( -0 85500 5700 91200 metal3 -0 85500 5700 91200 metal4 -0 85500 5700 91200 metal5 -0 85500 22800 91200 metal3 -17100 85500 22800 91200 metal2 -17100 85500 22800 91200 metal1 -) -resp_msg[11] -( -176700 68400 182400 74100 metal1 -176700 62700 182400 74100 metal2 -176700 62700 182400 68400 metal2 -176700 62700 200260 68400 metal3 -193800 62700 200260 68400 metal3 -193800 62700 200260 68400 metal4 -193800 62700 200260 68400 metal5 -) -resp_msg[12] -( -176700 22800 182400 28500 metal1 -176700 22800 182400 28500 metal2 -176700 22800 188100 28500 metal3 -182400 22800 188100 28500 metal2 -182400 17100 188100 28500 metal2 -182400 17100 188100 22800 metal2 -182400 17100 193800 22800 metal3 -188100 17100 193800 22800 metal2 -188100 0 193800 22800 metal2 -188100 0 193800 5700 metal2 -188100 0 193800 5700 metal3 -188100 0 193800 5700 metal4 -188100 0 193800 5700 metal5 -188100 0 193800 5700 metal6 -) -resp_msg[13] -( -176700 22800 182400 28500 metal1 -176700 22800 182400 28500 metal2 -176700 22800 193800 28500 metal3 -188100 22800 193800 28500 metal2 -188100 17100 193800 28500 metal2 -188100 17100 193800 22800 metal2 -188100 17100 200260 22800 metal3 -193800 17100 200260 22800 metal3 -193800 17100 200260 22800 metal4 -193800 17100 200260 22800 metal5 -) -resp_msg[14] -( -131100 22800 136800 28500 metal1 -131100 11400 136800 28500 metal2 -131100 11400 136800 17100 metal2 -125400 11400 136800 17100 metal3 -125400 11400 131100 17100 metal2 -125400 0 131100 17100 metal2 -125400 0 131100 5700 metal2 -125400 0 136800 5700 metal3 -131100 0 136800 5700 metal3 -131100 0 136800 5700 metal4 -131100 0 136800 5700 metal5 -131100 0 136800 5700 metal6 -) -resp_msg[15] -( -11400 0 17100 5700 metal2 -11400 0 17100 5700 metal3 -11400 0 17100 5700 metal4 -11400 0 17100 5700 metal5 -11400 0 17100 5700 metal6 -11400 0 17100 28500 metal2 -11400 22800 17100 28500 metal2 -11400 22800 22800 28500 metal3 -17100 22800 22800 28500 metal2 -17100 22800 22800 28500 metal1 -) -resp_msg[1] -( -0 142500 5700 148200 metal3 -0 142500 5700 148200 metal4 -0 142500 5700 148200 metal5 -0 142500 22800 148200 metal3 -17100 142500 22800 148200 metal2 -17100 142500 22800 153900 metal2 -17100 148200 22800 153900 metal1 -) -resp_msg[2] -( -0 131100 5700 136800 metal2 -0 131100 5700 136800 metal3 -0 131100 5700 136800 metal4 -0 131100 5700 136800 metal5 -0 131100 5700 142500 metal2 -0 136800 5700 142500 metal2 -0 136800 22800 142500 metal3 -17100 136800 22800 142500 metal2 -17100 131100 22800 142500 metal2 -17100 131100 22800 136800 metal1 -) -resp_msg[3] -( -159600 22800 165300 28500 metal1 -159600 22800 165300 28500 metal2 -153900 22800 165300 28500 metal3 -153900 22800 159600 28500 metal2 -153900 0 159600 28500 metal2 -153900 0 159600 5700 metal2 -153900 0 165300 5700 metal3 -159600 0 165300 5700 metal3 -159600 0 165300 5700 metal4 -159600 0 165300 5700 metal5 -159600 0 165300 5700 metal6 -) -resp_msg[4] -( -0 11400 5700 17100 metal3 -0 11400 5700 17100 metal4 -0 11400 5700 17100 metal5 -0 11400 28500 17100 metal3 -22800 11400 28500 17100 metal2 -22800 11400 28500 28500 metal2 -22800 22800 28500 28500 metal1 -) -resp_msg[5] -( -176700 34200 182400 39900 metal1 -176700 34200 182400 39900 metal2 -176700 34200 200260 39900 metal3 -193800 34200 200260 39900 metal3 -193800 34200 200260 39900 metal4 -193800 34200 200260 39900 metal5 -) -resp_msg[6] -( -0 39900 5700 45600 metal2 -0 39900 5700 45600 metal3 -0 39900 5700 45600 metal4 -0 39900 5700 45600 metal5 -0 39900 5700 51300 metal2 -0 45600 5700 51300 metal2 -0 45600 22800 51300 metal3 -17100 45600 22800 51300 metal2 -17100 45600 22800 51300 metal1 -) -resp_msg[7] -( -176700 176700 182400 182400 metal1 -176700 176700 182400 193800 metal2 -176700 188100 182400 193800 metal2 -176700 188100 200260 193800 metal3 -193800 188100 200260 193800 metal2 -193800 188100 200260 201600 metal2 -193800 193800 200260 201600 metal2 -193800 193800 200260 201600 metal3 -193800 193800 200260 201600 metal4 -193800 193800 200260 201600 metal5 -193800 193800 200260 201600 metal6 -) -resp_msg[8] -( -0 114000 5700 119700 metal3 -0 114000 5700 119700 metal4 -0 114000 5700 119700 metal5 -0 114000 22800 119700 metal3 -17100 114000 22800 119700 metal2 -17100 114000 22800 119700 metal1 -) -resp_msg[9] -( -114000 0 119700 5700 metal2 -114000 0 119700 5700 metal3 -114000 0 119700 5700 metal4 -114000 0 119700 5700 metal5 -114000 0 119700 5700 metal6 -114000 0 119700 28500 metal2 -114000 22800 119700 28500 metal2 -114000 22800 125400 28500 metal3 -119700 22800 125400 28500 metal2 -119700 22800 125400 28500 metal1 -) -resp_rdy -( -0 188100 5700 193800 metal2 -0 188100 5700 193800 metal3 -0 188100 5700 193800 metal4 -0 188100 5700 193800 metal5 -0 176700 5700 193800 metal2 -0 176700 5700 182400 metal2 -0 176700 22800 182400 metal3 -17100 176700 22800 182400 metal2 -17100 176700 22800 182400 metal1 -) -resp_val -( -176700 51300 182400 57000 metal1 -176700 51300 182400 57000 metal2 -176700 51300 200260 57000 metal3 -193800 51300 200260 57000 metal3 -193800 51300 200260 57000 metal4 -193800 51300 200260 57000 metal5 -) diff --git a/src/grt/test/congestion7_snapshot_batched.ok b/src/grt/test/congestion7_snapshot_batched.ok deleted file mode 100644 index c514d3c94d5..00000000000 --- a/src/grt/test/congestion7_snapshot_batched.ok +++ /dev/null @@ -1,96 +0,0 @@ -[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells -[INFO ODB-0128] Design: gcd -[INFO ODB-0130] Created 54 pins. -[INFO ODB-0131] Created 676 components and 2850 component-terminals. -[INFO ODB-0133] Created 579 nets and 1498 connections. -[WARNING GRT-0300] Timing is not available, setting critical nets percentage to 0. -[INFO GRT-0020] Min routing layer: metal2 -[INFO GRT-0021] Max routing layer: metal10 -[INFO GRT-0022] Global adjustment: 0% -[INFO GRT-0023] Grid origin: (0, 0) -[INFO GRT-0088] Layer metal1 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1350 -[INFO GRT-0088] Layer metal2 Track-Pitch = 0.1900 line-2-Via Pitch: 0.1400 -[INFO GRT-0088] Layer metal3 Track-Pitch = 0.1400 line-2-Via Pitch: 0.1400 -[INFO GRT-0088] Layer metal4 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal5 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal6 Track-Pitch = 0.2800 line-2-Via Pitch: 0.2800 -[INFO GRT-0088] Layer metal7 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 -[INFO GRT-0088] Layer metal8 Track-Pitch = 0.8000 line-2-Via Pitch: 0.8000 -[INFO GRT-0088] Layer metal9 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 -[INFO GRT-0088] Layer metal10 Track-Pitch = 1.6000 line-2-Via Pitch: 1.6000 -[INFO GRT-0003] Macros: 0 -[INFO GRT-0004] Blockages: 0 -[INFO GRT-0019] Found 0 clock nets. -[INFO GRT-0001] Minimum degree: 2 -[INFO GRT-0002] Maximum degree: 36 - -[INFO GRT-0053] Routing resources analysis: - Routing Original Derated Resource -Layer Direction Resources Resources Reduction (%) ---------------------------------------------------------------- -metal1 Horizontal 0 0 0.00% -metal2 Vertical 17918 1190 93.36% -metal3 Horizontal 24480 2380 90.28% -metal4 Vertical 12172 0 100.00% -metal5 Horizontal 12240 0 100.00% -metal6 Vertical 12172 0 100.00% -metal7 Horizontal 4284 0 100.00% -metal8 Vertical 4284 0 100.00% -metal9 Horizontal 2142 0 100.00% -metal10 Vertical 2142 0 100.00% ---------------------------------------------------------------- - -[INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0102] Start extra iteration 1/50 -[INFO GRT-0102] Start extra iteration 2/50 -[INFO GRT-0102] Start extra iteration 3/50 -[INFO GRT-0102] Start extra iteration 4/50 -[INFO GRT-0102] Start extra iteration 5/50 -[INFO GRT-0102] Start extra iteration 6/50 -[INFO GRT-0102] Start extra iteration 7/50 -[INFO GRT-0102] Start extra iteration 8/50 -[INFO GRT-0102] Start extra iteration 9/50 -[INFO GRT-0102] Start extra iteration 10/50 -[INFO GRT-0102] Start extra iteration 11/50 -[INFO GRT-0102] Start extra iteration 12/50 -[INFO GRT-0102] Start extra iteration 13/50 -[INFO GRT-0102] Start extra iteration 14/50 -[INFO GRT-0102] Start extra iteration 15/50 -[INFO GRT-0102] Start extra iteration 16/50 -[INFO GRT-0102] Start extra iteration 17/50 -[INFO GRT-0102] Start extra iteration 18/50 -[INFO GRT-0102] Start extra iteration 19/50 -[INFO GRT-0102] Start extra iteration 20/50 -[INFO GRT-0102] Start extra iteration 21/50 -[INFO GRT-0102] Start extra iteration 22/50 -[INFO GRT-0102] Start extra iteration 23/50 -[INFO GRT-0102] Start extra iteration 24/50 -[INFO GRT-0102] Start extra iteration 25/50 -[INFO GRT-0197] Via related to pin nodes: 2837 -[INFO GRT-0198] Via related Steiner nodes: 35 -[INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 3820 -[INFO GRT-0112] Final usage 3D: 14109 - -[INFO GRT-0096] Final congestion report: -Layer Resource Demand Usage (%) Max H / Max V / Total Overflow ---------------------------------------------------------------------------------------- -metal1 0 0 0.00% 0 / 0 / 0 -metal2 1190 1258 105.71% 1 / 4 / 527 -metal3 2380 1391 58.45% 3 / 1 / 300 -metal4 0 0 0.00% 0 / 0 / 0 -metal5 0 0 0.00% 0 / 0 / 0 -metal6 0 0 0.00% 0 / 0 / 0 -metal7 0 0 0.00% 0 / 0 / 0 -metal8 0 0 0.00% 0 / 0 / 0 -metal9 0 0 0.00% 0 / 0 / 0 -metal10 0 0 0.00% 0 / 0 / 0 ---------------------------------------------------------------------------------------- -Total 3570 2649 74.20% 4 / 5 / 827 - -[INFO GRT-0018] Total wirelength: 11502 um -[INFO GRT-0014] Routed nets: 563 -[WARNING GRT-0115] Global routing finished with congestion. Check the congestion regions in the DRC Viewer. -No differences found. -No differences found. -No differences found. diff --git a/src/grt/test/congestion7_snapshot_batched.rptok b/src/grt/test/congestion7_snapshot_batched.rptok deleted file mode 100644 index f08b6d747d0..00000000000 --- a/src/grt/test/congestion7_snapshot_batched.rptok +++ /dev/null @@ -1,2056 +0,0 @@ -violation type: Horizontal congestion - srcs: net:_160_ net:_385_ net:_396_ - comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_205_ net:_298_ net:_375_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_209_ net:_244_ net:_329_ net:_352_ net:_409_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_120_ net:_136_ net:_160_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_092_ net:_165_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_121_ net:net49 - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 57.0000) - (76.9500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_238_ net:_240_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_245_ net:_413_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_351_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 68.4000) - (71.2500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_042_ net:net46 - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 14.2500) - (51.3000, 17.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_176_ net:_276_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_144_ net:_236_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_220_ net:_224_ net:_253_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_126_ net:_133_ net:_258_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_119_ net:_144_ net:_287_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_237_ net:_298_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_215_ net:_298_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_371_ net:net39 net:net43 - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 11.4000) - (54.1500, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_031_ net:_119_ net:dpath.a_lt_b$in0\[3\] - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 71.2500) - (65.5500, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_145_ net:_236_ net:_253_ net:_262_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_272_ net:_284_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_014_ net:_140_ net:_353_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_370_ net:_397_ net:_421_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_193_ net:_353_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_131_ net:_206_ net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - -violation type: Horizontal congestion - srcs: net:_380_ net:net31 net:net37 - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 11.4000) - (39.9000, 14.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_139_ net:_143_ net:_245_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_377_ net:_395_ net:_415_ - comment: capacity:2 usage:3 overflow:1 - bbox = (76.9500, 45.6000) - (79.8000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_142_ net:net44 - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_205_ net:_298_ net:_375_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_126_ net:_165_ net:_245_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_130_ net:_207_ net:_397_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_072_ net:_330_ net:_409_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_268_ net:_383_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_372_ net:dpath.a_lt_b$in0\[11\] - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_142_ net:_247_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 51.3000) - (39.9000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_085_ net:_159_ net:_249_ net:_353_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_336_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_184_ net:_198_ net:_271_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_119_ net:_144_ net:_236_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_062_ net:_159_ net:_249_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 68.4000) - (51.3000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_143_ net:_169_ net:_190_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_013_ net:_051_ net:_123_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_217_ net:_219_ net:_310_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_093_ net:_127_ net:_370_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_243_ net:_252_ net:_352_ net:_353_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_294_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_117_ net:_179_ net:_180_ net:_287_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_249_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 37.0500) - (62.7000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:dpath.a_lt_b$in0\[6\] net:net41 - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_128_ net:_381_ net:dpath.a_lt_b$in1\[15\] - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_152_ net:_154_ net:_402_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 59.8500) - (37.0500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_203_ net:_204_ net:_298_ net:_375_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_257_ net:_404_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_327_ net:_332_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_195_ net:_388_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_177_ net:_195_ net:_199_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_353_ net:_377_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_337_ net:_339_ net:_341_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_079_ net:_113_ net:_248_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_136_ net:_137_ net:_188_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_065_ net:_245_ net:_279_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_186_ net:_283_ net:_385_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_111_ net:_200_ net:_252_ net:_312_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 34.2000) - (37.0500, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_160_ net:_165_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_215_ net:_298_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_083_ net:_165_ net:_412_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_172_ net:_263_ net:_264_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_125_ net:_141_ net:_307_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_070_ net:_313_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_133_ net:_147_ net:_254_ net:_258_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_175_ net:_278_ net:_353_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_105_ net:_139_ net:_245_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_126_ net:_165_ net:_245_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 65.5500) - (54.1500, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_202_ net:_220_ net:_252_ net:_419_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_272_ net:_284_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_027_ net:_248_ net:_389_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_173_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_132_ net:_347_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_253_ net:_353_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_174_ net:_237_ net:_298_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_160_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 62.7000) - (37.0500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_129_ net:_149_ net:_208_ net:_352_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_203_ net:_304_ net:_306_ net:_375_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_327_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_236_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_178_ net:_180_ net:_183_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_164_ net:_403_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_127_ net:_223_ net:_317_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_106_ net:_140_ net:_353_ net:_401_ - comment: capacity:2 usage:5 overflow:3 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_048_ net:_136_ net:_160_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_113_ net:_129_ net:_352_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_408_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_199_ net:_250_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_116_ net:_167_ net:_205_ net:_213_ net:_245_ - comment: capacity:2 usage:5 overflow:3 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_177_ net:_353_ net:_377_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_111_ net:_127_ net:_148_ net:_200_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_249_ net:_381_ net:_416_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_120_ net:_377_ net:_415_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_229_ net:_230_ net:_235_ net:_241_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 51.3000) - (48.4500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_118_ net:_126_ net:_165_ net:_245_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_066_ net:_159_ net:_245_ net:_253_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_249_ net:_281_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_156_ net:_162_ net:_421_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 59.8500) - (34.2000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_149_ net:_207_ net:_352_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_329_ net:_335_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_126_ net:_165_ net:_245_ net:_267_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_009_ net:_119_ net:_126_ net:_165_ net:_245_ - comment: capacity:2 usage:5 overflow:3 - bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_147_ net:_150_ net:_151_ net:_152_ net:_153_ - comment: capacity:2 usage:5 overflow:3 - bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_389_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_050_ net:_138_ net:_160_ net:_165_ - comment: capacity:2 usage:5 overflow:3 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_177_ net:_272_ net:_297_ net:_377_ - comment: capacity:2 usage:4 overflow:2 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_381_ net:_397_ net:dpath.a_lt_b$in1\[11\] - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_145_ net:_173_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_067_ net:_089_ net:_123_ net:_245_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_028_ net:_116_ net:_245_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_420_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 62.7000) - (34.2000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_125_ net:_381_ net:dpath.a_lt_b$in0\[9\] - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_042_ net:net46 - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_206_ net:_327_ net:_337_ net:net53 - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[31] net:req_val net:net33 - comment: capacity:2 usage:3 overflow:1 - bbox = (82.6500, 88.3500) - (85.5000, 91.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_124_ net:_248_ net:_300_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_277_ net:_353_ net:_377_ net:_415_ - comment: capacity:2 usage:4 overflow:2 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_253_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[3\] - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_191_ net:_297_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_249_ net:_275_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_218_ net:_381_ net:_421_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:dpath.a_lt_b$in0\[8\] - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_302_ net:_311_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_149_ net:_227_ net:_352_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_353_ net:_385_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_100_ net:_118_ net:_353_ net:_394_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 71.2500) - (57.0000, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_060_ net:_110_ net:_246_ net:_413_ - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_138_ net:_160_ net:_165_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_054_ net:_403_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:_221_ net:_317_ net:_318_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_016_ net:_039_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_165_ net:_245_ net:_404_ net:_412_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:_136_ net:_175_ net:_185_ net:_186_ net:_385_ - comment: capacity:2 usage:5 overflow:3 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_147_ net:_174_ net:_287_ net:_348_ - comment: capacity:2 usage:4 overflow:2 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_069_ net:_375_ net:_386_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_242_ net:_252_ net:_352_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_130_ net:_397_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_272_ net:_289_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_116_ net:_168_ net:_205_ net:_213_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_123_ net:_171_ net:_189_ net:_297_ - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_076_ net:_110_ net:_413_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_236_ net:_239_ net:_250_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_160_ net:_165_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_216_ net:_244_ net:_306_ net:_375_ - comment: capacity:2 usage:5 overflow:3 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_073_ net:_209_ net:_244_ net:_329_ net:_409_ - comment: capacity:2 usage:5 overflow:3 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_382_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_109_ net:_142_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_121_ net:_137_ - comment: capacity:2 usage:3 overflow:1 - bbox = (74.1000, 51.3000) - (76.9500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_058_ net:_160_ net:_161_ net:_380_ - comment: capacity:2 usage:4 overflow:2 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_248_ - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 45.6000) - (31.3500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_043_ net:_244_ net:_342_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_084_ net:_118_ - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 71.2500) - (51.3000, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_398_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:_329_ net:_409_ - comment: capacity:2 usage:4 overflow:2 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_353_ net:_360_ net:dpath.a_lt_b$in1\[7\] - comment: capacity:2 usage:4 overflow:2 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_210_ net:_212_ net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - -violation type: Horizontal congestion - srcs: net:_015_ net:_375_ net:_386_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_201_ net:_221_ net:_406_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_371_ net:_397_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_363_ net:_397_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_253_ net:_349_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_092_ net:_126_ net:_165_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_236_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_059_ net:_142_ net:_418_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_370_ net:_397_ - comment: capacity:2 usage:3 overflow:1 - bbox = (25.6500, 31.3500) - (28.5000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_352_ net:_401_ net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_135_ net:_172_ net:_265_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_112_ net:_372_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 31.3500) - (59.8500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_420_ net:net50 - comment: capacity:2 usage:3 overflow:1 - bbox = (28.5000, 62.7000) - (31.3500, 65.5500) on Layer - -violation type: Horizontal congestion - srcs: net:_077_ net:_248_ net:_370_ net:_397_ - comment: capacity:2 usage:4 overflow:2 - bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:_245_ net:_249_ net:_253_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_316_ net:_381_ - comment: capacity:2 usage:3 overflow:1 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_140_ net:_141_ net:_311_ net:_381_ - comment: capacity:2 usage:4 overflow:2 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - -violation type: Horizontal congestion - srcs: net:_147_ net:_236_ net:_287_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_131_ net:_227_ net:_397_ net:_401_ - comment: capacity:2 usage:4 overflow:2 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_160_ net:_372_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_129_ net:_232_ net:_234_ net:_352_ - comment: capacity:2 usage:4 overflow:2 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_248_ net:_374_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 19.9500) - (34.2000, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_055_ net:_380_ net:_403_ - comment: capacity:2 usage:3 overflow:1 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_204_ net:_244_ net:_294_ net:_299_ - comment: capacity:2 usage:5 overflow:3 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_211_ net:_233_ net:net53 - comment: capacity:2 usage:3 overflow:1 - bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_353_ net:_401_ - comment: capacity:2 usage:3 overflow:1 - bbox = (34.2000, 48.4500) - (37.0500, 51.3000) on Layer - -violation type: Horizontal congestion - srcs: net:_008_ net:_046_ net:_118_ - comment: capacity:2 usage:3 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - -violation type: Horizontal congestion - srcs: net:_072_ net:_407_ net:_409_ - comment: capacity:2 usage:3 overflow:1 - bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_138_ net:_160_ net:_165_ net:dpath.a_lt_b$in1\[6\] - comment: capacity:2 usage:4 overflow:2 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - -violation type: Horizontal congestion - srcs: net:_122_ net:_353_ net:_377_ net:_385_ - comment: capacity:2 usage:4 overflow:2 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - -violation type: Horizontal congestion - srcs: net:_115_ net:_158_ net:_409_ - comment: capacity:2 usage:3 overflow:1 - bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - -violation type: Horizontal congestion - srcs: net:_121_ net:_137_ net:_353_ - comment: capacity:2 usage:3 overflow:1 - bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - -violation type: Horizontal congestion - srcs: net:_236_ net:_253_ net:_417_ - comment: capacity:2 usage:3 overflow:1 - bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - -violation type: Horizontal congestion - srcs: net:_132_ net:_221_ net:_319_ net:_320_ - comment: capacity:2 usage:4 overflow:2 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[15] net:req_msg[8] - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 91.2000) - (14.2500, 94.0500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_289_ net:_290_ net:_296_ - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 48.4500) - (65.5500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_253_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 59.8500) - (68.4000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_209_ net:_252_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 19.9500) - (51.3000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_131_ net:_227_ net:_327_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 28.5000) - (45.6000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_203_ net:_304_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 39.9000) - (37.0500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_318_ net:_327_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 31.3500) - (45.6000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 59.8500) - (71.2500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_213_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 42.7500) - (54.1500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 51.3000) - (25.6500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[15] net:req_msg[8] - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 88.3500) - (14.2500, 91.2000) on Layer - -violation type: Vertical congestion - srcs: net:_149_ net:_352_ net:_401_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 28.5000) - (42.7500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 71.2500) - (14.2500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[2\] - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 71.2500) - (54.1500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_210_ net:_212_ net:_332_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 22.8000) - (51.3000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_071_ net:_249_ net:_397_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 37.0500) - (59.8500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_134_ net:dpath.a_lt_b$in1\[2\] - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 68.4000) - (57.0000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_421_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 48.4500) - (34.2000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_393_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 65.5500) - (59.8500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_261_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 65.5500) - (68.4000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_393_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 74.1000) - (59.8500, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 74.1000) - (79.8000, 76.9500) on Layer - -violation type: Vertical congestion - srcs: net:_112_ net:_128_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 31.3500) - (54.1500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_163_ net:_403_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 54.1500) - (34.2000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_091_ net:_142_ net:_158_ net:_244_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 34.2000) - (34.2000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_311_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 37.0500) - (42.7500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_393_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 71.2500) - (59.8500, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[5] net:net10 net:net27 - comment: capacity:1 usage:3 overflow:2 - bbox = (88.3500, 11.4000) - (91.2000, 14.2500) on Layer - -violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_384_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 59.8500) - (48.4500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_121_ net:_137_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 51.3000) - (79.8000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_204_ net:_298_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 42.7500) - (39.9000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_072_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 22.8000) - (59.8500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_011_ net:_160_ net:dpath.a_lt_b$in1\[5\] - comment: capacity:1 usage:3 overflow:2 - bbox = (79.8000, 51.3000) - (82.6500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 42.7500) - (57.0000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:net46 net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 17.1000) - (65.5500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_398_ net:_413_ - comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 59.8500) - (76.9500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_229_ net:_235_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 45.6000) - (51.3000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_245_ net:_253_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 54.1500) - (68.4000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_221_ net:_222_ net:_228_ net:_410_ - comment: capacity:1 usage:5 overflow:4 - bbox = (45.6000, 34.2000) - (48.4500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_229_ net:_235_ net:_245_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 42.7500) - (51.3000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_193_ net:_377_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 45.6000) - (62.7000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_386_ net:net36 - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 48.4500) - (28.5000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_130_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 17.1000) - (54.1500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_407_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 17.1000) - (59.8500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_272_ net:_385_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 45.6000) - (71.2500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_244_ net:_421_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 37.0500) - (34.2000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_159_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 42.7500) - (59.8500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_348_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 62.7000) - (59.8500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_110_ net:_126_ net:_412_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 62.7000) - (54.1500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:dpath.a_lt_b$in1\[12\] - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 25.6500) - (62.7000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 34.2000) - (31.3500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_386_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 42.7500) - (28.5000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_266_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 62.7000) - (68.4000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_007_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 59.8500) - (45.6000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:net30 net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 82.6500) - (79.8000, 85.5000) on Layer - -violation type: Vertical congestion - srcs: net:_395_ net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (82.6500, 45.6000) - (85.5000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:_142_ net:net43 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 19.9500) - (42.7500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_167_ net:_213_ net:_235_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 39.9000) - (51.3000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 79.8000) - (65.5500, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_175_ net:_249_ net:_277_ net:_415_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 45.6000) - (74.1000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_270_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 54.1500) - (62.7000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_244_ net:_314_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 28.5000) - (34.2000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_215_ net:_298_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 42.7500) - (48.4500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_253_ net:_262_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 59.8500) - (57.0000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ net:dpath.a_lt_b$in0\[1\] - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 62.7000) - (45.6000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_268_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 37.0500) - (74.1000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_229_ net:_235_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 48.4500) - (51.3000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_075_ net:_245_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 39.9000) - (57.0000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:net12 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 28.5000) - (19.9500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_417_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 54.1500) - (65.5500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_082_ net:_249_ net:_350_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 39.9000) - (54.1500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:net30 net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 76.9500) - (79.8000, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_344_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 19.9500) - (37.0500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_141_ net:_218_ net:_219_ net:_309_ - comment: capacity:1 usage:5 overflow:4 - bbox = (34.2000, 37.0500) - (37.0500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_130_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 28.5000) - (54.1500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_089_ net:_245_ net:_253_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 57.0000) - (68.4000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:net53 - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 22.8000) - (62.7000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_390_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 17.1000) - (45.6000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_105_ net:_249_ net:_353_ net:dpath.a_lt_b$in1\[7\] - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 54.1500) - (74.1000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:net24 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 54.1500) - (25.6500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_125_ net:_248_ net:_307_ net:_362_ - comment: capacity:1 usage:4 overflow:3 - bbox = (28.5000, 37.0500) - (31.3500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_327_ net:_410_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 22.8000) - (48.4500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 68.4000) - (65.5500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_414_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 39.9000) - (71.2500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_146_ net:_236_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 57.0000) - (57.0000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_224_ net:_318_ net:_327_ net:_401_ - comment: capacity:1 usage:5 overflow:4 - bbox = (42.7500, 34.2000) - (45.6000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_124_ net:_386_ - comment: capacity:1 usage:3 overflow:2 - bbox = (25.6500, 45.6000) - (28.5000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_096_ net:_366_ net:_371_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 17.1000) - (57.0000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_010_ net:dpath.a_lt_b$in1\[4\] - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 39.9000) - (79.8000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_244_ net:_421_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 39.9000) - (34.2000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_131_ net:_252_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 22.8000) - (39.9000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_142_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 51.3000) - (34.2000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_016_ net:_070_ net:_313_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 28.5000) - (37.0500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:net46 net:net48 - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 19.9500) - (65.5500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_147_ net:_180_ net:_182_ - comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 57.0000) - (54.1500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_178_ net:_198_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 51.3000) - (57.0000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 65.5500) - (45.6000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_397_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 34.2000) - (57.0000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_127_ net:_200_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 31.3500) - (39.9000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_017_ net:dpath.a_lt_b$in1\[11\] - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 34.2000) - (59.8500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 39.9000) - (25.6500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_239_ net:_250_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 57.0000) - (51.3000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_051_ net:_139_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 54.1500) - (71.2500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_170_ net:_177_ net:_245_ net:_253_ net:_284_ - comment: capacity:1 usage:5 overflow:4 - bbox = (65.5500, 45.6000) - (68.4000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_213_ net:_214_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 45.6000) - (54.1500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_041_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 25.6500) - (59.8500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_267_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 65.5500) - (65.5500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_102_ net:_160_ - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 42.7500) - (79.8000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_328_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 19.9500) - (54.1500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 42.7500) - (45.6000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:_400_ - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 37.0500) - (19.9500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_337_ net:_338_ net:_341_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 22.8000) - (45.6000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_378_ net:net52 - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 68.4000) - (48.4500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:resp_msg[11] net:net47 - comment: capacity:1 usage:2 overflow:1 - bbox = (88.3500, 31.3500) - (91.2000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_194_ net:_297_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 48.4500) - (62.7000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_397_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 39.9000) - (59.8500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_364_ net:_397_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 31.3500) - (57.0000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net19 - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 14.2500) - (59.8500, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_182_ net:_258_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 59.8500) - (54.1500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_250_ net:_404_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 59.8500) - (51.3000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_109_ net:_150_ - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 51.3000) - (42.7500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 59.8500) - (79.8000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_133_ net:_158_ net:_165_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 54.1500) - (48.4500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_343_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 22.8000) - (34.2000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 62.7000) - (79.8000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_001_ net:net7 - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 57.0000) - (28.5000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_044_ net:_098_ net:_347_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (51.3000, 37.0500) - (54.1500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_174_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (57.0000, 59.8500) - (59.8500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_207_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 28.5000) - (48.4500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_201_ net:_213_ net:_235_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 34.2000) - (51.3000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_129_ net:_371_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 25.6500) - (57.0000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_117_ net:_165_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 62.7000) - (48.4500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 45.6000) - (25.6500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 76.9500) - (65.5500, 79.8000) on Layer - -violation type: Vertical congestion - srcs: net:_179_ net:_239_ net:_250_ net:_404_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 54.1500) - (51.3000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_244_ net:_308_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 25.6500) - (34.2000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_126_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 65.5500) - (71.2500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_418_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 48.4500) - (39.9000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:_142_ net:net43 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 22.8000) - (42.7500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_275_ net:_360_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 57.0000) - (74.1000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_092_ net:_159_ net:_249_ net:_376_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 65.5500) - (74.1000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 31.3500) - (31.3500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 19.9500) - (45.6000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_003_ net:_055_ - comment: capacity:1 usage:3 overflow:2 - bbox = (28.5000, 57.0000) - (31.3500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_008_ net:_084_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 68.4000) - (54.1500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_353_ net:_393_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 68.4000) - (59.8500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_275_ net:_280_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 54.1500) - (76.9500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_111_ net:_149_ net:net43 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 31.3500) - (42.7500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_235_ net:_253_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 37.0500) - (51.3000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:ctrl.state.out\[1\] - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 54.1500) - (31.3500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_053_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 39.9000) - (28.5000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_012_ net:_122_ net:_248_ net:dpath.a_lt_b$in1\[6\] - comment: capacity:1 usage:4 overflow:3 - bbox = (62.7000, 39.9000) - (65.5500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_088_ net:dpath.a_lt_b$in0\[6\] - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 34.2000) - (68.4000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_109_ net:_243_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 48.4500) - (45.6000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_000_ net:_386_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 51.3000) - (28.5000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_414_ net:net41 - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 31.3500) - (71.2500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_259_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 65.5500) - (51.3000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_200_ net:_317_ net:net43 - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 34.2000) - (42.7500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:net30 net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 79.8000) - (79.8000, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 25.6500) - (39.9000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_410_ net:dpath.a_lt_b$in0\[13\] - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 14.2500) - (48.4500, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:net47 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (82.6500, 39.9000) - (85.5000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 42.7500) - (31.3500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_292_ net:_388_ net:_417_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 57.0000) - (65.5500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_099_ net:_159_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 57.0000) - (45.6000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_170_ net:_245_ net:_253_ net:_416_ - comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 42.7500) - (68.4000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_371_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 22.8000) - (57.0000, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_184_ net:_272_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 51.3000) - (59.8500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_144_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 59.8500) - (65.5500, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_025_ net:_072_ net:_079_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 19.9500) - (59.8500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net51 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 68.4000) - (14.2500, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_111_ net:_142_ net:_158_ net:_244_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 31.3500) - (34.2000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_228_ net:_410_ - comment: capacity:1 usage:2 overflow:1 - bbox = (45.6000, 31.3500) - (48.4500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_068_ net:_140_ net:_158_ net:_248_ - comment: capacity:1 usage:4 overflow:3 - bbox = (34.2000, 45.6000) - (37.0500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_243_ net:_353_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (42.7500, 45.6000) - (45.6000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_173_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 62.7000) - (57.0000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 42.7500) - (62.7000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:net47 net:net49 - comment: capacity:1 usage:2 overflow:1 - bbox = (82.6500, 37.0500) - (85.5000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_175_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 48.4500) - (76.9500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_188_ net:_283_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 48.4500) - (71.2500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 42.7500) - (65.5500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_141_ net:_248_ net:_353_ net:_362_ - comment: capacity:1 usage:4 overflow:3 - bbox = (28.5000, 39.9000) - (31.3500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_130_ net:_231_ net:_233_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 25.6500) - (54.1500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_253_ net:_256_ net:_404_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 62.7000) - (51.3000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_272_ net:_388_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 48.4500) - (59.8500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_388_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 45.6000) - (59.8500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_224_ net:_326_ net:_327_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 37.0500) - (45.6000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_402_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 59.8500) - (39.9000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_143_ net:_196_ net:_197_ net:_272_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 54.1500) - (59.8500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_134_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 65.5500) - (57.0000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_225_ net:_228_ net:_352_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 39.9000) - (48.4500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:net33 - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 65.5500) - (42.7500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_299_ net:_418_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 45.6000) - (39.9000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_352_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 34.2000) - (54.1500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_393_ net:net20 - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 79.8000) - (59.8500, 82.6500) on Layer - -violation type: Vertical congestion - srcs: net:_027_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 17.1000) - (37.0500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 65.5500) - (79.8000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_139_ net:_143_ - comment: capacity:1 usage:2 overflow:1 - bbox = (68.4000, 51.3000) - (71.2500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_130_ net:_211_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 22.8000) - (54.1500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:_037_ net:_405_ - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 34.2000) - (28.5000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_031_ net:_379_ - comment: capacity:1 usage:2 overflow:1 - bbox = (65.5500, 68.4000) - (68.4000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_225_ net:_228_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 37.0500) - (48.4500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_020_ net:_043_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 22.8000) - (37.0500, 25.6500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_123_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 57.0000) - (71.2500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 68.4000) - (79.8000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_026_ net:_390_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 14.2500) - (45.6000, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 39.9000) - (45.6000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_191_ net:_192_ net:_388_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 51.3000) - (62.7000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net44 - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 51.3000) - (31.3500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_236_ net:_404_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 51.3000) - (51.3000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 25.6500) - (37.0500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_353_ net:_415_ - comment: capacity:1 usage:3 overflow:2 - bbox = (71.2500, 51.3000) - (74.1000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_365_ - comment: capacity:1 usage:2 overflow:1 - bbox = (57.0000, 28.5000) - (59.8500, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_157_ net:_160_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 57.0000) - (39.9000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_172_ net:_264_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 59.8500) - (62.7000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:net12 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 31.3500) - (19.9500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_380_ net:_401_ - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 42.7500) - (25.6500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:net33 - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 62.7000) - (42.7500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 68.4000) - (45.6000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_050_ net:_104_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 39.9000) - (62.7000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_213_ net:_235_ - comment: capacity:1 usage:2 overflow:1 - bbox = (48.4500, 28.5000) - (51.3000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_190_ net:_248_ net:_291_ - comment: capacity:1 usage:3 overflow:2 - bbox = (62.7000, 51.3000) - (65.5500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:net12 - comment: capacity:1 usage:2 overflow:1 - bbox = (17.1000, 34.2000) - (19.9500, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_009_ net:_135_ net:dpath.a_lt_b$in1\[3\] - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 65.5500) - (62.7000, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_039_ net:_252_ net:_421_ net:dpath.a_lt_b$in1\[10\] - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 28.5000) - (39.9000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_136_ net:_137_ net:_187_ net:_249_ net:_415_ - comment: capacity:1 usage:5 overflow:4 - bbox = (71.2500, 48.4500) - (74.1000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_302_ net:_306_ net:_419_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 39.9000) - (39.9000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_180_ net:_183_ net:_236_ - comment: capacity:1 usage:3 overflow:2 - bbox = (51.3000, 54.1500) - (54.1500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_332_ net:_339_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 19.9500) - (48.4500, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_199_ net:_238_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 48.4500) - (54.1500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_164_ net:_402_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 54.1500) - (37.0500, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_158_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 51.3000) - (37.0500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_047_ net:_101_ net:_356_ - comment: capacity:1 usage:4 overflow:3 - bbox = (59.8500, 68.4000) - (62.7000, 71.2500) on Layer - -violation type: Vertical congestion - srcs: net:_152_ net:_154_ net:_156_ net:_402_ - comment: capacity:1 usage:4 overflow:3 - bbox = (34.2000, 57.0000) - (37.0500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 37.0500) - (65.5500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_394_ net:net35 - comment: capacity:1 usage:2 overflow:1 - bbox = (22.8000, 85.5000) - (25.6500, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_142_ net:_150_ net:_401_ - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 48.4500) - (42.7500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_276_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 42.7500) - (74.1000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_042_ net:_371_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 14.2500) - (57.0000, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_210_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 25.6500) - (51.3000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_117_ net:_133_ net:_165_ net:_384_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 57.0000) - (48.4500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_120_ net:_136_ - comment: capacity:1 usage:3 overflow:2 - bbox = (74.1000, 42.7500) - (76.9500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_176_ net:_272_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 42.7500) - (71.2500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_124_ net:_142_ net:_421_ - comment: capacity:1 usage:3 overflow:2 - bbox = (31.3500, 42.7500) - (34.2000, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_103_ net:_121_ net:_137_ - comment: capacity:1 usage:3 overflow:2 - bbox = (76.9500, 48.4500) - (79.8000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_006_ net:_353_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 62.7000) - (71.2500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_202_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 39.9000) - (42.7500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_127_ net:_148_ net:_252_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 34.2000) - (39.9000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_383_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 34.2000) - (74.1000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:_371_ net:_401_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 28.5000) - (57.0000, 31.3500) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_158_ net:_244_ - comment: capacity:1 usage:3 overflow:2 - bbox = (34.2000, 42.7500) - (37.0500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_215_ net:_298_ net:_352_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 45.6000) - (48.4500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_353_ - comment: capacity:1 usage:2 overflow:1 - bbox = (42.7500, 54.1500) - (45.6000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_207_ net:_213_ net:_235_ - comment: capacity:1 usage:4 overflow:3 - bbox = (48.4500, 31.3500) - (51.3000, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_073_ net:_252_ net:_408_ - comment: capacity:1 usage:3 overflow:2 - bbox = (48.4500, 17.1000) - (51.3000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net15 - comment: capacity:1 usage:2 overflow:1 - bbox = (85.5000, 42.7500) - (88.3500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net36 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 42.7500) - (14.2500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_115_ net:net43 net:net53 - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 25.6500) - (42.7500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_135_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 62.7000) - (62.7000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:net33 net:net9 - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 85.5000) - (42.7500, 88.3500) on Layer - -violation type: Vertical congestion - srcs: net:_221_ net:_248_ net:_406_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 34.2000) - (62.7000, 37.0500) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net36 - comment: capacity:1 usage:2 overflow:1 - bbox = (11.4000, 39.9000) - (14.2500, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_334_ net:_336_ net:_410_ - comment: capacity:1 usage:4 overflow:3 - bbox = (45.6000, 17.1000) - (48.4500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_330_ net:_371_ net:_401_ net:_407_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 19.9500) - (57.0000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_396_ net:net47 - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 42.7500) - (82.6500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:_002_ net:_004_ - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 54.1500) - (39.9000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_022_ net:_110_ - comment: capacity:1 usage:2 overflow:1 - bbox = (74.1000, 62.7000) - (76.9500, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_236_ net:_249_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 59.8500) - (74.1000, 62.7000) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_150_ net:_252_ net:_253_ - comment: capacity:1 usage:4 overflow:3 - bbox = (39.9000, 45.6000) - (42.7500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_131_ net:_327_ net:_341_ net:_346_ - comment: capacity:1 usage:4 overflow:3 - bbox = (42.7500, 25.6500) - (45.6000, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_281_ net:_381_ net:_416_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 37.0500) - (68.4000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 19.9500) - (34.2000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_144_ net:_269_ - comment: capacity:1 usage:3 overflow:2 - bbox = (59.8500, 57.0000) - (62.7000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_153_ net:_161_ - comment: capacity:1 usage:3 overflow:2 - bbox = (39.9000, 57.0000) - (42.7500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 14.2500) - (54.1500, 17.1000) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_253_ net:_416_ - comment: capacity:1 usage:3 overflow:2 - bbox = (65.5500, 39.9000) - (68.4000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_169_ net:_245_ net:_253_ - comment: capacity:1 usage:4 overflow:3 - bbox = (65.5500, 51.3000) - (68.4000, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_206_ net:_212_ net:_410_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 25.6500) - (48.4500, 28.5000) on Layer - -violation type: Vertical congestion - srcs: net:_313_ net:_421_ - comment: capacity:1 usage:2 overflow:1 - bbox = (34.2000, 31.3500) - (37.0500, 34.2000) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:_342_ net:_367_ - comment: capacity:1 usage:3 overflow:2 - bbox = (37.0500, 19.9500) - (39.9000, 22.8000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net28 - comment: capacity:1 usage:2 overflow:1 - bbox = (79.8000, 48.4500) - (82.6500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_249_ net:_411_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 65.5500) - (48.4500, 68.4000) on Layer - -violation type: Vertical congestion - srcs: net:_169_ net:_171_ net:_189_ net:_245_ net:_253_ - comment: capacity:1 usage:5 overflow:4 - bbox = (65.5500, 48.4500) - (68.4000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_399_ - comment: capacity:1 usage:2 overflow:1 - bbox = (28.5000, 48.4500) - (31.3500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_174_ net:_250_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (54.1500, 48.4500) - (57.0000, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net45 - comment: capacity:1 usage:2 overflow:1 - bbox = (76.9500, 71.2500) - (79.8000, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_288_ - comment: capacity:1 usage:2 overflow:1 - bbox = (62.7000, 45.6000) - (65.5500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_348_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 45.6000) - (57.0000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_120_ net:_249_ - comment: capacity:1 usage:2 overflow:1 - bbox = (71.2500, 39.9000) - (74.1000, 42.7500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_414_ - comment: capacity:1 usage:3 overflow:2 - bbox = (68.4000, 37.0500) - (71.2500, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_057_ net:_162_ net:_403_ net:_421_ - comment: capacity:1 usage:4 overflow:3 - bbox = (31.3500, 57.0000) - (34.2000, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_197_ net:_262_ net:_348_ - comment: capacity:1 usage:4 overflow:3 - bbox = (57.0000, 57.0000) - (59.8500, 59.8500) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:_252_ - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 42.7500) - (42.7500, 45.6000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_021_ - comment: capacity:1 usage:2 overflow:1 - bbox = (54.1500, 37.0500) - (57.0000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:net44 net:net7 - comment: capacity:1 usage:2 overflow:1 - bbox = (25.6500, 54.1500) - (28.5000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_136_ net:_185_ net:_353_ - comment: capacity:1 usage:4 overflow:3 - bbox = (74.1000, 45.6000) - (76.9500, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_220_ net:_252_ net:_302_ net:_310_ - comment: capacity:1 usage:4 overflow:3 - bbox = (37.0500, 37.0500) - (39.9000, 39.9000) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] - comment: capacity:1 usage:2 overflow:1 - bbox = (37.0500, 17.1000) - (39.9000, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_391_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 71.2500) - (62.7000, 74.1000) on Layer - -violation type: Vertical congestion - srcs: net:_240_ net:_250_ - comment: capacity:1 usage:2 overflow:1 - bbox = (51.3000, 51.3000) - (54.1500, 54.1500) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_230_ net:_242_ - comment: capacity:1 usage:3 overflow:2 - bbox = (45.6000, 48.4500) - (48.4500, 51.3000) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_271_ net:_348_ - comment: capacity:1 usage:3 overflow:2 - bbox = (54.1500, 54.1500) - (57.0000, 57.0000) on Layer - -violation type: Vertical congestion - srcs: net:_389_ net:net43 - comment: capacity:1 usage:2 overflow:1 - bbox = (39.9000, 17.1000) - (42.7500, 19.9500) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_421_ - comment: capacity:1 usage:2 overflow:1 - bbox = (31.3500, 45.6000) - (34.2000, 48.4500) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_166_ net:_249_ - comment: capacity:1 usage:4 overflow:3 - bbox = (71.2500, 62.7000) - (74.1000, 65.5500) on Layer - -violation type: Vertical congestion - srcs: net:_024_ net:_248_ - comment: capacity:1 usage:2 overflow:1 - bbox = (59.8500, 31.3500) - (62.7000, 34.2000) on Layer - diff --git a/src/grt/test/congestion7_snapshot_batched.tcl b/src/grt/test/congestion7_snapshot_batched.tcl deleted file mode 100644 index 2d65b8aad12..00000000000 --- a/src/grt/test/congestion7_snapshot_batched.tcl +++ /dev/null @@ -1,26 +0,0 @@ -source "helpers.tcl" -read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" - -set_thread_count 16 - -set guide_file [make_result_file congestion7_snapshot_batched.guide] -set rpt_file [make_result_file congestion7_snapshot_batched.rpt] - -set_global_routing_layer_adjustment metal2 0.9 -set_global_routing_layer_adjustment metal3 0.9 -set_global_routing_layer_adjustment metal4-metal10 1 - -set_routing_layers -signal metal2-metal10 - -global_route -allow_congestion -snapshot_batched_width 16 -verbose -congestion_report_file $rpt_file \ - -congestion_report_iter_step 20 - -write_guides $guide_file - -diff_file congestion7_snapshot_batched.guideok $guide_file -diff_file congestion7_snapshot_batched.rptok $rpt_file - -set rpt_folder [file dirname $rpt_file] -diff_file congestion7_snapshot_batched-20.rptok \ - [file join $rpt_folder congestion7_snapshot_batched-tcl-20.rpt] diff --git a/src/grt/test/shuffle_stress.def b/src/grt/test/shuffle_stress.def new file mode 100644 index 00000000000..620f465552b --- /dev/null +++ b/src/grt/test/shuffle_stress.def @@ -0,0 +1,2153 @@ +VERSION 5.8 ; +DIVIDERCHAR "/" ; +BUSBITCHARS "[]" ; +DESIGN shuffle_stress ; +UNITS DISTANCE MICRONS 1000 ; +DIEAREA ( 0 0 ) ( 18000 142800 ) ; +ROW ROW_0 FreePDK45_38x28_10R_NP_162NW_34O 2090 2800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_1 FreePDK45_38x28_10R_NP_162NW_34O 2090 4200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_2 FreePDK45_38x28_10R_NP_162NW_34O 2090 5600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_3 FreePDK45_38x28_10R_NP_162NW_34O 2090 7000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_4 FreePDK45_38x28_10R_NP_162NW_34O 2090 8400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_5 FreePDK45_38x28_10R_NP_162NW_34O 2090 9800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_6 FreePDK45_38x28_10R_NP_162NW_34O 2090 11200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_7 FreePDK45_38x28_10R_NP_162NW_34O 2090 12600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_8 FreePDK45_38x28_10R_NP_162NW_34O 2090 14000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_9 FreePDK45_38x28_10R_NP_162NW_34O 2090 15400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_10 FreePDK45_38x28_10R_NP_162NW_34O 2090 16800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_11 FreePDK45_38x28_10R_NP_162NW_34O 2090 18200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_12 FreePDK45_38x28_10R_NP_162NW_34O 2090 19600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_13 FreePDK45_38x28_10R_NP_162NW_34O 2090 21000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_14 FreePDK45_38x28_10R_NP_162NW_34O 2090 22400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_15 FreePDK45_38x28_10R_NP_162NW_34O 2090 23800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_16 FreePDK45_38x28_10R_NP_162NW_34O 2090 25200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_17 FreePDK45_38x28_10R_NP_162NW_34O 2090 26600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_18 FreePDK45_38x28_10R_NP_162NW_34O 2090 28000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_19 FreePDK45_38x28_10R_NP_162NW_34O 2090 29400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_20 FreePDK45_38x28_10R_NP_162NW_34O 2090 30800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_21 FreePDK45_38x28_10R_NP_162NW_34O 2090 32200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_22 FreePDK45_38x28_10R_NP_162NW_34O 2090 33600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_23 FreePDK45_38x28_10R_NP_162NW_34O 2090 35000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_24 FreePDK45_38x28_10R_NP_162NW_34O 2090 36400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_25 FreePDK45_38x28_10R_NP_162NW_34O 2090 37800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_26 FreePDK45_38x28_10R_NP_162NW_34O 2090 39200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_27 FreePDK45_38x28_10R_NP_162NW_34O 2090 40600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_28 FreePDK45_38x28_10R_NP_162NW_34O 2090 42000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_29 FreePDK45_38x28_10R_NP_162NW_34O 2090 43400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_30 FreePDK45_38x28_10R_NP_162NW_34O 2090 44800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_31 FreePDK45_38x28_10R_NP_162NW_34O 2090 46200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_32 FreePDK45_38x28_10R_NP_162NW_34O 2090 47600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_33 FreePDK45_38x28_10R_NP_162NW_34O 2090 49000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_34 FreePDK45_38x28_10R_NP_162NW_34O 2090 50400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_35 FreePDK45_38x28_10R_NP_162NW_34O 2090 51800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_36 FreePDK45_38x28_10R_NP_162NW_34O 2090 53200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_37 FreePDK45_38x28_10R_NP_162NW_34O 2090 54600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_38 FreePDK45_38x28_10R_NP_162NW_34O 2090 56000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_39 FreePDK45_38x28_10R_NP_162NW_34O 2090 57400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_40 FreePDK45_38x28_10R_NP_162NW_34O 2090 58800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_41 FreePDK45_38x28_10R_NP_162NW_34O 2090 60200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_42 FreePDK45_38x28_10R_NP_162NW_34O 2090 61600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_43 FreePDK45_38x28_10R_NP_162NW_34O 2090 63000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_44 FreePDK45_38x28_10R_NP_162NW_34O 2090 64400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_45 FreePDK45_38x28_10R_NP_162NW_34O 2090 65800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_46 FreePDK45_38x28_10R_NP_162NW_34O 2090 67200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_47 FreePDK45_38x28_10R_NP_162NW_34O 2090 68600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_48 FreePDK45_38x28_10R_NP_162NW_34O 2090 70000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_49 FreePDK45_38x28_10R_NP_162NW_34O 2090 71400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_50 FreePDK45_38x28_10R_NP_162NW_34O 2090 72800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_51 FreePDK45_38x28_10R_NP_162NW_34O 2090 74200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_52 FreePDK45_38x28_10R_NP_162NW_34O 2090 75600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_53 FreePDK45_38x28_10R_NP_162NW_34O 2090 77000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_54 FreePDK45_38x28_10R_NP_162NW_34O 2090 78400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_55 FreePDK45_38x28_10R_NP_162NW_34O 2090 79800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_56 FreePDK45_38x28_10R_NP_162NW_34O 2090 81200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_57 FreePDK45_38x28_10R_NP_162NW_34O 2090 82600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_58 FreePDK45_38x28_10R_NP_162NW_34O 2090 84000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_59 FreePDK45_38x28_10R_NP_162NW_34O 2090 85400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_60 FreePDK45_38x28_10R_NP_162NW_34O 2090 86800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_61 FreePDK45_38x28_10R_NP_162NW_34O 2090 88200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_62 FreePDK45_38x28_10R_NP_162NW_34O 2090 89600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_63 FreePDK45_38x28_10R_NP_162NW_34O 2090 91000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_64 FreePDK45_38x28_10R_NP_162NW_34O 2090 92400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_65 FreePDK45_38x28_10R_NP_162NW_34O 2090 93800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_66 FreePDK45_38x28_10R_NP_162NW_34O 2090 95200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_67 FreePDK45_38x28_10R_NP_162NW_34O 2090 96600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_68 FreePDK45_38x28_10R_NP_162NW_34O 2090 98000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_69 FreePDK45_38x28_10R_NP_162NW_34O 2090 99400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_70 FreePDK45_38x28_10R_NP_162NW_34O 2090 100800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_71 FreePDK45_38x28_10R_NP_162NW_34O 2090 102200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_72 FreePDK45_38x28_10R_NP_162NW_34O 2090 103600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_73 FreePDK45_38x28_10R_NP_162NW_34O 2090 105000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_74 FreePDK45_38x28_10R_NP_162NW_34O 2090 106400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_75 FreePDK45_38x28_10R_NP_162NW_34O 2090 107800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_76 FreePDK45_38x28_10R_NP_162NW_34O 2090 109200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_77 FreePDK45_38x28_10R_NP_162NW_34O 2090 110600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_78 FreePDK45_38x28_10R_NP_162NW_34O 2090 112000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_79 FreePDK45_38x28_10R_NP_162NW_34O 2090 113400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_80 FreePDK45_38x28_10R_NP_162NW_34O 2090 114800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_81 FreePDK45_38x28_10R_NP_162NW_34O 2090 116200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_82 FreePDK45_38x28_10R_NP_162NW_34O 2090 117600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_83 FreePDK45_38x28_10R_NP_162NW_34O 2090 119000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_84 FreePDK45_38x28_10R_NP_162NW_34O 2090 120400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_85 FreePDK45_38x28_10R_NP_162NW_34O 2090 121800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_86 FreePDK45_38x28_10R_NP_162NW_34O 2090 123200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_87 FreePDK45_38x28_10R_NP_162NW_34O 2090 124600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_88 FreePDK45_38x28_10R_NP_162NW_34O 2090 126000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_89 FreePDK45_38x28_10R_NP_162NW_34O 2090 127400 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_90 FreePDK45_38x28_10R_NP_162NW_34O 2090 128800 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_91 FreePDK45_38x28_10R_NP_162NW_34O 2090 130200 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_92 FreePDK45_38x28_10R_NP_162NW_34O 2090 131600 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_93 FreePDK45_38x28_10R_NP_162NW_34O 2090 133000 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_94 FreePDK45_38x28_10R_NP_162NW_34O 2090 134400 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_95 FreePDK45_38x28_10R_NP_162NW_34O 2090 135800 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_96 FreePDK45_38x28_10R_NP_162NW_34O 2090 137200 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_97 FreePDK45_38x28_10R_NP_162NW_34O 2090 138600 FS DO 72 BY 1 STEP 190 0 ; +ROW ROW_98 FreePDK45_38x28_10R_NP_162NW_34O 2090 140000 N DO 72 BY 1 STEP 190 0 ; +ROW ROW_99 FreePDK45_38x28_10R_NP_162NW_34O 2090 141400 FS DO 72 BY 1 STEP 190 0 ; +TRACKS X 95 DO 127 STEP 140 LAYER metal1 ; +TRACKS Y 70 DO 1019 STEP 140 LAYER metal1 ; +TRACKS X 95 DO 94 STEP 190 LAYER metal2 ; +TRACKS Y 70 DO 751 STEP 190 LAYER metal2 ; +TRACKS X 95 DO 127 STEP 140 LAYER metal3 ; +TRACKS Y 70 DO 1019 STEP 140 LAYER metal3 ; +TRACKS X 95 DO 63 STEP 280 LAYER metal4 ; +TRACKS Y 70 DO 509 STEP 280 LAYER metal4 ; +TRACKS X 95 DO 63 STEP 280 LAYER metal5 ; +TRACKS Y 70 DO 509 STEP 280 LAYER metal5 ; +TRACKS X 95 DO 63 STEP 280 LAYER metal6 ; +TRACKS Y 70 DO 509 STEP 280 LAYER metal6 ; +TRACKS X 895 DO 21 STEP 800 LAYER metal7 ; +TRACKS Y 870 DO 177 STEP 800 LAYER metal7 ; +TRACKS X 895 DO 21 STEP 800 LAYER metal8 ; +TRACKS Y 870 DO 177 STEP 800 LAYER metal8 ; +TRACKS X 1695 DO 10 STEP 1600 LAYER metal9 ; +TRACKS Y 1670 DO 88 STEP 1600 LAYER metal9 ; +TRACKS X 1695 DO 10 STEP 1600 LAYER metal10 ; +TRACKS Y 1670 DO 88 STEP 1600 LAYER metal10 ; +COMPONENTS 576 ; + - u_s0_l0 BUF_X1 + FIXED ( 3230 2800 ) N ; + - u_s0_l1 BUF_X1 + FIXED ( 3230 4200 ) FS ; + - u_s0_l2 BUF_X1 + FIXED ( 3230 5600 ) N ; + - u_s0_l3 BUF_X1 + FIXED ( 3230 7000 ) FS ; + - u_s0_l4 BUF_X1 + FIXED ( 3230 8400 ) N ; + - u_s0_l5 BUF_X1 + FIXED ( 3230 9800 ) FS ; + - u_s0_l6 BUF_X1 + FIXED ( 3230 11200 ) N ; + - u_s0_l7 BUF_X1 + FIXED ( 3230 12600 ) FS ; + - u_s0_l8 BUF_X1 + FIXED ( 3230 14000 ) N ; + - u_s0_l9 BUF_X1 + FIXED ( 3230 15400 ) FS ; + - u_s0_l10 BUF_X1 + FIXED ( 3230 16800 ) N ; + - u_s0_l11 BUF_X1 + FIXED ( 3230 18200 ) FS ; + - u_s0_l12 BUF_X1 + FIXED ( 3230 19600 ) N ; + - u_s0_l13 BUF_X1 + FIXED ( 3230 21000 ) FS ; + - u_s0_l14 BUF_X1 + FIXED ( 3230 22400 ) N ; + - u_s0_l15 BUF_X1 + FIXED ( 3230 23800 ) FS ; + - u_s0_l16 BUF_X1 + FIXED ( 3230 25200 ) N ; + - u_s0_l17 BUF_X1 + FIXED ( 3230 26600 ) FS ; + - u_s0_l18 BUF_X1 + FIXED ( 3230 28000 ) N ; + - u_s0_l19 BUF_X1 + FIXED ( 3230 29400 ) FS ; + - u_s0_l20 BUF_X1 + FIXED ( 3230 30800 ) N ; + - u_s0_l21 BUF_X1 + FIXED ( 3230 32200 ) FS ; + - u_s0_l22 BUF_X1 + FIXED ( 3230 33600 ) N ; + - u_s0_l23 BUF_X1 + FIXED ( 3230 35000 ) FS ; + - u_s0_l24 BUF_X1 + FIXED ( 3230 36400 ) N ; + - u_s0_l25 BUF_X1 + FIXED ( 3230 37800 ) FS ; + - u_s0_l26 BUF_X1 + FIXED ( 3230 39200 ) N ; + - u_s0_l27 BUF_X1 + FIXED ( 3230 40600 ) FS ; + - u_s0_l28 BUF_X1 + FIXED ( 3230 42000 ) N ; + - u_s0_l29 BUF_X1 + FIXED ( 3230 43400 ) FS ; + - u_s0_l30 BUF_X1 + FIXED ( 3230 44800 ) N ; + - u_s0_l31 BUF_X1 + FIXED ( 3230 46200 ) FS ; + - u_s0_l32 BUF_X1 + FIXED ( 3230 47600 ) N ; + - u_s0_l33 BUF_X1 + FIXED ( 3230 49000 ) FS ; + - u_s0_l34 BUF_X1 + FIXED ( 3230 50400 ) N ; + - u_s0_l35 BUF_X1 + FIXED ( 3230 51800 ) FS ; + - u_s0_l36 BUF_X1 + FIXED ( 3230 53200 ) N ; + - u_s0_l37 BUF_X1 + FIXED ( 3230 54600 ) FS ; + - u_s0_l38 BUF_X1 + FIXED ( 3230 56000 ) N ; + - u_s0_l39 BUF_X1 + FIXED ( 3230 57400 ) FS ; + - u_s0_l40 BUF_X1 + FIXED ( 3230 58800 ) N ; + - u_s0_l41 BUF_X1 + FIXED ( 3230 60200 ) FS ; + - u_s0_l42 BUF_X1 + FIXED ( 3230 61600 ) N ; + - u_s0_l43 BUF_X1 + FIXED ( 3230 63000 ) FS ; + - u_s0_l44 BUF_X1 + FIXED ( 3230 64400 ) N ; + - u_s0_l45 BUF_X1 + FIXED ( 3230 65800 ) FS ; + - u_s0_l46 BUF_X1 + FIXED ( 3230 67200 ) N ; + - u_s0_l47 BUF_X1 + FIXED ( 3230 68600 ) FS ; + - u_s0_l48 BUF_X1 + FIXED ( 3230 70000 ) N ; + - u_s0_l49 BUF_X1 + FIXED ( 3230 71400 ) FS ; + - u_s0_l50 BUF_X1 + FIXED ( 3230 72800 ) N ; + - u_s0_l51 BUF_X1 + FIXED ( 3230 74200 ) FS ; + - u_s0_l52 BUF_X1 + FIXED ( 3230 75600 ) N ; + - u_s0_l53 BUF_X1 + FIXED ( 3230 77000 ) FS ; + - u_s0_l54 BUF_X1 + FIXED ( 3230 78400 ) N ; + - u_s0_l55 BUF_X1 + FIXED ( 3230 79800 ) FS ; + - u_s0_l56 BUF_X1 + FIXED ( 3230 81200 ) N ; + - u_s0_l57 BUF_X1 + FIXED ( 3230 82600 ) FS ; + - u_s0_l58 BUF_X1 + FIXED ( 3230 84000 ) N ; + - u_s0_l59 BUF_X1 + FIXED ( 3230 85400 ) FS ; + - u_s0_l60 BUF_X1 + FIXED ( 3230 86800 ) N ; + - u_s0_l61 BUF_X1 + FIXED ( 3230 88200 ) FS ; + - u_s0_l62 BUF_X1 + FIXED ( 3230 89600 ) N ; + - u_s0_l63 BUF_X1 + FIXED ( 3230 91000 ) FS ; + - u_s0_l64 BUF_X1 + FIXED ( 3230 92400 ) N ; + - u_s0_l65 BUF_X1 + FIXED ( 3230 93800 ) FS ; + - u_s0_l66 BUF_X1 + FIXED ( 3230 95200 ) N ; + - u_s0_l67 BUF_X1 + FIXED ( 3230 96600 ) FS ; + - u_s0_l68 BUF_X1 + FIXED ( 3230 98000 ) N ; + - u_s0_l69 BUF_X1 + FIXED ( 3230 99400 ) FS ; + - u_s0_l70 BUF_X1 + FIXED ( 3230 100800 ) N ; + - u_s0_l71 BUF_X1 + FIXED ( 3230 102200 ) FS ; + - u_s0_l72 BUF_X1 + FIXED ( 3230 103600 ) N ; + - u_s0_l73 BUF_X1 + FIXED ( 3230 105000 ) FS ; + - u_s0_l74 BUF_X1 + FIXED ( 3230 106400 ) N ; + - u_s0_l75 BUF_X1 + FIXED ( 3230 107800 ) FS ; + - u_s0_l76 BUF_X1 + FIXED ( 3230 109200 ) N ; + - u_s0_l77 BUF_X1 + FIXED ( 3230 110600 ) FS ; + - u_s0_l78 BUF_X1 + FIXED ( 3230 112000 ) N ; + - u_s0_l79 BUF_X1 + FIXED ( 3230 113400 ) FS ; + - u_s0_l80 BUF_X1 + FIXED ( 3230 114800 ) N ; + - u_s0_l81 BUF_X1 + FIXED ( 3230 116200 ) FS ; + - u_s0_l82 BUF_X1 + FIXED ( 3230 117600 ) N ; + - u_s0_l83 BUF_X1 + FIXED ( 3230 119000 ) FS ; + - u_s0_l84 BUF_X1 + FIXED ( 3230 120400 ) N ; + - u_s0_l85 BUF_X1 + FIXED ( 3230 121800 ) FS ; + - u_s0_l86 BUF_X1 + FIXED ( 3230 123200 ) N ; + - u_s0_l87 BUF_X1 + FIXED ( 3230 124600 ) FS ; + - u_s0_l88 BUF_X1 + FIXED ( 3230 126000 ) N ; + - u_s0_l89 BUF_X1 + FIXED ( 3230 127400 ) FS ; + - u_s0_l90 BUF_X1 + FIXED ( 3230 128800 ) N ; + - u_s0_l91 BUF_X1 + FIXED ( 3230 130200 ) FS ; + - u_s0_l92 BUF_X1 + FIXED ( 3230 131600 ) N ; + - u_s0_l93 BUF_X1 + FIXED ( 3230 133000 ) FS ; + - u_s0_l94 BUF_X1 + FIXED ( 3230 134400 ) N ; + - u_s0_l95 BUF_X1 + FIXED ( 3230 135800 ) FS ; + - u_s1_l0 BUF_X1 + FIXED ( 4370 2800 ) N ; + - u_s1_l1 BUF_X1 + FIXED ( 4370 4200 ) FS ; + - u_s1_l2 BUF_X1 + FIXED ( 4370 5600 ) N ; + - u_s1_l3 BUF_X1 + FIXED ( 4370 7000 ) FS ; + - u_s1_l4 BUF_X1 + FIXED ( 4370 8400 ) N ; + - u_s1_l5 BUF_X1 + FIXED ( 4370 9800 ) FS ; + - u_s1_l6 BUF_X1 + FIXED ( 4370 11200 ) N ; + - u_s1_l7 BUF_X1 + FIXED ( 4370 12600 ) FS ; + - u_s1_l8 BUF_X1 + FIXED ( 4370 14000 ) N ; + - u_s1_l9 BUF_X1 + FIXED ( 4370 15400 ) FS ; + - u_s1_l10 BUF_X1 + FIXED ( 4370 16800 ) N ; + - u_s1_l11 BUF_X1 + FIXED ( 4370 18200 ) FS ; + - u_s1_l12 BUF_X1 + FIXED ( 4370 19600 ) N ; + - u_s1_l13 BUF_X1 + FIXED ( 4370 21000 ) FS ; + - u_s1_l14 BUF_X1 + FIXED ( 4370 22400 ) N ; + - u_s1_l15 BUF_X1 + FIXED ( 4370 23800 ) FS ; + - u_s1_l16 BUF_X1 + FIXED ( 4370 25200 ) N ; + - u_s1_l17 BUF_X1 + FIXED ( 4370 26600 ) FS ; + - u_s1_l18 BUF_X1 + FIXED ( 4370 28000 ) N ; + - u_s1_l19 BUF_X1 + FIXED ( 4370 29400 ) FS ; + - u_s1_l20 BUF_X1 + FIXED ( 4370 30800 ) N ; + - u_s1_l21 BUF_X1 + FIXED ( 4370 32200 ) FS ; + - u_s1_l22 BUF_X1 + FIXED ( 4370 33600 ) N ; + - u_s1_l23 BUF_X1 + FIXED ( 4370 35000 ) FS ; + - u_s1_l24 BUF_X1 + FIXED ( 4370 36400 ) N ; + - u_s1_l25 BUF_X1 + FIXED ( 4370 37800 ) FS ; + - u_s1_l26 BUF_X1 + FIXED ( 4370 39200 ) N ; + - u_s1_l27 BUF_X1 + FIXED ( 4370 40600 ) FS ; + - u_s1_l28 BUF_X1 + FIXED ( 4370 42000 ) N ; + - u_s1_l29 BUF_X1 + FIXED ( 4370 43400 ) FS ; + - u_s1_l30 BUF_X1 + FIXED ( 4370 44800 ) N ; + - u_s1_l31 BUF_X1 + FIXED ( 4370 46200 ) FS ; + - u_s1_l32 BUF_X1 + FIXED ( 4370 47600 ) N ; + - u_s1_l33 BUF_X1 + FIXED ( 4370 49000 ) FS ; + - u_s1_l34 BUF_X1 + FIXED ( 4370 50400 ) N ; + - u_s1_l35 BUF_X1 + FIXED ( 4370 51800 ) FS ; + - u_s1_l36 BUF_X1 + FIXED ( 4370 53200 ) N ; + - u_s1_l37 BUF_X1 + FIXED ( 4370 54600 ) FS ; + - u_s1_l38 BUF_X1 + FIXED ( 4370 56000 ) N ; + - u_s1_l39 BUF_X1 + FIXED ( 4370 57400 ) FS ; + - u_s1_l40 BUF_X1 + FIXED ( 4370 58800 ) N ; + - u_s1_l41 BUF_X1 + FIXED ( 4370 60200 ) FS ; + - u_s1_l42 BUF_X1 + FIXED ( 4370 61600 ) N ; + - u_s1_l43 BUF_X1 + FIXED ( 4370 63000 ) FS ; + - u_s1_l44 BUF_X1 + FIXED ( 4370 64400 ) N ; + - u_s1_l45 BUF_X1 + FIXED ( 4370 65800 ) FS ; + - u_s1_l46 BUF_X1 + FIXED ( 4370 67200 ) N ; + - u_s1_l47 BUF_X1 + FIXED ( 4370 68600 ) FS ; + - u_s1_l48 BUF_X1 + FIXED ( 4370 70000 ) N ; + - u_s1_l49 BUF_X1 + FIXED ( 4370 71400 ) FS ; + - u_s1_l50 BUF_X1 + FIXED ( 4370 72800 ) N ; + - u_s1_l51 BUF_X1 + FIXED ( 4370 74200 ) FS ; + - u_s1_l52 BUF_X1 + FIXED ( 4370 75600 ) N ; + - u_s1_l53 BUF_X1 + FIXED ( 4370 77000 ) FS ; + - u_s1_l54 BUF_X1 + FIXED ( 4370 78400 ) N ; + - u_s1_l55 BUF_X1 + FIXED ( 4370 79800 ) FS ; + - u_s1_l56 BUF_X1 + FIXED ( 4370 81200 ) N ; + - u_s1_l57 BUF_X1 + FIXED ( 4370 82600 ) FS ; + - u_s1_l58 BUF_X1 + FIXED ( 4370 84000 ) N ; + - u_s1_l59 BUF_X1 + FIXED ( 4370 85400 ) FS ; + - u_s1_l60 BUF_X1 + FIXED ( 4370 86800 ) N ; + - u_s1_l61 BUF_X1 + FIXED ( 4370 88200 ) FS ; + - u_s1_l62 BUF_X1 + FIXED ( 4370 89600 ) N ; + - u_s1_l63 BUF_X1 + FIXED ( 4370 91000 ) FS ; + - u_s1_l64 BUF_X1 + FIXED ( 4370 92400 ) N ; + - u_s1_l65 BUF_X1 + FIXED ( 4370 93800 ) FS ; + - u_s1_l66 BUF_X1 + FIXED ( 4370 95200 ) N ; + - u_s1_l67 BUF_X1 + FIXED ( 4370 96600 ) FS ; + - u_s1_l68 BUF_X1 + FIXED ( 4370 98000 ) N ; + - u_s1_l69 BUF_X1 + FIXED ( 4370 99400 ) FS ; + - u_s1_l70 BUF_X1 + FIXED ( 4370 100800 ) N ; + - u_s1_l71 BUF_X1 + FIXED ( 4370 102200 ) FS ; + - u_s1_l72 BUF_X1 + FIXED ( 4370 103600 ) N ; + - u_s1_l73 BUF_X1 + FIXED ( 4370 105000 ) FS ; + - u_s1_l74 BUF_X1 + FIXED ( 4370 106400 ) N ; + - u_s1_l75 BUF_X1 + FIXED ( 4370 107800 ) FS ; + - u_s1_l76 BUF_X1 + FIXED ( 4370 109200 ) N ; + - u_s1_l77 BUF_X1 + FIXED ( 4370 110600 ) FS ; + - u_s1_l78 BUF_X1 + FIXED ( 4370 112000 ) N ; + - u_s1_l79 BUF_X1 + FIXED ( 4370 113400 ) FS ; + - u_s1_l80 BUF_X1 + FIXED ( 4370 114800 ) N ; + - u_s1_l81 BUF_X1 + FIXED ( 4370 116200 ) FS ; + - u_s1_l82 BUF_X1 + FIXED ( 4370 117600 ) N ; + - u_s1_l83 BUF_X1 + FIXED ( 4370 119000 ) FS ; + - u_s1_l84 BUF_X1 + FIXED ( 4370 120400 ) N ; + - u_s1_l85 BUF_X1 + FIXED ( 4370 121800 ) FS ; + - u_s1_l86 BUF_X1 + FIXED ( 4370 123200 ) N ; + - u_s1_l87 BUF_X1 + FIXED ( 4370 124600 ) FS ; + - u_s1_l88 BUF_X1 + FIXED ( 4370 126000 ) N ; + - u_s1_l89 BUF_X1 + FIXED ( 4370 127400 ) FS ; + - u_s1_l90 BUF_X1 + FIXED ( 4370 128800 ) N ; + - u_s1_l91 BUF_X1 + FIXED ( 4370 130200 ) FS ; + - u_s1_l92 BUF_X1 + FIXED ( 4370 131600 ) N ; + - u_s1_l93 BUF_X1 + FIXED ( 4370 133000 ) FS ; + - u_s1_l94 BUF_X1 + FIXED ( 4370 134400 ) N ; + - u_s1_l95 BUF_X1 + FIXED ( 4370 135800 ) FS ; + - u_s2_l0 BUF_X1 + FIXED ( 5510 2800 ) N ; + - u_s2_l1 BUF_X1 + FIXED ( 5510 4200 ) FS ; + - u_s2_l2 BUF_X1 + FIXED ( 5510 5600 ) N ; + - u_s2_l3 BUF_X1 + FIXED ( 5510 7000 ) FS ; + - u_s2_l4 BUF_X1 + FIXED ( 5510 8400 ) N ; + - u_s2_l5 BUF_X1 + FIXED ( 5510 9800 ) FS ; + - u_s2_l6 BUF_X1 + FIXED ( 5510 11200 ) N ; + - u_s2_l7 BUF_X1 + FIXED ( 5510 12600 ) FS ; + - u_s2_l8 BUF_X1 + FIXED ( 5510 14000 ) N ; + - u_s2_l9 BUF_X1 + FIXED ( 5510 15400 ) FS ; + - u_s2_l10 BUF_X1 + FIXED ( 5510 16800 ) N ; + - u_s2_l11 BUF_X1 + FIXED ( 5510 18200 ) FS ; + - u_s2_l12 BUF_X1 + FIXED ( 5510 19600 ) N ; + - u_s2_l13 BUF_X1 + FIXED ( 5510 21000 ) FS ; + - u_s2_l14 BUF_X1 + FIXED ( 5510 22400 ) N ; + - u_s2_l15 BUF_X1 + FIXED ( 5510 23800 ) FS ; + - u_s2_l16 BUF_X1 + FIXED ( 5510 25200 ) N ; + - u_s2_l17 BUF_X1 + FIXED ( 5510 26600 ) FS ; + - u_s2_l18 BUF_X1 + FIXED ( 5510 28000 ) N ; + - u_s2_l19 BUF_X1 + FIXED ( 5510 29400 ) FS ; + - u_s2_l20 BUF_X1 + FIXED ( 5510 30800 ) N ; + - u_s2_l21 BUF_X1 + FIXED ( 5510 32200 ) FS ; + - u_s2_l22 BUF_X1 + FIXED ( 5510 33600 ) N ; + - u_s2_l23 BUF_X1 + FIXED ( 5510 35000 ) FS ; + - u_s2_l24 BUF_X1 + FIXED ( 5510 36400 ) N ; + - u_s2_l25 BUF_X1 + FIXED ( 5510 37800 ) FS ; + - u_s2_l26 BUF_X1 + FIXED ( 5510 39200 ) N ; + - u_s2_l27 BUF_X1 + FIXED ( 5510 40600 ) FS ; + - u_s2_l28 BUF_X1 + FIXED ( 5510 42000 ) N ; + - u_s2_l29 BUF_X1 + FIXED ( 5510 43400 ) FS ; + - u_s2_l30 BUF_X1 + FIXED ( 5510 44800 ) N ; + - u_s2_l31 BUF_X1 + FIXED ( 5510 46200 ) FS ; + - u_s2_l32 BUF_X1 + FIXED ( 5510 47600 ) N ; + - u_s2_l33 BUF_X1 + FIXED ( 5510 49000 ) FS ; + - u_s2_l34 BUF_X1 + FIXED ( 5510 50400 ) N ; + - u_s2_l35 BUF_X1 + FIXED ( 5510 51800 ) FS ; + - u_s2_l36 BUF_X1 + FIXED ( 5510 53200 ) N ; + - u_s2_l37 BUF_X1 + FIXED ( 5510 54600 ) FS ; + - u_s2_l38 BUF_X1 + FIXED ( 5510 56000 ) N ; + - u_s2_l39 BUF_X1 + FIXED ( 5510 57400 ) FS ; + - u_s2_l40 BUF_X1 + FIXED ( 5510 58800 ) N ; + - u_s2_l41 BUF_X1 + FIXED ( 5510 60200 ) FS ; + - u_s2_l42 BUF_X1 + FIXED ( 5510 61600 ) N ; + - u_s2_l43 BUF_X1 + FIXED ( 5510 63000 ) FS ; + - u_s2_l44 BUF_X1 + FIXED ( 5510 64400 ) N ; + - u_s2_l45 BUF_X1 + FIXED ( 5510 65800 ) FS ; + - u_s2_l46 BUF_X1 + FIXED ( 5510 67200 ) N ; + - u_s2_l47 BUF_X1 + FIXED ( 5510 68600 ) FS ; + - u_s2_l48 BUF_X1 + FIXED ( 5510 70000 ) N ; + - u_s2_l49 BUF_X1 + FIXED ( 5510 71400 ) FS ; + - u_s2_l50 BUF_X1 + FIXED ( 5510 72800 ) N ; + - u_s2_l51 BUF_X1 + FIXED ( 5510 74200 ) FS ; + - u_s2_l52 BUF_X1 + FIXED ( 5510 75600 ) N ; + - u_s2_l53 BUF_X1 + FIXED ( 5510 77000 ) FS ; + - u_s2_l54 BUF_X1 + FIXED ( 5510 78400 ) N ; + - u_s2_l55 BUF_X1 + FIXED ( 5510 79800 ) FS ; + - u_s2_l56 BUF_X1 + FIXED ( 5510 81200 ) N ; + - u_s2_l57 BUF_X1 + FIXED ( 5510 82600 ) FS ; + - u_s2_l58 BUF_X1 + FIXED ( 5510 84000 ) N ; + - u_s2_l59 BUF_X1 + FIXED ( 5510 85400 ) FS ; + - u_s2_l60 BUF_X1 + FIXED ( 5510 86800 ) N ; + - u_s2_l61 BUF_X1 + FIXED ( 5510 88200 ) FS ; + - u_s2_l62 BUF_X1 + FIXED ( 5510 89600 ) N ; + - u_s2_l63 BUF_X1 + FIXED ( 5510 91000 ) FS ; + - u_s2_l64 BUF_X1 + FIXED ( 5510 92400 ) N ; + - u_s2_l65 BUF_X1 + FIXED ( 5510 93800 ) FS ; + - u_s2_l66 BUF_X1 + FIXED ( 5510 95200 ) N ; + - u_s2_l67 BUF_X1 + FIXED ( 5510 96600 ) FS ; + - u_s2_l68 BUF_X1 + FIXED ( 5510 98000 ) N ; + - u_s2_l69 BUF_X1 + FIXED ( 5510 99400 ) FS ; + - u_s2_l70 BUF_X1 + FIXED ( 5510 100800 ) N ; + - u_s2_l71 BUF_X1 + FIXED ( 5510 102200 ) FS ; + - u_s2_l72 BUF_X1 + FIXED ( 5510 103600 ) N ; + - u_s2_l73 BUF_X1 + FIXED ( 5510 105000 ) FS ; + - u_s2_l74 BUF_X1 + FIXED ( 5510 106400 ) N ; + - u_s2_l75 BUF_X1 + FIXED ( 5510 107800 ) FS ; + - u_s2_l76 BUF_X1 + FIXED ( 5510 109200 ) N ; + - u_s2_l77 BUF_X1 + FIXED ( 5510 110600 ) FS ; + - u_s2_l78 BUF_X1 + FIXED ( 5510 112000 ) N ; + - u_s2_l79 BUF_X1 + FIXED ( 5510 113400 ) FS ; + - u_s2_l80 BUF_X1 + FIXED ( 5510 114800 ) N ; + - u_s2_l81 BUF_X1 + FIXED ( 5510 116200 ) FS ; + - u_s2_l82 BUF_X1 + FIXED ( 5510 117600 ) N ; + - u_s2_l83 BUF_X1 + FIXED ( 5510 119000 ) FS ; + - u_s2_l84 BUF_X1 + FIXED ( 5510 120400 ) N ; + - u_s2_l85 BUF_X1 + FIXED ( 5510 121800 ) FS ; + - u_s2_l86 BUF_X1 + FIXED ( 5510 123200 ) N ; + - u_s2_l87 BUF_X1 + FIXED ( 5510 124600 ) FS ; + - u_s2_l88 BUF_X1 + FIXED ( 5510 126000 ) N ; + - u_s2_l89 BUF_X1 + FIXED ( 5510 127400 ) FS ; + - u_s2_l90 BUF_X1 + FIXED ( 5510 128800 ) N ; + - u_s2_l91 BUF_X1 + FIXED ( 5510 130200 ) FS ; + - u_s2_l92 BUF_X1 + FIXED ( 5510 131600 ) N ; + - u_s2_l93 BUF_X1 + FIXED ( 5510 133000 ) FS ; + - u_s2_l94 BUF_X1 + FIXED ( 5510 134400 ) N ; + - u_s2_l95 BUF_X1 + FIXED ( 5510 135800 ) FS ; + - u_s3_l0 BUF_X1 + FIXED ( 6650 2800 ) N ; + - u_s3_l1 BUF_X1 + FIXED ( 6650 4200 ) FS ; + - u_s3_l2 BUF_X1 + FIXED ( 6650 5600 ) N ; + - u_s3_l3 BUF_X1 + FIXED ( 6650 7000 ) FS ; + - u_s3_l4 BUF_X1 + FIXED ( 6650 8400 ) N ; + - u_s3_l5 BUF_X1 + FIXED ( 6650 9800 ) FS ; + - u_s3_l6 BUF_X1 + FIXED ( 6650 11200 ) N ; + - u_s3_l7 BUF_X1 + FIXED ( 6650 12600 ) FS ; + - u_s3_l8 BUF_X1 + FIXED ( 6650 14000 ) N ; + - u_s3_l9 BUF_X1 + FIXED ( 6650 15400 ) FS ; + - u_s3_l10 BUF_X1 + FIXED ( 6650 16800 ) N ; + - u_s3_l11 BUF_X1 + FIXED ( 6650 18200 ) FS ; + - u_s3_l12 BUF_X1 + FIXED ( 6650 19600 ) N ; + - u_s3_l13 BUF_X1 + FIXED ( 6650 21000 ) FS ; + - u_s3_l14 BUF_X1 + FIXED ( 6650 22400 ) N ; + - u_s3_l15 BUF_X1 + FIXED ( 6650 23800 ) FS ; + - u_s3_l16 BUF_X1 + FIXED ( 6650 25200 ) N ; + - u_s3_l17 BUF_X1 + FIXED ( 6650 26600 ) FS ; + - u_s3_l18 BUF_X1 + FIXED ( 6650 28000 ) N ; + - u_s3_l19 BUF_X1 + FIXED ( 6650 29400 ) FS ; + - u_s3_l20 BUF_X1 + FIXED ( 6650 30800 ) N ; + - u_s3_l21 BUF_X1 + FIXED ( 6650 32200 ) FS ; + - u_s3_l22 BUF_X1 + FIXED ( 6650 33600 ) N ; + - u_s3_l23 BUF_X1 + FIXED ( 6650 35000 ) FS ; + - u_s3_l24 BUF_X1 + FIXED ( 6650 36400 ) N ; + - u_s3_l25 BUF_X1 + FIXED ( 6650 37800 ) FS ; + - u_s3_l26 BUF_X1 + FIXED ( 6650 39200 ) N ; + - u_s3_l27 BUF_X1 + FIXED ( 6650 40600 ) FS ; + - u_s3_l28 BUF_X1 + FIXED ( 6650 42000 ) N ; + - u_s3_l29 BUF_X1 + FIXED ( 6650 43400 ) FS ; + - u_s3_l30 BUF_X1 + FIXED ( 6650 44800 ) N ; + - u_s3_l31 BUF_X1 + FIXED ( 6650 46200 ) FS ; + - u_s3_l32 BUF_X1 + FIXED ( 6650 47600 ) N ; + - u_s3_l33 BUF_X1 + FIXED ( 6650 49000 ) FS ; + - u_s3_l34 BUF_X1 + FIXED ( 6650 50400 ) N ; + - u_s3_l35 BUF_X1 + FIXED ( 6650 51800 ) FS ; + - u_s3_l36 BUF_X1 + FIXED ( 6650 53200 ) N ; + - u_s3_l37 BUF_X1 + FIXED ( 6650 54600 ) FS ; + - u_s3_l38 BUF_X1 + FIXED ( 6650 56000 ) N ; + - u_s3_l39 BUF_X1 + FIXED ( 6650 57400 ) FS ; + - u_s3_l40 BUF_X1 + FIXED ( 6650 58800 ) N ; + - u_s3_l41 BUF_X1 + FIXED ( 6650 60200 ) FS ; + - u_s3_l42 BUF_X1 + FIXED ( 6650 61600 ) N ; + - u_s3_l43 BUF_X1 + FIXED ( 6650 63000 ) FS ; + - u_s3_l44 BUF_X1 + FIXED ( 6650 64400 ) N ; + - u_s3_l45 BUF_X1 + FIXED ( 6650 65800 ) FS ; + - u_s3_l46 BUF_X1 + FIXED ( 6650 67200 ) N ; + - u_s3_l47 BUF_X1 + FIXED ( 6650 68600 ) FS ; + - u_s3_l48 BUF_X1 + FIXED ( 6650 70000 ) N ; + - u_s3_l49 BUF_X1 + FIXED ( 6650 71400 ) FS ; + - u_s3_l50 BUF_X1 + FIXED ( 6650 72800 ) N ; + - u_s3_l51 BUF_X1 + FIXED ( 6650 74200 ) FS ; + - u_s3_l52 BUF_X1 + FIXED ( 6650 75600 ) N ; + - u_s3_l53 BUF_X1 + FIXED ( 6650 77000 ) FS ; + - u_s3_l54 BUF_X1 + FIXED ( 6650 78400 ) N ; + - u_s3_l55 BUF_X1 + FIXED ( 6650 79800 ) FS ; + - u_s3_l56 BUF_X1 + FIXED ( 6650 81200 ) N ; + - u_s3_l57 BUF_X1 + FIXED ( 6650 82600 ) FS ; + - u_s3_l58 BUF_X1 + FIXED ( 6650 84000 ) N ; + - u_s3_l59 BUF_X1 + FIXED ( 6650 85400 ) FS ; + - u_s3_l60 BUF_X1 + FIXED ( 6650 86800 ) N ; + - u_s3_l61 BUF_X1 + FIXED ( 6650 88200 ) FS ; + - u_s3_l62 BUF_X1 + FIXED ( 6650 89600 ) N ; + - u_s3_l63 BUF_X1 + FIXED ( 6650 91000 ) FS ; + - u_s3_l64 BUF_X1 + FIXED ( 6650 92400 ) N ; + - u_s3_l65 BUF_X1 + FIXED ( 6650 93800 ) FS ; + - u_s3_l66 BUF_X1 + FIXED ( 6650 95200 ) N ; + - u_s3_l67 BUF_X1 + FIXED ( 6650 96600 ) FS ; + - u_s3_l68 BUF_X1 + FIXED ( 6650 98000 ) N ; + - u_s3_l69 BUF_X1 + FIXED ( 6650 99400 ) FS ; + - u_s3_l70 BUF_X1 + FIXED ( 6650 100800 ) N ; + - u_s3_l71 BUF_X1 + FIXED ( 6650 102200 ) FS ; + - u_s3_l72 BUF_X1 + FIXED ( 6650 103600 ) N ; + - u_s3_l73 BUF_X1 + FIXED ( 6650 105000 ) FS ; + - u_s3_l74 BUF_X1 + FIXED ( 6650 106400 ) N ; + - u_s3_l75 BUF_X1 + FIXED ( 6650 107800 ) FS ; + - u_s3_l76 BUF_X1 + FIXED ( 6650 109200 ) N ; + - u_s3_l77 BUF_X1 + FIXED ( 6650 110600 ) FS ; + - u_s3_l78 BUF_X1 + FIXED ( 6650 112000 ) N ; + - u_s3_l79 BUF_X1 + FIXED ( 6650 113400 ) FS ; + - u_s3_l80 BUF_X1 + FIXED ( 6650 114800 ) N ; + - u_s3_l81 BUF_X1 + FIXED ( 6650 116200 ) FS ; + - u_s3_l82 BUF_X1 + FIXED ( 6650 117600 ) N ; + - u_s3_l83 BUF_X1 + FIXED ( 6650 119000 ) FS ; + - u_s3_l84 BUF_X1 + FIXED ( 6650 120400 ) N ; + - u_s3_l85 BUF_X1 + FIXED ( 6650 121800 ) FS ; + - u_s3_l86 BUF_X1 + FIXED ( 6650 123200 ) N ; + - u_s3_l87 BUF_X1 + FIXED ( 6650 124600 ) FS ; + - u_s3_l88 BUF_X1 + FIXED ( 6650 126000 ) N ; + - u_s3_l89 BUF_X1 + FIXED ( 6650 127400 ) FS ; + - u_s3_l90 BUF_X1 + FIXED ( 6650 128800 ) N ; + - u_s3_l91 BUF_X1 + FIXED ( 6650 130200 ) FS ; + - u_s3_l92 BUF_X1 + FIXED ( 6650 131600 ) N ; + - u_s3_l93 BUF_X1 + FIXED ( 6650 133000 ) FS ; + - u_s3_l94 BUF_X1 + FIXED ( 6650 134400 ) N ; + - u_s3_l95 BUF_X1 + FIXED ( 6650 135800 ) FS ; + - u_s4_l0 BUF_X1 + FIXED ( 7790 2800 ) N ; + - u_s4_l1 BUF_X1 + FIXED ( 7790 4200 ) FS ; + - u_s4_l2 BUF_X1 + FIXED ( 7790 5600 ) N ; + - u_s4_l3 BUF_X1 + FIXED ( 7790 7000 ) FS ; + - u_s4_l4 BUF_X1 + FIXED ( 7790 8400 ) N ; + - u_s4_l5 BUF_X1 + FIXED ( 7790 9800 ) FS ; + - u_s4_l6 BUF_X1 + FIXED ( 7790 11200 ) N ; + - u_s4_l7 BUF_X1 + FIXED ( 7790 12600 ) FS ; + - u_s4_l8 BUF_X1 + FIXED ( 7790 14000 ) N ; + - u_s4_l9 BUF_X1 + FIXED ( 7790 15400 ) FS ; + - u_s4_l10 BUF_X1 + FIXED ( 7790 16800 ) N ; + - u_s4_l11 BUF_X1 + FIXED ( 7790 18200 ) FS ; + - u_s4_l12 BUF_X1 + FIXED ( 7790 19600 ) N ; + - u_s4_l13 BUF_X1 + FIXED ( 7790 21000 ) FS ; + - u_s4_l14 BUF_X1 + FIXED ( 7790 22400 ) N ; + - u_s4_l15 BUF_X1 + FIXED ( 7790 23800 ) FS ; + - u_s4_l16 BUF_X1 + FIXED ( 7790 25200 ) N ; + - u_s4_l17 BUF_X1 + FIXED ( 7790 26600 ) FS ; + - u_s4_l18 BUF_X1 + FIXED ( 7790 28000 ) N ; + - u_s4_l19 BUF_X1 + FIXED ( 7790 29400 ) FS ; + - u_s4_l20 BUF_X1 + FIXED ( 7790 30800 ) N ; + - u_s4_l21 BUF_X1 + FIXED ( 7790 32200 ) FS ; + - u_s4_l22 BUF_X1 + FIXED ( 7790 33600 ) N ; + - u_s4_l23 BUF_X1 + FIXED ( 7790 35000 ) FS ; + - u_s4_l24 BUF_X1 + FIXED ( 7790 36400 ) N ; + - u_s4_l25 BUF_X1 + FIXED ( 7790 37800 ) FS ; + - u_s4_l26 BUF_X1 + FIXED ( 7790 39200 ) N ; + - u_s4_l27 BUF_X1 + FIXED ( 7790 40600 ) FS ; + - u_s4_l28 BUF_X1 + FIXED ( 7790 42000 ) N ; + - u_s4_l29 BUF_X1 + FIXED ( 7790 43400 ) FS ; + - u_s4_l30 BUF_X1 + FIXED ( 7790 44800 ) N ; + - u_s4_l31 BUF_X1 + FIXED ( 7790 46200 ) FS ; + - u_s4_l32 BUF_X1 + FIXED ( 7790 47600 ) N ; + - u_s4_l33 BUF_X1 + FIXED ( 7790 49000 ) FS ; + - u_s4_l34 BUF_X1 + FIXED ( 7790 50400 ) N ; + - u_s4_l35 BUF_X1 + FIXED ( 7790 51800 ) FS ; + - u_s4_l36 BUF_X1 + FIXED ( 7790 53200 ) N ; + - u_s4_l37 BUF_X1 + FIXED ( 7790 54600 ) FS ; + - u_s4_l38 BUF_X1 + FIXED ( 7790 56000 ) N ; + - u_s4_l39 BUF_X1 + FIXED ( 7790 57400 ) FS ; + - u_s4_l40 BUF_X1 + FIXED ( 7790 58800 ) N ; + - u_s4_l41 BUF_X1 + FIXED ( 7790 60200 ) FS ; + - u_s4_l42 BUF_X1 + FIXED ( 7790 61600 ) N ; + - u_s4_l43 BUF_X1 + FIXED ( 7790 63000 ) FS ; + - u_s4_l44 BUF_X1 + FIXED ( 7790 64400 ) N ; + - u_s4_l45 BUF_X1 + FIXED ( 7790 65800 ) FS ; + - u_s4_l46 BUF_X1 + FIXED ( 7790 67200 ) N ; + - u_s4_l47 BUF_X1 + FIXED ( 7790 68600 ) FS ; + - u_s4_l48 BUF_X1 + FIXED ( 7790 70000 ) N ; + - u_s4_l49 BUF_X1 + FIXED ( 7790 71400 ) FS ; + - u_s4_l50 BUF_X1 + FIXED ( 7790 72800 ) N ; + - u_s4_l51 BUF_X1 + FIXED ( 7790 74200 ) FS ; + - u_s4_l52 BUF_X1 + FIXED ( 7790 75600 ) N ; + - u_s4_l53 BUF_X1 + FIXED ( 7790 77000 ) FS ; + - u_s4_l54 BUF_X1 + FIXED ( 7790 78400 ) N ; + - u_s4_l55 BUF_X1 + FIXED ( 7790 79800 ) FS ; + - u_s4_l56 BUF_X1 + FIXED ( 7790 81200 ) N ; + - u_s4_l57 BUF_X1 + FIXED ( 7790 82600 ) FS ; + - u_s4_l58 BUF_X1 + FIXED ( 7790 84000 ) N ; + - u_s4_l59 BUF_X1 + FIXED ( 7790 85400 ) FS ; + - u_s4_l60 BUF_X1 + FIXED ( 7790 86800 ) N ; + - u_s4_l61 BUF_X1 + FIXED ( 7790 88200 ) FS ; + - u_s4_l62 BUF_X1 + FIXED ( 7790 89600 ) N ; + - u_s4_l63 BUF_X1 + FIXED ( 7790 91000 ) FS ; + - u_s4_l64 BUF_X1 + FIXED ( 7790 92400 ) N ; + - u_s4_l65 BUF_X1 + FIXED ( 7790 93800 ) FS ; + - u_s4_l66 BUF_X1 + FIXED ( 7790 95200 ) N ; + - u_s4_l67 BUF_X1 + FIXED ( 7790 96600 ) FS ; + - u_s4_l68 BUF_X1 + FIXED ( 7790 98000 ) N ; + - u_s4_l69 BUF_X1 + FIXED ( 7790 99400 ) FS ; + - u_s4_l70 BUF_X1 + FIXED ( 7790 100800 ) N ; + - u_s4_l71 BUF_X1 + FIXED ( 7790 102200 ) FS ; + - u_s4_l72 BUF_X1 + FIXED ( 7790 103600 ) N ; + - u_s4_l73 BUF_X1 + FIXED ( 7790 105000 ) FS ; + - u_s4_l74 BUF_X1 + FIXED ( 7790 106400 ) N ; + - u_s4_l75 BUF_X1 + FIXED ( 7790 107800 ) FS ; + - u_s4_l76 BUF_X1 + FIXED ( 7790 109200 ) N ; + - u_s4_l77 BUF_X1 + FIXED ( 7790 110600 ) FS ; + - u_s4_l78 BUF_X1 + FIXED ( 7790 112000 ) N ; + - u_s4_l79 BUF_X1 + FIXED ( 7790 113400 ) FS ; + - u_s4_l80 BUF_X1 + FIXED ( 7790 114800 ) N ; + - u_s4_l81 BUF_X1 + FIXED ( 7790 116200 ) FS ; + - u_s4_l82 BUF_X1 + FIXED ( 7790 117600 ) N ; + - u_s4_l83 BUF_X1 + FIXED ( 7790 119000 ) FS ; + - u_s4_l84 BUF_X1 + FIXED ( 7790 120400 ) N ; + - u_s4_l85 BUF_X1 + FIXED ( 7790 121800 ) FS ; + - u_s4_l86 BUF_X1 + FIXED ( 7790 123200 ) N ; + - u_s4_l87 BUF_X1 + FIXED ( 7790 124600 ) FS ; + - u_s4_l88 BUF_X1 + FIXED ( 7790 126000 ) N ; + - u_s4_l89 BUF_X1 + FIXED ( 7790 127400 ) FS ; + - u_s4_l90 BUF_X1 + FIXED ( 7790 128800 ) N ; + - u_s4_l91 BUF_X1 + FIXED ( 7790 130200 ) FS ; + - u_s4_l92 BUF_X1 + FIXED ( 7790 131600 ) N ; + - u_s4_l93 BUF_X1 + FIXED ( 7790 133000 ) FS ; + - u_s4_l94 BUF_X1 + FIXED ( 7790 134400 ) N ; + - u_s4_l95 BUF_X1 + FIXED ( 7790 135800 ) FS ; + - u_s5_l0 BUF_X1 + FIXED ( 8930 2800 ) N ; + - u_s5_l1 BUF_X1 + FIXED ( 8930 4200 ) FS ; + - u_s5_l2 BUF_X1 + FIXED ( 8930 5600 ) N ; + - u_s5_l3 BUF_X1 + FIXED ( 8930 7000 ) FS ; + - u_s5_l4 BUF_X1 + FIXED ( 8930 8400 ) N ; + - u_s5_l5 BUF_X1 + FIXED ( 8930 9800 ) FS ; + - u_s5_l6 BUF_X1 + FIXED ( 8930 11200 ) N ; + - u_s5_l7 BUF_X1 + FIXED ( 8930 12600 ) FS ; + - u_s5_l8 BUF_X1 + FIXED ( 8930 14000 ) N ; + - u_s5_l9 BUF_X1 + FIXED ( 8930 15400 ) FS ; + - u_s5_l10 BUF_X1 + FIXED ( 8930 16800 ) N ; + - u_s5_l11 BUF_X1 + FIXED ( 8930 18200 ) FS ; + - u_s5_l12 BUF_X1 + FIXED ( 8930 19600 ) N ; + - u_s5_l13 BUF_X1 + FIXED ( 8930 21000 ) FS ; + - u_s5_l14 BUF_X1 + FIXED ( 8930 22400 ) N ; + - u_s5_l15 BUF_X1 + FIXED ( 8930 23800 ) FS ; + - u_s5_l16 BUF_X1 + FIXED ( 8930 25200 ) N ; + - u_s5_l17 BUF_X1 + FIXED ( 8930 26600 ) FS ; + - u_s5_l18 BUF_X1 + FIXED ( 8930 28000 ) N ; + - u_s5_l19 BUF_X1 + FIXED ( 8930 29400 ) FS ; + - u_s5_l20 BUF_X1 + FIXED ( 8930 30800 ) N ; + - u_s5_l21 BUF_X1 + FIXED ( 8930 32200 ) FS ; + - u_s5_l22 BUF_X1 + FIXED ( 8930 33600 ) N ; + - u_s5_l23 BUF_X1 + FIXED ( 8930 35000 ) FS ; + - u_s5_l24 BUF_X1 + FIXED ( 8930 36400 ) N ; + - u_s5_l25 BUF_X1 + FIXED ( 8930 37800 ) FS ; + - u_s5_l26 BUF_X1 + FIXED ( 8930 39200 ) N ; + - u_s5_l27 BUF_X1 + FIXED ( 8930 40600 ) FS ; + - u_s5_l28 BUF_X1 + FIXED ( 8930 42000 ) N ; + - u_s5_l29 BUF_X1 + FIXED ( 8930 43400 ) FS ; + - u_s5_l30 BUF_X1 + FIXED ( 8930 44800 ) N ; + - u_s5_l31 BUF_X1 + FIXED ( 8930 46200 ) FS ; + - u_s5_l32 BUF_X1 + FIXED ( 8930 47600 ) N ; + - u_s5_l33 BUF_X1 + FIXED ( 8930 49000 ) FS ; + - u_s5_l34 BUF_X1 + FIXED ( 8930 50400 ) N ; + - u_s5_l35 BUF_X1 + FIXED ( 8930 51800 ) FS ; + - u_s5_l36 BUF_X1 + FIXED ( 8930 53200 ) N ; + - u_s5_l37 BUF_X1 + FIXED ( 8930 54600 ) FS ; + - u_s5_l38 BUF_X1 + FIXED ( 8930 56000 ) N ; + - u_s5_l39 BUF_X1 + FIXED ( 8930 57400 ) FS ; + - u_s5_l40 BUF_X1 + FIXED ( 8930 58800 ) N ; + - u_s5_l41 BUF_X1 + FIXED ( 8930 60200 ) FS ; + - u_s5_l42 BUF_X1 + FIXED ( 8930 61600 ) N ; + - u_s5_l43 BUF_X1 + FIXED ( 8930 63000 ) FS ; + - u_s5_l44 BUF_X1 + FIXED ( 8930 64400 ) N ; + - u_s5_l45 BUF_X1 + FIXED ( 8930 65800 ) FS ; + - u_s5_l46 BUF_X1 + FIXED ( 8930 67200 ) N ; + - u_s5_l47 BUF_X1 + FIXED ( 8930 68600 ) FS ; + - u_s5_l48 BUF_X1 + FIXED ( 8930 70000 ) N ; + - u_s5_l49 BUF_X1 + FIXED ( 8930 71400 ) FS ; + - u_s5_l50 BUF_X1 + FIXED ( 8930 72800 ) N ; + - u_s5_l51 BUF_X1 + FIXED ( 8930 74200 ) FS ; + - u_s5_l52 BUF_X1 + FIXED ( 8930 75600 ) N ; + - u_s5_l53 BUF_X1 + FIXED ( 8930 77000 ) FS ; + - u_s5_l54 BUF_X1 + FIXED ( 8930 78400 ) N ; + - u_s5_l55 BUF_X1 + FIXED ( 8930 79800 ) FS ; + - u_s5_l56 BUF_X1 + FIXED ( 8930 81200 ) N ; + - u_s5_l57 BUF_X1 + FIXED ( 8930 82600 ) FS ; + - u_s5_l58 BUF_X1 + FIXED ( 8930 84000 ) N ; + - u_s5_l59 BUF_X1 + FIXED ( 8930 85400 ) FS ; + - u_s5_l60 BUF_X1 + FIXED ( 8930 86800 ) N ; + - u_s5_l61 BUF_X1 + FIXED ( 8930 88200 ) FS ; + - u_s5_l62 BUF_X1 + FIXED ( 8930 89600 ) N ; + - u_s5_l63 BUF_X1 + FIXED ( 8930 91000 ) FS ; + - u_s5_l64 BUF_X1 + FIXED ( 8930 92400 ) N ; + - u_s5_l65 BUF_X1 + FIXED ( 8930 93800 ) FS ; + - u_s5_l66 BUF_X1 + FIXED ( 8930 95200 ) N ; + - u_s5_l67 BUF_X1 + FIXED ( 8930 96600 ) FS ; + - u_s5_l68 BUF_X1 + FIXED ( 8930 98000 ) N ; + - u_s5_l69 BUF_X1 + FIXED ( 8930 99400 ) FS ; + - u_s5_l70 BUF_X1 + FIXED ( 8930 100800 ) N ; + - u_s5_l71 BUF_X1 + FIXED ( 8930 102200 ) FS ; + - u_s5_l72 BUF_X1 + FIXED ( 8930 103600 ) N ; + - u_s5_l73 BUF_X1 + FIXED ( 8930 105000 ) FS ; + - u_s5_l74 BUF_X1 + FIXED ( 8930 106400 ) N ; + - u_s5_l75 BUF_X1 + FIXED ( 8930 107800 ) FS ; + - u_s5_l76 BUF_X1 + FIXED ( 8930 109200 ) N ; + - u_s5_l77 BUF_X1 + FIXED ( 8930 110600 ) FS ; + - u_s5_l78 BUF_X1 + FIXED ( 8930 112000 ) N ; + - u_s5_l79 BUF_X1 + FIXED ( 8930 113400 ) FS ; + - u_s5_l80 BUF_X1 + FIXED ( 8930 114800 ) N ; + - u_s5_l81 BUF_X1 + FIXED ( 8930 116200 ) FS ; + - u_s5_l82 BUF_X1 + FIXED ( 8930 117600 ) N ; + - u_s5_l83 BUF_X1 + FIXED ( 8930 119000 ) FS ; + - u_s5_l84 BUF_X1 + FIXED ( 8930 120400 ) N ; + - u_s5_l85 BUF_X1 + FIXED ( 8930 121800 ) FS ; + - u_s5_l86 BUF_X1 + FIXED ( 8930 123200 ) N ; + - u_s5_l87 BUF_X1 + FIXED ( 8930 124600 ) FS ; + - u_s5_l88 BUF_X1 + FIXED ( 8930 126000 ) N ; + - u_s5_l89 BUF_X1 + FIXED ( 8930 127400 ) FS ; + - u_s5_l90 BUF_X1 + FIXED ( 8930 128800 ) N ; + - u_s5_l91 BUF_X1 + FIXED ( 8930 130200 ) FS ; + - u_s5_l92 BUF_X1 + FIXED ( 8930 131600 ) N ; + - u_s5_l93 BUF_X1 + FIXED ( 8930 133000 ) FS ; + - u_s5_l94 BUF_X1 + FIXED ( 8930 134400 ) N ; + - u_s5_l95 BUF_X1 + FIXED ( 8930 135800 ) FS ; +END COMPONENTS +PINS 192 ; + - in[0] + NET in[0] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 3430 ) N ; + - in[1] + NET in[1] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 4830 ) N ; + - in[2] + NET in[2] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 6230 ) N ; + - in[3] + NET in[3] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 7630 ) N ; + - in[4] + NET in[4] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 9030 ) N ; + - in[5] + NET in[5] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 10430 ) N ; + - in[6] + NET in[6] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 11830 ) N ; + - in[7] + NET in[7] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 13230 ) N ; + - in[8] + NET in[8] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 14630 ) N ; + - in[9] + NET in[9] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 16030 ) N ; + - in[10] + NET in[10] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 17430 ) N ; + - in[11] + NET in[11] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 18830 ) N ; + - in[12] + NET in[12] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 20230 ) N ; + - in[13] + NET in[13] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 21630 ) N ; + - in[14] + NET in[14] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 23030 ) N ; + - in[15] + NET in[15] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 24430 ) N ; + - in[16] + NET in[16] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 25830 ) N ; + - in[17] + NET in[17] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 27230 ) N ; + - in[18] + NET in[18] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 28630 ) N ; + - in[19] + NET in[19] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 30030 ) N ; + - in[20] + NET in[20] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 31430 ) N ; + - in[21] + NET in[21] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 32830 ) N ; + - in[22] + NET in[22] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 34230 ) N ; + - in[23] + NET in[23] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 35630 ) N ; + - in[24] + NET in[24] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 37030 ) N ; + - in[25] + NET in[25] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 38430 ) N ; + - in[26] + NET in[26] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 39830 ) N ; + - in[27] + NET in[27] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 41230 ) N ; + - in[28] + NET in[28] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 42630 ) N ; + - in[29] + NET in[29] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 44030 ) N ; + - in[30] + NET in[30] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 45430 ) N ; + - in[31] + NET in[31] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 46830 ) N ; + - in[32] + NET in[32] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 48230 ) N ; + - in[33] + NET in[33] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 49630 ) N ; + - in[34] + NET in[34] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 51030 ) N ; + - in[35] + NET in[35] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 52430 ) N ; + - in[36] + NET in[36] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 53830 ) N ; + - in[37] + NET in[37] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 55230 ) N ; + - in[38] + NET in[38] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 56630 ) N ; + - in[39] + NET in[39] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 58030 ) N ; + - in[40] + NET in[40] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 59430 ) N ; + - in[41] + NET in[41] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 60830 ) N ; + - in[42] + NET in[42] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 62230 ) N ; + - in[43] + NET in[43] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 63630 ) N ; + - in[44] + NET in[44] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 65030 ) N ; + - in[45] + NET in[45] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 66430 ) N ; + - in[46] + NET in[46] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 67830 ) N ; + - in[47] + NET in[47] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 69230 ) N ; + - in[48] + NET in[48] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 70630 ) N ; + - in[49] + NET in[49] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 72030 ) N ; + - in[50] + NET in[50] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 73430 ) N ; + - in[51] + NET in[51] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 74830 ) N ; + - in[52] + NET in[52] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 76230 ) N ; + - in[53] + NET in[53] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 77630 ) N ; + - in[54] + NET in[54] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 79030 ) N ; + - in[55] + NET in[55] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 80430 ) N ; + - in[56] + NET in[56] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 81830 ) N ; + - in[57] + NET in[57] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 83230 ) N ; + - in[58] + NET in[58] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 84630 ) N ; + - in[59] + NET in[59] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 86030 ) N ; + - in[60] + NET in[60] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 87430 ) N ; + - in[61] + NET in[61] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 88830 ) N ; + - in[62] + NET in[62] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 90230 ) N ; + - in[63] + NET in[63] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 91630 ) N ; + - in[64] + NET in[64] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 93030 ) N ; + - in[65] + NET in[65] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 94430 ) N ; + - in[66] + NET in[66] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 95830 ) N ; + - in[67] + NET in[67] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 97230 ) N ; + - in[68] + NET in[68] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 98630 ) N ; + - in[69] + NET in[69] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 100030 ) N ; + - in[70] + NET in[70] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 101430 ) N ; + - in[71] + NET in[71] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 102830 ) N ; + - in[72] + NET in[72] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 104230 ) N ; + - in[73] + NET in[73] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 105630 ) N ; + - in[74] + NET in[74] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 107030 ) N ; + - in[75] + NET in[75] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 108430 ) N ; + - in[76] + NET in[76] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 109830 ) N ; + - in[77] + NET in[77] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 111230 ) N ; + - in[78] + NET in[78] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 112630 ) N ; + - in[79] + NET in[79] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 114030 ) N ; + - in[80] + NET in[80] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 115430 ) N ; + - in[81] + NET in[81] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 116830 ) N ; + - in[82] + NET in[82] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 118230 ) N ; + - in[83] + NET in[83] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 119630 ) N ; + - in[84] + NET in[84] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 121030 ) N ; + - in[85] + NET in[85] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 122430 ) N ; + - in[86] + NET in[86] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 123830 ) N ; + - in[87] + NET in[87] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 125230 ) N ; + - in[88] + NET in[88] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 126630 ) N ; + - in[89] + NET in[89] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 128030 ) N ; + - in[90] + NET in[90] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 129430 ) N ; + - in[91] + NET in[91] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 130830 ) N ; + - in[92] + NET in[92] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 132230 ) N ; + - in[93] + NET in[93] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 133630 ) N ; + - in[94] + NET in[94] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 135030 ) N ; + - in[95] + NET in[95] + DIRECTION INPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 297 136430 ) N ; + - out[0] + NET out[0] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 3430 ) N ; + - out[1] + NET out[1] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 4830 ) N ; + - out[2] + NET out[2] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 6230 ) N ; + - out[3] + NET out[3] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 7630 ) N ; + - out[4] + NET out[4] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 9030 ) N ; + - out[5] + NET out[5] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 10430 ) N ; + - out[6] + NET out[6] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 11830 ) N ; + - out[7] + NET out[7] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 13230 ) N ; + - out[8] + NET out[8] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 14630 ) N ; + - out[9] + NET out[9] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 16030 ) N ; + - out[10] + NET out[10] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 17430 ) N ; + - out[11] + NET out[11] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 18830 ) N ; + - out[12] + NET out[12] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 20230 ) N ; + - out[13] + NET out[13] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 21630 ) N ; + - out[14] + NET out[14] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 23030 ) N ; + - out[15] + NET out[15] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 24430 ) N ; + - out[16] + NET out[16] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 25830 ) N ; + - out[17] + NET out[17] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 27230 ) N ; + - out[18] + NET out[18] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 28630 ) N ; + - out[19] + NET out[19] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 30030 ) N ; + - out[20] + NET out[20] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 31430 ) N ; + - out[21] + NET out[21] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 32830 ) N ; + - out[22] + NET out[22] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 34230 ) N ; + - out[23] + NET out[23] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 35630 ) N ; + - out[24] + NET out[24] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 37030 ) N ; + - out[25] + NET out[25] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 38430 ) N ; + - out[26] + NET out[26] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 39830 ) N ; + - out[27] + NET out[27] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 41230 ) N ; + - out[28] + NET out[28] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 42630 ) N ; + - out[29] + NET out[29] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 44030 ) N ; + - out[30] + NET out[30] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 45430 ) N ; + - out[31] + NET out[31] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 46830 ) N ; + - out[32] + NET out[32] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 48230 ) N ; + - out[33] + NET out[33] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 49630 ) N ; + - out[34] + NET out[34] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 51030 ) N ; + - out[35] + NET out[35] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 52430 ) N ; + - out[36] + NET out[36] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 53830 ) N ; + - out[37] + NET out[37] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 55230 ) N ; + - out[38] + NET out[38] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 56630 ) N ; + - out[39] + NET out[39] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 58030 ) N ; + - out[40] + NET out[40] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 59430 ) N ; + - out[41] + NET out[41] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 60830 ) N ; + - out[42] + NET out[42] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 62230 ) N ; + - out[43] + NET out[43] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 63630 ) N ; + - out[44] + NET out[44] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 65030 ) N ; + - out[45] + NET out[45] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 66430 ) N ; + - out[46] + NET out[46] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 67830 ) N ; + - out[47] + NET out[47] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 69230 ) N ; + - out[48] + NET out[48] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 70630 ) N ; + - out[49] + NET out[49] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 72030 ) N ; + - out[50] + NET out[50] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 73430 ) N ; + - out[51] + NET out[51] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 74830 ) N ; + - out[52] + NET out[52] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 76230 ) N ; + - out[53] + NET out[53] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 77630 ) N ; + - out[54] + NET out[54] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 79030 ) N ; + - out[55] + NET out[55] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 80430 ) N ; + - out[56] + NET out[56] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 81830 ) N ; + - out[57] + NET out[57] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 83230 ) N ; + - out[58] + NET out[58] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 84630 ) N ; + - out[59] + NET out[59] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 86030 ) N ; + - out[60] + NET out[60] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 87430 ) N ; + - out[61] + NET out[61] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 88830 ) N ; + - out[62] + NET out[62] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 90230 ) N ; + - out[63] + NET out[63] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 91630 ) N ; + - out[64] + NET out[64] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 93030 ) N ; + - out[65] + NET out[65] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 94430 ) N ; + - out[66] + NET out[66] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 95830 ) N ; + - out[67] + NET out[67] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 97230 ) N ; + - out[68] + NET out[68] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 98630 ) N ; + - out[69] + NET out[69] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 100030 ) N ; + - out[70] + NET out[70] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 101430 ) N ; + - out[71] + NET out[71] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 102830 ) N ; + - out[72] + NET out[72] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 104230 ) N ; + - out[73] + NET out[73] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 105630 ) N ; + - out[74] + NET out[74] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 107030 ) N ; + - out[75] + NET out[75] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 108430 ) N ; + - out[76] + NET out[76] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 109830 ) N ; + - out[77] + NET out[77] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 111230 ) N ; + - out[78] + NET out[78] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 112630 ) N ; + - out[79] + NET out[79] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 114030 ) N ; + - out[80] + NET out[80] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 115430 ) N ; + - out[81] + NET out[81] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 116830 ) N ; + - out[82] + NET out[82] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 118230 ) N ; + - out[83] + NET out[83] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 119630 ) N ; + - out[84] + NET out[84] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 121030 ) N ; + - out[85] + NET out[85] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 122430 ) N ; + - out[86] + NET out[86] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 123830 ) N ; + - out[87] + NET out[87] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 125230 ) N ; + - out[88] + NET out[88] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 126630 ) N ; + - out[89] + NET out[89] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 128030 ) N ; + - out[90] + NET out[90] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 129430 ) N ; + - out[91] + NET out[91] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 130830 ) N ; + - out[92] + NET out[92] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 132230 ) N ; + - out[93] + NET out[93] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 133630 ) N ; + - out[94] + NET out[94] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 135030 ) N ; + - out[95] + NET out[95] + DIRECTION OUTPUT + USE SIGNAL + + PORT + + LAYER metal4 ( -70 -70 ) ( 70 70 ) + + FIXED ( 17703 136430 ) N ; +END PINS +SPECIALNETS 2 ; + - VDD ( * VDD ) + USE POWER ; + - VSS ( * VSS ) + USE GROUND ; +END SPECIALNETS +NETS 672 ; + - in[0] ( PIN in[0] ) ( u_s0_l0 A ) + USE SIGNAL ; + - in[1] ( PIN in[1] ) ( u_s0_l1 A ) + USE SIGNAL ; + - in[2] ( PIN in[2] ) ( u_s0_l2 A ) + USE SIGNAL ; + - in[3] ( PIN in[3] ) ( u_s0_l3 A ) + USE SIGNAL ; + - in[4] ( PIN in[4] ) ( u_s0_l4 A ) + USE SIGNAL ; + - in[5] ( PIN in[5] ) ( u_s0_l5 A ) + USE SIGNAL ; + - in[6] ( PIN in[6] ) ( u_s0_l6 A ) + USE SIGNAL ; + - in[7] ( PIN in[7] ) ( u_s0_l7 A ) + USE SIGNAL ; + - in[8] ( PIN in[8] ) ( u_s0_l8 A ) + USE SIGNAL ; + - in[9] ( PIN in[9] ) ( u_s0_l9 A ) + USE SIGNAL ; + - in[10] ( PIN in[10] ) ( u_s0_l10 A ) + USE SIGNAL ; + - in[11] ( PIN in[11] ) ( u_s0_l11 A ) + USE SIGNAL ; + - in[12] ( PIN in[12] ) ( u_s0_l12 A ) + USE SIGNAL ; + - in[13] ( PIN in[13] ) ( u_s0_l13 A ) + USE SIGNAL ; + - in[14] ( PIN in[14] ) ( u_s0_l14 A ) + USE SIGNAL ; + - in[15] ( PIN in[15] ) ( u_s0_l15 A ) + USE SIGNAL ; + - in[16] ( PIN in[16] ) ( u_s0_l16 A ) + USE SIGNAL ; + - in[17] ( PIN in[17] ) ( u_s0_l17 A ) + USE SIGNAL ; + - in[18] ( PIN in[18] ) ( u_s0_l18 A ) + USE SIGNAL ; + - in[19] ( PIN in[19] ) ( u_s0_l19 A ) + USE SIGNAL ; + - in[20] ( PIN in[20] ) ( u_s0_l20 A ) + USE SIGNAL ; + - in[21] ( PIN in[21] ) ( u_s0_l21 A ) + USE SIGNAL ; + - in[22] ( PIN in[22] ) ( u_s0_l22 A ) + USE SIGNAL ; + - in[23] ( PIN in[23] ) ( u_s0_l23 A ) + USE SIGNAL ; + - in[24] ( PIN in[24] ) ( u_s0_l24 A ) + USE SIGNAL ; + - in[25] ( PIN in[25] ) ( u_s0_l25 A ) + USE SIGNAL ; + - in[26] ( PIN in[26] ) ( u_s0_l26 A ) + USE SIGNAL ; + - in[27] ( PIN in[27] ) ( u_s0_l27 A ) + USE SIGNAL ; + - in[28] ( PIN in[28] ) ( u_s0_l28 A ) + USE SIGNAL ; + - in[29] ( PIN in[29] ) ( u_s0_l29 A ) + USE SIGNAL ; + - in[30] ( PIN in[30] ) ( u_s0_l30 A ) + USE SIGNAL ; + - in[31] ( PIN in[31] ) ( u_s0_l31 A ) + USE SIGNAL ; + - in[32] ( PIN in[32] ) ( u_s0_l32 A ) + USE SIGNAL ; + - in[33] ( PIN in[33] ) ( u_s0_l33 A ) + USE SIGNAL ; + - in[34] ( PIN in[34] ) ( u_s0_l34 A ) + USE SIGNAL ; + - in[35] ( PIN in[35] ) ( u_s0_l35 A ) + USE SIGNAL ; + - in[36] ( PIN in[36] ) ( u_s0_l36 A ) + USE SIGNAL ; + - in[37] ( PIN in[37] ) ( u_s0_l37 A ) + USE SIGNAL ; + - in[38] ( PIN in[38] ) ( u_s0_l38 A ) + USE SIGNAL ; + - in[39] ( PIN in[39] ) ( u_s0_l39 A ) + USE SIGNAL ; + - in[40] ( PIN in[40] ) ( u_s0_l40 A ) + USE SIGNAL ; + - in[41] ( PIN in[41] ) ( u_s0_l41 A ) + USE SIGNAL ; + - in[42] ( PIN in[42] ) ( u_s0_l42 A ) + USE SIGNAL ; + - in[43] ( PIN in[43] ) ( u_s0_l43 A ) + USE SIGNAL ; + - in[44] ( PIN in[44] ) ( u_s0_l44 A ) + USE SIGNAL ; + - in[45] ( PIN in[45] ) ( u_s0_l45 A ) + USE SIGNAL ; + - in[46] ( PIN in[46] ) ( u_s0_l46 A ) + USE SIGNAL ; + - in[47] ( PIN in[47] ) ( u_s0_l47 A ) + USE SIGNAL ; + - in[48] ( PIN in[48] ) ( u_s0_l48 A ) + USE SIGNAL ; + - in[49] ( PIN in[49] ) ( u_s0_l49 A ) + USE SIGNAL ; + - in[50] ( PIN in[50] ) ( u_s0_l50 A ) + USE SIGNAL ; + - in[51] ( PIN in[51] ) ( u_s0_l51 A ) + USE SIGNAL ; + - in[52] ( PIN in[52] ) ( u_s0_l52 A ) + USE SIGNAL ; + - in[53] ( PIN in[53] ) ( u_s0_l53 A ) + USE SIGNAL ; + - in[54] ( PIN in[54] ) ( u_s0_l54 A ) + USE SIGNAL ; + - in[55] ( PIN in[55] ) ( u_s0_l55 A ) + USE SIGNAL ; + - in[56] ( PIN in[56] ) ( u_s0_l56 A ) + USE SIGNAL ; + - in[57] ( PIN in[57] ) ( u_s0_l57 A ) + USE SIGNAL ; + - in[58] ( PIN in[58] ) ( u_s0_l58 A ) + USE SIGNAL ; + - in[59] ( PIN in[59] ) ( u_s0_l59 A ) + USE SIGNAL ; + - in[60] ( PIN in[60] ) ( u_s0_l60 A ) + USE SIGNAL ; + - in[61] ( PIN in[61] ) ( u_s0_l61 A ) + USE SIGNAL ; + - in[62] ( PIN in[62] ) ( u_s0_l62 A ) + USE SIGNAL ; + - in[63] ( PIN in[63] ) ( u_s0_l63 A ) + USE SIGNAL ; + - in[64] ( PIN in[64] ) ( u_s0_l64 A ) + USE SIGNAL ; + - in[65] ( PIN in[65] ) ( u_s0_l65 A ) + USE SIGNAL ; + - in[66] ( PIN in[66] ) ( u_s0_l66 A ) + USE SIGNAL ; + - in[67] ( PIN in[67] ) ( u_s0_l67 A ) + USE SIGNAL ; + - in[68] ( PIN in[68] ) ( u_s0_l68 A ) + USE SIGNAL ; + - in[69] ( PIN in[69] ) ( u_s0_l69 A ) + USE SIGNAL ; + - in[70] ( PIN in[70] ) ( u_s0_l70 A ) + USE SIGNAL ; + - in[71] ( PIN in[71] ) ( u_s0_l71 A ) + USE SIGNAL ; + - in[72] ( PIN in[72] ) ( u_s0_l72 A ) + USE SIGNAL ; + - in[73] ( PIN in[73] ) ( u_s0_l73 A ) + USE SIGNAL ; + - in[74] ( PIN in[74] ) ( u_s0_l74 A ) + USE SIGNAL ; + - in[75] ( PIN in[75] ) ( u_s0_l75 A ) + USE SIGNAL ; + - in[76] ( PIN in[76] ) ( u_s0_l76 A ) + USE SIGNAL ; + - in[77] ( PIN in[77] ) ( u_s0_l77 A ) + USE SIGNAL ; + - in[78] ( PIN in[78] ) ( u_s0_l78 A ) + USE SIGNAL ; + - in[79] ( PIN in[79] ) ( u_s0_l79 A ) + USE SIGNAL ; + - in[80] ( PIN in[80] ) ( u_s0_l80 A ) + USE SIGNAL ; + - in[81] ( PIN in[81] ) ( u_s0_l81 A ) + USE SIGNAL ; + - in[82] ( PIN in[82] ) ( u_s0_l82 A ) + USE SIGNAL ; + - in[83] ( PIN in[83] ) ( u_s0_l83 A ) + USE SIGNAL ; + - in[84] ( PIN in[84] ) ( u_s0_l84 A ) + USE SIGNAL ; + - in[85] ( PIN in[85] ) ( u_s0_l85 A ) + USE SIGNAL ; + - in[86] ( PIN in[86] ) ( u_s0_l86 A ) + USE SIGNAL ; + - in[87] ( PIN in[87] ) ( u_s0_l87 A ) + USE SIGNAL ; + - in[88] ( PIN in[88] ) ( u_s0_l88 A ) + USE SIGNAL ; + - in[89] ( PIN in[89] ) ( u_s0_l89 A ) + USE SIGNAL ; + - in[90] ( PIN in[90] ) ( u_s0_l90 A ) + USE SIGNAL ; + - in[91] ( PIN in[91] ) ( u_s0_l91 A ) + USE SIGNAL ; + - in[92] ( PIN in[92] ) ( u_s0_l92 A ) + USE SIGNAL ; + - in[93] ( PIN in[93] ) ( u_s0_l93 A ) + USE SIGNAL ; + - in[94] ( PIN in[94] ) ( u_s0_l94 A ) + USE SIGNAL ; + - in[95] ( PIN in[95] ) ( u_s0_l95 A ) + USE SIGNAL ; + - n_s0_l0 ( u_s0_l0 Z ) ( u_s1_l0 A ) + USE SIGNAL ; + - n_s0_l1 ( u_s0_l1 Z ) ( u_s1_l5 A ) + USE SIGNAL ; + - n_s0_l2 ( u_s0_l2 Z ) ( u_s1_l10 A ) + USE SIGNAL ; + - n_s0_l3 ( u_s0_l3 Z ) ( u_s1_l15 A ) + USE SIGNAL ; + - n_s0_l4 ( u_s0_l4 Z ) ( u_s1_l20 A ) + USE SIGNAL ; + - n_s0_l5 ( u_s0_l5 Z ) ( u_s1_l25 A ) + USE SIGNAL ; + - n_s0_l6 ( u_s0_l6 Z ) ( u_s1_l30 A ) + USE SIGNAL ; + - n_s0_l7 ( u_s0_l7 Z ) ( u_s1_l35 A ) + USE SIGNAL ; + - n_s0_l8 ( u_s0_l8 Z ) ( u_s1_l40 A ) + USE SIGNAL ; + - n_s0_l9 ( u_s0_l9 Z ) ( u_s1_l45 A ) + USE SIGNAL ; + - n_s0_l10 ( u_s0_l10 Z ) ( u_s1_l50 A ) + USE SIGNAL ; + - n_s0_l11 ( u_s0_l11 Z ) ( u_s1_l55 A ) + USE SIGNAL ; + - n_s0_l12 ( u_s0_l12 Z ) ( u_s1_l60 A ) + USE SIGNAL ; + - n_s0_l13 ( u_s0_l13 Z ) ( u_s1_l65 A ) + USE SIGNAL ; + - n_s0_l14 ( u_s0_l14 Z ) ( u_s1_l70 A ) + USE SIGNAL ; + - n_s0_l15 ( u_s0_l15 Z ) ( u_s1_l75 A ) + USE SIGNAL ; + - n_s0_l16 ( u_s0_l16 Z ) ( u_s1_l80 A ) + USE SIGNAL ; + - n_s0_l17 ( u_s0_l17 Z ) ( u_s1_l85 A ) + USE SIGNAL ; + - n_s0_l18 ( u_s0_l18 Z ) ( u_s1_l90 A ) + USE SIGNAL ; + - n_s0_l19 ( u_s0_l19 Z ) ( u_s1_l95 A ) + USE SIGNAL ; + - n_s0_l20 ( u_s0_l20 Z ) ( u_s1_l4 A ) + USE SIGNAL ; + - n_s0_l21 ( u_s0_l21 Z ) ( u_s1_l9 A ) + USE SIGNAL ; + - n_s0_l22 ( u_s0_l22 Z ) ( u_s1_l14 A ) + USE SIGNAL ; + - n_s0_l23 ( u_s0_l23 Z ) ( u_s1_l19 A ) + USE SIGNAL ; + - n_s0_l24 ( u_s0_l24 Z ) ( u_s1_l24 A ) + USE SIGNAL ; + - n_s0_l25 ( u_s0_l25 Z ) ( u_s1_l29 A ) + USE SIGNAL ; + - n_s0_l26 ( u_s0_l26 Z ) ( u_s1_l34 A ) + USE SIGNAL ; + - n_s0_l27 ( u_s0_l27 Z ) ( u_s1_l39 A ) + USE SIGNAL ; + - n_s0_l28 ( u_s0_l28 Z ) ( u_s1_l44 A ) + USE SIGNAL ; + - n_s0_l29 ( u_s0_l29 Z ) ( u_s1_l49 A ) + USE SIGNAL ; + - n_s0_l30 ( u_s0_l30 Z ) ( u_s1_l54 A ) + USE SIGNAL ; + - n_s0_l31 ( u_s0_l31 Z ) ( u_s1_l59 A ) + USE SIGNAL ; + - n_s0_l32 ( u_s0_l32 Z ) ( u_s1_l64 A ) + USE SIGNAL ; + - n_s0_l33 ( u_s0_l33 Z ) ( u_s1_l69 A ) + USE SIGNAL ; + - n_s0_l34 ( u_s0_l34 Z ) ( u_s1_l74 A ) + USE SIGNAL ; + - n_s0_l35 ( u_s0_l35 Z ) ( u_s1_l79 A ) + USE SIGNAL ; + - n_s0_l36 ( u_s0_l36 Z ) ( u_s1_l84 A ) + USE SIGNAL ; + - n_s0_l37 ( u_s0_l37 Z ) ( u_s1_l89 A ) + USE SIGNAL ; + - n_s0_l38 ( u_s0_l38 Z ) ( u_s1_l94 A ) + USE SIGNAL ; + - n_s0_l39 ( u_s0_l39 Z ) ( u_s1_l3 A ) + USE SIGNAL ; + - n_s0_l40 ( u_s0_l40 Z ) ( u_s1_l8 A ) + USE SIGNAL ; + - n_s0_l41 ( u_s0_l41 Z ) ( u_s1_l13 A ) + USE SIGNAL ; + - n_s0_l42 ( u_s0_l42 Z ) ( u_s1_l18 A ) + USE SIGNAL ; + - n_s0_l43 ( u_s0_l43 Z ) ( u_s1_l23 A ) + USE SIGNAL ; + - n_s0_l44 ( u_s0_l44 Z ) ( u_s1_l28 A ) + USE SIGNAL ; + - n_s0_l45 ( u_s0_l45 Z ) ( u_s1_l33 A ) + USE SIGNAL ; + - n_s0_l46 ( u_s0_l46 Z ) ( u_s1_l38 A ) + USE SIGNAL ; + - n_s0_l47 ( u_s0_l47 Z ) ( u_s1_l43 A ) + USE SIGNAL ; + - n_s0_l48 ( u_s0_l48 Z ) ( u_s1_l48 A ) + USE SIGNAL ; + - n_s0_l49 ( u_s0_l49 Z ) ( u_s1_l53 A ) + USE SIGNAL ; + - n_s0_l50 ( u_s0_l50 Z ) ( u_s1_l58 A ) + USE SIGNAL ; + - n_s0_l51 ( u_s0_l51 Z ) ( u_s1_l63 A ) + USE SIGNAL ; + - n_s0_l52 ( u_s0_l52 Z ) ( u_s1_l68 A ) + USE SIGNAL ; + - n_s0_l53 ( u_s0_l53 Z ) ( u_s1_l73 A ) + USE SIGNAL ; + - n_s0_l54 ( u_s0_l54 Z ) ( u_s1_l78 A ) + USE SIGNAL ; + - n_s0_l55 ( u_s0_l55 Z ) ( u_s1_l83 A ) + USE SIGNAL ; + - n_s0_l56 ( u_s0_l56 Z ) ( u_s1_l88 A ) + USE SIGNAL ; + - n_s0_l57 ( u_s0_l57 Z ) ( u_s1_l93 A ) + USE SIGNAL ; + - n_s0_l58 ( u_s0_l58 Z ) ( u_s1_l2 A ) + USE SIGNAL ; + - n_s0_l59 ( u_s0_l59 Z ) ( u_s1_l7 A ) + USE SIGNAL ; + - n_s0_l60 ( u_s0_l60 Z ) ( u_s1_l12 A ) + USE SIGNAL ; + - n_s0_l61 ( u_s0_l61 Z ) ( u_s1_l17 A ) + USE SIGNAL ; + - n_s0_l62 ( u_s0_l62 Z ) ( u_s1_l22 A ) + USE SIGNAL ; + - n_s0_l63 ( u_s0_l63 Z ) ( u_s1_l27 A ) + USE SIGNAL ; + - n_s0_l64 ( u_s0_l64 Z ) ( u_s1_l32 A ) + USE SIGNAL ; + - n_s0_l65 ( u_s0_l65 Z ) ( u_s1_l37 A ) + USE SIGNAL ; + - n_s0_l66 ( u_s0_l66 Z ) ( u_s1_l42 A ) + USE SIGNAL ; + - n_s0_l67 ( u_s0_l67 Z ) ( u_s1_l47 A ) + USE SIGNAL ; + - n_s0_l68 ( u_s0_l68 Z ) ( u_s1_l52 A ) + USE SIGNAL ; + - n_s0_l69 ( u_s0_l69 Z ) ( u_s1_l57 A ) + USE SIGNAL ; + - n_s0_l70 ( u_s0_l70 Z ) ( u_s1_l62 A ) + USE SIGNAL ; + - n_s0_l71 ( u_s0_l71 Z ) ( u_s1_l67 A ) + USE SIGNAL ; + - n_s0_l72 ( u_s0_l72 Z ) ( u_s1_l72 A ) + USE SIGNAL ; + - n_s0_l73 ( u_s0_l73 Z ) ( u_s1_l77 A ) + USE SIGNAL ; + - n_s0_l74 ( u_s0_l74 Z ) ( u_s1_l82 A ) + USE SIGNAL ; + - n_s0_l75 ( u_s0_l75 Z ) ( u_s1_l87 A ) + USE SIGNAL ; + - n_s0_l76 ( u_s0_l76 Z ) ( u_s1_l92 A ) + USE SIGNAL ; + - n_s0_l77 ( u_s0_l77 Z ) ( u_s1_l1 A ) + USE SIGNAL ; + - n_s0_l78 ( u_s0_l78 Z ) ( u_s1_l6 A ) + USE SIGNAL ; + - n_s0_l79 ( u_s0_l79 Z ) ( u_s1_l11 A ) + USE SIGNAL ; + - n_s0_l80 ( u_s0_l80 Z ) ( u_s1_l16 A ) + USE SIGNAL ; + - n_s0_l81 ( u_s0_l81 Z ) ( u_s1_l21 A ) + USE SIGNAL ; + - n_s0_l82 ( u_s0_l82 Z ) ( u_s1_l26 A ) + USE SIGNAL ; + - n_s0_l83 ( u_s0_l83 Z ) ( u_s1_l31 A ) + USE SIGNAL ; + - n_s0_l84 ( u_s0_l84 Z ) ( u_s1_l36 A ) + USE SIGNAL ; + - n_s0_l85 ( u_s0_l85 Z ) ( u_s1_l41 A ) + USE SIGNAL ; + - n_s0_l86 ( u_s0_l86 Z ) ( u_s1_l46 A ) + USE SIGNAL ; + - n_s0_l87 ( u_s0_l87 Z ) ( u_s1_l51 A ) + USE SIGNAL ; + - n_s0_l88 ( u_s0_l88 Z ) ( u_s1_l56 A ) + USE SIGNAL ; + - n_s0_l89 ( u_s0_l89 Z ) ( u_s1_l61 A ) + USE SIGNAL ; + - n_s0_l90 ( u_s0_l90 Z ) ( u_s1_l66 A ) + USE SIGNAL ; + - n_s0_l91 ( u_s0_l91 Z ) ( u_s1_l71 A ) + USE SIGNAL ; + - n_s0_l92 ( u_s0_l92 Z ) ( u_s1_l76 A ) + USE SIGNAL ; + - n_s0_l93 ( u_s0_l93 Z ) ( u_s1_l81 A ) + USE SIGNAL ; + - n_s0_l94 ( u_s0_l94 Z ) ( u_s1_l86 A ) + USE SIGNAL ; + - n_s0_l95 ( u_s0_l95 Z ) ( u_s1_l91 A ) + USE SIGNAL ; + - n_s1_l0 ( u_s1_l0 Z ) ( u_s2_l7 A ) + USE SIGNAL ; + - n_s1_l1 ( u_s1_l1 Z ) ( u_s2_l14 A ) + USE SIGNAL ; + - n_s1_l2 ( u_s1_l2 Z ) ( u_s2_l21 A ) + USE SIGNAL ; + - n_s1_l3 ( u_s1_l3 Z ) ( u_s2_l28 A ) + USE SIGNAL ; + - n_s1_l4 ( u_s1_l4 Z ) ( u_s2_l35 A ) + USE SIGNAL ; + - n_s1_l5 ( u_s1_l5 Z ) ( u_s2_l42 A ) + USE SIGNAL ; + - n_s1_l6 ( u_s1_l6 Z ) ( u_s2_l49 A ) + USE SIGNAL ; + - n_s1_l7 ( u_s1_l7 Z ) ( u_s2_l56 A ) + USE SIGNAL ; + - n_s1_l8 ( u_s1_l8 Z ) ( u_s2_l63 A ) + USE SIGNAL ; + - n_s1_l9 ( u_s1_l9 Z ) ( u_s2_l70 A ) + USE SIGNAL ; + - n_s1_l10 ( u_s1_l10 Z ) ( u_s2_l77 A ) + USE SIGNAL ; + - n_s1_l11 ( u_s1_l11 Z ) ( u_s2_l84 A ) + USE SIGNAL ; + - n_s1_l12 ( u_s1_l12 Z ) ( u_s2_l91 A ) + USE SIGNAL ; + - n_s1_l13 ( u_s1_l13 Z ) ( u_s2_l2 A ) + USE SIGNAL ; + - n_s1_l14 ( u_s1_l14 Z ) ( u_s2_l9 A ) + USE SIGNAL ; + - n_s1_l15 ( u_s1_l15 Z ) ( u_s2_l16 A ) + USE SIGNAL ; + - n_s1_l16 ( u_s1_l16 Z ) ( u_s2_l23 A ) + USE SIGNAL ; + - n_s1_l17 ( u_s1_l17 Z ) ( u_s2_l30 A ) + USE SIGNAL ; + - n_s1_l18 ( u_s1_l18 Z ) ( u_s2_l37 A ) + USE SIGNAL ; + - n_s1_l19 ( u_s1_l19 Z ) ( u_s2_l44 A ) + USE SIGNAL ; + - n_s1_l20 ( u_s1_l20 Z ) ( u_s2_l51 A ) + USE SIGNAL ; + - n_s1_l21 ( u_s1_l21 Z ) ( u_s2_l58 A ) + USE SIGNAL ; + - n_s1_l22 ( u_s1_l22 Z ) ( u_s2_l65 A ) + USE SIGNAL ; + - n_s1_l23 ( u_s1_l23 Z ) ( u_s2_l72 A ) + USE SIGNAL ; + - n_s1_l24 ( u_s1_l24 Z ) ( u_s2_l79 A ) + USE SIGNAL ; + - n_s1_l25 ( u_s1_l25 Z ) ( u_s2_l86 A ) + USE SIGNAL ; + - n_s1_l26 ( u_s1_l26 Z ) ( u_s2_l93 A ) + USE SIGNAL ; + - n_s1_l27 ( u_s1_l27 Z ) ( u_s2_l4 A ) + USE SIGNAL ; + - n_s1_l28 ( u_s1_l28 Z ) ( u_s2_l11 A ) + USE SIGNAL ; + - n_s1_l29 ( u_s1_l29 Z ) ( u_s2_l18 A ) + USE SIGNAL ; + - n_s1_l30 ( u_s1_l30 Z ) ( u_s2_l25 A ) + USE SIGNAL ; + - n_s1_l31 ( u_s1_l31 Z ) ( u_s2_l32 A ) + USE SIGNAL ; + - n_s1_l32 ( u_s1_l32 Z ) ( u_s2_l39 A ) + USE SIGNAL ; + - n_s1_l33 ( u_s1_l33 Z ) ( u_s2_l46 A ) + USE SIGNAL ; + - n_s1_l34 ( u_s1_l34 Z ) ( u_s2_l53 A ) + USE SIGNAL ; + - n_s1_l35 ( u_s1_l35 Z ) ( u_s2_l60 A ) + USE SIGNAL ; + - n_s1_l36 ( u_s1_l36 Z ) ( u_s2_l67 A ) + USE SIGNAL ; + - n_s1_l37 ( u_s1_l37 Z ) ( u_s2_l74 A ) + USE SIGNAL ; + - n_s1_l38 ( u_s1_l38 Z ) ( u_s2_l81 A ) + USE SIGNAL ; + - n_s1_l39 ( u_s1_l39 Z ) ( u_s2_l88 A ) + USE SIGNAL ; + - n_s1_l40 ( u_s1_l40 Z ) ( u_s2_l95 A ) + USE SIGNAL ; + - n_s1_l41 ( u_s1_l41 Z ) ( u_s2_l6 A ) + USE SIGNAL ; + - n_s1_l42 ( u_s1_l42 Z ) ( u_s2_l13 A ) + USE SIGNAL ; + - n_s1_l43 ( u_s1_l43 Z ) ( u_s2_l20 A ) + USE SIGNAL ; + - n_s1_l44 ( u_s1_l44 Z ) ( u_s2_l27 A ) + USE SIGNAL ; + - n_s1_l45 ( u_s1_l45 Z ) ( u_s2_l34 A ) + USE SIGNAL ; + - n_s1_l46 ( u_s1_l46 Z ) ( u_s2_l41 A ) + USE SIGNAL ; + - n_s1_l47 ( u_s1_l47 Z ) ( u_s2_l48 A ) + USE SIGNAL ; + - n_s1_l48 ( u_s1_l48 Z ) ( u_s2_l55 A ) + USE SIGNAL ; + - n_s1_l49 ( u_s1_l49 Z ) ( u_s2_l62 A ) + USE SIGNAL ; + - n_s1_l50 ( u_s1_l50 Z ) ( u_s2_l69 A ) + USE SIGNAL ; + - n_s1_l51 ( u_s1_l51 Z ) ( u_s2_l76 A ) + USE SIGNAL ; + - n_s1_l52 ( u_s1_l52 Z ) ( u_s2_l83 A ) + USE SIGNAL ; + - n_s1_l53 ( u_s1_l53 Z ) ( u_s2_l90 A ) + USE SIGNAL ; + - n_s1_l54 ( u_s1_l54 Z ) ( u_s2_l1 A ) + USE SIGNAL ; + - n_s1_l55 ( u_s1_l55 Z ) ( u_s2_l8 A ) + USE SIGNAL ; + - n_s1_l56 ( u_s1_l56 Z ) ( u_s2_l15 A ) + USE SIGNAL ; + - n_s1_l57 ( u_s1_l57 Z ) ( u_s2_l22 A ) + USE SIGNAL ; + - n_s1_l58 ( u_s1_l58 Z ) ( u_s2_l29 A ) + USE SIGNAL ; + - n_s1_l59 ( u_s1_l59 Z ) ( u_s2_l36 A ) + USE SIGNAL ; + - n_s1_l60 ( u_s1_l60 Z ) ( u_s2_l43 A ) + USE SIGNAL ; + - n_s1_l61 ( u_s1_l61 Z ) ( u_s2_l50 A ) + USE SIGNAL ; + - n_s1_l62 ( u_s1_l62 Z ) ( u_s2_l57 A ) + USE SIGNAL ; + - n_s1_l63 ( u_s1_l63 Z ) ( u_s2_l64 A ) + USE SIGNAL ; + - n_s1_l64 ( u_s1_l64 Z ) ( u_s2_l71 A ) + USE SIGNAL ; + - n_s1_l65 ( u_s1_l65 Z ) ( u_s2_l78 A ) + USE SIGNAL ; + - n_s1_l66 ( u_s1_l66 Z ) ( u_s2_l85 A ) + USE SIGNAL ; + - n_s1_l67 ( u_s1_l67 Z ) ( u_s2_l92 A ) + USE SIGNAL ; + - n_s1_l68 ( u_s1_l68 Z ) ( u_s2_l3 A ) + USE SIGNAL ; + - n_s1_l69 ( u_s1_l69 Z ) ( u_s2_l10 A ) + USE SIGNAL ; + - n_s1_l70 ( u_s1_l70 Z ) ( u_s2_l17 A ) + USE SIGNAL ; + - n_s1_l71 ( u_s1_l71 Z ) ( u_s2_l24 A ) + USE SIGNAL ; + - n_s1_l72 ( u_s1_l72 Z ) ( u_s2_l31 A ) + USE SIGNAL ; + - n_s1_l73 ( u_s1_l73 Z ) ( u_s2_l38 A ) + USE SIGNAL ; + - n_s1_l74 ( u_s1_l74 Z ) ( u_s2_l45 A ) + USE SIGNAL ; + - n_s1_l75 ( u_s1_l75 Z ) ( u_s2_l52 A ) + USE SIGNAL ; + - n_s1_l76 ( u_s1_l76 Z ) ( u_s2_l59 A ) + USE SIGNAL ; + - n_s1_l77 ( u_s1_l77 Z ) ( u_s2_l66 A ) + USE SIGNAL ; + - n_s1_l78 ( u_s1_l78 Z ) ( u_s2_l73 A ) + USE SIGNAL ; + - n_s1_l79 ( u_s1_l79 Z ) ( u_s2_l80 A ) + USE SIGNAL ; + - n_s1_l80 ( u_s1_l80 Z ) ( u_s2_l87 A ) + USE SIGNAL ; + - n_s1_l81 ( u_s1_l81 Z ) ( u_s2_l94 A ) + USE SIGNAL ; + - n_s1_l82 ( u_s1_l82 Z ) ( u_s2_l5 A ) + USE SIGNAL ; + - n_s1_l83 ( u_s1_l83 Z ) ( u_s2_l12 A ) + USE SIGNAL ; + - n_s1_l84 ( u_s1_l84 Z ) ( u_s2_l19 A ) + USE SIGNAL ; + - n_s1_l85 ( u_s1_l85 Z ) ( u_s2_l26 A ) + USE SIGNAL ; + - n_s1_l86 ( u_s1_l86 Z ) ( u_s2_l33 A ) + USE SIGNAL ; + - n_s1_l87 ( u_s1_l87 Z ) ( u_s2_l40 A ) + USE SIGNAL ; + - n_s1_l88 ( u_s1_l88 Z ) ( u_s2_l47 A ) + USE SIGNAL ; + - n_s1_l89 ( u_s1_l89 Z ) ( u_s2_l54 A ) + USE SIGNAL ; + - n_s1_l90 ( u_s1_l90 Z ) ( u_s2_l61 A ) + USE SIGNAL ; + - n_s1_l91 ( u_s1_l91 Z ) ( u_s2_l68 A ) + USE SIGNAL ; + - n_s1_l92 ( u_s1_l92 Z ) ( u_s2_l75 A ) + USE SIGNAL ; + - n_s1_l93 ( u_s1_l93 Z ) ( u_s2_l82 A ) + USE SIGNAL ; + - n_s1_l94 ( u_s1_l94 Z ) ( u_s2_l89 A ) + USE SIGNAL ; + - n_s1_l95 ( u_s1_l95 Z ) ( u_s2_l0 A ) + USE SIGNAL ; + - n_s2_l0 ( u_s2_l0 Z ) ( u_s3_l14 A ) + USE SIGNAL ; + - n_s2_l1 ( u_s2_l1 Z ) ( u_s3_l25 A ) + USE SIGNAL ; + - n_s2_l2 ( u_s2_l2 Z ) ( u_s3_l36 A ) + USE SIGNAL ; + - n_s2_l3 ( u_s2_l3 Z ) ( u_s3_l47 A ) + USE SIGNAL ; + - n_s2_l4 ( u_s2_l4 Z ) ( u_s3_l58 A ) + USE SIGNAL ; + - n_s2_l5 ( u_s2_l5 Z ) ( u_s3_l69 A ) + USE SIGNAL ; + - n_s2_l6 ( u_s2_l6 Z ) ( u_s3_l80 A ) + USE SIGNAL ; + - n_s2_l7 ( u_s2_l7 Z ) ( u_s3_l91 A ) + USE SIGNAL ; + - n_s2_l8 ( u_s2_l8 Z ) ( u_s3_l6 A ) + USE SIGNAL ; + - n_s2_l9 ( u_s2_l9 Z ) ( u_s3_l17 A ) + USE SIGNAL ; + - n_s2_l10 ( u_s2_l10 Z ) ( u_s3_l28 A ) + USE SIGNAL ; + - n_s2_l11 ( u_s2_l11 Z ) ( u_s3_l39 A ) + USE SIGNAL ; + - n_s2_l12 ( u_s2_l12 Z ) ( u_s3_l50 A ) + USE SIGNAL ; + - n_s2_l13 ( u_s2_l13 Z ) ( u_s3_l61 A ) + USE SIGNAL ; + - n_s2_l14 ( u_s2_l14 Z ) ( u_s3_l72 A ) + USE SIGNAL ; + - n_s2_l15 ( u_s2_l15 Z ) ( u_s3_l83 A ) + USE SIGNAL ; + - n_s2_l16 ( u_s2_l16 Z ) ( u_s3_l94 A ) + USE SIGNAL ; + - n_s2_l17 ( u_s2_l17 Z ) ( u_s3_l9 A ) + USE SIGNAL ; + - n_s2_l18 ( u_s2_l18 Z ) ( u_s3_l20 A ) + USE SIGNAL ; + - n_s2_l19 ( u_s2_l19 Z ) ( u_s3_l31 A ) + USE SIGNAL ; + - n_s2_l20 ( u_s2_l20 Z ) ( u_s3_l42 A ) + USE SIGNAL ; + - n_s2_l21 ( u_s2_l21 Z ) ( u_s3_l53 A ) + USE SIGNAL ; + - n_s2_l22 ( u_s2_l22 Z ) ( u_s3_l64 A ) + USE SIGNAL ; + - n_s2_l23 ( u_s2_l23 Z ) ( u_s3_l75 A ) + USE SIGNAL ; + - n_s2_l24 ( u_s2_l24 Z ) ( u_s3_l86 A ) + USE SIGNAL ; + - n_s2_l25 ( u_s2_l25 Z ) ( u_s3_l1 A ) + USE SIGNAL ; + - n_s2_l26 ( u_s2_l26 Z ) ( u_s3_l12 A ) + USE SIGNAL ; + - n_s2_l27 ( u_s2_l27 Z ) ( u_s3_l23 A ) + USE SIGNAL ; + - n_s2_l28 ( u_s2_l28 Z ) ( u_s3_l34 A ) + USE SIGNAL ; + - n_s2_l29 ( u_s2_l29 Z ) ( u_s3_l45 A ) + USE SIGNAL ; + - n_s2_l30 ( u_s2_l30 Z ) ( u_s3_l56 A ) + USE SIGNAL ; + - n_s2_l31 ( u_s2_l31 Z ) ( u_s3_l67 A ) + USE SIGNAL ; + - n_s2_l32 ( u_s2_l32 Z ) ( u_s3_l78 A ) + USE SIGNAL ; + - n_s2_l33 ( u_s2_l33 Z ) ( u_s3_l89 A ) + USE SIGNAL ; + - n_s2_l34 ( u_s2_l34 Z ) ( u_s3_l4 A ) + USE SIGNAL ; + - n_s2_l35 ( u_s2_l35 Z ) ( u_s3_l15 A ) + USE SIGNAL ; + - n_s2_l36 ( u_s2_l36 Z ) ( u_s3_l26 A ) + USE SIGNAL ; + - n_s2_l37 ( u_s2_l37 Z ) ( u_s3_l37 A ) + USE SIGNAL ; + - n_s2_l38 ( u_s2_l38 Z ) ( u_s3_l48 A ) + USE SIGNAL ; + - n_s2_l39 ( u_s2_l39 Z ) ( u_s3_l59 A ) + USE SIGNAL ; + - n_s2_l40 ( u_s2_l40 Z ) ( u_s3_l70 A ) + USE SIGNAL ; + - n_s2_l41 ( u_s2_l41 Z ) ( u_s3_l81 A ) + USE SIGNAL ; + - n_s2_l42 ( u_s2_l42 Z ) ( u_s3_l92 A ) + USE SIGNAL ; + - n_s2_l43 ( u_s2_l43 Z ) ( u_s3_l7 A ) + USE SIGNAL ; + - n_s2_l44 ( u_s2_l44 Z ) ( u_s3_l18 A ) + USE SIGNAL ; + - n_s2_l45 ( u_s2_l45 Z ) ( u_s3_l29 A ) + USE SIGNAL ; + - n_s2_l46 ( u_s2_l46 Z ) ( u_s3_l40 A ) + USE SIGNAL ; + - n_s2_l47 ( u_s2_l47 Z ) ( u_s3_l51 A ) + USE SIGNAL ; + - n_s2_l48 ( u_s2_l48 Z ) ( u_s3_l62 A ) + USE SIGNAL ; + - n_s2_l49 ( u_s2_l49 Z ) ( u_s3_l73 A ) + USE SIGNAL ; + - n_s2_l50 ( u_s2_l50 Z ) ( u_s3_l84 A ) + USE SIGNAL ; + - n_s2_l51 ( u_s2_l51 Z ) ( u_s3_l95 A ) + USE SIGNAL ; + - n_s2_l52 ( u_s2_l52 Z ) ( u_s3_l10 A ) + USE SIGNAL ; + - n_s2_l53 ( u_s2_l53 Z ) ( u_s3_l21 A ) + USE SIGNAL ; + - n_s2_l54 ( u_s2_l54 Z ) ( u_s3_l32 A ) + USE SIGNAL ; + - n_s2_l55 ( u_s2_l55 Z ) ( u_s3_l43 A ) + USE SIGNAL ; + - n_s2_l56 ( u_s2_l56 Z ) ( u_s3_l54 A ) + USE SIGNAL ; + - n_s2_l57 ( u_s2_l57 Z ) ( u_s3_l65 A ) + USE SIGNAL ; + - n_s2_l58 ( u_s2_l58 Z ) ( u_s3_l76 A ) + USE SIGNAL ; + - n_s2_l59 ( u_s2_l59 Z ) ( u_s3_l87 A ) + USE SIGNAL ; + - n_s2_l60 ( u_s2_l60 Z ) ( u_s3_l2 A ) + USE SIGNAL ; + - n_s2_l61 ( u_s2_l61 Z ) ( u_s3_l13 A ) + USE SIGNAL ; + - n_s2_l62 ( u_s2_l62 Z ) ( u_s3_l24 A ) + USE SIGNAL ; + - n_s2_l63 ( u_s2_l63 Z ) ( u_s3_l35 A ) + USE SIGNAL ; + - n_s2_l64 ( u_s2_l64 Z ) ( u_s3_l46 A ) + USE SIGNAL ; + - n_s2_l65 ( u_s2_l65 Z ) ( u_s3_l57 A ) + USE SIGNAL ; + - n_s2_l66 ( u_s2_l66 Z ) ( u_s3_l68 A ) + USE SIGNAL ; + - n_s2_l67 ( u_s2_l67 Z ) ( u_s3_l79 A ) + USE SIGNAL ; + - n_s2_l68 ( u_s2_l68 Z ) ( u_s3_l90 A ) + USE SIGNAL ; + - n_s2_l69 ( u_s2_l69 Z ) ( u_s3_l5 A ) + USE SIGNAL ; + - n_s2_l70 ( u_s2_l70 Z ) ( u_s3_l16 A ) + USE SIGNAL ; + - n_s2_l71 ( u_s2_l71 Z ) ( u_s3_l27 A ) + USE SIGNAL ; + - n_s2_l72 ( u_s2_l72 Z ) ( u_s3_l38 A ) + USE SIGNAL ; + - n_s2_l73 ( u_s2_l73 Z ) ( u_s3_l49 A ) + USE SIGNAL ; + - n_s2_l74 ( u_s2_l74 Z ) ( u_s3_l60 A ) + USE SIGNAL ; + - n_s2_l75 ( u_s2_l75 Z ) ( u_s3_l71 A ) + USE SIGNAL ; + - n_s2_l76 ( u_s2_l76 Z ) ( u_s3_l82 A ) + USE SIGNAL ; + - n_s2_l77 ( u_s2_l77 Z ) ( u_s3_l93 A ) + USE SIGNAL ; + - n_s2_l78 ( u_s2_l78 Z ) ( u_s3_l8 A ) + USE SIGNAL ; + - n_s2_l79 ( u_s2_l79 Z ) ( u_s3_l19 A ) + USE SIGNAL ; + - n_s2_l80 ( u_s2_l80 Z ) ( u_s3_l30 A ) + USE SIGNAL ; + - n_s2_l81 ( u_s2_l81 Z ) ( u_s3_l41 A ) + USE SIGNAL ; + - n_s2_l82 ( u_s2_l82 Z ) ( u_s3_l52 A ) + USE SIGNAL ; + - n_s2_l83 ( u_s2_l83 Z ) ( u_s3_l63 A ) + USE SIGNAL ; + - n_s2_l84 ( u_s2_l84 Z ) ( u_s3_l74 A ) + USE SIGNAL ; + - n_s2_l85 ( u_s2_l85 Z ) ( u_s3_l85 A ) + USE SIGNAL ; + - n_s2_l86 ( u_s2_l86 Z ) ( u_s3_l0 A ) + USE SIGNAL ; + - n_s2_l87 ( u_s2_l87 Z ) ( u_s3_l11 A ) + USE SIGNAL ; + - n_s2_l88 ( u_s2_l88 Z ) ( u_s3_l22 A ) + USE SIGNAL ; + - n_s2_l89 ( u_s2_l89 Z ) ( u_s3_l33 A ) + USE SIGNAL ; + - n_s2_l90 ( u_s2_l90 Z ) ( u_s3_l44 A ) + USE SIGNAL ; + - n_s2_l91 ( u_s2_l91 Z ) ( u_s3_l55 A ) + USE SIGNAL ; + - n_s2_l92 ( u_s2_l92 Z ) ( u_s3_l66 A ) + USE SIGNAL ; + - n_s2_l93 ( u_s2_l93 Z ) ( u_s3_l77 A ) + USE SIGNAL ; + - n_s2_l94 ( u_s2_l94 Z ) ( u_s3_l88 A ) + USE SIGNAL ; + - n_s2_l95 ( u_s2_l95 Z ) ( u_s3_l3 A ) + USE SIGNAL ; + - n_s3_l0 ( u_s3_l0 Z ) ( u_s4_l21 A ) + USE SIGNAL ; + - n_s3_l1 ( u_s3_l1 Z ) ( u_s4_l34 A ) + USE SIGNAL ; + - n_s3_l2 ( u_s3_l2 Z ) ( u_s4_l47 A ) + USE SIGNAL ; + - n_s3_l3 ( u_s3_l3 Z ) ( u_s4_l60 A ) + USE SIGNAL ; + - n_s3_l4 ( u_s3_l4 Z ) ( u_s4_l73 A ) + USE SIGNAL ; + - n_s3_l5 ( u_s3_l5 Z ) ( u_s4_l86 A ) + USE SIGNAL ; + - n_s3_l6 ( u_s3_l6 Z ) ( u_s4_l3 A ) + USE SIGNAL ; + - n_s3_l7 ( u_s3_l7 Z ) ( u_s4_l16 A ) + USE SIGNAL ; + - n_s3_l8 ( u_s3_l8 Z ) ( u_s4_l29 A ) + USE SIGNAL ; + - n_s3_l9 ( u_s3_l9 Z ) ( u_s4_l42 A ) + USE SIGNAL ; + - n_s3_l10 ( u_s3_l10 Z ) ( u_s4_l55 A ) + USE SIGNAL ; + - n_s3_l11 ( u_s3_l11 Z ) ( u_s4_l68 A ) + USE SIGNAL ; + - n_s3_l12 ( u_s3_l12 Z ) ( u_s4_l81 A ) + USE SIGNAL ; + - n_s3_l13 ( u_s3_l13 Z ) ( u_s4_l94 A ) + USE SIGNAL ; + - n_s3_l14 ( u_s3_l14 Z ) ( u_s4_l11 A ) + USE SIGNAL ; + - n_s3_l15 ( u_s3_l15 Z ) ( u_s4_l24 A ) + USE SIGNAL ; + - n_s3_l16 ( u_s3_l16 Z ) ( u_s4_l37 A ) + USE SIGNAL ; + - n_s3_l17 ( u_s3_l17 Z ) ( u_s4_l50 A ) + USE SIGNAL ; + - n_s3_l18 ( u_s3_l18 Z ) ( u_s4_l63 A ) + USE SIGNAL ; + - n_s3_l19 ( u_s3_l19 Z ) ( u_s4_l76 A ) + USE SIGNAL ; + - n_s3_l20 ( u_s3_l20 Z ) ( u_s4_l89 A ) + USE SIGNAL ; + - n_s3_l21 ( u_s3_l21 Z ) ( u_s4_l6 A ) + USE SIGNAL ; + - n_s3_l22 ( u_s3_l22 Z ) ( u_s4_l19 A ) + USE SIGNAL ; + - n_s3_l23 ( u_s3_l23 Z ) ( u_s4_l32 A ) + USE SIGNAL ; + - n_s3_l24 ( u_s3_l24 Z ) ( u_s4_l45 A ) + USE SIGNAL ; + - n_s3_l25 ( u_s3_l25 Z ) ( u_s4_l58 A ) + USE SIGNAL ; + - n_s3_l26 ( u_s3_l26 Z ) ( u_s4_l71 A ) + USE SIGNAL ; + - n_s3_l27 ( u_s3_l27 Z ) ( u_s4_l84 A ) + USE SIGNAL ; + - n_s3_l28 ( u_s3_l28 Z ) ( u_s4_l1 A ) + USE SIGNAL ; + - n_s3_l29 ( u_s3_l29 Z ) ( u_s4_l14 A ) + USE SIGNAL ; + - n_s3_l30 ( u_s3_l30 Z ) ( u_s4_l27 A ) + USE SIGNAL ; + - n_s3_l31 ( u_s3_l31 Z ) ( u_s4_l40 A ) + USE SIGNAL ; + - n_s3_l32 ( u_s3_l32 Z ) ( u_s4_l53 A ) + USE SIGNAL ; + - n_s3_l33 ( u_s3_l33 Z ) ( u_s4_l66 A ) + USE SIGNAL ; + - n_s3_l34 ( u_s3_l34 Z ) ( u_s4_l79 A ) + USE SIGNAL ; + - n_s3_l35 ( u_s3_l35 Z ) ( u_s4_l92 A ) + USE SIGNAL ; + - n_s3_l36 ( u_s3_l36 Z ) ( u_s4_l9 A ) + USE SIGNAL ; + - n_s3_l37 ( u_s3_l37 Z ) ( u_s4_l22 A ) + USE SIGNAL ; + - n_s3_l38 ( u_s3_l38 Z ) ( u_s4_l35 A ) + USE SIGNAL ; + - n_s3_l39 ( u_s3_l39 Z ) ( u_s4_l48 A ) + USE SIGNAL ; + - n_s3_l40 ( u_s3_l40 Z ) ( u_s4_l61 A ) + USE SIGNAL ; + - n_s3_l41 ( u_s3_l41 Z ) ( u_s4_l74 A ) + USE SIGNAL ; + - n_s3_l42 ( u_s3_l42 Z ) ( u_s4_l87 A ) + USE SIGNAL ; + - n_s3_l43 ( u_s3_l43 Z ) ( u_s4_l4 A ) + USE SIGNAL ; + - n_s3_l44 ( u_s3_l44 Z ) ( u_s4_l17 A ) + USE SIGNAL ; + - n_s3_l45 ( u_s3_l45 Z ) ( u_s4_l30 A ) + USE SIGNAL ; + - n_s3_l46 ( u_s3_l46 Z ) ( u_s4_l43 A ) + USE SIGNAL ; + - n_s3_l47 ( u_s3_l47 Z ) ( u_s4_l56 A ) + USE SIGNAL ; + - n_s3_l48 ( u_s3_l48 Z ) ( u_s4_l69 A ) + USE SIGNAL ; + - n_s3_l49 ( u_s3_l49 Z ) ( u_s4_l82 A ) + USE SIGNAL ; + - n_s3_l50 ( u_s3_l50 Z ) ( u_s4_l95 A ) + USE SIGNAL ; + - n_s3_l51 ( u_s3_l51 Z ) ( u_s4_l12 A ) + USE SIGNAL ; + - n_s3_l52 ( u_s3_l52 Z ) ( u_s4_l25 A ) + USE SIGNAL ; + - n_s3_l53 ( u_s3_l53 Z ) ( u_s4_l38 A ) + USE SIGNAL ; + - n_s3_l54 ( u_s3_l54 Z ) ( u_s4_l51 A ) + USE SIGNAL ; + - n_s3_l55 ( u_s3_l55 Z ) ( u_s4_l64 A ) + USE SIGNAL ; + - n_s3_l56 ( u_s3_l56 Z ) ( u_s4_l77 A ) + USE SIGNAL ; + - n_s3_l57 ( u_s3_l57 Z ) ( u_s4_l90 A ) + USE SIGNAL ; + - n_s3_l58 ( u_s3_l58 Z ) ( u_s4_l7 A ) + USE SIGNAL ; + - n_s3_l59 ( u_s3_l59 Z ) ( u_s4_l20 A ) + USE SIGNAL ; + - n_s3_l60 ( u_s3_l60 Z ) ( u_s4_l33 A ) + USE SIGNAL ; + - n_s3_l61 ( u_s3_l61 Z ) ( u_s4_l46 A ) + USE SIGNAL ; + - n_s3_l62 ( u_s3_l62 Z ) ( u_s4_l59 A ) + USE SIGNAL ; + - n_s3_l63 ( u_s3_l63 Z ) ( u_s4_l72 A ) + USE SIGNAL ; + - n_s3_l64 ( u_s3_l64 Z ) ( u_s4_l85 A ) + USE SIGNAL ; + - n_s3_l65 ( u_s3_l65 Z ) ( u_s4_l2 A ) + USE SIGNAL ; + - n_s3_l66 ( u_s3_l66 Z ) ( u_s4_l15 A ) + USE SIGNAL ; + - n_s3_l67 ( u_s3_l67 Z ) ( u_s4_l28 A ) + USE SIGNAL ; + - n_s3_l68 ( u_s3_l68 Z ) ( u_s4_l41 A ) + USE SIGNAL ; + - n_s3_l69 ( u_s3_l69 Z ) ( u_s4_l54 A ) + USE SIGNAL ; + - n_s3_l70 ( u_s3_l70 Z ) ( u_s4_l67 A ) + USE SIGNAL ; + - n_s3_l71 ( u_s3_l71 Z ) ( u_s4_l80 A ) + USE SIGNAL ; + - n_s3_l72 ( u_s3_l72 Z ) ( u_s4_l93 A ) + USE SIGNAL ; + - n_s3_l73 ( u_s3_l73 Z ) ( u_s4_l10 A ) + USE SIGNAL ; + - n_s3_l74 ( u_s3_l74 Z ) ( u_s4_l23 A ) + USE SIGNAL ; + - n_s3_l75 ( u_s3_l75 Z ) ( u_s4_l36 A ) + USE SIGNAL ; + - n_s3_l76 ( u_s3_l76 Z ) ( u_s4_l49 A ) + USE SIGNAL ; + - n_s3_l77 ( u_s3_l77 Z ) ( u_s4_l62 A ) + USE SIGNAL ; + - n_s3_l78 ( u_s3_l78 Z ) ( u_s4_l75 A ) + USE SIGNAL ; + - n_s3_l79 ( u_s3_l79 Z ) ( u_s4_l88 A ) + USE SIGNAL ; + - n_s3_l80 ( u_s3_l80 Z ) ( u_s4_l5 A ) + USE SIGNAL ; + - n_s3_l81 ( u_s3_l81 Z ) ( u_s4_l18 A ) + USE SIGNAL ; + - n_s3_l82 ( u_s3_l82 Z ) ( u_s4_l31 A ) + USE SIGNAL ; + - n_s3_l83 ( u_s3_l83 Z ) ( u_s4_l44 A ) + USE SIGNAL ; + - n_s3_l84 ( u_s3_l84 Z ) ( u_s4_l57 A ) + USE SIGNAL ; + - n_s3_l85 ( u_s3_l85 Z ) ( u_s4_l70 A ) + USE SIGNAL ; + - n_s3_l86 ( u_s3_l86 Z ) ( u_s4_l83 A ) + USE SIGNAL ; + - n_s3_l87 ( u_s3_l87 Z ) ( u_s4_l0 A ) + USE SIGNAL ; + - n_s3_l88 ( u_s3_l88 Z ) ( u_s4_l13 A ) + USE SIGNAL ; + - n_s3_l89 ( u_s3_l89 Z ) ( u_s4_l26 A ) + USE SIGNAL ; + - n_s3_l90 ( u_s3_l90 Z ) ( u_s4_l39 A ) + USE SIGNAL ; + - n_s3_l91 ( u_s3_l91 Z ) ( u_s4_l52 A ) + USE SIGNAL ; + - n_s3_l92 ( u_s3_l92 Z ) ( u_s4_l65 A ) + USE SIGNAL ; + - n_s3_l93 ( u_s3_l93 Z ) ( u_s4_l78 A ) + USE SIGNAL ; + - n_s3_l94 ( u_s3_l94 Z ) ( u_s4_l91 A ) + USE SIGNAL ; + - n_s3_l95 ( u_s3_l95 Z ) ( u_s4_l8 A ) + USE SIGNAL ; + - n_s4_l0 ( u_s4_l0 Z ) ( u_s5_l28 A ) + USE SIGNAL ; + - n_s4_l1 ( u_s4_l1 Z ) ( u_s5_l45 A ) + USE SIGNAL ; + - n_s4_l2 ( u_s4_l2 Z ) ( u_s5_l62 A ) + USE SIGNAL ; + - n_s4_l3 ( u_s4_l3 Z ) ( u_s5_l79 A ) + USE SIGNAL ; + - n_s4_l4 ( u_s4_l4 Z ) ( u_s5_l0 A ) + USE SIGNAL ; + - n_s4_l5 ( u_s4_l5 Z ) ( u_s5_l17 A ) + USE SIGNAL ; + - n_s4_l6 ( u_s4_l6 Z ) ( u_s5_l34 A ) + USE SIGNAL ; + - n_s4_l7 ( u_s4_l7 Z ) ( u_s5_l51 A ) + USE SIGNAL ; + - n_s4_l8 ( u_s4_l8 Z ) ( u_s5_l68 A ) + USE SIGNAL ; + - n_s4_l9 ( u_s4_l9 Z ) ( u_s5_l85 A ) + USE SIGNAL ; + - n_s4_l10 ( u_s4_l10 Z ) ( u_s5_l6 A ) + USE SIGNAL ; + - n_s4_l11 ( u_s4_l11 Z ) ( u_s5_l23 A ) + USE SIGNAL ; + - n_s4_l12 ( u_s4_l12 Z ) ( u_s5_l40 A ) + USE SIGNAL ; + - n_s4_l13 ( u_s4_l13 Z ) ( u_s5_l57 A ) + USE SIGNAL ; + - n_s4_l14 ( u_s4_l14 Z ) ( u_s5_l74 A ) + USE SIGNAL ; + - n_s4_l15 ( u_s4_l15 Z ) ( u_s5_l91 A ) + USE SIGNAL ; + - n_s4_l16 ( u_s4_l16 Z ) ( u_s5_l12 A ) + USE SIGNAL ; + - n_s4_l17 ( u_s4_l17 Z ) ( u_s5_l29 A ) + USE SIGNAL ; + - n_s4_l18 ( u_s4_l18 Z ) ( u_s5_l46 A ) + USE SIGNAL ; + - n_s4_l19 ( u_s4_l19 Z ) ( u_s5_l63 A ) + USE SIGNAL ; + - n_s4_l20 ( u_s4_l20 Z ) ( u_s5_l80 A ) + USE SIGNAL ; + - n_s4_l21 ( u_s4_l21 Z ) ( u_s5_l1 A ) + USE SIGNAL ; + - n_s4_l22 ( u_s4_l22 Z ) ( u_s5_l18 A ) + USE SIGNAL ; + - n_s4_l23 ( u_s4_l23 Z ) ( u_s5_l35 A ) + USE SIGNAL ; + - n_s4_l24 ( u_s4_l24 Z ) ( u_s5_l52 A ) + USE SIGNAL ; + - n_s4_l25 ( u_s4_l25 Z ) ( u_s5_l69 A ) + USE SIGNAL ; + - n_s4_l26 ( u_s4_l26 Z ) ( u_s5_l86 A ) + USE SIGNAL ; + - n_s4_l27 ( u_s4_l27 Z ) ( u_s5_l7 A ) + USE SIGNAL ; + - n_s4_l28 ( u_s4_l28 Z ) ( u_s5_l24 A ) + USE SIGNAL ; + - n_s4_l29 ( u_s4_l29 Z ) ( u_s5_l41 A ) + USE SIGNAL ; + - n_s4_l30 ( u_s4_l30 Z ) ( u_s5_l58 A ) + USE SIGNAL ; + - n_s4_l31 ( u_s4_l31 Z ) ( u_s5_l75 A ) + USE SIGNAL ; + - n_s4_l32 ( u_s4_l32 Z ) ( u_s5_l92 A ) + USE SIGNAL ; + - n_s4_l33 ( u_s4_l33 Z ) ( u_s5_l13 A ) + USE SIGNAL ; + - n_s4_l34 ( u_s4_l34 Z ) ( u_s5_l30 A ) + USE SIGNAL ; + - n_s4_l35 ( u_s4_l35 Z ) ( u_s5_l47 A ) + USE SIGNAL ; + - n_s4_l36 ( u_s4_l36 Z ) ( u_s5_l64 A ) + USE SIGNAL ; + - n_s4_l37 ( u_s4_l37 Z ) ( u_s5_l81 A ) + USE SIGNAL ; + - n_s4_l38 ( u_s4_l38 Z ) ( u_s5_l2 A ) + USE SIGNAL ; + - n_s4_l39 ( u_s4_l39 Z ) ( u_s5_l19 A ) + USE SIGNAL ; + - n_s4_l40 ( u_s4_l40 Z ) ( u_s5_l36 A ) + USE SIGNAL ; + - n_s4_l41 ( u_s4_l41 Z ) ( u_s5_l53 A ) + USE SIGNAL ; + - n_s4_l42 ( u_s4_l42 Z ) ( u_s5_l70 A ) + USE SIGNAL ; + - n_s4_l43 ( u_s4_l43 Z ) ( u_s5_l87 A ) + USE SIGNAL ; + - n_s4_l44 ( u_s4_l44 Z ) ( u_s5_l8 A ) + USE SIGNAL ; + - n_s4_l45 ( u_s4_l45 Z ) ( u_s5_l25 A ) + USE SIGNAL ; + - n_s4_l46 ( u_s4_l46 Z ) ( u_s5_l42 A ) + USE SIGNAL ; + - n_s4_l47 ( u_s4_l47 Z ) ( u_s5_l59 A ) + USE SIGNAL ; + - n_s4_l48 ( u_s4_l48 Z ) ( u_s5_l76 A ) + USE SIGNAL ; + - n_s4_l49 ( u_s4_l49 Z ) ( u_s5_l93 A ) + USE SIGNAL ; + - n_s4_l50 ( u_s4_l50 Z ) ( u_s5_l14 A ) + USE SIGNAL ; + - n_s4_l51 ( u_s4_l51 Z ) ( u_s5_l31 A ) + USE SIGNAL ; + - n_s4_l52 ( u_s4_l52 Z ) ( u_s5_l48 A ) + USE SIGNAL ; + - n_s4_l53 ( u_s4_l53 Z ) ( u_s5_l65 A ) + USE SIGNAL ; + - n_s4_l54 ( u_s4_l54 Z ) ( u_s5_l82 A ) + USE SIGNAL ; + - n_s4_l55 ( u_s4_l55 Z ) ( u_s5_l3 A ) + USE SIGNAL ; + - n_s4_l56 ( u_s4_l56 Z ) ( u_s5_l20 A ) + USE SIGNAL ; + - n_s4_l57 ( u_s4_l57 Z ) ( u_s5_l37 A ) + USE SIGNAL ; + - n_s4_l58 ( u_s4_l58 Z ) ( u_s5_l54 A ) + USE SIGNAL ; + - n_s4_l59 ( u_s4_l59 Z ) ( u_s5_l71 A ) + USE SIGNAL ; + - n_s4_l60 ( u_s4_l60 Z ) ( u_s5_l88 A ) + USE SIGNAL ; + - n_s4_l61 ( u_s4_l61 Z ) ( u_s5_l9 A ) + USE SIGNAL ; + - n_s4_l62 ( u_s4_l62 Z ) ( u_s5_l26 A ) + USE SIGNAL ; + - n_s4_l63 ( u_s4_l63 Z ) ( u_s5_l43 A ) + USE SIGNAL ; + - n_s4_l64 ( u_s4_l64 Z ) ( u_s5_l60 A ) + USE SIGNAL ; + - n_s4_l65 ( u_s4_l65 Z ) ( u_s5_l77 A ) + USE SIGNAL ; + - n_s4_l66 ( u_s4_l66 Z ) ( u_s5_l94 A ) + USE SIGNAL ; + - n_s4_l67 ( u_s4_l67 Z ) ( u_s5_l15 A ) + USE SIGNAL ; + - n_s4_l68 ( u_s4_l68 Z ) ( u_s5_l32 A ) + USE SIGNAL ; + - n_s4_l69 ( u_s4_l69 Z ) ( u_s5_l49 A ) + USE SIGNAL ; + - n_s4_l70 ( u_s4_l70 Z ) ( u_s5_l66 A ) + USE SIGNAL ; + - n_s4_l71 ( u_s4_l71 Z ) ( u_s5_l83 A ) + USE SIGNAL ; + - n_s4_l72 ( u_s4_l72 Z ) ( u_s5_l4 A ) + USE SIGNAL ; + - n_s4_l73 ( u_s4_l73 Z ) ( u_s5_l21 A ) + USE SIGNAL ; + - n_s4_l74 ( u_s4_l74 Z ) ( u_s5_l38 A ) + USE SIGNAL ; + - n_s4_l75 ( u_s4_l75 Z ) ( u_s5_l55 A ) + USE SIGNAL ; + - n_s4_l76 ( u_s4_l76 Z ) ( u_s5_l72 A ) + USE SIGNAL ; + - n_s4_l77 ( u_s4_l77 Z ) ( u_s5_l89 A ) + USE SIGNAL ; + - n_s4_l78 ( u_s4_l78 Z ) ( u_s5_l10 A ) + USE SIGNAL ; + - n_s4_l79 ( u_s4_l79 Z ) ( u_s5_l27 A ) + USE SIGNAL ; + - n_s4_l80 ( u_s4_l80 Z ) ( u_s5_l44 A ) + USE SIGNAL ; + - n_s4_l81 ( u_s4_l81 Z ) ( u_s5_l61 A ) + USE SIGNAL ; + - n_s4_l82 ( u_s4_l82 Z ) ( u_s5_l78 A ) + USE SIGNAL ; + - n_s4_l83 ( u_s4_l83 Z ) ( u_s5_l95 A ) + USE SIGNAL ; + - n_s4_l84 ( u_s4_l84 Z ) ( u_s5_l16 A ) + USE SIGNAL ; + - n_s4_l85 ( u_s4_l85 Z ) ( u_s5_l33 A ) + USE SIGNAL ; + - n_s4_l86 ( u_s4_l86 Z ) ( u_s5_l50 A ) + USE SIGNAL ; + - n_s4_l87 ( u_s4_l87 Z ) ( u_s5_l67 A ) + USE SIGNAL ; + - n_s4_l88 ( u_s4_l88 Z ) ( u_s5_l84 A ) + USE SIGNAL ; + - n_s4_l89 ( u_s4_l89 Z ) ( u_s5_l5 A ) + USE SIGNAL ; + - n_s4_l90 ( u_s4_l90 Z ) ( u_s5_l22 A ) + USE SIGNAL ; + - n_s4_l91 ( u_s4_l91 Z ) ( u_s5_l39 A ) + USE SIGNAL ; + - n_s4_l92 ( u_s4_l92 Z ) ( u_s5_l56 A ) + USE SIGNAL ; + - n_s4_l93 ( u_s4_l93 Z ) ( u_s5_l73 A ) + USE SIGNAL ; + - n_s4_l94 ( u_s4_l94 Z ) ( u_s5_l90 A ) + USE SIGNAL ; + - n_s4_l95 ( u_s4_l95 Z ) ( u_s5_l11 A ) + USE SIGNAL ; + - out[0] ( PIN out[0] ) ( u_s5_l0 Z ) + USE SIGNAL ; + - out[1] ( PIN out[1] ) ( u_s5_l1 Z ) + USE SIGNAL ; + - out[2] ( PIN out[2] ) ( u_s5_l2 Z ) + USE SIGNAL ; + - out[3] ( PIN out[3] ) ( u_s5_l3 Z ) + USE SIGNAL ; + - out[4] ( PIN out[4] ) ( u_s5_l4 Z ) + USE SIGNAL ; + - out[5] ( PIN out[5] ) ( u_s5_l5 Z ) + USE SIGNAL ; + - out[6] ( PIN out[6] ) ( u_s5_l6 Z ) + USE SIGNAL ; + - out[7] ( PIN out[7] ) ( u_s5_l7 Z ) + USE SIGNAL ; + - out[8] ( PIN out[8] ) ( u_s5_l8 Z ) + USE SIGNAL ; + - out[9] ( PIN out[9] ) ( u_s5_l9 Z ) + USE SIGNAL ; + - out[10] ( PIN out[10] ) ( u_s5_l10 Z ) + USE SIGNAL ; + - out[11] ( PIN out[11] ) ( u_s5_l11 Z ) + USE SIGNAL ; + - out[12] ( PIN out[12] ) ( u_s5_l12 Z ) + USE SIGNAL ; + - out[13] ( PIN out[13] ) ( u_s5_l13 Z ) + USE SIGNAL ; + - out[14] ( PIN out[14] ) ( u_s5_l14 Z ) + USE SIGNAL ; + - out[15] ( PIN out[15] ) ( u_s5_l15 Z ) + USE SIGNAL ; + - out[16] ( PIN out[16] ) ( u_s5_l16 Z ) + USE SIGNAL ; + - out[17] ( PIN out[17] ) ( u_s5_l17 Z ) + USE SIGNAL ; + - out[18] ( PIN out[18] ) ( u_s5_l18 Z ) + USE SIGNAL ; + - out[19] ( PIN out[19] ) ( u_s5_l19 Z ) + USE SIGNAL ; + - out[20] ( PIN out[20] ) ( u_s5_l20 Z ) + USE SIGNAL ; + - out[21] ( PIN out[21] ) ( u_s5_l21 Z ) + USE SIGNAL ; + - out[22] ( PIN out[22] ) ( u_s5_l22 Z ) + USE SIGNAL ; + - out[23] ( PIN out[23] ) ( u_s5_l23 Z ) + USE SIGNAL ; + - out[24] ( PIN out[24] ) ( u_s5_l24 Z ) + USE SIGNAL ; + - out[25] ( PIN out[25] ) ( u_s5_l25 Z ) + USE SIGNAL ; + - out[26] ( PIN out[26] ) ( u_s5_l26 Z ) + USE SIGNAL ; + - out[27] ( PIN out[27] ) ( u_s5_l27 Z ) + USE SIGNAL ; + - out[28] ( PIN out[28] ) ( u_s5_l28 Z ) + USE SIGNAL ; + - out[29] ( PIN out[29] ) ( u_s5_l29 Z ) + USE SIGNAL ; + - out[30] ( PIN out[30] ) ( u_s5_l30 Z ) + USE SIGNAL ; + - out[31] ( PIN out[31] ) ( u_s5_l31 Z ) + USE SIGNAL ; + - out[32] ( PIN out[32] ) ( u_s5_l32 Z ) + USE SIGNAL ; + - out[33] ( PIN out[33] ) ( u_s5_l33 Z ) + USE SIGNAL ; + - out[34] ( PIN out[34] ) ( u_s5_l34 Z ) + USE SIGNAL ; + - out[35] ( PIN out[35] ) ( u_s5_l35 Z ) + USE SIGNAL ; + - out[36] ( PIN out[36] ) ( u_s5_l36 Z ) + USE SIGNAL ; + - out[37] ( PIN out[37] ) ( u_s5_l37 Z ) + USE SIGNAL ; + - out[38] ( PIN out[38] ) ( u_s5_l38 Z ) + USE SIGNAL ; + - out[39] ( PIN out[39] ) ( u_s5_l39 Z ) + USE SIGNAL ; + - out[40] ( PIN out[40] ) ( u_s5_l40 Z ) + USE SIGNAL ; + - out[41] ( PIN out[41] ) ( u_s5_l41 Z ) + USE SIGNAL ; + - out[42] ( PIN out[42] ) ( u_s5_l42 Z ) + USE SIGNAL ; + - out[43] ( PIN out[43] ) ( u_s5_l43 Z ) + USE SIGNAL ; + - out[44] ( PIN out[44] ) ( u_s5_l44 Z ) + USE SIGNAL ; + - out[45] ( PIN out[45] ) ( u_s5_l45 Z ) + USE SIGNAL ; + - out[46] ( PIN out[46] ) ( u_s5_l46 Z ) + USE SIGNAL ; + - out[47] ( PIN out[47] ) ( u_s5_l47 Z ) + USE SIGNAL ; + - out[48] ( PIN out[48] ) ( u_s5_l48 Z ) + USE SIGNAL ; + - out[49] ( PIN out[49] ) ( u_s5_l49 Z ) + USE SIGNAL ; + - out[50] ( PIN out[50] ) ( u_s5_l50 Z ) + USE SIGNAL ; + - out[51] ( PIN out[51] ) ( u_s5_l51 Z ) + USE SIGNAL ; + - out[52] ( PIN out[52] ) ( u_s5_l52 Z ) + USE SIGNAL ; + - out[53] ( PIN out[53] ) ( u_s5_l53 Z ) + USE SIGNAL ; + - out[54] ( PIN out[54] ) ( u_s5_l54 Z ) + USE SIGNAL ; + - out[55] ( PIN out[55] ) ( u_s5_l55 Z ) + USE SIGNAL ; + - out[56] ( PIN out[56] ) ( u_s5_l56 Z ) + USE SIGNAL ; + - out[57] ( PIN out[57] ) ( u_s5_l57 Z ) + USE SIGNAL ; + - out[58] ( PIN out[58] ) ( u_s5_l58 Z ) + USE SIGNAL ; + - out[59] ( PIN out[59] ) ( u_s5_l59 Z ) + USE SIGNAL ; + - out[60] ( PIN out[60] ) ( u_s5_l60 Z ) + USE SIGNAL ; + - out[61] ( PIN out[61] ) ( u_s5_l61 Z ) + USE SIGNAL ; + - out[62] ( PIN out[62] ) ( u_s5_l62 Z ) + USE SIGNAL ; + - out[63] ( PIN out[63] ) ( u_s5_l63 Z ) + USE SIGNAL ; + - out[64] ( PIN out[64] ) ( u_s5_l64 Z ) + USE SIGNAL ; + - out[65] ( PIN out[65] ) ( u_s5_l65 Z ) + USE SIGNAL ; + - out[66] ( PIN out[66] ) ( u_s5_l66 Z ) + USE SIGNAL ; + - out[67] ( PIN out[67] ) ( u_s5_l67 Z ) + USE SIGNAL ; + - out[68] ( PIN out[68] ) ( u_s5_l68 Z ) + USE SIGNAL ; + - out[69] ( PIN out[69] ) ( u_s5_l69 Z ) + USE SIGNAL ; + - out[70] ( PIN out[70] ) ( u_s5_l70 Z ) + USE SIGNAL ; + - out[71] ( PIN out[71] ) ( u_s5_l71 Z ) + USE SIGNAL ; + - out[72] ( PIN out[72] ) ( u_s5_l72 Z ) + USE SIGNAL ; + - out[73] ( PIN out[73] ) ( u_s5_l73 Z ) + USE SIGNAL ; + - out[74] ( PIN out[74] ) ( u_s5_l74 Z ) + USE SIGNAL ; + - out[75] ( PIN out[75] ) ( u_s5_l75 Z ) + USE SIGNAL ; + - out[76] ( PIN out[76] ) ( u_s5_l76 Z ) + USE SIGNAL ; + - out[77] ( PIN out[77] ) ( u_s5_l77 Z ) + USE SIGNAL ; + - out[78] ( PIN out[78] ) ( u_s5_l78 Z ) + USE SIGNAL ; + - out[79] ( PIN out[79] ) ( u_s5_l79 Z ) + USE SIGNAL ; + - out[80] ( PIN out[80] ) ( u_s5_l80 Z ) + USE SIGNAL ; + - out[81] ( PIN out[81] ) ( u_s5_l81 Z ) + USE SIGNAL ; + - out[82] ( PIN out[82] ) ( u_s5_l82 Z ) + USE SIGNAL ; + - out[83] ( PIN out[83] ) ( u_s5_l83 Z ) + USE SIGNAL ; + - out[84] ( PIN out[84] ) ( u_s5_l84 Z ) + USE SIGNAL ; + - out[85] ( PIN out[85] ) ( u_s5_l85 Z ) + USE SIGNAL ; + - out[86] ( PIN out[86] ) ( u_s5_l86 Z ) + USE SIGNAL ; + - out[87] ( PIN out[87] ) ( u_s5_l87 Z ) + USE SIGNAL ; + - out[88] ( PIN out[88] ) ( u_s5_l88 Z ) + USE SIGNAL ; + - out[89] ( PIN out[89] ) ( u_s5_l89 Z ) + USE SIGNAL ; + - out[90] ( PIN out[90] ) ( u_s5_l90 Z ) + USE SIGNAL ; + - out[91] ( PIN out[91] ) ( u_s5_l91 Z ) + USE SIGNAL ; + - out[92] ( PIN out[92] ) ( u_s5_l92 Z ) + USE SIGNAL ; + - out[93] ( PIN out[93] ) ( u_s5_l93 Z ) + USE SIGNAL ; + - out[94] ( PIN out[94] ) ( u_s5_l94 Z ) + USE SIGNAL ; + - out[95] ( PIN out[95] ) ( u_s5_l95 Z ) + USE SIGNAL ; +END NETS +END DESIGN diff --git a/src/grt/test/snapshot_batched_incremental_state.tcl b/src/grt/test/snapshot_batched_incremental_state.tcl index 062d6969384..bf180a9cdbf 100644 --- a/src/grt/test/snapshot_batched_incremental_state.tcl +++ b/src/grt/test/snapshot_batched_incremental_state.tcl @@ -4,16 +4,16 @@ read_def "gcd.def" set_thread_count 16 -if {[grt::get_snapshot_batched_width] != 0} { +if {[grt::get_snapshot_batched_width] != 16} { utl::error GRT 707 \ - "FastRoute should start with snapshot_batched_width set to 0." + "FastRoute should start with snapshot_batched_width set to 16." } global_route -verbose -if {[grt::get_snapshot_batched_width] != 0} { +if {[grt::get_snapshot_batched_width] != 16} { utl::error GRT 708 \ - "Default global_route should leave snapshot_batched_width at 0." + "Default global_route should leave snapshot_batched_width at 16." } global_route -start_incremental diff --git a/src/grt/test/snapshot_batched_single_thread_smoke.tcl b/src/grt/test/snapshot_batched_single_thread_smoke.tcl index e55a12e7282..d82daec6529 100644 --- a/src/grt/test/snapshot_batched_single_thread_smoke.tcl +++ b/src/grt/test/snapshot_batched_single_thread_smoke.tcl @@ -1,14 +1,21 @@ source "helpers.tcl" read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" +read_def "shuffle_stress.def" set_thread_count 1 +set_routing_layers -signal metal2-metal6 +set_global_routing_layer_adjustment * 0.20 +foreach layer {metal2 metal3 metal4 metal5} { + set_global_routing_region_adjustment {7.8 2.8 10.2 140.0} \ + -layer $layer \ + -adjustment 0.20 +} + set output "" tee -variable output -quiet { - global_route \ - -snapshot_batched_width 16 \ - -verbose + global_route -allow_congestion -snapshot_batched_width 16 \ + -congestion_iterations 200 -verbose } if {[grt::get_snapshot_batched_width] != 16} { @@ -32,5 +39,7 @@ if { $wirelength <= 0 || $vias < 0 } { "Failed to capture single-thread snapshot-batched global-route summary output." } +require_snapshot_batched_activity "snapshot_batched_single_thread_smoke" + puts "pass" exit 0 diff --git a/src/grt/test/snapshot_batched_smoke.tcl b/src/grt/test/snapshot_batched_smoke.tcl index 84df2041c5d..67a53bad24f 100644 --- a/src/grt/test/snapshot_batched_smoke.tcl +++ b/src/grt/test/snapshot_batched_smoke.tcl @@ -1,14 +1,21 @@ source "helpers.tcl" read_lef "Nangate45/Nangate45.lef" -read_def "gcd.def" +read_def "shuffle_stress.def" set_thread_count 16 +set_routing_layers -signal metal2-metal6 +set_global_routing_layer_adjustment * 0.20 +foreach layer {metal2 metal3 metal4 metal5} { + set_global_routing_region_adjustment {7.8 2.8 10.2 140.0} \ + -layer $layer \ + -adjustment 0.20 +} + set output "" tee -variable output -quiet { - global_route \ - -snapshot_batched_width 16 \ - -verbose + global_route -allow_congestion -snapshot_batched_width 16 \ + -congestion_iterations 200 -verbose } set report_file [make_result_file "snapshot_batched_smoke.rpt"] @@ -31,5 +38,7 @@ if { $wirelength <= 0 || $vias < 0 } { utl::error GRT 706 "Failed to capture snapshot-batched global-route summary output." } +require_snapshot_batched_activity "snapshot_batched_smoke" + puts "pass" exit 0 diff --git a/test/helpers.tcl b/test/helpers.tcl index 9f204442467..cf4fbed4606 100644 --- a/test/helpers.tcl +++ b/test/helpers.tcl @@ -202,6 +202,13 @@ proc diff_files { file1 file2 { ignore "" } } { } } +proc require_snapshot_batched_activity { test_name } { + if { [grt::get_snapshot_batch_count] <= 0 } { + utl::error GRT 713 \ + "$test_name did not execute snapshot-batched routing." + } +} + proc run_unit_test_and_exit { relative_path } { set test_dir [pwd] set openroad_dir [file dirname [file dirname [file dirname $test_dir]]] From 87d5ef96dfd8b93fce6fd3dda7c973b41bb8b970 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 25 Mar 2026 19:51:13 -0300 Subject: [PATCH 10/25] undo unnecessary changes on swig and format_as Signed-off-by: Eder Monteiro --- src/dpl/src/infrastructure/Coordinates.h | 8 ---- src/drt/src/dr/FlexGridGraph_maze.cpp | 17 +------- src/drt/src/frBaseTypes.h | 8 +--- src/drt/src/global.h | 2 + src/dst/src/BalancerConnection.cc | 2 +- src/dst/src/LoadBalancer.cc | 2 +- src/odb/include/odb/geom.h | 9 +---- src/odb/src/db/dbGuide.cpp | 17 +------- src/odb/src/db/dbJournal.cpp | 14 +------ src/utl/include/utl/Logger.h | 51 ++---------------------- src/utl/src/timer.cpp | 14 +------ 11 files changed, 16 insertions(+), 128 deletions(-) diff --git a/src/dpl/src/infrastructure/Coordinates.h b/src/dpl/src/infrastructure/Coordinates.h index 83771766db6..f30d18c3865 100644 --- a/src/dpl/src/infrastructure/Coordinates.h +++ b/src/dpl/src/infrastructure/Coordinates.h @@ -227,14 +227,6 @@ inline int sumXY(DbuX x, DbuY y) return x.v + y.v; } -#if !SWIG && FMT_VERSION >= 100000 -template -auto format_as(const T& value) -> decltype(utl::format_as(value)) -{ - return utl::format_as(value); -} -#endif - } // namespace dpl // Enable use with unordered_map/set diff --git a/src/drt/src/dr/FlexGridGraph_maze.cpp b/src/drt/src/dr/FlexGridGraph_maze.cpp index 1dcf8bfe876..765f837494e 100644 --- a/src/drt/src/dr/FlexGridGraph_maze.cpp +++ b/src/drt/src/dr/FlexGridGraph_maze.cpp @@ -8,7 +8,6 @@ #include #include #include -#include #include #include @@ -25,18 +24,6 @@ using odb::dbTechLayerDir; namespace drt { -namespace { - -template -std::string toString(const T& value) -{ - std::ostringstream stream; - stream << value; - return stream.str(); -} - -} // namespace - const int debugMazeIter = std::numeric_limits::max(); void FlexGridGraph::printExpansion(const FlexWavefrontGrid& currGrid, @@ -61,10 +48,10 @@ void FlexGridGraph::printExpansion(const FlexWavefrontGrid& currGrid, "{} ", keyword, currGrid.z(), - toString(pt), + pt, currGrid.getCost(), currGrid.getPathCost(), - toString(currGrid.getLastDir()), + currGrid.getLastDir(), currGrid.getCost() - currGrid.getPathCost(), gridX, gridY); diff --git a/src/drt/src/frBaseTypes.h b/src/drt/src/frBaseTypes.h index 24659e30e0c..2243393d1ac 100644 --- a/src/drt/src/frBaseTypes.h +++ b/src/drt/src/frBaseTypes.h @@ -331,12 +331,6 @@ inline bool is_loading(const Archive& ar) return std::is_same_v; } -#if !SWIG && FMT_VERSION >= 100000 -template -auto format_as(const T& value) -> decltype(utl::format_as(value)) -{ - return utl::format_as(value); -} -#endif +using utl::format_as; } // namespace drt diff --git a/src/drt/src/global.h b/src/drt/src/global.h index adeda31331d..fbc5f64b4b5 100644 --- a/src/drt/src/global.h +++ b/src/drt/src/global.h @@ -158,4 +158,6 @@ std::ostream& operator<<(std::ostream& os, const frNet& n); std::ostream& operator<<(std::ostream& os, const drNet& n); std::ostream& operator<<(std::ostream& os, const frMarker& m); +using utl::format_as; + } // namespace drt diff --git a/src/dst/src/BalancerConnection.cc b/src/dst/src/BalancerConnection.cc index dd1e958eeaa..e6f3f70cf4d 100644 --- a/src/dst/src/BalancerConnection.cc +++ b/src/dst/src/BalancerConnection.cc @@ -120,7 +120,7 @@ void BalancerConnection::handle_read(boost::system::error_code const& err, "Exception thrown: {}. worker with ip \"{}\" and " "port \"{}\" will be pushed back the queue.", ex.what(), - worker_address.to_string(), + worker_address, port); owner_->punishWorker(worker_address, port); failed_workers_trials++; diff --git a/src/dst/src/LoadBalancer.cc b/src/dst/src/LoadBalancer.cc index 46466052d85..7985301270a 100644 --- a/src/dst/src/LoadBalancer.cc +++ b/src/dst/src/LoadBalancer.cc @@ -35,7 +35,7 @@ void LoadBalancer::start_accept() while (!copy.empty()) { auto worker = copy.top(); logger_->report("Worker {}/{} handled {} jobs", - worker.ip.to_string(), + worker.ip, worker.port, worker.priority); copy.pop(); diff --git a/src/odb/include/odb/geom.h b/src/odb/include/odb/geom.h index 8fb31155811..6f0aa896973 100644 --- a/src/odb/include/odb/geom.h +++ b/src/odb/include/odb/geom.h @@ -11,7 +11,6 @@ #include #include #include -#include #include #include @@ -1419,12 +1418,8 @@ inline void Cuboid::print(const char* prefix) dz()); } -#if !SWIG && FMT_VERSION >= 100000 -template -auto format_as(const T& value) -> decltype(utl::format_as(value)) -{ - return utl::format_as(value); -} +#ifndef SWIG +using utl::format_as; #endif } // namespace odb diff --git a/src/odb/src/db/dbGuide.cpp b/src/odb/src/db/dbGuide.cpp index b5b143544cd..842171e2b03 100644 --- a/src/odb/src/db/dbGuide.cpp +++ b/src/odb/src/db/dbGuide.cpp @@ -12,7 +12,6 @@ #include "odb/db.h" // User Code Begin Includes #include -#include #include "dbBlock.h" #include "dbJournal.h" @@ -22,18 +21,6 @@ #include "utl/Logger.h" // User Code End Includes namespace odb { - -namespace { - -std::string rectToString(const Rect& rect) -{ - std::ostringstream stream; - stream << rect; - return stream.str(); -} - -} // namespace - template class dbTable<_dbGuide>; bool _dbGuide::operator==(const _dbGuide& rhs) const @@ -178,7 +165,7 @@ dbGuide* dbGuide::create(dbNet* net, "EDIT: create dbGuide at id {}, in layer {} box {}", guide->getOID(), layer->getName(), - rectToString(box)); + box); if (block->journal_) { block->journal_->beginAction(dbJournal::kCreateObject); @@ -217,7 +204,7 @@ void dbGuide::destroy(dbGuide* guide) "EDIT: delete dbGuide at id {}, in layer {} box {}", guide->getId(), guide->getLayer()->getName(), - rectToString(guide->getBox())); + guide->getBox()); if (block->journal_) { block->journal_->beginAction(dbJournal::kDeleteObject); diff --git a/src/odb/src/db/dbJournal.cpp b/src/odb/src/db/dbJournal.cpp index 2a014580802..66a37800c62 100644 --- a/src/odb/src/db/dbJournal.cpp +++ b/src/odb/src/db/dbJournal.cpp @@ -6,7 +6,6 @@ #include #include #include -#include #include "dbBTerm.h" #include "dbBlock.h" @@ -26,17 +25,6 @@ namespace odb { -namespace { - -std::string rectToString(const Rect& rect) -{ - std::ostringstream stream; - stream << rect; - return stream.str(); -} - -} // namespace - dbJournal::dbJournal(dbBlock* block) : block_(block), logger_(block->getImpl()->getLogger()), log_(logger_) { @@ -1795,7 +1783,7 @@ void dbJournal::undo_createObject() "UNDO ECO: create dbGuide at id {}, in layer {} box {}", guide_id, guide->getLayer()->getName(), - rectToString(guide->getBox())); + guide->getBox()); dbGuide::destroy(guide); break; } diff --git a/src/utl/include/utl/Logger.h b/src/utl/include/utl/Logger.h index b6b9bc579af..8592bea6785 100644 --- a/src/utl/include/utl/Logger.h +++ b/src/utl/include/utl/Logger.h @@ -37,51 +37,6 @@ namespace utl { -namespace detail { - -#if SWIG - -template -const T& logArg(const T& arg) -{ - return arg; -} - -#else - -template -struct is_ostreamable : std::false_type -{ -}; - -template -struct is_ostreamable< - T, - std::void_t() - << std::declval())>> : std::true_type -{ -}; - -template -decltype(auto) logArg(const T& arg) -{ -#if FMT_VERSION >= 80000 - using Arg = std::decay_t; - if constexpr (fmt::is_formattable::value) { - return arg; - } else -#endif - if constexpr (is_ostreamable::value) { - return fmt::streamed(arg); - } else { - return arg; - } -} - -#endif - -} // namespace detail - class PrometheusMetricsServer; class PrometheusRegistry; @@ -158,7 +113,7 @@ class Logger { logger_->log(spdlog::level::level_enum::off, FMT_RUNTIME(message + spdlog::details::os::default_eol), - detail::logArg(args)...); + args...); } // Reports a string literal with no interpolation or newline. @@ -183,7 +138,7 @@ class Logger level_names[spdlog::level::level_enum::debug], tool_names_[tool], group, - detail::logArg(args)...); + args...); logger_->flush(); } @@ -338,7 +293,7 @@ class Logger level_names[level], tool_names_[tool], id, - detail::logArg(args)...); + args...); return; } diff --git a/src/utl/src/timer.cpp b/src/utl/src/timer.cpp index 2fac84e7bcd..e4812d5aaef 100644 --- a/src/utl/src/timer.cpp +++ b/src/utl/src/timer.cpp @@ -5,24 +5,12 @@ #include #include -#include #include #include "utl/Logger.h" namespace utl { -namespace { - -std::string timerToString(const Timer& timer) -{ - std::ostringstream stream; - stream << timer; - return stream.str(); -} - -} // namespace - void Timer::reset() { start_ = Clock::now(); @@ -88,7 +76,7 @@ DebugScopedTimer::DebugScopedTimer(double& aggregate) DebugScopedTimer::~DebugScopedTimer() { if (logger_) { - debugPrint(logger_, tool_, group_, level_, msg_, timerToString(*this)); + debugPrint(logger_, tool_, group_, level_, msg_, *this); } if (aggregate_) { *aggregate_ += elapsed(); From 0f8198f52b8e00ff96fe5a205d34143a2e8528c9 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Thu, 26 Mar 2026 10:42:25 -0300 Subject: [PATCH 11/25] grt: refactoring multithread code Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/include/FastRoute.h | 13 + src/grt/src/fastroute/src/FastRoute.cpp | 502 +++++++++++----------- src/grt/src/fastroute/src/maze.cpp | 106 +++-- 3 files changed, 314 insertions(+), 307 deletions(-) diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 2dc7c3b3703..90d0234bdca 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -333,6 +333,15 @@ class FastRouteCore int L, const CostParams& cost_params, float& slack_th); + bool runSnapshotBatchedMazeRoute(int iter, + int expand, + int ripup_threshold, + int maze_edge_threshold, + bool ordering, + int via, + int L, + const CostParams& cost_params, + float& slack_th); void convertToMazeroute(); int getOverflow2D(int* maxOverflow); int getOverflow2Dmaze(int* maxOverflow, int* tUsage); @@ -642,6 +651,7 @@ class FastRouteCore const std::vector& batch_net_ids); void applySnapshotBatchRoute(int net_id, StTree&& sttree); void updatePlanarNetUsage(const StTree& sttree, FrNet* net, int edge_cost); + void resetSnapshotBatchStats(); int edgeShift(stt::Tree& t, int net); int edgeShiftNew(stt::Tree& t, int net); @@ -669,6 +679,9 @@ class FastRouteCore std::vector layer_directions_; std::vector db_layers_; int num_threads_; + // When false, nets_ contains borrowed pointers from a parent + // FastRouteCore (snapshot-batch workers). Workers must not outlive + // the parent's nets_ lifetime. bool owns_nets_; int snapshot_batched_width_; int x_range_; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index cef79717490..07fbe0a7ad4 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -36,9 +36,9 @@ namespace { constexpr int kSnapshotSemanticWidth = 16; constexpr int kSnapshotLowOverflowForSerialCleanup = 1500; constexpr int kSnapshotLowMaxOverflowForSerialCleanup = 32; -constexpr int kSnapshotOverflowContinuationThreshold = 5000; +constexpr int kMinNetsForSnapshotBatch = 2 * kSnapshotSemanticWidth; -} +} // namespace FastRouteCore::FastRouteCore(odb::dbDatabase* db, utl::Logger* log, @@ -150,6 +150,11 @@ void FastRouteCore::clear() horizontal_blocked_intervals_.clear(); detour_penalty_ = 0; + resetSnapshotBatchStats(); +} + +void FastRouteCore::resetSnapshotBatchStats() +{ snapshot_batch_sync_time_ = 0.0; snapshot_batch_route_time_ = 0.0; snapshot_batch_apply_time_ = 0.0; @@ -225,7 +230,6 @@ void FastRouteCore::setGridsAndLayers(int x, int y, int nLayers) total_size = static_cast(y_grid_) * x_grid_; src_heap_2D_.resize(total_size); - total_size = static_cast(y_grid_) * x_grid_; dest_heap_2D_.resize(total_size); d1_2D_.resize(boost::extents[y_range_][x_range_]); @@ -1024,8 +1028,7 @@ int FastRouteCore::resolveSnapshotBaseBatchSize(const int net_count) const bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const { return snapshot_batched_width_ > 0 && !snapshot_batch_disabled_for_run_ - && !debug_->isOn() - && net_count > resolveSnapshotBaseBatchSize(net_count) + && !debug_->isOn() && net_count > kMinNetsForSnapshotBatch && !hasNonSoftNdrNets(); } @@ -1056,24 +1059,31 @@ int FastRouteCore::resolveSnapshotNetsForBatch(const int iter, { const int nets_for_batch = resolveSnapshotBaseBatchSize(net_count); - const int early_iteration_limit = resolveSnapshotBatchIterationLimit(net_count); + const int early_iteration_limit + = resolveSnapshotBatchIterationLimit(net_count); const int scaled_iter = iter * 100; - constexpr int kHalfPercentage = 25; - constexpr int kQuarterPercentage = 50; - constexpr int kSinglePercentage = 75; + // Thresholds on iteration progress (% of early_iteration_limit) that + // progressively shrink the batch size for finer-grained convergence. + constexpr int kBatchHalfThreshold = 25; + constexpr int kBatchQuarterThreshold = 50; + constexpr int kBatchSingleThreshold = 75; - if (scaled_iter > kSinglePercentage * early_iteration_limit) { + if (scaled_iter > kBatchSingleThreshold * early_iteration_limit) { return 1; } - if (scaled_iter > kQuarterPercentage * early_iteration_limit) { + if (scaled_iter > kBatchQuarterThreshold * early_iteration_limit) { return std::max(1, nets_for_batch / 4); } - if (scaled_iter > kHalfPercentage * early_iteration_limit) { + if (scaled_iter > kBatchHalfThreshold * early_iteration_limit) { return std::max(1, nets_for_batch / 2); } return nets_for_batch; } +// Build a lightweight worker that shares read-only config and net pointers +// with the parent but owns its own routing state (graph2d_, sttrees_, etc.). +// NOTE: new members added to FastRouteCore may need to be copied here; +// consider grouping routing config into a struct if this list keeps growing. std::unique_ptr FastRouteCore::buildSnapshotBatchWorker() const { auto worker = std::make_unique( @@ -1676,13 +1686,7 @@ NetRouteMap FastRouteCore::run() return getRoutes(); } - snapshot_batch_sync_time_ = 0.0; - snapshot_batch_route_time_ = 0.0; - snapshot_batch_apply_time_ = 0.0; - snapshot_batch_count_ = 0; - snapshot_batch_net_count_ = 0; - snapshot_batch_wave_count_ = 0; - snapshot_batch_disabled_for_run_ = false; + resetSnapshotBatchStats(); double total_run_time = 0.0; double initial_rsmt_time = 0.0; @@ -1916,176 +1920,118 @@ NetRouteMap FastRouteCore::run() GRT, 102, "Start extra iteration {}/{}", i, overflow_iterations_); } - if (THRESH_M > 15) { - THRESH_M -= thStep1; - } else if (THRESH_M >= 2) { - THRESH_M -= thStep2; - } else { - THRESH_M = 0; - } - THRESH_M = std::max(THRESH_M, 0); - - if (total_overflow_ > 2000) { - enlarge_ += ESTEP1; // ENLARGE+(i-1)*ESTEP; - cost_step = CSTEP1; - } else if (total_overflow_ < 500) { - cost_step = CSTEP3; - enlarge_ += ESTEP3; - ripup_threshold = -1; - } else { - cost_step = CSTEP2; - enlarge_ += ESTEP2; - } - graph2d_.updateCongestionHistory(upType, ahth_, stopDEC, max_adj); - - if (total_overflow_ > 15000 && maxOverflow > 400) { - enlarge_ = std::max(x_grid_, y_grid_) / 30; - slope = BIG_INT; - if (i == 5) { - VIA = 0; - logistic_coef = 1.33; + if (THRESH_M > 15) { + THRESH_M -= thStep1; + } else if (THRESH_M >= 2) { + THRESH_M -= thStep2; + } else { + THRESH_M = 0; + } + THRESH_M = std::max(THRESH_M, 0); + + if (total_overflow_ > 2000) { + enlarge_ += ESTEP1; // ENLARGE+(i-1)*ESTEP; + cost_step = CSTEP1; + } else if (total_overflow_ < 500) { + cost_step = CSTEP3; + enlarge_ += ESTEP3; ripup_threshold = -1; - } else if (i > 6) { - if (i % 2 == 0) { - logistic_coef += 0.5; - } + } else { + cost_step = CSTEP2; + enlarge_ += ESTEP2; } - if (i > 10) { - ripup_threshold = 0; + graph2d_.updateCongestionHistory(upType, ahth_, stopDEC, max_adj); + + if (total_overflow_ > 15000 && maxOverflow > 400) { + enlarge_ = std::max(x_grid_, y_grid_) / 30; + slope = BIG_INT; + if (i == 5) { + VIA = 0; + logistic_coef = 1.33; + ripup_threshold = -1; + } else if (i > 6) { + if (i % 2 == 0) { + logistic_coef += 0.5; + } + } + if (i > 10) { + ripup_threshold = 0; + } } - } - enlarge_ = std::min(enlarge_, x_grid_ / 2); - costheight_ += cost_step; - mazeedge_threshold_ = THRESH_M; + enlarge_ = std::min(enlarge_, x_grid_ / 2); + costheight_ += cost_step; + mazeedge_threshold_ = THRESH_M; - if (upType == 3) { - logistic_coef = std::max(2.0 / (1 + log(maxOverflow + max_adj)), - logistic_coef); - } else { - logistic_coef - = std::max(2.0 / (1 + log(maxOverflow)), logistic_coef); - } - - if (i == 8) { - L = 0; - upType = 2; - graph2d_.InitLastUsage(upType); - } - - if (maxOverflow == 1) { - ripup_threshold = -1; - slope = 5; - } - - if (maxOverflow > 300 && past_cong > 15000) { - L = 0; - } - - const int snapshot_batch_count_before = snapshot_batch_count_; - auto cost_params = CostParams(logistic_coef, costheight_, slope); - mazeRouteMSMD(i, - enlarge_, - ripup_threshold, - mazeedge_threshold_, - !(i % 3), - VIA, - L, - cost_params, - slack_th); - - int last_cong = past_cong; - past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); - snapshot_cleanup_active - = snapshot_cleanup_active - || snapshot_batch_count_ > snapshot_batch_count_before; - - if (minofl > past_cong) { - minofl = past_cong; - minoflrnd = i; - } - - if (snapshot_cleanup_active && past_cong < bmfl) { - copyRS(); - bmfl = past_cong; - bwcnt = 0; - } - - if (i == 8) { - L = 1; - } - - i++; - - if (past_cong < 200 && i > 30 && upType == 2 && max_adj <= 20) { - upType = 4; - stopDEC = true; - } + if (upType == 3) { + logistic_coef = std::max(2.0 / (1 + log(maxOverflow + max_adj)), + logistic_coef); + } else { + logistic_coef + = std::max(2.0 / (1 + log(maxOverflow)), logistic_coef); + } - if (maxOverflow < 150) { - if (i == 20 && past_cong > 200) { + if (i == 8) { L = 0; - upType = 3; - stopDEC = true; - slope = 5; - auto cost_params = CostParams(logistic_coef, costheight_, slope); - mazeRouteMSMD(i, - enlarge_, - ripup_threshold, - mazeedge_threshold_, - !(i % 3), - VIA, - L, - cost_params, - slack_th); - last_cong = past_cong; - past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); - - graph2d_.str_accu(12); - L = 1; - stopDEC = false; - slope = 3; upType = 2; + graph2d_.InitLastUsage(upType); } - if (i == 35 && tUsage > 800000) { - graph2d_.str_accu(25); - } - if (i == 50 && tUsage > 800000) { - graph2d_.str_accu(40); + + if (maxOverflow == 1) { + ripup_threshold = -1; + slope = 5; } - } - if (i > 50) { - upType = 4; - if (i > 70) { - stopDEC = true; + if (maxOverflow > 300 && past_cong > 15000) { + L = 0; } - } - if (past_cong > 0.7 * last_cong) { - costheight_ += CSTEP3; - } + const int snapshot_batch_count_before = snapshot_batch_count_; + auto cost_params = CostParams(logistic_coef, costheight_, slope); + mazeRouteMSMD(i, + enlarge_, + ripup_threshold, + mazeedge_threshold_, + !(i % 3), + VIA, + L, + cost_params, + slack_th); + + int last_cong = past_cong; + past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); + snapshot_cleanup_active + = snapshot_cleanup_active + || snapshot_batch_count_ > snapshot_batch_count_before; + + if (minofl > past_cong) { + minofl = past_cong; + minoflrnd = i; + } - if (past_cong >= last_cong) { - VIA = 0; - } + if (snapshot_cleanup_active && past_cong < bmfl) { + copyRS(); + bmfl = past_cong; + bwcnt = 0; + } - if (snapshot_cleanup_active && i > snapshot_iteration_limit) { - if (past_cong >= bmfl) { - bwcnt++; + if (i == 8) { + L = 1; } - if (bwcnt > snapshot_cleanup_patience) { - break; + i++; + + if (past_cong < 200 && i > 30 && upType == 2 && max_adj <= 20) { + upType = 4; + stopDEC = true; } - } else { - if (past_cong < bmfl) { - bwcnt = 0; - if (i > 140 || (i > 80 && past_cong < 20)) { - copyRS(); - bmfl = past_cong; + if (maxOverflow < 150) { + if (i == 20 && past_cong > 200) { L = 0; + upType = 3; + stopDEC = true; + slope = 5; auto cost_params = CostParams(logistic_coef, costheight_, slope); mazeRouteMSMD(i, enlarge_, @@ -2098,101 +2044,159 @@ NetRouteMap FastRouteCore::run() slack_th); last_cong = past_cong; past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); - if (past_cong < last_cong) { - copyRS(); - bmfl = past_cong; - } + + graph2d_.str_accu(12); L = 1; - if (minofl > past_cong) { - minofl = past_cong; - minoflrnd = i; - } + stopDEC = false; + slope = 3; + upType = 2; + } + if (i == 35 && tUsage > 800000) { + graph2d_.str_accu(25); + } + if (i == 50 && tUsage > 800000) { + graph2d_.str_accu(40); } - } else { - bwcnt++; } - if (bmfl > 10) { - if (bmfl > 30 && bmfl < 72 && bwcnt > 50) { - break; + if (i > 50) { + upType = 4; + if (i > 70) { + stopDEC = true; + } + } + + if (past_cong > 0.7 * last_cong) { + costheight_ += CSTEP3; + } + + if (past_cong >= last_cong) { + VIA = 0; + } + + if (snapshot_cleanup_active && i > snapshot_iteration_limit) { + if (past_cong >= bmfl) { + bwcnt++; } - if (bmfl < 30 && bwcnt > 50) { + + if (bwcnt > snapshot_cleanup_patience) { break; } + } else { + if (past_cong < bmfl) { + bwcnt = 0; + if (i > 140 || (i > 80 && past_cong < 20)) { + copyRS(); + bmfl = past_cong; + + L = 0; + auto cost_params = CostParams(logistic_coef, costheight_, slope); + mazeRouteMSMD(i, + enlarge_, + ripup_threshold, + mazeedge_threshold_, + !(i % 3), + VIA, + L, + cost_params, + slack_th); + last_cong = past_cong; + past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); + if (past_cong < last_cong) { + copyRS(); + bmfl = past_cong; + } + L = 1; + if (minofl > past_cong) { + minofl = past_cong; + minoflrnd = i; + } + } + } else { + bwcnt++; + } + + if (bmfl > 10) { + if (bmfl > 30 && bmfl < 72 && bwcnt > 50) { + break; + } + if (bmfl < 30 && bwcnt > 50) { + break; + } + } } - } - if (i >= mazeRound) { - getOverflow2Dmaze(&maxOverflow, &tUsage); - break; - } + if (i >= mazeRound) { + getOverflow2Dmaze(&maxOverflow, &tUsage); + break; + } - if (total_overflow_ > last_total_overflow) { - overflow_increases++; - } - if (last_total_overflow > 0) { - overflow_reduction_percent - = std::max(overflow_reduction_percent, - 1 - ((float) total_overflow_ / last_total_overflow)); - } + if (total_overflow_ > last_total_overflow) { + overflow_increases++; + } + if (last_total_overflow > 0) { + overflow_reduction_percent + = std::max(overflow_reduction_percent, + 1 - ((float) total_overflow_ / last_total_overflow)); + } - last_total_overflow = total_overflow_; - - if (logger_->debugCheck(GRT, "congestionIterations", 1)) { - logger_->report( - "=== Overflow Iteration {} - TotalOverflow {} - OverflowIter {} - " - "OverflowIncreases {} - MaxOverIncr {} ===", - i, - total_overflow_, - overflow_iterations_, - overflow_increases, - max_overflow_increases); - } + last_total_overflow = total_overflow_; + + if (logger_->debugCheck(GRT, "congestionIterations", 1)) { + logger_->report( + "=== Overflow Iteration {} - TotalOverflow {} - OverflowIter {} - " + "OverflowIncreases {} - MaxOverIncr {} ===", + i, + total_overflow_, + overflow_iterations_, + overflow_increases, + max_overflow_increases); + } - // Try disabling NDR nets to fix congestion - if (total_overflow_ > 0 - && (i == overflow_iterations_ - || overflow_increases == max_overflow_increases)) { - // Compute all the NDR nets involved in congestion - computeCongestedNDRnets(); - - std::vector net_ids; - - // If the congestion is not that high (note that the overflow is inflated - // by 100x when there is no capacity available for a NDR net in a specific - // edge) - if (total_overflow_ < soft_ndr_overflow_th) { - // Select one NDR net to be disabled - int net_id = graph2d_.getOneCongestedNDRnet(); - if (net_id != -1) { - net_ids.push_back(net_id); + // Try disabling NDR nets to fix congestion + if (total_overflow_ > 0 + && (i == overflow_iterations_ + || overflow_increases == max_overflow_increases)) { + // Compute all the NDR nets involved in congestion + computeCongestedNDRnets(); + + std::vector net_ids; + + // If the congestion is not that high (note that the overflow is inflated + // by 100x when there is no capacity available for a NDR net in a specific + // edge) + if (total_overflow_ < soft_ndr_overflow_th) { + // Select one NDR net to be disabled + int net_id = graph2d_.getOneCongestedNDRnet(); + if (net_id != -1) { + net_ids.push_back(net_id); + } + } else { // Select multiple NDR nets + net_ids = graph2d_.getMultipleCongestedNDRnet(); } - } else { // Select multiple NDR nets - net_ids = graph2d_.getMultipleCongestedNDRnet(); - } - - // Only apply soft NDR if there is NDR nets involved in congestion - if (!net_ids.empty()) { - // Apply the soft NDR to the selected list of nets - applySoftNDR(net_ids); - - // Reset loop parameters - overflow_increases = 0; - i = 1; - costheight_ = COSHEIGHT; - enlarge_ = ENLARGE; - ripup_threshold = Ripvalue; - minofl = total_overflow_; - bmfl = minofl; - stopDEC = false; - - slope = 20; - L = 1; - // Increase maze route 3D threshold to fix bad routes - long_edge_len = BIG_INT; + // Only apply soft NDR if there is NDR nets involved in congestion + if (!net_ids.empty()) { + // Apply the soft NDR to the selected list of nets + applySoftNDR(net_ids); + + // Reset loop parameters + overflow_increases = 0; + i = 1; + costheight_ = COSHEIGHT; + enlarge_ = ENLARGE; + ripup_threshold = Ripvalue; + minofl = total_overflow_; + bmfl = minofl; + stopDEC = false; + + slope = 20; + L = 1; + + // Increase maze route 3D threshold to fix bad routes + long_edge_len = BIG_INT; + } } - } // generate DRC report each interval if (congestion_report_iter_step_ diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index d4cc122f715..6d3ec967a86 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -1035,7 +1035,15 @@ void FastRouteCore::mazeRouteMSMD(const int iter, const CostParams& cost_params, float& slack_th) { - if (!useSnapshotBatchRoutingForIteration(iter, net_ids_.size())) { + if (!runSnapshotBatchedMazeRoute(iter, + expand, + ripup_threshold, + maze_edge_threshold, + ordering, + via, + L, + cost_params, + slack_th)) { mazeRouteMSMDSequential(iter, expand, ripup_threshold, @@ -1045,82 +1053,57 @@ void FastRouteCore::mazeRouteMSMD(const int iter, L, cost_params, slack_th); - return; + } +} + +bool FastRouteCore::runSnapshotBatchedMazeRoute(const int iter, + const int expand, + const int ripup_threshold, + const int maze_edge_threshold, + const bool ordering, + const int via, + const int L, + const CostParams& cost_params, + float& slack_th) +{ + if (!useSnapshotBatchRoutingForIteration(iter, net_ids_.size())) { + return false; } // If this iteration cannot form multiple snapshot batches, stay entirely on // the sequential path instead of doing snapshot-batched ordering work first. const int initial_nets_for_batch = resolveSnapshotNetsForBatch(iter, net_ids_.size()); - if (initial_nets_for_batch <= 1 || net_ids_.size() <= initial_nets_for_batch) { - mazeRouteMSMDSequential(iter, - expand, - ripup_threshold, - maze_edge_threshold, - ordering, - via, - L, - cost_params, - slack_th); - return; + if (initial_nets_for_batch <= 1 + || static_cast(net_ids_.size()) <= initial_nets_for_batch) { + return false; } std::vector ordered_net_ids = getMazeRouteNetOrder(ordering, slack_th); if (!useSnapshotBatchRoutingForIteration(iter, ordered_net_ids.size())) { - mazeRouteMSMDSequential(iter, - expand, - ripup_threshold, - maze_edge_threshold, - ordering, - via, - L, - cost_params, - slack_th); - return; + return false; } const int nets_for_batch = resolveSnapshotNetsForBatch(iter, ordered_net_ids.size()); - if (nets_for_batch <= 1 || ordered_net_ids.size() <= nets_for_batch) { - mazeRouteMSMDSequential(iter, - expand, - ripup_threshold, - maze_edge_threshold, - ordering, - via, - L, - cost_params, - slack_th); - return; + if (nets_for_batch <= 1 + || static_cast(ordered_net_ids.size()) <= nets_for_batch) { + return false; } - struct BatchResult - { - std::vector net_ids; - std::vector sttrees; - }; std::vector> batch_net_ids; batch_net_ids.reserve((ordered_net_ids.size() + nets_for_batch - 1) / nets_for_batch); for (const int net_id : ordered_net_ids) { if (batch_net_ids.empty() - || batch_net_ids.back().size() == nets_for_batch) { + || static_cast(batch_net_ids.back().size()) == nets_for_batch) { batch_net_ids.emplace_back(); } batch_net_ids.back().push_back(net_id); } if (batch_net_ids.size() < 2) { - mazeRouteMSMDSequential(iter, - expand, - ripup_threshold, - maze_edge_threshold, - ordering, - via, - L, - cost_params, - slack_th); - return; + return false; } double snapshot_sync_time = 0.0; @@ -1128,6 +1111,11 @@ void FastRouteCore::mazeRouteMSMD(const int iter, double snapshot_apply_time = 0.0; int wave_count = 0; { + struct BatchResult + { + std::vector net_ids; + std::vector sttrees; + }; const int semantic_wave_size = resolveSnapshotWaveSize(batch_net_ids.size()); std::vector> workers; @@ -1136,14 +1124,15 @@ void FastRouteCore::mazeRouteMSMD(const int iter, workers.push_back(buildSnapshotBatchWorker()); } - // Snapshot-batched routing intentionally allows route-choice drift inside a wave. Route - // fixed contiguous batches against one snapshot, then commit them in the - // original batch order before advancing to the next wave. - for (int wave_begin = 0; wave_begin < batch_net_ids.size(); + // Snapshot-batched routing intentionally allows route-choice drift + // inside a wave. Route fixed contiguous batches against one snapshot, + // then commit them in the original batch order before advancing to the + // next wave. + for (size_t wave_begin = 0; wave_begin < batch_net_ids.size(); wave_begin += semantic_wave_size) { - const int batches_in_wave - = std::min(semantic_wave_size, - (int) batch_net_ids.size() - wave_begin); + const int batches_in_wave = std::min( + semantic_wave_size, + static_cast(batch_net_ids.size()) - static_cast(wave_begin)); const int active_threads = resolveSnapshotExecutionThreads(batches_in_wave); std::vector batch_results(batches_in_wave); @@ -1189,7 +1178,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, { Timer timer; for (BatchResult& result : batch_results) { - for (int i = 0; i < result.net_ids.size(); i++) { + for (size_t i = 0; i < result.net_ids.size(); i++) { applySnapshotBatchRoute(result.net_ids[i], std::move(result.sttrees[i])); } @@ -1205,6 +1194,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, snapshot_batch_count_ += batch_net_ids.size(); snapshot_batch_net_count_ += ordered_net_ids.size(); snapshot_batch_wave_count_ += wave_count; + return true; } void FastRouteCore::mazeRouteMSMDSequential(const int iter, From bde2651b80959a3c0896ca449bba1189e364396b Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Mon, 20 Apr 2026 13:40:47 -0300 Subject: [PATCH 12/25] grt: sets default snapshot_batched_width to zero Signed-off-by: Eder Monteiro --- src/grt/README.md | 2 +- src/grt/include/grt/GlobalRouter.h | 2 +- src/grt/src/GlobalRouter.tcl | 2 +- src/grt/src/fastroute/src/FastRoute.cpp | 2 +- src/grt/test/snapshot_batched_incremental_state.tcl | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/grt/README.md b/src/grt/README.md index 989b0154a0e..e117ba8e0f3 100644 --- a/src/grt/README.md +++ b/src/grt/README.md @@ -47,7 +47,7 @@ global_route | `-critical_nets_percentage` | Set the percentage of nets with the worst slack value that are considered timing critical, having preference over other nets during congestion iterations (e.g. `-critical_nets_percentage 30`). The default value is `0`, and the allowed values are integers `[0, MAX_INT]`. | | `-skip_large_fanout_nets` | Skips routing for nets with a fanout higher than the specified limit. Nets above this pin count threshold are ignored by the global router and will not have routing guides, meaning they will also be skipped during detailed routing. This option is useful in debugging or estimation flows where high-fanout nets (such as pre-CTS clock nets) can be ignored. The default value is 0, indicating no fanout limit. The default value is `MAX_INT`. The allowed values are integers `[0, MAX_INT]`. | | `-allow_congestion` | Allow global routing results to be generated with remaining congestion. The default is false. | -| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing. The default is `16`. Use `0` for non-batched behavior. Execution width still follows `set_thread_count`. | +| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing. The default is `0`, preserving the non-batched behavior.. Use a value different than `0` for batched behavior. Execution width still follows `set_thread_count`. | | `-verbose` | This flag enables the full reporting of the global routing. | | `-start_incremental` | This flag initializes the GRT listener to get the net modified. The default is false. | | `-end_incremental` | This flag run incremental GRT with the nets modified. The default is false. | diff --git a/src/grt/include/grt/GlobalRouter.h b/src/grt/include/grt/GlobalRouter.h index 7dcac5e291e..6028105533e 100644 --- a/src/grt/include/grt/GlobalRouter.h +++ b/src/grt/include/grt/GlobalRouter.h @@ -534,7 +534,7 @@ class GlobalRouter int congestion_report_iter_step_; bool allow_congestion_; bool resistance_aware_{false}; - int snapshot_batched_width_{16}; + int snapshot_batched_width_{0}; int num_threads_; std::vector vertical_capacities_; std::vector horizontal_capacities_; diff --git a/src/grt/src/GlobalRouter.tcl b/src/grt/src/GlobalRouter.tcl index 915fb09bcc0..38d6732f56d 100644 --- a/src/grt/src/GlobalRouter.tcl +++ b/src/grt/src/GlobalRouter.tcl @@ -235,7 +235,7 @@ proc global_route { args } { sta::check_positive_integer "-snapshot_batched_width" \ $snapshot_batched_width } else { - set snapshot_batched_width 16 + set snapshot_batched_width 0 } grt::set_snapshot_batched_width $snapshot_batched_width diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index a2cdef8c8db..446ab19d7c7 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -52,7 +52,7 @@ FastRouteCore::FastRouteCore(odb::dbDatabase* db, congestion_report_iter_step_(0), num_threads_(1), owns_nets_(true), - snapshot_batched_width_(16), + snapshot_batched_width_(0), x_range_(0), y_range_(0), worst_fanout_(0), diff --git a/src/grt/test/snapshot_batched_incremental_state.tcl b/src/grt/test/snapshot_batched_incremental_state.tcl index bf180a9cdbf..c4c7621fd3d 100644 --- a/src/grt/test/snapshot_batched_incremental_state.tcl +++ b/src/grt/test/snapshot_batched_incremental_state.tcl @@ -4,12 +4,12 @@ read_def "gcd.def" set_thread_count 16 -if {[grt::get_snapshot_batched_width] != 16} { +if {[grt::get_snapshot_batched_width] != 0} { utl::error GRT 707 \ - "FastRoute should start with snapshot_batched_width set to 16." + "FastRoute should start with snapshot_batched_width set to 0." } -global_route -verbose +global_route -verbose -snapshot_batched_width 16 if {[grt::get_snapshot_batched_width] != 16} { utl::error GRT 708 \ From 34fc25afebecb344742660a10b55c0dbf4421d41 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Mon, 20 Apr 2026 14:53:31 -0300 Subject: [PATCH 13/25] grt: small fixes Signed-off-by: Eder Monteiro --- src/grt/src/GlobalRouter.i | 2 ++ src/grt/src/fastroute/include/FastRoute.h | 1 + src/grt/src/fastroute/src/FastRoute.cpp | 32 ++++------------------- 3 files changed, 8 insertions(+), 27 deletions(-) diff --git a/src/grt/src/GlobalRouter.i b/src/grt/src/GlobalRouter.i index 7aab9622dfc..05e1815e6c9 100644 --- a/src/grt/src/GlobalRouter.i +++ b/src/grt/src/GlobalRouter.i @@ -196,6 +196,8 @@ void end_incremental() void global_route() { + const int num_threads = ord::OpenRoad::openRoad()->getThreadCount(); + getGlobalRouter()->setNumThreads(num_threads); getGlobalRouter()->globalRoute(true); } diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 81f20066451..48b24cc70b1 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -815,6 +815,7 @@ class FastRouteCore int snapshot_batch_net_count_ = 0; int snapshot_batch_wave_count_ = 0; bool snapshot_batch_disabled_for_run_ = false; + bool has_non_soft_ndr_nets_ = false; int detour_penalty_; }; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 446ab19d7c7..511565be5fa 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -163,6 +163,7 @@ void FastRouteCore::resetSnapshotBatchStats() snapshot_batch_net_count_ = 0; snapshot_batch_wave_count_ = 0; snapshot_batch_disabled_for_run_ = false; + has_non_soft_ndr_nets_ = false; } void FastRouteCore::clearNets() @@ -1023,14 +1024,14 @@ int FastRouteCore::resolveSnapshotWaveSize(const int available_batch_count) cons int FastRouteCore::resolveSnapshotBaseBatchSize(const int net_count) const { - return std::min(net_count, std::max(32, 2 * kSnapshotSemanticWidth)); + return std::min(net_count, 2 * kSnapshotSemanticWidth); } bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const { return snapshot_batched_width_ > 0 && !snapshot_batch_disabled_for_run_ && !debug_->isOn() && net_count > kMinNetsForSnapshotBatch - && !hasNonSoftNdrNets(); + && !has_non_soft_ndr_nets_; } int FastRouteCore::resolveSnapshotBatchIterationLimit(const int net_count) const @@ -1706,6 +1707,7 @@ NetRouteMap FastRouteCore::run() } resetSnapshotBatchStats(); + has_non_soft_ndr_nets_ = hasNonSoftNdrNets(); double total_run_time = 0.0; double initial_rsmt_time = 0.0; @@ -2457,31 +2459,7 @@ void FastRouteCore::computeCongestedNDRnets() void FastRouteCore::updateSoftNDRNetUsage(const int net_id, const int edge_cost) { - FrNet* net = nets_[net_id]; - // Access the routing tree edges for this net - std::vector& treeedges = sttrees_[net_id].edges; - const int num_edges = sttrees_[net_id].num_edges(); - - // Iterate through all edges in the net's routing tree - for (int edgeID = 0; edgeID < num_edges; edgeID++) { - TreeEdge* treeedge = &(treeedges[edgeID]); - // Only process edges that have actual routing - if (treeedge->len > 0 || treeedge->route.routelen > 0) { - int routeLen = treeedge->route.routelen; - std::vector& grids = treeedge->route.grids; - - // Update route usage - for (int i = 0; i < routeLen; i++) { - if (grids[i].x == grids[i + 1].x) { // vertical - const int min_y = std::min(grids[i].y, grids[i + 1].y); - graph2d_.updateUsageV(grids[i].x, min_y, net, edge_cost); - } else { // horizontal - const int min_x = std::min(grids[i].x, grids[i + 1].x); - graph2d_.updateUsageH(min_x, grids[i].y, net, edge_cost); - } - } - } - } + updatePlanarNetUsage(sttrees_[net_id], nets_[net_id], edge_cost); } void FastRouteCore::setVerbose(bool v) From b6f8566310384d94d0948f9559da05ac17f3af68 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 12:57:36 -0300 Subject: [PATCH 14/25] grt: clang-tidy Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/FastRoute.cpp | 2 +- src/grt/src/fastroute/src/maze.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 511565be5fa..b6a86788eba 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -1200,7 +1200,7 @@ void FastRouteCore::updatePlanarNetUsage(const StTree& sttree, void FastRouteCore::applySnapshotBatchRoute(const int net_id, StTree&& sttree) { FrNet* net = nets_[net_id]; - const int edge_cost = net->getEdgeCost(); + const int edge_cost = static_cast(net->getEdgeCost()); updatePlanarNetUsage(sttrees_[net_id], net, -edge_cost); sttrees_[net_id] = std::move(sttree); updatePlanarNetUsage(sttrees_[net_id], net, edge_cost); diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index f992d5ea76b..6b00019f9b6 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -3,9 +3,10 @@ #include #include +#include #include -#include #include +#include #include #include #include @@ -23,7 +24,6 @@ namespace grt { using utl::GRT; -using utl::DebugScopedTimer; using utl::Timer; static int parent_index(int i) From 28f1cbe57533dd6ba04a3a7f2c4b033f3a55f773 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 13:00:06 -0300 Subject: [PATCH 15/25] grt: tclint Signed-off-by: Eder Monteiro --- src/grt/test/snapshot_batched_bus_route.tcl | 2 +- src/grt/test/snapshot_batched_incremental_state.tcl | 8 ++++---- src/grt/test/snapshot_batched_single_thread_smoke.tcl | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/grt/test/snapshot_batched_bus_route.tcl b/src/grt/test/snapshot_batched_bus_route.tcl index 08fee0315f0..e355af833d2 100644 --- a/src/grt/test/snapshot_batched_bus_route.tcl +++ b/src/grt/test/snapshot_batched_bus_route.tcl @@ -1,7 +1,7 @@ set_thread_count 16 rename global_route global_route_serial -proc global_route {args} { +proc global_route { args } { uplevel 1 [list global_route_serial {*}$args -snapshot_batched_width 16] } diff --git a/src/grt/test/snapshot_batched_incremental_state.tcl b/src/grt/test/snapshot_batched_incremental_state.tcl index c4c7621fd3d..b5ff4b6a88b 100644 --- a/src/grt/test/snapshot_batched_incremental_state.tcl +++ b/src/grt/test/snapshot_batched_incremental_state.tcl @@ -4,14 +4,14 @@ read_def "gcd.def" set_thread_count 16 -if {[grt::get_snapshot_batched_width] != 0} { +if { [grt::get_snapshot_batched_width] != 0 } { utl::error GRT 707 \ "FastRoute should start with snapshot_batched_width set to 0." } global_route -verbose -snapshot_batched_width 16 -if {[grt::get_snapshot_batched_width] != 16} { +if { [grt::get_snapshot_batched_width] != 16 } { utl::error GRT 708 \ "Default global_route should leave snapshot_batched_width at 16." } @@ -19,7 +19,7 @@ if {[grt::get_snapshot_batched_width] != 16} { global_route -start_incremental global_route -end_incremental -snapshot_batched_width 16 -if {[grt::get_snapshot_batched_width] != 16} { +if { [grt::get_snapshot_batched_width] != 16 } { utl::error GRT 709 \ "Incremental global_route -snapshot_batched_width 16 did not reach FastRoute." } @@ -27,7 +27,7 @@ if {[grt::get_snapshot_batched_width] != 16} { global_route -start_incremental global_route -end_incremental -snapshot_batched_width 0 -if {[grt::get_snapshot_batched_width] != 0} { +if { [grt::get_snapshot_batched_width] != 0 } { utl::error GRT 710 \ "Incremental global_route -snapshot_batched_width 0 did not disable snapshot-batched routing." } diff --git a/src/grt/test/snapshot_batched_single_thread_smoke.tcl b/src/grt/test/snapshot_batched_single_thread_smoke.tcl index d82daec6529..83ea6e7cce9 100644 --- a/src/grt/test/snapshot_batched_single_thread_smoke.tcl +++ b/src/grt/test/snapshot_batched_single_thread_smoke.tcl @@ -18,7 +18,7 @@ tee -variable output -quiet { -congestion_iterations 200 -verbose } -if {[grt::get_snapshot_batched_width] != 16} { +if { [grt::get_snapshot_batched_width] != 16 } { utl::error GRT 711 \ "global_route -snapshot_batched_width 16 should keep snapshot-batched routing enabled even with one requested thread." } From 673d4966064b9781eab5c092e31e34b22aa64494 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 13:50:43 -0300 Subject: [PATCH 16/25] grt: clang-format Signed-off-by: Eder Monteiro --- src/grt/src/GlobalRouter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/grt/src/GlobalRouter.cpp b/src/grt/src/GlobalRouter.cpp index 0b7ccfe6a01..b6ff6779b49 100644 --- a/src/grt/src/GlobalRouter.cpp +++ b/src/grt/src/GlobalRouter.cpp @@ -3869,7 +3869,8 @@ void GlobalRouter::computeWirelength() } int64_t total_wirelength = 0; -#pragma omp parallel for num_threads(num_threads_) reduction(+ : total_wirelength) +#pragma omp parallel for num_threads(num_threads_) \ + reduction(+ : total_wirelength) for (int i = 0; i < static_cast(routed_nets.size()); i++) { total_wirelength += computeNetWirelength(routed_nets[i]); } From c7b6f8ba6d6f21653c8210879e9073d23c8005c5 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 13:54:33 -0300 Subject: [PATCH 17/25] grt: clang-format again Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/FastRoute.cpp | 21 +++++++++++---------- src/grt/src/fastroute/src/maze.cpp | 11 ++++++----- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index b6a86788eba..0286918f5e9 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -26,8 +26,8 @@ namespace grt { -using utl::GRT; using utl::DebugScopedTimer; +using utl::GRT; namespace { @@ -1017,7 +1017,8 @@ int FastRouteCore::resolveSnapshotExecutionThreads(const int work_items) const return std::min(work_items, std::max(1, requested_threads)); } -int FastRouteCore::resolveSnapshotWaveSize(const int available_batch_count) const +int FastRouteCore::resolveSnapshotWaveSize( + const int available_batch_count) const { return std::min(available_batch_count, kSnapshotSemanticWidth); } @@ -1042,8 +1043,9 @@ int FastRouteCore::resolveSnapshotBatchIterationLimit(const int net_count) const return std::max(overflow_scaled_limit, net_scaled_limit); } -bool FastRouteCore::useSnapshotBatchRoutingForIteration(const int iter, - const int net_count) const +bool FastRouteCore::useSnapshotBatchRoutingForIteration( + const int iter, + const int net_count) const { if (!useSnapshotBatchRouting(net_count)) { return false; @@ -1057,7 +1059,7 @@ bool FastRouteCore::useSnapshotBatchRoutingForIteration(const int iter, } int FastRouteCore::resolveSnapshotNetsForBatch(const int iter, - const int net_count) const + const int net_count) const { const int nets_for_batch = resolveSnapshotBaseBatchSize(net_count); @@ -2183,9 +2185,9 @@ NetRouteMap FastRouteCore::run() std::vector net_ids; - // If the congestion is not that high (note that the overflow is inflated - // by 100x when there is no capacity available for a NDR net in a specific - // edge) + // If the congestion is not that high (note that the overflow is + // inflated by 100x when there is no capacity available for a NDR net in + // a specific edge) if (total_overflow_ < soft_ndr_overflow_th) { // Select one NDR net to be disabled int net_id = graph2d_.getOneCongestedNDRnet(); @@ -2322,8 +2324,7 @@ NetRouteMap FastRouteCore::run() logger_->metric("global_route__fastroute__monotonic_s", monotonic_time); logger_->metric("global_route__fastroute__overflow_iterations_s", overflow_iterations_time); - logger_->metric("global_route__fastroute__finalization_s", - finalization_time); + logger_->metric("global_route__fastroute__finalization_s", finalization_time); logger_->metric("global_route__fastroute__snapshot_batch_route_s", snapshot_batch_route_time_); logger_->metric("global_route__fastroute__snapshot_batch_apply_s", diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 6b00019f9b6..03c23811c96 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -808,8 +808,8 @@ bool FastRouteCore::updateRouteType1(const int net_id, treeedges[edge_n1A1].len = abs(A1x - E1x) + abs(A1y - E1y); // reallocate memory for route.gridsX and route.gridsY - treeedges[edge_n1A2].route.grids.assign( - cnt_n1A1 + cnt_n1A2 - E1_pos - 1, GPoint3D{}); + treeedges[edge_n1A2].route.grids.assign(cnt_n1A1 + cnt_n1A2 - E1_pos - 1, + GPoint3D{}); int cnt = 0; if (E1x <= A2x) { @@ -1131,9 +1131,10 @@ bool FastRouteCore::runSnapshotBatchedMazeRoute(const int iter, // next wave. for (size_t wave_begin = 0; wave_begin < batch_net_ids.size(); wave_begin += semantic_wave_size) { - const int batches_in_wave = std::min( - semantic_wave_size, - static_cast(batch_net_ids.size()) - static_cast(wave_begin)); + const int batches_in_wave + = std::min(semantic_wave_size, + static_cast(batch_net_ids.size()) + - static_cast(wave_begin)); const int active_threads = resolveSnapshotExecutionThreads(batches_in_wave); std::vector batch_results(batches_in_wave); From bd8ec2b88badb55ce2b4cd896bada91705212da5 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 14:08:35 -0300 Subject: [PATCH 18/25] grt: tclfmt Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/FastRoute.cpp | 2 +- src/grt/test/snapshot_batched_single_thread_smoke.tcl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 0286918f5e9..1cd1b7a2d59 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -1202,7 +1202,7 @@ void FastRouteCore::updatePlanarNetUsage(const StTree& sttree, void FastRouteCore::applySnapshotBatchRoute(const int net_id, StTree&& sttree) { FrNet* net = nets_[net_id]; - const int edge_cost = static_cast(net->getEdgeCost()); + const int edge_cost = static_cast(net->getEdgeCost()); updatePlanarNetUsage(sttrees_[net_id], net, -edge_cost); sttrees_[net_id] = std::move(sttree); updatePlanarNetUsage(sttrees_[net_id], net, edge_cost); diff --git a/src/grt/test/snapshot_batched_single_thread_smoke.tcl b/src/grt/test/snapshot_batched_single_thread_smoke.tcl index 83ea6e7cce9..0e3df883d89 100644 --- a/src/grt/test/snapshot_batched_single_thread_smoke.tcl +++ b/src/grt/test/snapshot_batched_single_thread_smoke.tcl @@ -20,7 +20,8 @@ tee -variable output -quiet { if { [grt::get_snapshot_batched_width] != 16 } { utl::error GRT 711 \ - "global_route -snapshot_batched_width 16 should keep snapshot-batched routing enabled even with one requested thread." + "global_route -snapshot_batched_width 16 should keep\ + snapshot-batched routing enabled even with one requested thread." } set wirelength -1 From f088ce48c722837f19f82f3a9dbdb39e7a55c8d3 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 15:12:32 -0300 Subject: [PATCH 19/25] grt: move multicore-related code to separated functions Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/include/FastRoute.h | 46 +++++ src/grt/src/fastroute/src/FastRoute.cpp | 201 +++++++++++----------- 2 files changed, 150 insertions(+), 97 deletions(-) diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 9460e4dbdef..04aeb8aed8d 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -659,6 +659,32 @@ class FastRouteCore void applySnapshotBatchRoute(int net_id, StTree&& sttree); void updatePlanarNetUsage(const StTree& sttree, FrNet* net, int edge_cost); void resetSnapshotBatchStats(); + + // Timing data collected during run(), reported via reportRunMetrics(). + struct RunTimings + { + double total = 0.0; + double initial_rsmt = 0.0; + double route_l = 0.0; + double congestion_rsmt = 0.0; + double new_route_l = 0.0; + double spiral = 0.0; + double route_z = 0.0; + double monotonic = 0.0; + double overflow_iterations = 0.0; + double finalization = 0.0; + }; + void reportRunMetrics(const RunTimings& timings, + int num_vias, + int final_length); + + // Returns true if the overflow loop should break due to snapshot + // convergence patience being exhausted. + bool checkSnapshotConvergence(int past_cong, + int& bmfl, + int& bwcnt, + int iter, + int snapshot_batch_count_before); int edgeShift(stt::Tree& t, int net); int edgeShiftNew(stt::Tree& t, int net); @@ -673,6 +699,25 @@ class FastRouteCore static const int BIG_INT = 1e9; // big integer used as infinity static const int HCOST = 5000; + // Snapshot-batched routing constants. + // Nets are partitioned into batches and routed in parallel waves against + // a frozen graph snapshot. These constants control when batching is + // eligible and how work is sized. + // + // kSnapshotSemanticWidth: max batches per wave (independent of thread count). + // kSnapshotLowOverflowForSerialCleanup / + // kSnapshotLowMaxOverflowForSerialCleanup: + // overflow thresholds below which batching is disabled for the run, + // because the design is already near-converged. + // kMinNetsForSnapshotBatch: minimum routable nets to attempt batching. + // kSnapshotCleanupPatience: how many non-improving iterations to tolerate + // in the snapshot cleanup phase before breaking. + static constexpr int kSnapshotSemanticWidth = 16; + static constexpr int kSnapshotLowOverflowForSerialCleanup = 1500; + static constexpr int kSnapshotLowMaxOverflowForSerialCleanup = 32; + static constexpr int kMinNetsForSnapshotBatch = 2 * kSnapshotSemanticWidth; + static constexpr int kSnapshotCleanupPatience = 12; + int max_degree_; std::vector cap_per_layer_; std::vector usage_per_layer_; @@ -816,6 +861,7 @@ class FastRouteCore int snapshot_batch_net_count_ = 0; int snapshot_batch_wave_count_ = 0; bool snapshot_batch_disabled_for_run_ = false; + bool snapshot_cleanup_active_ = false; bool has_non_soft_ndr_nets_ = false; int detour_penalty_; }; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 1cd1b7a2d59..4050b9ce5c2 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -29,18 +29,6 @@ namespace grt { using utl::DebugScopedTimer; using utl::GRT; -namespace { - -// Keep snapshot-batched route semantics pinned to the operating point that -// benchmarked best, while letting execution width follow the user-requested -// thread count. -constexpr int kSnapshotSemanticWidth = 16; -constexpr int kSnapshotLowOverflowForSerialCleanup = 1500; -constexpr int kSnapshotLowMaxOverflowForSerialCleanup = 32; -constexpr int kMinNetsForSnapshotBatch = 2 * kSnapshotSemanticWidth; - -} // namespace - FastRouteCore::FastRouteCore(odb::dbDatabase* db, utl::Logger* log, utl::ServiceRegistry* service_registry, @@ -163,9 +151,91 @@ void FastRouteCore::resetSnapshotBatchStats() snapshot_batch_net_count_ = 0; snapshot_batch_wave_count_ = 0; snapshot_batch_disabled_for_run_ = false; + snapshot_cleanup_active_ = false; has_non_soft_ndr_nets_ = false; } +void FastRouteCore::reportRunMetrics(const RunTimings& timings, + const int num_vias, + const int final_length) +{ + logger_->metric("global_route__fastroute__run_s", timings.total); + logger_->metric("global_route__fastroute__initial_rsmt_s", + timings.initial_rsmt); + logger_->metric("global_route__fastroute__route_l_s", timings.route_l); + logger_->metric("global_route__fastroute__congestion_rsmt_s", + timings.congestion_rsmt); + logger_->metric("global_route__fastroute__new_route_l_s", + timings.new_route_l); + logger_->metric("global_route__fastroute__spiral_s", timings.spiral); + logger_->metric("global_route__fastroute__route_z_s", timings.route_z); + logger_->metric("global_route__fastroute__monotonic_s", timings.monotonic); + logger_->metric("global_route__fastroute__overflow_iterations_s", + timings.overflow_iterations); + logger_->metric("global_route__fastroute__finalization_s", + timings.finalization); + logger_->metric("global_route__fastroute__snapshot_batch_route_s", + snapshot_batch_route_time_); + logger_->metric("global_route__fastroute__snapshot_batch_apply_s", + snapshot_batch_apply_time_); + logger_->metric("global_route__fastroute__snapshot_batch_sync_s", + snapshot_batch_sync_time_); + logger_->metric("global_route__fastroute__snapshot_batch_count", + snapshot_batch_count_); + logger_->metric("global_route__fastroute__snapshot_batch_nets", + snapshot_batch_net_count_); + logger_->metric("global_route__fastroute__snapshot_batch_wave_count", + snapshot_batch_wave_count_); + if (snapshot_batch_count_ > 0) { + debugPrint(logger_, + GRT, + "timer", + 1, + "Snapshot batch totals: sync {} route {} apply {} waves {} " + "batches {} nets {}.", + snapshot_batch_sync_time_, + snapshot_batch_route_time_, + snapshot_batch_apply_time_, + snapshot_batch_wave_count_, + snapshot_batch_count_, + snapshot_batch_net_count_); + } + logger_->metric("global_route__vias", num_vias); + if (verbose_) { + logger_->info(GRT, 111, "Final number of vias: {}", num_vias); + logger_->info( + GRT, 112, "Final usage 3D: {}", (final_length + 3 * num_vias)); + } +} + +bool FastRouteCore::checkSnapshotConvergence( + const int past_cong, + int& bmfl, + int& bwcnt, + const int iter, + const int snapshot_batch_count_before) +{ + snapshot_cleanup_active_ + = snapshot_cleanup_active_ + || snapshot_batch_count_ > snapshot_batch_count_before; + + if (snapshot_cleanup_active_ && past_cong < bmfl) { + copyRS(); + bmfl = past_cong; + bwcnt = 0; + } + + if (snapshot_cleanup_active_ + && iter > resolveSnapshotBatchIterationLimit(net_ids_.size())) { + if (past_cong >= bmfl) { + bwcnt++; + } + return bwcnt > kSnapshotCleanupPatience; + } + + return false; +} + void FastRouteCore::clearNets() { if (!sttrees_.empty()) { @@ -1711,18 +1781,9 @@ NetRouteMap FastRouteCore::run() resetSnapshotBatchStats(); has_non_soft_ndr_nets_ = hasNonSoftNdrNets(); - double total_run_time = 0.0; - double initial_rsmt_time = 0.0; - double route_l_time = 0.0; - double congestion_rsmt_time = 0.0; - double new_route_l_time = 0.0; - double spiral_time = 0.0; - double route_z_time = 0.0; - double monotonic_time = 0.0; - double overflow_iterations_time = 0.0; - double finalization_time = 0.0; + RunTimings timings; const DebugScopedTimer total_timer( - total_run_time, logger_, GRT, "timer", 1, "FastRoute run: {}"); + timings.total, logger_, GRT, "timer", 1, "FastRoute run: {}"); graph2d_.clearUsed(); // Rebuild used grids in graph2d during incremental GRT to account for @@ -1779,7 +1840,7 @@ NetRouteMap FastRouteCore::run() via_cost_ = 0; { const DebugScopedTimer timer( - initial_rsmt_time, logger_, GRT, "timer", 1, "Initial RSMT: {}"); + timings.initial_rsmt, logger_, GRT, "timer", 1, "Initial RSMT: {}"); gen_brk_RSMT(false, false, false, false, noADJ); } if (logger_->debugCheck(GRT, "grtSteps", 1)) { @@ -1789,7 +1850,7 @@ NetRouteMap FastRouteCore::run() // First time L routing { const DebugScopedTimer timer( - route_l_time, logger_, GRT, "timer", 1, "Initial routeLAll: {}"); + timings.route_l, logger_, GRT, "timer", 1, "Initial routeLAll: {}"); routeLAll(true); } if (logger_->debugCheck(GRT, "grtSteps", 1)) { @@ -1798,7 +1859,7 @@ NetRouteMap FastRouteCore::run() // Congestion-driven rip-up and reroute L { - const DebugScopedTimer timer(congestion_rsmt_time, + const DebugScopedTimer timer(timings.congestion_rsmt, logger_, GRT, "timer", @@ -1813,8 +1874,12 @@ NetRouteMap FastRouteCore::run() // New rip-up and reroute L via-guided { - const DebugScopedTimer timer( - new_route_l_time, logger_, GRT, "timer", 1, "Via-guided routeLAll: {}"); + const DebugScopedTimer timer(timings.new_route_l, + logger_, + GRT, + "timer", + 1, + "Via-guided routeLAll: {}"); newrouteLAll(false, true); } getOverflow2D(&maxOverflow); @@ -1825,7 +1890,7 @@ NetRouteMap FastRouteCore::run() // Rip-up and reroute using spiral route { const DebugScopedTimer timer( - spiral_time, logger_, GRT, "timer", 1, "Spiral routing: {}"); + timings.spiral, logger_, GRT, "timer", 1, "Spiral routing: {}"); spiralRouteAll(); } if (logger_->debugCheck(GRT, "grtSteps", 1)) { @@ -1835,7 +1900,7 @@ NetRouteMap FastRouteCore::run() // Rip-up a tree edge according to its ripup type and Z-route it { const DebugScopedTimer timer( - route_z_time, logger_, GRT, "timer", 1, "Initial routeZAll: {}"); + timings.route_z, logger_, GRT, "timer", 1, "Initial routeZAll: {}"); newrouteZAll(10); } int past_cong = getOverflow2D(&maxOverflow); @@ -1862,7 +1927,7 @@ NetRouteMap FastRouteCore::run() for (int i = 0; i < LVIter; i++) { const DebugScopedTimer timer( - monotonic_time, logger_, GRT, "timer", 1, "Monotonic routing: {}"); + timings.monotonic, logger_, GRT, "timer", 1, "Monotonic routing: {}"); logistic_coef = 2.0 / (1 + log(maxOverflow)); debugPrint(logger_, GRT, @@ -1918,10 +1983,6 @@ NetRouteMap FastRouteCore::run() SaveLastRouteLen(); const int max_overflow_increases = 25; - const int snapshot_iteration_limit - = resolveSnapshotBatchIterationLimit(net_ids_.size()); - const int snapshot_cleanup_patience = 12; - bool snapshot_cleanup_active = false; float slack_th = std::numeric_limits::lowest(); @@ -1930,7 +1991,7 @@ NetRouteMap FastRouteCore::run() int last_total_overflow = 0; float overflow_reduction_percent = -1; { - const DebugScopedTimer timer(overflow_iterations_time, + const DebugScopedTimer timer(timings.overflow_iterations, logger_, GRT, "timer", @@ -2023,21 +2084,12 @@ NetRouteMap FastRouteCore::run() int last_cong = past_cong; past_cong = getOverflow2Dmaze(&maxOverflow, &tUsage); - snapshot_cleanup_active - = snapshot_cleanup_active - || snapshot_batch_count_ > snapshot_batch_count_before; if (minofl > past_cong) { minofl = past_cong; minoflrnd = i; } - if (snapshot_cleanup_active && past_cong < bmfl) { - copyRS(); - bmfl = past_cong; - bwcnt = 0; - } - if (i == 8) { L = 1; } @@ -2097,15 +2149,12 @@ NetRouteMap FastRouteCore::run() VIA = 0; } - if (snapshot_cleanup_active && i > snapshot_iteration_limit) { - if (past_cong >= bmfl) { - bwcnt++; - } + if (checkSnapshotConvergence( + past_cong, bmfl, bwcnt, i, snapshot_batch_count_before)) { + break; + } - if (bwcnt > snapshot_cleanup_patience) { - break; - } - } else { + if (!snapshot_cleanup_active_) { if (past_cong < bmfl) { bwcnt = 0; if (i > 140 || (i > 80 && past_cong < 20)) { @@ -2266,7 +2315,7 @@ NetRouteMap FastRouteCore::run() int numVia = 0; { const DebugScopedTimer timer( - finalization_time, logger_, GRT, "timer", 1, "Finalization: {}"); + timings.finalization, logger_, GRT, "timer", 1, "Finalization: {}"); freeRR(); removeLoops(); @@ -2313,49 +2362,7 @@ NetRouteMap FastRouteCore::run() ensurePinCoverage(); } - logger_->metric("global_route__fastroute__run_s", total_run_time); - logger_->metric("global_route__fastroute__initial_rsmt_s", initial_rsmt_time); - logger_->metric("global_route__fastroute__route_l_s", route_l_time); - logger_->metric("global_route__fastroute__congestion_rsmt_s", - congestion_rsmt_time); - logger_->metric("global_route__fastroute__new_route_l_s", new_route_l_time); - logger_->metric("global_route__fastroute__spiral_s", spiral_time); - logger_->metric("global_route__fastroute__route_z_s", route_z_time); - logger_->metric("global_route__fastroute__monotonic_s", monotonic_time); - logger_->metric("global_route__fastroute__overflow_iterations_s", - overflow_iterations_time); - logger_->metric("global_route__fastroute__finalization_s", finalization_time); - logger_->metric("global_route__fastroute__snapshot_batch_route_s", - snapshot_batch_route_time_); - logger_->metric("global_route__fastroute__snapshot_batch_apply_s", - snapshot_batch_apply_time_); - logger_->metric("global_route__fastroute__snapshot_batch_sync_s", - snapshot_batch_sync_time_); - logger_->metric("global_route__fastroute__snapshot_batch_count", - snapshot_batch_count_); - logger_->metric("global_route__fastroute__snapshot_batch_nets", - snapshot_batch_net_count_); - logger_->metric("global_route__fastroute__snapshot_batch_wave_count", - snapshot_batch_wave_count_); - if (snapshot_batch_count_ > 0) { - debugPrint(logger_, - GRT, - "timer", - 1, - "Snapshot batch totals: sync {} route {} apply {} waves {} " - "batches {} nets {}.", - snapshot_batch_sync_time_, - snapshot_batch_route_time_, - snapshot_batch_apply_time_, - snapshot_batch_wave_count_, - snapshot_batch_count_, - snapshot_batch_net_count_); - } - logger_->metric("global_route__vias", numVia); - if (verbose_) { - logger_->info(GRT, 111, "Final number of vias: {}", numVia); - logger_->info(GRT, 112, "Final usage 3D: {}", (finallength + 3 * numVia)); - } + reportRunMetrics(timings, numVia, finallength); // Debug mode Tree 3D after layer assignament if (debug_->isOn() && debug_->tree3D) { From b075045830496dd361929b5ef81b920c9b160240 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 15:40:08 -0300 Subject: [PATCH 20/25] grt: gemini review Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/maze.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 03c23811c96..f9ea48926ec 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -1215,14 +1215,16 @@ void FastRouteCore::mazeRouteMSMDSequential(const int iter, const int max_usage_multiplier = 40; const int max_h_usage = max_usage_multiplier * h_capacity_; - h_cost_table_.reserve(max_h_usage); + h_cost_table_.clear(); + h_cost_table_.resize(max_h_usage); for (int i = 0; i < max_h_usage; i++) { - h_cost_table_.push_back(getCost(i, true, cost_params)); + h_cost_table_[i] = getCost(i, true, cost_params); } const int max_v_usage = max_usage_multiplier * v_capacity_; - v_cost_table_.reserve(max_v_usage); + v_cost_table_.clear(); + v_cost_table_.resize(max_v_usage); for (int i = 0; i < max_v_usage; i++) { - v_cost_table_.push_back(getCost(i, false, cost_params)); + v_cost_table_[i] = getCost(i, false, cost_params); } for (int i = 0; i < y_grid_; i++) { From a3f391b7fc5343d5de5c59d7d40d8a9da7e3cf33 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 15:49:56 -0300 Subject: [PATCH 21/25] grt: remove dead code Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/FastRoute.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 4050b9ce5c2..14e66d0813f 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -2104,8 +2104,6 @@ NetRouteMap FastRouteCore::run() if (maxOverflow < 150) { if (i == 20 && past_cong > 200) { L = 0; - upType = 3; - stopDEC = true; slope = 5; auto cost_params = CostParams(logistic_coef, costheight_, slope); mazeRouteMSMD(i, From d131f348b8a1a8aced381ad3947b058681469be3 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 22 Apr 2026 16:11:55 -0300 Subject: [PATCH 22/25] grt: undo wrong fix Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/maze.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index f9ea48926ec..03c23811c96 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -1215,16 +1215,14 @@ void FastRouteCore::mazeRouteMSMDSequential(const int iter, const int max_usage_multiplier = 40; const int max_h_usage = max_usage_multiplier * h_capacity_; - h_cost_table_.clear(); - h_cost_table_.resize(max_h_usage); + h_cost_table_.reserve(max_h_usage); for (int i = 0; i < max_h_usage; i++) { - h_cost_table_[i] = getCost(i, true, cost_params); + h_cost_table_.push_back(getCost(i, true, cost_params)); } const int max_v_usage = max_usage_multiplier * v_capacity_; - v_cost_table_.clear(); - v_cost_table_.resize(max_v_usage); + v_cost_table_.reserve(max_v_usage); for (int i = 0; i < max_v_usage; i++) { - v_cost_table_[i] = getCost(i, false, cost_params); + v_cost_table_.push_back(getCost(i, false, cost_params)); } for (int i = 0; i < y_grid_; i++) { From 9c6200b29e77bdff8cde05c94651c106fc8e34e2 Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Mon, 27 Apr 2026 19:31:32 -0300 Subject: [PATCH 23/25] grt: fix bazel build Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/src/FastRoute.cpp | 2 +- src/grt/test/BUILD | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index b0b76cb2b87..61e2d10fda2 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -1161,7 +1161,7 @@ int FastRouteCore::resolveSnapshotNetsForBatch(const int iter, std::unique_ptr FastRouteCore::buildSnapshotBatchWorker() const { auto worker = std::make_unique( - db_, logger_, callback_handler_, stt_builder_, sta_); + db_, logger_, service_registry_, stt_builder_, sta_); worker->owns_nets_ = false; worker->snapshot_batched_width_ = 0; diff --git a/src/grt/test/BUILD b/src/grt/test/BUILD index 5e98c951038..b3fed501f4f 100644 --- a/src/grt/test/BUILD +++ b/src/grt/test/BUILD @@ -137,7 +137,10 @@ regression_test( name = "snapshot_batched_bus_route", check_log = False, check_passfail = True, - data = [":test_resources"], + data = [ + "bus_route.tcl", + ":test_resources", + ], ) regression_test( From d4bbeea571411a68c9929157c6e66c07bd43c15f Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 29 Apr 2026 19:42:40 -0300 Subject: [PATCH 24/25] grt: use -snapshot_batched_width option inside FastRouteCore Signed-off-by: Eder Monteiro --- src/grt/src/fastroute/include/FastRoute.h | 10 ++++------ src/grt/src/fastroute/src/FastRoute.cpp | 6 +++--- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index 7d7ae1f9597..06849319151 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -703,21 +703,19 @@ class FastRouteCore // Snapshot-batched routing constants. // Nets are partitioned into batches and routed in parallel waves against - // a frozen graph snapshot. These constants control when batching is - // eligible and how work is sized. + // a frozen graph snapshot. The user-supplied snapshot_batched_width_ + // controls the maximum batches per wave (independent of thread count) and + // gates the minimum routable net count (2 * width) needed to attempt + // batching. // - // kSnapshotSemanticWidth: max batches per wave (independent of thread count). // kSnapshotLowOverflowForSerialCleanup / // kSnapshotLowMaxOverflowForSerialCleanup: // overflow thresholds below which batching is disabled for the run, // because the design is already near-converged. - // kMinNetsForSnapshotBatch: minimum routable nets to attempt batching. // kSnapshotCleanupPatience: how many non-improving iterations to tolerate // in the snapshot cleanup phase before breaking. - static constexpr int kSnapshotSemanticWidth = 16; static constexpr int kSnapshotLowOverflowForSerialCleanup = 1500; static constexpr int kSnapshotLowMaxOverflowForSerialCleanup = 32; - static constexpr int kMinNetsForSnapshotBatch = 2 * kSnapshotSemanticWidth; static constexpr int kSnapshotCleanupPatience = 12; int max_degree_; diff --git a/src/grt/src/fastroute/src/FastRoute.cpp b/src/grt/src/fastroute/src/FastRoute.cpp index 61e2d10fda2..3b6b256973b 100644 --- a/src/grt/src/fastroute/src/FastRoute.cpp +++ b/src/grt/src/fastroute/src/FastRoute.cpp @@ -1090,18 +1090,18 @@ int FastRouteCore::resolveSnapshotExecutionThreads(const int work_items) const int FastRouteCore::resolveSnapshotWaveSize( const int available_batch_count) const { - return std::min(available_batch_count, kSnapshotSemanticWidth); + return std::min(available_batch_count, snapshot_batched_width_); } int FastRouteCore::resolveSnapshotBaseBatchSize(const int net_count) const { - return std::min(net_count, 2 * kSnapshotSemanticWidth); + return std::min(net_count, 2 * snapshot_batched_width_); } bool FastRouteCore::useSnapshotBatchRouting(const int net_count) const { return snapshot_batched_width_ > 0 && !snapshot_batch_disabled_for_run_ - && !debug_->isOn() && net_count > kMinNetsForSnapshotBatch + && !debug_->isOn() && net_count > 2 * snapshot_batched_width_ && !has_non_soft_ndr_nets_; } From 2be878177f77a6a8fe8082c117a4f98e6148687a Mon Sep 17 00:00:00 2001 From: Eder Monteiro Date: Wed, 29 Apr 2026 19:45:36 -0300 Subject: [PATCH 25/25] grt: fix readme Signed-off-by: Eder Monteiro --- src/grt/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grt/README.md b/src/grt/README.md index e95b60b6f4d..573a420214a 100644 --- a/src/grt/README.md +++ b/src/grt/README.md @@ -47,13 +47,13 @@ global_route | `-critical_nets_percentage` | Set the percentage of nets with the worst slack value that are considered timing critical, having preference over other nets during congestion iterations (e.g. `-critical_nets_percentage 30`). The default value is `0`, and the allowed values are integers `[0, MAX_INT]`. | | `-skip_large_fanout_nets` | Skips routing for nets with a fanout higher than the specified limit. Nets above this pin count threshold are ignored by the global router and will not have routing guides, meaning they will also be skipped during detailed routing. This option is useful in debugging or estimation flows where high-fanout nets (such as pre-CTS clock nets) can be ignored. The default value is 0, indicating no fanout limit. The default value is `MAX_INT`. The allowed values are integers `[0, MAX_INT]`. | | `-allow_congestion` | Allow global routing results to be generated with remaining congestion. The default is false. | -| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing. The default is `0`, preserving the non-batched behavior.. Use a value different than `0` for batched behavior. Execution width still follows `set_thread_count`. | | `-verbose` | This flag enables the full reporting of the global routing. | | `-start_incremental` | This flag initializes the GRT listener to get the net modified. The default is false. | | `-end_incremental` | This flag run incremental GRT with the nets modified. The default is false. | | `-use_cugr` | This flag run GRT using CUGR as the router solver. NOTE: this is not ready for production. | | `-resistance_aware` | This flag enables resistance-aware layer assignment and 3D routing. NOTE: this is not ready for production. | | `-infinite_cap` | Enables "infinite" gcell capacity for testing purpose. NOTE: this is not recommended for production flows. | +| `-snapshot_batched_width` | Set the semantic width of snapshot-batched routing (max batches per wave). The default is `0`, preserving the non-batched behavior. Set a positive integer to enable batched routing; allowed values are integers `[1, MAX_INT]`. Execution width still follows `set_thread_count`. NOTE: this is not recommended for production flows; it is intended for exploration and research projects. | ### Set Routing Layers